diff --git a/lib/stages/pcb/CollectFootprintsStage/layer-utils.ts b/lib/stages/pcb/CollectFootprintsStage/layer-utils.ts
index 065a0b72..9bb00613 100644
--- a/lib/stages/pcb/CollectFootprintsStage/layer-utils.ts
+++ b/lib/stages/pcb/CollectFootprintsStage/layer-utils.ts
@@ -1,5 +1,5 @@
import type { Footprint } from "kicadts"
-import type { LayerRef } from "circuit-json"
+import type { LayerRef, PcbRenderLayer } from "circuit-json"
/**
* Determines the layer (top or bottom) of a component based on the footprint's layer information
@@ -29,17 +29,29 @@ export function determineLayerFromLayers(layers: any): LayerRef {
return "top"
}
+export interface LayerMapping {
+ side: "top" | "bottom"
+ type: PcbRenderLayer | "unknown"
+}
+
/**
- * Maps KiCad text layer to Circuit JSON layer (top or bottom)
+ * Gets a detailed mapping for a KiCad layer
*/
-export function mapTextLayer(kicadLayer: any): "top" | "bottom" {
- // Handle both string and Layer object
+export function getLayerMapping(kicadLayer: any): LayerMapping {
const layerStr =
typeof kicadLayer === "string"
? kicadLayer
: kicadLayer?.names?.join(" ") || ""
- if (layerStr.includes("B.") || layerStr.includes("Back")) {
- return "bottom"
+
+ const side: "top" | "bottom" =
+ layerStr.includes("B.") || layerStr.includes("Back") ? "bottom" : "top"
+
+ let type: PcbRenderLayer | "unknown" = "unknown"
+ if (layerStr.includes("Silk")) {
+ type = side === "top" ? "top_silkscreen" : "bottom_silkscreen"
+ } else if (layerStr.includes("Edge.Cuts")) {
+ type = "edge_cuts"
}
- return "top"
+
+ return { side, type }
}
diff --git a/lib/stages/pcb/CollectFootprintsStage/process-graphics.ts b/lib/stages/pcb/CollectFootprintsStage/process-graphics.ts
index 36c6b4b5..800999a9 100644
--- a/lib/stages/pcb/CollectFootprintsStage/process-graphics.ts
+++ b/lib/stages/pcb/CollectFootprintsStage/process-graphics.ts
@@ -1,7 +1,7 @@
import type { Footprint, FpPoly, FpLine, FpCircle, FpArc } from "kicadts"
import { applyToPoint } from "transformation-matrix"
import type { ConverterContext } from "../../../types"
-import { mapTextLayer } from "./layer-utils"
+import { getLayerMapping } from "./layer-utils"
/**
* Rotates a point by a given angle (in degrees)
@@ -120,15 +120,17 @@ export function createFootprintLine(
const startPos = applyToPoint(ctx.k2cMatPcb, startKicadPos)
const endPos = applyToPoint(ctx.k2cMatPcb, endKicadPos)
- const layer = mapTextLayer(line.layer)
+ const mapping = getLayerMapping(line.layer)
const strokeWidth = line.stroke?.width || line.width || 0.12
- ctx.db.pcb_silkscreen_path.insert({
- pcb_component_id: componentId,
- layer: layer,
- route: [startPos, endPos],
- stroke_width: strokeWidth,
- })
+ if (mapping.type.includes("silkscreen")) {
+ ctx.db.pcb_silkscreen_path.insert({
+ pcb_component_id: componentId,
+ layer: mapping.side,
+ route: [startPos, endPos],
+ stroke_width: strokeWidth,
+ })
+ }
}
/**
@@ -161,7 +163,7 @@ export function createFootprintCircle(
// Transform to Circuit JSON coordinates
const centerPos = applyToPoint(ctx.k2cMatPcb, centerKicadPos)
- const layer = mapTextLayer(circle.layer)
+ const mapping = getLayerMapping(circle.layer)
const strokeWidth = circle.stroke?.width || circle.width || 0.12
// Create circle as a pcb_silkscreen_circle (if supported) or as a path with many points
@@ -175,12 +177,14 @@ export function createFootprintCircle(
circleRoute.push({ x, y })
}
- ctx.db.pcb_silkscreen_path.insert({
- pcb_component_id: componentId,
- layer: layer,
- route: circleRoute,
- stroke_width: strokeWidth,
- })
+ if (mapping.type.includes("silkscreen")) {
+ ctx.db.pcb_silkscreen_path.insert({
+ pcb_component_id: componentId,
+ layer: mapping.side,
+ route: circleRoute,
+ stroke_width: strokeWidth,
+ })
+ }
}
/**
@@ -249,7 +253,7 @@ export function createFootprintArc(
y: kicadComponentPos.y + rotatedEnd.y,
}
- const layer = mapTextLayer(arc.layer)
+ const mapping = getLayerMapping(arc.layer)
const strokeWidth = arc.stroke?.width || arc.width || 0.12
// Calculate the arc center and radius IN KICAD SPACE (before coordinate transformation)
@@ -259,12 +263,15 @@ export function createFootprintArc(
// If points are collinear, fall back to straight line
const startPos = applyToPoint(ctx.k2cMatPcb, startKicadPos)
const endPos = applyToPoint(ctx.k2cMatPcb, endKicadPos)
- ctx.db.pcb_silkscreen_path.insert({
- pcb_component_id: componentId,
- layer: layer,
- route: [startPos, endPos],
- stroke_width: strokeWidth,
- })
+
+ if (mapping.type.includes("silkscreen")) {
+ ctx.db.pcb_silkscreen_path.insert({
+ pcb_component_id: componentId,
+ layer: mapping.side,
+ route: [startPos, endPos],
+ stroke_width: strokeWidth,
+ })
+ }
return
}
@@ -329,12 +336,14 @@ export function createFootprintArc(
arcRoute.push(cjPoint)
}
- ctx.db.pcb_silkscreen_path.insert({
- pcb_component_id: componentId,
- layer: layer,
- route: arcRoute,
- stroke_width: strokeWidth,
- })
+ if (mapping.type.includes("silkscreen")) {
+ ctx.db.pcb_silkscreen_path.insert({
+ pcb_component_id: componentId,
+ layer: mapping.side,
+ route: arcRoute,
+ stroke_width: strokeWidth,
+ })
+ }
}
export function createFootprintPoly(
@@ -351,7 +360,7 @@ export function createFootprintPoly(
if (ptArray.length === 0) return
// Extract layer
- const layer = mapTextLayer(poly.layer)
+ const mapping = getLayerMapping(poly.layer)
// Extract stroke width
const strokeWidth = poly.stroke?.width || poly.width || 0.12
@@ -369,10 +378,12 @@ export function createFootprintPoly(
return applyToPoint(ctx.k2cMatPcb!, kicadPos)
})
- ctx.db.pcb_silkscreen_path.insert({
- pcb_component_id: componentId,
- layer: layer,
- route: transformedPts,
- stroke_width: strokeWidth,
- })
+ if (mapping.type.includes("silkscreen")) {
+ ctx.db.pcb_silkscreen_path.insert({
+ pcb_component_id: componentId,
+ layer: mapping.side,
+ route: transformedPts,
+ stroke_width: strokeWidth,
+ })
+ }
}
diff --git a/lib/stages/pcb/CollectFootprintsStage/process-text.ts b/lib/stages/pcb/CollectFootprintsStage/process-text.ts
index 51369840..9b3a29d3 100644
--- a/lib/stages/pcb/CollectFootprintsStage/process-text.ts
+++ b/lib/stages/pcb/CollectFootprintsStage/process-text.ts
@@ -1,7 +1,7 @@
import type { Footprint } from "kicadts"
import { applyToPoint } from "transformation-matrix"
import type { ConverterContext } from "../../../types"
-import { mapTextLayer } from "./layer-utils"
+import { getLayerMapping } from "./layer-utils"
import { substituteKicadVariables } from "./text-utils"
/**
@@ -30,13 +30,9 @@ export function processFootprintText(
const textArray = Array.isArray(texts) ? texts : [texts]
for (const text of textArray) {
- // Only process text on silkscreen layers (filter out F.Fab, etc.)
- const layerStr =
- typeof text.layer === "string"
- ? text.layer
- : text.layer?.names?.join(" ") || ""
- const isSilkscreen = layerStr.includes("SilkS") || layerStr.includes("Silk")
- if (!isSilkscreen) continue
+ // Check if the layer is one we want to process
+ const mapping = getLayerMapping(text.layer)
+ if (!mapping.type.includes("silkscreen")) continue
// Create a properly structured text element with _sxPosition mapped to at
const textElement = {
@@ -47,7 +43,7 @@ export function processFootprintText(
_sxEffects: (text as any)._sxEffects, // Pass _sxEffects for font size access
}
- createSilkscreenText(
+ createFootprintText(
ctx,
textElement,
componentId,
@@ -77,16 +73,11 @@ export function processFootprintProperties(
// Only process properties with a layer field
if (!property.layer) continue
- // Check if the property is on a silkscreen layer
- const layerStr =
- typeof property.layer === "string"
- ? property.layer
- : property.layer?.names?.join(" ") || ""
- const isSilkscreen = layerStr.includes("SilkS") || layerStr.includes("Silk")
+ // Check if the property is on a supported layer
+ const mapping = getLayerMapping(property.layer)
+ if (!mapping.type.includes("silkscreen")) continue
- if (!isSilkscreen) continue
-
- // Create silkscreen text for this property
+ // Create footprint text for this property
// Property structure uses _sxAt for position (kicadts internal field)
const textElement = {
text: property.value,
@@ -96,7 +87,7 @@ export function processFootprintProperties(
_sxEffects: (property as any)._sxEffects, // Pass _sxEffects for font size access
}
- createSilkscreenText(
+ createFootprintText(
ctx,
textElement,
componentId,
@@ -108,9 +99,9 @@ export function processFootprintProperties(
}
/**
- * Creates a silkscreen text element in Circuit JSON
+ * Creates a text element in Circuit JSON (silkscreen or fabrication)
*/
-export function createSilkscreenText(
+export function createFootprintText(
ctx: ConverterContext,
text: any,
componentId: string,
@@ -138,7 +129,7 @@ export function createSilkscreenText(
}
const pos = applyToPoint(ctx.k2cMatPcb, textKicadPos)
- const layer = mapTextLayer(text.layer)
+ const mapping = getLayerMapping(text.layer)
// Substitute KiCad variables in text
const processedText = substituteKicadVariables(text.text || "", footprint)
@@ -149,12 +140,15 @@ export function createSilkscreenText(
text.effects?.font?.size?.y ||
1
- ctx.db.pcb_silkscreen_text.insert({
- pcb_component_id: componentId,
- font: "tscircuit2024",
- font_size: kicadFontSize * 1.5,
- text: processedText,
- anchor_position: pos,
- layer: layer,
- } as any)
+ if (mapping.type.includes("silkscreen")) {
+ ctx.db.pcb_silkscreen_text.insert({
+ pcb_component_id: componentId,
+ font: "tscircuit2024",
+ font_size: kicadFontSize * 1.5,
+ text: processedText,
+ anchor_position: pos,
+ layer: mapping.side,
+ anchor_alignment: "center",
+ })
+ }
}
diff --git a/lib/stages/pcb/CollectGraphicsStage.ts b/lib/stages/pcb/CollectGraphicsStage.ts
index a069072b..7a8c315c 100644
--- a/lib/stages/pcb/CollectGraphicsStage.ts
+++ b/lib/stages/pcb/CollectGraphicsStage.ts
@@ -1,5 +1,6 @@
import { ConverterStage } from "../../types"
import { applyToPoint } from "transformation-matrix"
+import { getLayerMapping } from "./CollectFootprintsStage/layer-utils"
/**
* CollectGraphicsStage processes KiCad graphics elements:
@@ -21,17 +22,14 @@ export class CollectGraphicsStage extends ConverterStage {
const lineArray = Array.isArray(lines) ? lines : [lines]
const edgeCutLines: any[] = []
- const silkLines: any[] = []
+ const otherLines: any[] = []
for (const line of lineArray) {
- const layer = line.layer
- const layerNames =
- typeof layer === "string" ? [layer] : layer?.names || []
- const layerStr = layerNames.join(" ")
- if (layerStr.includes("Edge.Cuts")) {
+ const mapping = getLayerMapping(line.layer)
+ if (mapping.type === "edge_cuts") {
edgeCutLines.push(line)
- } else if (layerStr.includes("SilkS")) {
- silkLines.push(line)
+ } else if (mapping.type.includes("silkscreen")) {
+ otherLines.push(line)
}
}
@@ -40,9 +38,9 @@ export class CollectGraphicsStage extends ConverterStage {
this.createBoardOutline(edgeCutLines)
}
- // Create silkscreen paths
- for (const line of silkLines) {
- this.createSilkscreenPath(line)
+ // Create graphic paths
+ for (const line of otherLines) {
+ this.createGraphicPath(line)
}
// Process gr_rect elements
@@ -65,19 +63,10 @@ export class CollectGraphicsStage extends ConverterStage {
const textArray = Array.isArray(texts) ? texts : [texts]
for (const text of textArray) {
- const layer = text.layer
- const layerNames =
- typeof layer === "string" ? [layer] : layer?.names || []
- // Include text from silk, copper, and fab layers
- if (
- layerNames.some(
- (name: string) =>
- name.includes("SilkS") ||
- name.includes(".Cu") ||
- name.includes("Fab"),
- )
- ) {
- this.createSilkscreenText(text)
+ const mapping = getLayerMapping(text.layer)
+ // Include text from silk, copper, and fab/courtyard layers
+ if (mapping.type.includes("silkscreen")) {
+ this.createGraphicText(text)
}
}
@@ -187,7 +176,7 @@ export class CollectGraphicsStage extends ConverterStage {
}
}
- private createSilkscreenPath(line: any) {
+ private createGraphicPath(line: any) {
if (!this.ctx.k2cMatPcb) return
const start = line.start || { x: 0, y: 0 }
@@ -199,15 +188,17 @@ export class CollectGraphicsStage extends ConverterStage {
})
const endPos = applyToPoint(this.ctx.k2cMatPcb, { x: end.x, y: end.y })
- const layer = this.mapLayer(line.layer)
+ const mapping = getLayerMapping(line.layer)
const strokeWidth = line.width || 0.15
- this.ctx.db.pcb_silkscreen_path.insert({
- pcb_component_id: "", // Not attached to a specific component
- layer: layer,
- route: [startPos, endPos],
- stroke_width: strokeWidth,
- })
+ if (mapping.type.includes("silkscreen")) {
+ this.ctx.db.pcb_silkscreen_path.insert({
+ pcb_component_id: "", // Not attached to a specific component
+ layer: mapping.side,
+ route: [startPos, endPos],
+ stroke_width: strokeWidth,
+ })
+ }
}
private processRectangle(rect: any) {
@@ -250,7 +241,7 @@ export class CollectGraphicsStage extends ConverterStage {
const centerCJ = applyToPoint(this.ctx.k2cMatPcb, centerKicad)
// Map layer to top/bottom
- const layer = this.mapLayer(rect._sxLayer)
+ const layer = getLayerMapping(rect._sxLayer).side
// Create pcb_smtpad
this.ctx.db.pcb_smtpad.insert({
@@ -270,7 +261,7 @@ export class CollectGraphicsStage extends ConverterStage {
}
}
- private createSilkscreenText(text: any) {
+ private createGraphicText(text: any) {
if (!this.ctx.k2cMatPcb) return
// Get position from either at or _sxPosition (kicadts internal field)
@@ -280,7 +271,7 @@ export class CollectGraphicsStage extends ConverterStage {
y: at?.y ?? 0,
})
- const layer = this.mapLayer(text.layer)
+ const mapping = getLayerMapping(text.layer)
// Access font size from kicadts internal structure (_sxEffects._sxFont._sxSize._height)
const kicadFontSize =
text._sxEffects?._sxFont?._sxSize?._height ||
@@ -288,25 +279,17 @@ export class CollectGraphicsStage extends ConverterStage {
1
const fontSize = kicadFontSize * 1.5
- this.ctx.db.pcb_silkscreen_text.insert({
- pcb_component_id: "",
- text: text.text || text._text || "",
- anchor_position: pos,
- layer: layer,
- font_size: fontSize,
- font: "tscircuit2024",
- } as any)
- }
-
- private mapLayer(kicadLayer: any): "top" | "bottom" {
- const layerStr =
- typeof kicadLayer === "string"
- ? kicadLayer
- : kicadLayer?.names?.join(" ") || ""
- if (layerStr.includes("B.") || layerStr.includes("Back")) {
- return "bottom"
+ if (mapping.type.includes("silkscreen")) {
+ this.ctx.db.pcb_silkscreen_text.insert({
+ pcb_component_id: "",
+ text: text.text || text._text || "",
+ anchor_position: pos,
+ layer: mapping.side,
+ font_size: fontSize,
+ font: "tscircuit2024",
+ anchor_alignment: "center",
+ })
}
- return "top"
}
private pointsEqual(
@@ -384,7 +367,7 @@ export class CollectGraphicsStage extends ConverterStage {
)
// Map layer to top/bottom
- const layer = this.mapLayer(poly._sxLayer)
+ const layer = getLayerMapping(poly._sxLayer).side
// Create pcb_smtpad with polygon shape
this.ctx.db.pcb_smtpad.insert({
diff --git a/tests/__snapshots__/pic_programmer-circuit-json.json b/tests/__snapshots__/pic_programmer-circuit-json.json
index c0bb47f4..a46e3dca 100644
--- a/tests/__snapshots__/pic_programmer-circuit-json.json
+++ b/tests/__snapshots__/pic_programmer-circuit-json.json
@@ -6861,11 +6861,10 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_0",
+ "pcb_smtpad_id": "pcb_smtpad_id",
"shape": "polygon",
"pcb_component_id": "pcb_component_62",
"pcb_port_id": "pcb_port_236",
- "source_port_id": "pcb_component_62_port_1",
"layer": "bottom",
"port_hints": [
"1"
@@ -6895,11 +6894,10 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_1",
+ "pcb_smtpad_id": "pcb_smtpad_id",
"shape": "polygon",
"pcb_component_id": "pcb_component_62",
"pcb_port_id": "pcb_port_237",
- "source_port_id": "pcb_component_62_port_2",
"layer": "bottom",
"port_hints": [
"2"
@@ -6910,15 +6908,15 @@
"y": -6.870000000000019
},
{
- "x": -5.513000000000028,
+ "x": -5.513000000000034,
"y": -6.870000000000019
},
{
- "x": -5.013000000000028,
+ "x": -5.013000000000034,
"y": -7.620000000000019
},
{
- "x": -5.513000000000028,
+ "x": -5.513000000000034,
"y": -8.370000000000019
},
{
@@ -6929,20 +6927,19 @@
},
{
"type": "pcb_plated_hole",
- "pcb_plated_hole_id": "pcb_plated_hole_0",
+ "pcb_plated_hole_id": "pcb_plated_hole_id",
+ "shape": "circular_hole_with_rect_pad",
"pcb_component_id": "pcb_component_0",
"pcb_port_id": "pcb_port_0",
- "source_port_id": "pcb_component_0_port_1",
"x": -43.18000000000002,
"y": 11.302999999999983,
"port_hints": [
"1"
],
- "shape": "circular_hole_with_rect_pad",
"hole_shape": "circle",
"pad_shape": "rect",
"hole_diameter": 1.2,
- "rect_ccw_rotation": 0,
+ "rect_ccw_rotation": 180,
"rect_pad_width": 2.4,
"rect_pad_height": 2.4,
"hole_offset_x": 0,
@@ -6955,19 +6952,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_1",
+ "shape": "pill",
"pcb_component_id": "pcb_component_0",
"pcb_port_id": "pcb_port_1",
- "source_port_id": "pcb_component_0_port_2",
"x": -68.18000000000002,
"y": 11.302999999999983,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 1.2,
"hole_height": 1.2,
"outer_width": 2.4,
"outer_height": 2.4,
+ "ccw_rotation": 180,
"layers": [
"top",
"bottom"
@@ -6975,16 +6972,15 @@
},
{
"type": "pcb_plated_hole",
- "pcb_plated_hole_id": "pcb_plated_hole_2",
+ "pcb_plated_hole_id": "pcb_plated_hole_id",
+ "shape": "circular_hole_with_rect_pad",
"pcb_component_id": "pcb_component_1",
"pcb_port_id": "pcb_port_2",
- "source_port_id": "pcb_component_1_port_1",
"x": -69.08800000000002,
"y": -1.4210854715202004e-14,
"port_hints": [
"1"
],
- "shape": "circular_hole_with_rect_pad",
"hole_shape": "circle",
"pad_shape": "rect",
"hole_diameter": 1.2,
@@ -7001,19 +6997,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_3",
+ "shape": "pill",
"pcb_component_id": "pcb_component_1",
"pcb_port_id": "pcb_port_3",
- "source_port_id": "pcb_component_1_port_2",
"x": -44.08800000000002,
"y": -1.4210854715202004e-14,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 1.2,
"hole_height": 1.2,
"outer_width": 2.4,
"outer_height": 2.4,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -7022,13 +7018,13 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_4",
+ "shape": "circle",
"pcb_component_id": "pcb_component_8",
"x": 15.23999999999998,
"y": -6.3500000000000085,
"port_hints": [
""
],
- "shape": "circle",
"hole_diameter": 2,
"outer_diameter": 2.8,
"layers": [
@@ -7039,13 +7035,13 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_5",
+ "shape": "circle",
"pcb_component_id": "pcb_component_8",
"x": 43.17999999999998,
"y": 41.90999999999999,
"port_hints": [
""
],
- "shape": "circle",
"hole_diameter": 2,
"outer_diameter": 2.8,
"layers": [
@@ -7056,19 +7052,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_6",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_4",
- "source_port_id": "pcb_component_8_port_1",
"x": 21.589999999999975,
"y": 39.36999999999999,
"port_hints": [
"1"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7077,19 +7073,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_7",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_5",
- "source_port_id": "pcb_component_8_port_2",
"x": 21.589999999999975,
"y": 36.82999999999999,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7098,19 +7094,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_8",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_6",
- "source_port_id": "pcb_component_8_port_3",
"x": 21.589999999999975,
"y": 34.28999999999999,
"port_hints": [
"3"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7119,19 +7115,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_9",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_7",
- "source_port_id": "pcb_component_8_port_4",
"x": 21.589999999999975,
"y": 31.749999999999993,
"port_hints": [
"4"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7140,19 +7136,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_10",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_8",
- "source_port_id": "pcb_component_8_port_5",
"x": 21.589999999999975,
"y": 29.209999999999994,
"port_hints": [
"5"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7161,19 +7157,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_11",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_9",
- "source_port_id": "pcb_component_8_port_6",
"x": 21.589999999999975,
"y": 26.669999999999987,
"port_hints": [
"6"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7182,19 +7178,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_12",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_10",
- "source_port_id": "pcb_component_8_port_7",
"x": 21.589999999999975,
"y": 24.129999999999995,
"port_hints": [
"7"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7203,19 +7199,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_13",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_11",
- "source_port_id": "pcb_component_8_port_8",
"x": 21.589999999999975,
"y": 21.58999999999999,
"port_hints": [
"8"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7224,19 +7220,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_14",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_12",
- "source_port_id": "pcb_component_8_port_9",
"x": 21.589999999999975,
"y": 19.049999999999983,
"port_hints": [
"9"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7245,19 +7241,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_15",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_13",
- "source_port_id": "pcb_component_8_port_10",
"x": 21.589999999999975,
"y": 16.50999999999999,
"port_hints": [
"10"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7266,19 +7262,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_16",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_14",
- "source_port_id": "pcb_component_8_port_11",
"x": 21.589999999999975,
"y": 13.969999999999999,
"port_hints": [
"11"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7287,19 +7283,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_17",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_15",
- "source_port_id": "pcb_component_8_port_12",
"x": 21.589999999999975,
"y": 11.429999999999993,
"port_hints": [
"12"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7308,19 +7304,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_18",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_16",
- "source_port_id": "pcb_component_8_port_13",
"x": 21.589999999999975,
"y": 8.889999999999986,
"port_hints": [
"13"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7329,19 +7325,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_19",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_17",
- "source_port_id": "pcb_component_8_port_14",
"x": 21.589999999999975,
"y": 6.349999999999994,
"port_hints": [
"14"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7350,19 +7346,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_20",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_18",
- "source_port_id": "pcb_component_8_port_15",
"x": 21.589999999999975,
"y": 3.809999999999988,
"port_hints": [
"15"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7371,19 +7367,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_21",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_19",
- "source_port_id": "pcb_component_8_port_16",
"x": 21.589999999999975,
"y": 1.2699999999999818,
"port_hints": [
"16"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7392,19 +7388,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_22",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_20",
- "source_port_id": "pcb_component_8_port_17",
"x": 21.589999999999975,
"y": -1.2700000000000102,
"port_hints": [
"17"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7413,19 +7409,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_23",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_21",
- "source_port_id": "pcb_component_8_port_18",
"x": 21.589999999999975,
"y": -3.8100000000000023,
"port_hints": [
"18"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7434,19 +7430,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_24",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_22",
- "source_port_id": "pcb_component_8_port_19",
"x": 21.589999999999975,
"y": -6.3500000000000085,
"port_hints": [
"19"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7455,19 +7451,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_25",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_23",
- "source_port_id": "pcb_component_8_port_20",
"x": 21.589999999999975,
"y": -8.890000000000015,
"port_hints": [
"20"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7476,19 +7472,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_26",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_24",
- "source_port_id": "pcb_component_8_port_21",
"x": 36.829999999999984,
"y": -8.890000000000015,
"port_hints": [
"21"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7497,19 +7493,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_27",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_25",
- "source_port_id": "pcb_component_8_port_22",
"x": 36.829999999999984,
"y": -6.3500000000000085,
"port_hints": [
"22"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7518,19 +7514,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_28",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_26",
- "source_port_id": "pcb_component_8_port_23",
"x": 36.829999999999984,
"y": -3.8100000000000023,
"port_hints": [
"23"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7539,19 +7535,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_29",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_27",
- "source_port_id": "pcb_component_8_port_24",
"x": 36.829999999999984,
"y": -1.2700000000000102,
"port_hints": [
"24"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7560,19 +7556,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_30",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_28",
- "source_port_id": "pcb_component_8_port_25",
"x": 36.829999999999984,
"y": 1.2699999999999818,
"port_hints": [
"25"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7581,19 +7577,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_31",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_29",
- "source_port_id": "pcb_component_8_port_26",
"x": 36.829999999999984,
"y": 3.809999999999988,
"port_hints": [
"26"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7602,19 +7598,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_32",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_30",
- "source_port_id": "pcb_component_8_port_27",
"x": 36.829999999999984,
"y": 6.349999999999994,
"port_hints": [
"27"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7623,19 +7619,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_33",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_31",
- "source_port_id": "pcb_component_8_port_28",
"x": 36.829999999999984,
"y": 8.889999999999986,
"port_hints": [
"28"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7644,19 +7640,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_34",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_32",
- "source_port_id": "pcb_component_8_port_29",
"x": 36.829999999999984,
"y": 11.429999999999993,
"port_hints": [
"29"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7665,19 +7661,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_35",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_33",
- "source_port_id": "pcb_component_8_port_30",
"x": 36.829999999999984,
"y": 13.969999999999999,
"port_hints": [
"30"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7686,19 +7682,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_36",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_34",
- "source_port_id": "pcb_component_8_port_31",
"x": 36.829999999999984,
"y": 16.50999999999999,
"port_hints": [
"31"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7707,19 +7703,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_37",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_35",
- "source_port_id": "pcb_component_8_port_32",
"x": 36.829999999999984,
"y": 19.049999999999983,
"port_hints": [
"32"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7728,19 +7724,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_38",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_36",
- "source_port_id": "pcb_component_8_port_33",
"x": 36.829999999999984,
"y": 21.58999999999999,
"port_hints": [
"33"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7749,19 +7745,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_39",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_37",
- "source_port_id": "pcb_component_8_port_34",
"x": 36.829999999999984,
"y": 24.129999999999995,
"port_hints": [
"34"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7770,19 +7766,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_40",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_38",
- "source_port_id": "pcb_component_8_port_35",
"x": 36.829999999999984,
"y": 26.669999999999987,
"port_hints": [
"35"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7791,19 +7787,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_41",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_39",
- "source_port_id": "pcb_component_8_port_36",
"x": 36.829999999999984,
"y": 29.209999999999994,
"port_hints": [
"36"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7812,19 +7808,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_42",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_40",
- "source_port_id": "pcb_component_8_port_37",
"x": 36.829999999999984,
"y": 31.749999999999993,
"port_hints": [
"37"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7833,19 +7829,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_43",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_41",
- "source_port_id": "pcb_component_8_port_38",
"x": 36.829999999999984,
"y": 34.28999999999999,
"port_hints": [
"38"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7854,19 +7850,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_44",
+ "shape": "pill",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_42",
- "source_port_id": "pcb_component_8_port_39",
"x": 36.829999999999984,
"y": 36.82999999999999,
"port_hints": [
"39"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
- "outer_width": 2.8,
- "outer_height": 1.6,
+ "outer_width": 1.6,
+ "outer_height": 2.8,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -7874,20 +7870,19 @@
},
{
"type": "pcb_plated_hole",
- "pcb_plated_hole_id": "pcb_plated_hole_45",
+ "pcb_plated_hole_id": "pcb_plated_hole_id",
+ "shape": "circular_hole_with_rect_pad",
"pcb_component_id": "pcb_component_8",
"pcb_port_id": "pcb_port_43",
- "source_port_id": "pcb_component_8_port_40",
"x": 36.829999999999984,
"y": 39.36999999999999,
"port_hints": [
"40"
],
- "shape": "circular_hole_with_rect_pad",
"hole_shape": "circle",
"pad_shape": "rect",
"hole_diameter": 1,
- "rect_ccw_rotation": 90,
+ "rect_ccw_rotation": 270,
"rect_pad_width": 1.6,
"rect_pad_height": 2.8,
"hole_offset_x": 0,
@@ -7899,16 +7894,15 @@
},
{
"type": "pcb_plated_hole",
- "pcb_plated_hole_id": "pcb_plated_hole_46",
+ "pcb_plated_hole_id": "pcb_plated_hole_id",
+ "shape": "circular_hole_with_rect_pad",
"pcb_component_id": "pcb_component_9",
"pcb_port_id": "pcb_port_44",
- "source_port_id": "pcb_component_9_port_1",
"x": 25.399999999999977,
"y": -30.480000000000018,
"port_hints": [
"1"
],
- "shape": "circular_hole_with_rect_pad",
"hole_shape": "circle",
"pad_shape": "rect",
"hole_diameter": 0.8,
@@ -7925,19 +7919,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_47",
+ "shape": "pill",
"pcb_component_id": "pcb_component_9",
"pcb_port_id": "pcb_port_45",
- "source_port_id": "pcb_component_9_port_2",
"x": 25.399999999999977,
"y": -33.020000000000024,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -7946,19 +7940,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_48",
+ "shape": "pill",
"pcb_component_id": "pcb_component_9",
"pcb_port_id": "pcb_port_46",
- "source_port_id": "pcb_component_9_port_3",
"x": 25.399999999999977,
"y": -35.56000000000002,
"port_hints": [
"3"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -7967,19 +7961,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_49",
+ "shape": "pill",
"pcb_component_id": "pcb_component_9",
"pcb_port_id": "pcb_port_47",
- "source_port_id": "pcb_component_9_port_4",
"x": 25.399999999999977,
"y": -38.10000000000002,
"port_hints": [
"4"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -7988,19 +7982,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_50",
+ "shape": "pill",
"pcb_component_id": "pcb_component_9",
"pcb_port_id": "pcb_port_48",
- "source_port_id": "pcb_component_9_port_5",
"x": 33.01999999999998,
"y": -38.10000000000002,
"port_hints": [
"5"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8009,19 +8003,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_51",
+ "shape": "pill",
"pcb_component_id": "pcb_component_9",
"pcb_port_id": "pcb_port_49",
- "source_port_id": "pcb_component_9_port_6",
"x": 33.01999999999998,
"y": -35.56000000000002,
"port_hints": [
"6"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8030,19 +8024,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_52",
+ "shape": "pill",
"pcb_component_id": "pcb_component_9",
"pcb_port_id": "pcb_port_50",
- "source_port_id": "pcb_component_9_port_7",
"x": 33.01999999999998,
"y": -33.020000000000024,
"port_hints": [
"7"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8051,19 +8045,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_53",
+ "shape": "pill",
"pcb_component_id": "pcb_component_9",
"pcb_port_id": "pcb_port_51",
- "source_port_id": "pcb_component_9_port_8",
"x": 33.01999999999998,
"y": -30.480000000000018,
"port_hints": [
"8"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8071,16 +8065,15 @@
},
{
"type": "pcb_plated_hole",
- "pcb_plated_hole_id": "pcb_plated_hole_54",
+ "pcb_plated_hole_id": "pcb_plated_hole_id",
+ "shape": "circular_hole_with_rect_pad",
"pcb_component_id": "pcb_component_10",
"pcb_port_id": "pcb_port_52",
- "source_port_id": "pcb_component_10_port_1",
"x": 25.399999999999977,
"y": -19.05000000000001,
"port_hints": [
"1"
],
- "shape": "circular_hole_with_rect_pad",
"hole_shape": "circle",
"pad_shape": "rect",
"hole_diameter": 0.8,
@@ -8097,19 +8090,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_55",
+ "shape": "pill",
"pcb_component_id": "pcb_component_10",
"pcb_port_id": "pcb_port_53",
- "source_port_id": "pcb_component_10_port_2",
"x": 25.399999999999977,
"y": -21.590000000000018,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8118,19 +8111,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_56",
+ "shape": "pill",
"pcb_component_id": "pcb_component_10",
"pcb_port_id": "pcb_port_54",
- "source_port_id": "pcb_component_10_port_3",
"x": 25.399999999999977,
"y": -24.13000000000001,
"port_hints": [
"3"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8139,19 +8132,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_57",
+ "shape": "pill",
"pcb_component_id": "pcb_component_10",
"pcb_port_id": "pcb_port_55",
- "source_port_id": "pcb_component_10_port_4",
"x": 25.399999999999977,
"y": -26.670000000000016,
"port_hints": [
"4"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8160,19 +8153,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_58",
+ "shape": "pill",
"pcb_component_id": "pcb_component_10",
"pcb_port_id": "pcb_port_56",
- "source_port_id": "pcb_component_10_port_5",
"x": 33.01999999999998,
"y": -26.670000000000016,
"port_hints": [
"5"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8181,19 +8174,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_59",
+ "shape": "pill",
"pcb_component_id": "pcb_component_10",
"pcb_port_id": "pcb_port_57",
- "source_port_id": "pcb_component_10_port_6",
"x": 33.01999999999998,
"y": -24.13000000000001,
"port_hints": [
"6"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8202,19 +8195,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_60",
+ "shape": "pill",
"pcb_component_id": "pcb_component_10",
"pcb_port_id": "pcb_port_58",
- "source_port_id": "pcb_component_10_port_7",
"x": 33.01999999999998,
"y": -21.590000000000018,
"port_hints": [
"7"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8223,19 +8216,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_61",
+ "shape": "pill",
"pcb_component_id": "pcb_component_10",
"pcb_port_id": "pcb_port_59",
- "source_port_id": "pcb_component_10_port_8",
"x": 33.01999999999998,
"y": -19.05000000000001,
"port_hints": [
"8"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8243,16 +8236,15 @@
},
{
"type": "pcb_plated_hole",
- "pcb_plated_hole_id": "pcb_plated_hole_62",
+ "pcb_plated_hole_id": "pcb_plated_hole_id",
+ "shape": "circular_hole_with_rect_pad",
"pcb_component_id": "pcb_component_11",
"pcb_port_id": "pcb_port_60",
- "source_port_id": "pcb_component_11_port_1",
"x": -43.18000000000002,
"y": 33.01999999999999,
"port_hints": [
"1"
],
- "shape": "circular_hole_with_rect_pad",
"hole_shape": "circle",
"pad_shape": "rect",
"hole_diameter": 0.8,
@@ -8269,19 +8261,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_63",
+ "shape": "pill",
"pcb_component_id": "pcb_component_11",
"pcb_port_id": "pcb_port_61",
- "source_port_id": "pcb_component_11_port_2",
"x": -43.18000000000002,
"y": 30.47999999999999,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8290,19 +8282,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_64",
+ "shape": "pill",
"pcb_component_id": "pcb_component_11",
"pcb_port_id": "pcb_port_62",
- "source_port_id": "pcb_component_11_port_3",
"x": -43.18000000000002,
"y": 27.93999999999999,
"port_hints": [
"3"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8311,19 +8303,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_65",
+ "shape": "pill",
"pcb_component_id": "pcb_component_11",
"pcb_port_id": "pcb_port_63",
- "source_port_id": "pcb_component_11_port_4",
"x": -43.18000000000002,
"y": 25.39999999999999,
"port_hints": [
"4"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8332,19 +8324,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_66",
+ "shape": "pill",
"pcb_component_id": "pcb_component_11",
"pcb_port_id": "pcb_port_64",
- "source_port_id": "pcb_component_11_port_5",
"x": -35.56000000000002,
"y": 25.39999999999999,
"port_hints": [
"5"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8353,19 +8345,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_67",
+ "shape": "pill",
"pcb_component_id": "pcb_component_11",
"pcb_port_id": "pcb_port_65",
- "source_port_id": "pcb_component_11_port_6",
"x": -35.56000000000002,
"y": 27.93999999999999,
"port_hints": [
"6"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8374,19 +8366,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_68",
+ "shape": "pill",
"pcb_component_id": "pcb_component_11",
"pcb_port_id": "pcb_port_66",
- "source_port_id": "pcb_component_11_port_7",
"x": -35.56000000000002,
"y": 30.47999999999999,
"port_hints": [
"7"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8395,19 +8387,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_69",
+ "shape": "pill",
"pcb_component_id": "pcb_component_11",
"pcb_port_id": "pcb_port_67",
- "source_port_id": "pcb_component_11_port_8",
"x": -35.56000000000002,
"y": 33.01999999999999,
"port_hints": [
"8"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8415,16 +8407,15 @@
},
{
"type": "pcb_plated_hole",
- "pcb_plated_hole_id": "pcb_plated_hole_70",
+ "pcb_plated_hole_id": "pcb_plated_hole_id",
+ "shape": "circular_hole_with_rect_pad",
"pcb_component_id": "pcb_component_12",
"pcb_port_id": "pcb_port_68",
- "source_port_id": "pcb_component_12_port_1",
"x": 53.974999999999994,
"y": 39.36999999999999,
"port_hints": [
"1"
],
- "shape": "circular_hole_with_rect_pad",
"hole_shape": "circle",
"pad_shape": "rect",
"hole_diameter": 0.8,
@@ -8441,19 +8432,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_71",
+ "shape": "pill",
"pcb_component_id": "pcb_component_12",
"pcb_port_id": "pcb_port_69",
- "source_port_id": "pcb_component_12_port_2",
"x": 53.974999999999994,
"y": 36.82999999999999,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8462,19 +8453,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_72",
+ "shape": "pill",
"pcb_component_id": "pcb_component_12",
"pcb_port_id": "pcb_port_70",
- "source_port_id": "pcb_component_12_port_3",
"x": 53.974999999999994,
"y": 34.28999999999999,
"port_hints": [
"3"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8483,19 +8474,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_73",
+ "shape": "pill",
"pcb_component_id": "pcb_component_12",
"pcb_port_id": "pcb_port_71",
- "source_port_id": "pcb_component_12_port_4",
"x": 53.974999999999994,
"y": 31.749999999999993,
"port_hints": [
"4"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8504,19 +8495,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_74",
+ "shape": "pill",
"pcb_component_id": "pcb_component_12",
"pcb_port_id": "pcb_port_72",
- "source_port_id": "pcb_component_12_port_5",
"x": 53.974999999999994,
"y": 29.209999999999994,
"port_hints": [
"5"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8525,19 +8516,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_75",
+ "shape": "pill",
"pcb_component_id": "pcb_component_12",
"pcb_port_id": "pcb_port_73",
- "source_port_id": "pcb_component_12_port_6",
"x": 53.974999999999994,
"y": 26.669999999999987,
"port_hints": [
"6"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8546,19 +8537,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_76",
+ "shape": "pill",
"pcb_component_id": "pcb_component_12",
"pcb_port_id": "pcb_port_74",
- "source_port_id": "pcb_component_12_port_7",
"x": 53.974999999999994,
"y": 24.129999999999995,
"port_hints": [
"7"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8567,19 +8558,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_77",
+ "shape": "pill",
"pcb_component_id": "pcb_component_12",
"pcb_port_id": "pcb_port_75",
- "source_port_id": "pcb_component_12_port_8",
"x": 53.974999999999994,
"y": 21.58999999999999,
"port_hints": [
"8"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8588,19 +8579,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_78",
+ "shape": "pill",
"pcb_component_id": "pcb_component_12",
"pcb_port_id": "pcb_port_76",
- "source_port_id": "pcb_component_12_port_9",
"x": 53.974999999999994,
"y": 19.049999999999983,
"port_hints": [
"9"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8609,19 +8600,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_79",
+ "shape": "pill",
"pcb_component_id": "pcb_component_12",
"pcb_port_id": "pcb_port_77",
- "source_port_id": "pcb_component_12_port_10",
"x": 53.974999999999994,
"y": 16.50999999999999,
"port_hints": [
"10"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8630,19 +8621,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_80",
+ "shape": "pill",
"pcb_component_id": "pcb_component_12",
"pcb_port_id": "pcb_port_78",
- "source_port_id": "pcb_component_12_port_11",
"x": 53.974999999999994,
"y": 13.969999999999999,
"port_hints": [
"11"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8651,19 +8642,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_81",
+ "shape": "pill",
"pcb_component_id": "pcb_component_12",
"pcb_port_id": "pcb_port_79",
- "source_port_id": "pcb_component_12_port_12",
"x": 53.974999999999994,
"y": 11.429999999999993,
"port_hints": [
"12"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8672,19 +8663,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_82",
+ "shape": "pill",
"pcb_component_id": "pcb_component_12",
"pcb_port_id": "pcb_port_80",
- "source_port_id": "pcb_component_12_port_13",
"x": 53.974999999999994,
"y": 8.889999999999986,
"port_hints": [
"13"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8693,19 +8684,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_83",
+ "shape": "pill",
"pcb_component_id": "pcb_component_12",
"pcb_port_id": "pcb_port_81",
- "source_port_id": "pcb_component_12_port_14",
"x": 53.974999999999994,
"y": 6.349999999999994,
"port_hints": [
"14"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8714,19 +8705,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_84",
+ "shape": "pill",
"pcb_component_id": "pcb_component_12",
"pcb_port_id": "pcb_port_82",
- "source_port_id": "pcb_component_12_port_15",
"x": 61.595,
"y": 6.349999999999994,
"port_hints": [
"15"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8735,19 +8726,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_85",
+ "shape": "pill",
"pcb_component_id": "pcb_component_12",
"pcb_port_id": "pcb_port_83",
- "source_port_id": "pcb_component_12_port_16",
"x": 61.595,
"y": 8.889999999999986,
"port_hints": [
"16"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8756,19 +8747,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_86",
+ "shape": "pill",
"pcb_component_id": "pcb_component_12",
"pcb_port_id": "pcb_port_84",
- "source_port_id": "pcb_component_12_port_17",
"x": 61.595,
"y": 11.429999999999993,
"port_hints": [
"17"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8777,19 +8768,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_87",
+ "shape": "pill",
"pcb_component_id": "pcb_component_12",
"pcb_port_id": "pcb_port_85",
- "source_port_id": "pcb_component_12_port_18",
"x": 61.595,
"y": 13.969999999999999,
"port_hints": [
"18"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8798,19 +8789,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_88",
+ "shape": "pill",
"pcb_component_id": "pcb_component_12",
"pcb_port_id": "pcb_port_86",
- "source_port_id": "pcb_component_12_port_19",
"x": 61.595,
"y": 16.50999999999999,
"port_hints": [
"19"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8819,19 +8810,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_89",
+ "shape": "pill",
"pcb_component_id": "pcb_component_12",
"pcb_port_id": "pcb_port_87",
- "source_port_id": "pcb_component_12_port_20",
"x": 61.595,
"y": 19.049999999999983,
"port_hints": [
"20"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8840,19 +8831,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_90",
+ "shape": "pill",
"pcb_component_id": "pcb_component_12",
"pcb_port_id": "pcb_port_88",
- "source_port_id": "pcb_component_12_port_21",
"x": 61.595,
"y": 21.58999999999999,
"port_hints": [
"21"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8861,19 +8852,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_91",
+ "shape": "pill",
"pcb_component_id": "pcb_component_12",
"pcb_port_id": "pcb_port_89",
- "source_port_id": "pcb_component_12_port_22",
"x": 61.595,
"y": 24.129999999999995,
"port_hints": [
"22"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8882,19 +8873,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_92",
+ "shape": "pill",
"pcb_component_id": "pcb_component_12",
"pcb_port_id": "pcb_port_90",
- "source_port_id": "pcb_component_12_port_23",
"x": 61.595,
"y": 26.669999999999987,
"port_hints": [
"23"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8903,19 +8894,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_93",
+ "shape": "pill",
"pcb_component_id": "pcb_component_12",
"pcb_port_id": "pcb_port_91",
- "source_port_id": "pcb_component_12_port_24",
"x": 61.595,
"y": 29.209999999999994,
"port_hints": [
"24"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8924,19 +8915,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_94",
+ "shape": "pill",
"pcb_component_id": "pcb_component_12",
"pcb_port_id": "pcb_port_92",
- "source_port_id": "pcb_component_12_port_25",
"x": 61.595,
"y": 31.749999999999993,
"port_hints": [
"25"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8945,19 +8936,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_95",
+ "shape": "pill",
"pcb_component_id": "pcb_component_12",
"pcb_port_id": "pcb_port_93",
- "source_port_id": "pcb_component_12_port_26",
"x": 61.595,
"y": 34.28999999999999,
"port_hints": [
"26"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8966,19 +8957,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_96",
+ "shape": "pill",
"pcb_component_id": "pcb_component_12",
"pcb_port_id": "pcb_port_94",
- "source_port_id": "pcb_component_12_port_27",
"x": 61.595,
"y": 36.82999999999999,
"port_hints": [
"27"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -8987,19 +8978,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_97",
+ "shape": "pill",
"pcb_component_id": "pcb_component_12",
"pcb_port_id": "pcb_port_95",
- "source_port_id": "pcb_component_12_port_28",
"x": 61.595,
"y": 39.36999999999999,
"port_hints": [
"28"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -9007,16 +8998,15 @@
},
{
"type": "pcb_plated_hole",
- "pcb_plated_hole_id": "pcb_plated_hole_98",
+ "pcb_plated_hole_id": "pcb_plated_hole_id",
+ "shape": "circular_hole_with_rect_pad",
"pcb_component_id": "pcb_component_13",
"pcb_port_id": "pcb_port_96",
- "source_port_id": "pcb_component_13_port_1",
"x": 54.228999999999985,
"y": -17.780000000000015,
"port_hints": [
"1"
],
- "shape": "circular_hole_with_rect_pad",
"hole_shape": "circle",
"pad_shape": "rect",
"hole_diameter": 0.8,
@@ -9033,19 +9023,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_99",
+ "shape": "pill",
"pcb_component_id": "pcb_component_13",
"pcb_port_id": "pcb_port_97",
- "source_port_id": "pcb_component_13_port_2",
"x": 54.228999999999985,
"y": -20.32000000000002,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -9054,19 +9044,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_100",
+ "shape": "pill",
"pcb_component_id": "pcb_component_13",
"pcb_port_id": "pcb_port_98",
- "source_port_id": "pcb_component_13_port_3",
"x": 54.228999999999985,
"y": -22.860000000000014,
"port_hints": [
"3"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -9075,19 +9065,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_101",
+ "shape": "pill",
"pcb_component_id": "pcb_component_13",
"pcb_port_id": "pcb_port_99",
- "source_port_id": "pcb_component_13_port_4",
"x": 54.228999999999985,
"y": -25.40000000000002,
"port_hints": [
"4"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -9096,19 +9086,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_102",
+ "shape": "pill",
"pcb_component_id": "pcb_component_13",
"pcb_port_id": "pcb_port_100",
- "source_port_id": "pcb_component_13_port_5",
"x": 54.228999999999985,
"y": -27.940000000000012,
"port_hints": [
"5"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -9117,19 +9107,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_103",
+ "shape": "pill",
"pcb_component_id": "pcb_component_13",
"pcb_port_id": "pcb_port_101",
- "source_port_id": "pcb_component_13_port_6",
"x": 54.228999999999985,
"y": -30.480000000000018,
"port_hints": [
"6"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -9138,19 +9128,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_104",
+ "shape": "pill",
"pcb_component_id": "pcb_component_13",
"pcb_port_id": "pcb_port_102",
- "source_port_id": "pcb_component_13_port_7",
"x": 54.228999999999985,
"y": -33.02000000000001,
"port_hints": [
"7"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -9159,19 +9149,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_105",
+ "shape": "pill",
"pcb_component_id": "pcb_component_13",
"pcb_port_id": "pcb_port_103",
- "source_port_id": "pcb_component_13_port_8",
"x": 54.228999999999985,
"y": -35.56000000000002,
"port_hints": [
"8"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -9180,19 +9170,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_106",
+ "shape": "pill",
"pcb_component_id": "pcb_component_13",
"pcb_port_id": "pcb_port_104",
- "source_port_id": "pcb_component_13_port_9",
"x": 54.228999999999985,
"y": -38.10000000000002,
"port_hints": [
"9"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -9201,19 +9191,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_107",
+ "shape": "pill",
"pcb_component_id": "pcb_component_13",
"pcb_port_id": "pcb_port_105",
- "source_port_id": "pcb_component_13_port_10",
"x": 61.84899999999999,
"y": -38.10000000000002,
"port_hints": [
"10"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -9222,19 +9212,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_108",
+ "shape": "pill",
"pcb_component_id": "pcb_component_13",
"pcb_port_id": "pcb_port_106",
- "source_port_id": "pcb_component_13_port_11",
"x": 61.84899999999999,
"y": -35.56000000000002,
"port_hints": [
"11"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -9243,19 +9233,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_109",
+ "shape": "pill",
"pcb_component_id": "pcb_component_13",
"pcb_port_id": "pcb_port_107",
- "source_port_id": "pcb_component_13_port_12",
"x": 61.84899999999999,
"y": -33.02000000000001,
"port_hints": [
"12"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -9264,19 +9254,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_110",
+ "shape": "pill",
"pcb_component_id": "pcb_component_13",
"pcb_port_id": "pcb_port_108",
- "source_port_id": "pcb_component_13_port_13",
"x": 61.84899999999999,
"y": -30.480000000000018,
"port_hints": [
"13"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -9285,19 +9275,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_111",
+ "shape": "pill",
"pcb_component_id": "pcb_component_13",
"pcb_port_id": "pcb_port_109",
- "source_port_id": "pcb_component_13_port_14",
"x": 61.84899999999999,
"y": -27.940000000000012,
"port_hints": [
"14"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -9306,19 +9296,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_112",
+ "shape": "pill",
"pcb_component_id": "pcb_component_13",
"pcb_port_id": "pcb_port_110",
- "source_port_id": "pcb_component_13_port_15",
"x": 61.84899999999999,
"y": -25.40000000000002,
"port_hints": [
"15"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -9327,19 +9317,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_113",
+ "shape": "pill",
"pcb_component_id": "pcb_component_13",
"pcb_port_id": "pcb_port_111",
- "source_port_id": "pcb_component_13_port_16",
"x": 61.84899999999999,
"y": -22.860000000000014,
"port_hints": [
"16"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -9348,19 +9338,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_114",
+ "shape": "pill",
"pcb_component_id": "pcb_component_13",
"pcb_port_id": "pcb_port_112",
- "source_port_id": "pcb_component_13_port_17",
"x": 61.84899999999999,
"y": -20.32000000000002,
"port_hints": [
"17"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -9369,19 +9359,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_115",
+ "shape": "pill",
"pcb_component_id": "pcb_component_13",
"pcb_port_id": "pcb_port_113",
- "source_port_id": "pcb_component_13_port_18",
"x": 61.84899999999999,
"y": -17.780000000000015,
"port_hints": [
"18"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -9389,20 +9379,19 @@
},
{
"type": "pcb_plated_hole",
- "pcb_plated_hole_id": "pcb_plated_hole_116",
+ "pcb_plated_hole_id": "pcb_plated_hole_id",
+ "shape": "circular_hole_with_rect_pad",
"pcb_component_id": "pcb_component_14",
"pcb_port_id": "pcb_port_114",
- "source_port_id": "pcb_component_14_port_1",
"x": -38.10000000000002,
"y": -29.210000000000008,
"port_hints": [
"1"
],
- "shape": "circular_hole_with_rect_pad",
"hole_shape": "circle",
"pad_shape": "rect",
"hole_diameter": 0.8,
- "rect_ccw_rotation": 180,
+ "rect_ccw_rotation": 90,
"rect_pad_width": 2.4,
"rect_pad_height": 1.6,
"hole_offset_x": 0,
@@ -9415,19 +9404,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_117",
+ "shape": "pill",
"pcb_component_id": "pcb_component_14",
"pcb_port_id": "pcb_port_115",
- "source_port_id": "pcb_component_14_port_2",
"x": -35.56000000000002,
"y": -29.210000000000008,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 90,
"layers": [
"top",
"bottom"
@@ -9436,19 +9425,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_118",
+ "shape": "pill",
"pcb_component_id": "pcb_component_14",
"pcb_port_id": "pcb_port_116",
- "source_port_id": "pcb_component_14_port_3",
"x": -33.020000000000024,
"y": -29.210000000000008,
"port_hints": [
"3"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 90,
"layers": [
"top",
"bottom"
@@ -9457,19 +9446,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_119",
+ "shape": "pill",
"pcb_component_id": "pcb_component_14",
"pcb_port_id": "pcb_port_117",
- "source_port_id": "pcb_component_14_port_4",
"x": -30.480000000000018,
"y": -29.210000000000008,
"port_hints": [
"4"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 90,
"layers": [
"top",
"bottom"
@@ -9478,19 +9467,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_120",
+ "shape": "pill",
"pcb_component_id": "pcb_component_14",
"pcb_port_id": "pcb_port_118",
- "source_port_id": "pcb_component_14_port_5",
"x": -27.940000000000026,
"y": -29.210000000000008,
"port_hints": [
"5"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 90,
"layers": [
"top",
"bottom"
@@ -9499,19 +9488,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_121",
+ "shape": "pill",
"pcb_component_id": "pcb_component_14",
"pcb_port_id": "pcb_port_119",
- "source_port_id": "pcb_component_14_port_6",
"x": -25.400000000000034,
"y": -29.210000000000008,
"port_hints": [
"6"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 90,
"layers": [
"top",
"bottom"
@@ -9520,19 +9509,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_122",
+ "shape": "pill",
"pcb_component_id": "pcb_component_14",
"pcb_port_id": "pcb_port_120",
- "source_port_id": "pcb_component_14_port_7",
"x": -22.860000000000014,
"y": -29.210000000000008,
"port_hints": [
"7"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 90,
"layers": [
"top",
"bottom"
@@ -9541,19 +9530,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_123",
+ "shape": "pill",
"pcb_component_id": "pcb_component_14",
"pcb_port_id": "pcb_port_121",
- "source_port_id": "pcb_component_14_port_8",
"x": -22.860000000000014,
"y": -21.590000000000003,
"port_hints": [
"8"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 90,
"layers": [
"top",
"bottom"
@@ -9562,19 +9551,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_124",
+ "shape": "pill",
"pcb_component_id": "pcb_component_14",
"pcb_port_id": "pcb_port_122",
- "source_port_id": "pcb_component_14_port_9",
"x": -25.400000000000034,
"y": -21.590000000000003,
"port_hints": [
"9"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 90,
"layers": [
"top",
"bottom"
@@ -9583,19 +9572,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_125",
+ "shape": "pill",
"pcb_component_id": "pcb_component_14",
"pcb_port_id": "pcb_port_123",
- "source_port_id": "pcb_component_14_port_10",
"x": -27.940000000000026,
"y": -21.590000000000003,
"port_hints": [
"10"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 90,
"layers": [
"top",
"bottom"
@@ -9604,19 +9593,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_126",
+ "shape": "pill",
"pcb_component_id": "pcb_component_14",
"pcb_port_id": "pcb_port_124",
- "source_port_id": "pcb_component_14_port_11",
"x": -30.480000000000018,
"y": -21.590000000000003,
"port_hints": [
"11"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 90,
"layers": [
"top",
"bottom"
@@ -9625,19 +9614,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_127",
+ "shape": "pill",
"pcb_component_id": "pcb_component_14",
"pcb_port_id": "pcb_port_125",
- "source_port_id": "pcb_component_14_port_12",
"x": -33.020000000000024,
"y": -21.590000000000003,
"port_hints": [
"12"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 90,
"layers": [
"top",
"bottom"
@@ -9646,19 +9635,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_128",
+ "shape": "pill",
"pcb_component_id": "pcb_component_14",
"pcb_port_id": "pcb_port_126",
- "source_port_id": "pcb_component_14_port_13",
"x": -35.56000000000002,
"y": -21.590000000000003,
"port_hints": [
"13"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 90,
"layers": [
"top",
"bottom"
@@ -9667,19 +9656,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_129",
+ "shape": "pill",
"pcb_component_id": "pcb_component_14",
"pcb_port_id": "pcb_port_127",
- "source_port_id": "pcb_component_14_port_14",
"x": -38.10000000000002,
"y": -21.590000000000003,
"port_hints": [
"14"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 2.4,
"outer_height": 1.6,
+ "ccw_rotation": 90,
"layers": [
"top",
"bottom"
@@ -9687,20 +9676,19 @@
},
{
"type": "pcb_plated_hole",
- "pcb_plated_hole_id": "pcb_plated_hole_130",
+ "pcb_plated_hole_id": "pcb_plated_hole_id",
+ "shape": "circular_hole_with_rect_pad",
"pcb_component_id": "pcb_component_15",
"pcb_port_id": "pcb_port_128",
- "source_port_id": "pcb_component_15_port_1",
"x": -45.72000000000001,
"y": -28.067000000000007,
"port_hints": [
"1"
],
- "shape": "circular_hole_with_rect_pad",
"hole_shape": "circle",
"pad_shape": "rect",
"hole_diameter": 0.8,
- "rect_ccw_rotation": 0,
+ "rect_ccw_rotation": 180,
"rect_pad_width": 1.6,
"rect_pad_height": 1.6,
"hole_offset_x": 0,
@@ -9713,19 +9701,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_131",
+ "shape": "pill",
"pcb_component_id": "pcb_component_15",
"pcb_port_id": "pcb_port_129",
- "source_port_id": "pcb_component_15_port_2",
"x": -53.34000000000002,
"y": -28.067000000000007,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 1.6,
"outer_height": 1.6,
+ "ccw_rotation": 180,
"layers": [
"top",
"bottom"
@@ -9733,20 +9721,19 @@
},
{
"type": "pcb_plated_hole",
- "pcb_plated_hole_id": "pcb_plated_hole_132",
+ "pcb_plated_hole_id": "pcb_plated_hole_id",
+ "shape": "circular_hole_with_rect_pad",
"pcb_component_id": "pcb_component_16",
"pcb_port_id": "pcb_port_130",
- "source_port_id": "pcb_component_16_port_1",
"x": -45.72000000000001,
"y": -31.750000000000014,
"port_hints": [
"1"
],
- "shape": "circular_hole_with_rect_pad",
"hole_shape": "circle",
"pad_shape": "rect",
"hole_diameter": 0.8,
- "rect_ccw_rotation": 0,
+ "rect_ccw_rotation": 180,
"rect_pad_width": 1.6,
"rect_pad_height": 1.6,
"hole_offset_x": 0,
@@ -9759,19 +9746,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_133",
+ "shape": "pill",
"pcb_component_id": "pcb_component_16",
"pcb_port_id": "pcb_port_131",
- "source_port_id": "pcb_component_16_port_2",
"x": -53.34000000000002,
"y": -31.750000000000014,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 1.6,
"outer_height": 1.6,
+ "ccw_rotation": 180,
"layers": [
"top",
"bottom"
@@ -9779,20 +9766,19 @@
},
{
"type": "pcb_plated_hole",
- "pcb_plated_hole_id": "pcb_plated_hole_134",
+ "pcb_plated_hole_id": "pcb_plated_hole_id",
+ "shape": "circular_hole_with_rect_pad",
"pcb_component_id": "pcb_component_17",
"pcb_port_id": "pcb_port_132",
- "source_port_id": "pcb_component_17_port_1",
"x": -45.72000000000001,
"y": -21.717000000000013,
"port_hints": [
"1"
],
- "shape": "circular_hole_with_rect_pad",
"hole_shape": "circle",
"pad_shape": "rect",
"hole_diameter": 0.8,
- "rect_ccw_rotation": 0,
+ "rect_ccw_rotation": 180,
"rect_pad_width": 1.6,
"rect_pad_height": 1.6,
"hole_offset_x": 0,
@@ -9805,19 +9791,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_135",
+ "shape": "pill",
"pcb_component_id": "pcb_component_17",
"pcb_port_id": "pcb_port_133",
- "source_port_id": "pcb_component_17_port_2",
"x": -53.34000000000002,
"y": -21.717000000000013,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 1.6,
"outer_height": 1.6,
+ "ccw_rotation": 180,
"layers": [
"top",
"bottom"
@@ -9825,20 +9811,19 @@
},
{
"type": "pcb_plated_hole",
- "pcb_plated_hole_id": "pcb_plated_hole_136",
+ "pcb_plated_hole_id": "pcb_plated_hole_id",
+ "shape": "circular_hole_with_rect_pad",
"pcb_component_id": "pcb_component_18",
"pcb_port_id": "pcb_port_134",
- "source_port_id": "pcb_component_18_port_1",
"x": -45.72000000000001,
"y": -18.415000000000006,
"port_hints": [
"1"
],
- "shape": "circular_hole_with_rect_pad",
"hole_shape": "circle",
"pad_shape": "rect",
"hole_diameter": 0.8,
- "rect_ccw_rotation": 0,
+ "rect_ccw_rotation": 180,
"rect_pad_width": 1.6,
"rect_pad_height": 1.6,
"hole_offset_x": 0,
@@ -9851,19 +9836,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_137",
+ "shape": "pill",
"pcb_component_id": "pcb_component_18",
"pcb_port_id": "pcb_port_135",
- "source_port_id": "pcb_component_18_port_2",
"x": -53.34000000000002,
"y": -18.415000000000006,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 1.6,
"outer_height": 1.6,
+ "ccw_rotation": 180,
"layers": [
"top",
"bottom"
@@ -9871,16 +9856,15 @@
},
{
"type": "pcb_plated_hole",
- "pcb_plated_hole_id": "pcb_plated_hole_138",
+ "pcb_plated_hole_id": "pcb_plated_hole_id",
+ "shape": "circular_hole_with_rect_pad",
"pcb_component_id": "pcb_component_19",
"pcb_port_id": "pcb_port_136",
- "source_port_id": "pcb_component_19_port_1",
"x": -14.605000000000018,
"y": 9.524999999999991,
"port_hints": [
"1"
],
- "shape": "circular_hole_with_rect_pad",
"hole_shape": "circle",
"pad_shape": "rect",
"hole_diameter": 0.8,
@@ -9897,19 +9881,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_139",
+ "shape": "pill",
"pcb_component_id": "pcb_component_19",
"pcb_port_id": "pcb_port_137",
- "source_port_id": "pcb_component_19_port_2",
"x": -6.985000000000014,
"y": 9.524999999999991,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 1.6,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -9917,20 +9901,19 @@
},
{
"type": "pcb_plated_hole",
- "pcb_plated_hole_id": "pcb_plated_hole_140",
+ "pcb_plated_hole_id": "pcb_plated_hole_id",
+ "shape": "circular_hole_with_rect_pad",
"pcb_component_id": "pcb_component_20",
"pcb_port_id": "pcb_port_138",
- "source_port_id": "pcb_component_20_port_1",
"x": -45.72000000000001,
"y": -25.146000000000015,
"port_hints": [
"1"
],
- "shape": "circular_hole_with_rect_pad",
"hole_shape": "circle",
"pad_shape": "rect",
"hole_diameter": 0.8,
- "rect_ccw_rotation": 0,
+ "rect_ccw_rotation": 180,
"rect_pad_width": 1.6,
"rect_pad_height": 1.6,
"hole_offset_x": 0,
@@ -9943,19 +9926,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_141",
+ "shape": "pill",
"pcb_component_id": "pcb_component_20",
"pcb_port_id": "pcb_port_139",
- "source_port_id": "pcb_component_20_port_2",
"x": -53.34000000000002,
"y": -25.146000000000015,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 1.6,
"outer_height": 1.6,
+ "ccw_rotation": 180,
"layers": [
"top",
"bottom"
@@ -9963,20 +9946,19 @@
},
{
"type": "pcb_plated_hole",
- "pcb_plated_hole_id": "pcb_plated_hole_142",
+ "pcb_plated_hole_id": "pcb_plated_hole_id",
+ "shape": "circular_hole_with_rect_pad",
"pcb_component_id": "pcb_component_21",
"pcb_port_id": "pcb_port_140",
- "source_port_id": "pcb_component_21_port_1",
"x": -45.72000000000001,
"y": -34.92500000000001,
"port_hints": [
"1"
],
- "shape": "circular_hole_with_rect_pad",
"hole_shape": "circle",
"pad_shape": "rect",
"hole_diameter": 0.8,
- "rect_ccw_rotation": 0,
+ "rect_ccw_rotation": 180,
"rect_pad_width": 1.6,
"rect_pad_height": 1.6,
"hole_offset_x": 0,
@@ -9989,19 +9971,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_143",
+ "shape": "pill",
"pcb_component_id": "pcb_component_21",
"pcb_port_id": "pcb_port_141",
- "source_port_id": "pcb_component_21_port_2",
"x": -53.34000000000002,
"y": -34.92500000000001,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 1.6,
"outer_height": 1.6,
+ "ccw_rotation": 180,
"layers": [
"top",
"bottom"
@@ -10010,15 +9992,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_144",
+ "shape": "circle",
"pcb_component_id": "pcb_component_22",
"pcb_port_id": "pcb_port_142",
- "source_port_id": "pcb_component_22_port_0",
"x": -72.49000000000002,
"y": -11.990000000000009,
"port_hints": [
"0"
],
- "shape": "circle",
"hole_diameter": 3.2,
"outer_diameter": 4,
"layers": [
@@ -10029,15 +10010,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_145",
+ "shape": "circle",
"pcb_component_id": "pcb_component_22",
"pcb_port_id": "pcb_port_143",
- "source_port_id": "pcb_component_22_port_0",
"x": -72.49000000000002,
"y": -36.99000000000001,
"port_hints": [
"0"
],
- "shape": "circle",
"hole_diameter": 3.2,
"outer_diameter": 4,
"layers": [
@@ -10047,20 +10027,19 @@
},
{
"type": "pcb_plated_hole",
- "pcb_plated_hole_id": "pcb_plated_hole_146",
+ "pcb_plated_hole_id": "pcb_plated_hole_id",
+ "shape": "circular_hole_with_rect_pad",
"pcb_component_id": "pcb_component_22",
"pcb_port_id": "pcb_port_144",
- "source_port_id": "pcb_component_22_port_1",
"x": -71.07000000000002,
"y": -30.030000000000015,
"port_hints": [
"1"
],
- "shape": "circular_hole_with_rect_pad",
"hole_shape": "circle",
"pad_shape": "rect",
"hole_diameter": 1,
- "rect_ccw_rotation": 180,
+ "rect_ccw_rotation": 270,
"rect_pad_width": 1.6,
"rect_pad_height": 1.6,
"hole_offset_x": 0,
@@ -10073,15 +10052,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_147",
+ "shape": "circle",
"pcb_component_id": "pcb_component_22",
"pcb_port_id": "pcb_port_145",
- "source_port_id": "pcb_component_22_port_2",
"x": -71.07000000000002,
"y": -27.26000000000002,
"port_hints": [
"2"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.6,
"layers": [
@@ -10092,15 +10070,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_148",
+ "shape": "circle",
"pcb_component_id": "pcb_component_22",
"pcb_port_id": "pcb_port_146",
- "source_port_id": "pcb_component_22_port_3",
"x": -71.07000000000002,
"y": -24.49000000000001,
"port_hints": [
"3"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.6,
"layers": [
@@ -10111,15 +10088,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_149",
+ "shape": "circle",
"pcb_component_id": "pcb_component_22",
"pcb_port_id": "pcb_port_147",
- "source_port_id": "pcb_component_22_port_4",
"x": -71.07000000000002,
"y": -21.720000000000013,
"port_hints": [
"4"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.6,
"layers": [
@@ -10130,15 +10106,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_150",
+ "shape": "circle",
"pcb_component_id": "pcb_component_22",
"pcb_port_id": "pcb_port_148",
- "source_port_id": "pcb_component_22_port_5",
"x": -71.07000000000002,
"y": -18.950000000000017,
"port_hints": [
"5"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.6,
"layers": [
@@ -10149,15 +10124,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_151",
+ "shape": "circle",
"pcb_component_id": "pcb_component_22",
"pcb_port_id": "pcb_port_149",
- "source_port_id": "pcb_component_22_port_6",
"x": -73.91000000000003,
"y": -28.64500000000001,
"port_hints": [
"6"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.6,
"layers": [
@@ -10168,15 +10142,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_152",
+ "shape": "circle",
"pcb_component_id": "pcb_component_22",
"pcb_port_id": "pcb_port_150",
- "source_port_id": "pcb_component_22_port_7",
"x": -73.91000000000003,
"y": -25.875000000000014,
"port_hints": [
"7"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.6,
"layers": [
@@ -10187,15 +10160,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_153",
+ "shape": "circle",
"pcb_component_id": "pcb_component_22",
"pcb_port_id": "pcb_port_151",
- "source_port_id": "pcb_component_22_port_8",
"x": -73.91000000000003,
"y": -23.105000000000018,
"port_hints": [
"8"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.6,
"layers": [
@@ -10206,15 +10178,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_154",
+ "shape": "circle",
"pcb_component_id": "pcb_component_22",
"pcb_port_id": "pcb_port_152",
- "source_port_id": "pcb_component_22_port_9",
"x": -73.91000000000003,
"y": -20.335000000000008,
"port_hints": [
"9"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.6,
"layers": [
@@ -10224,42 +10195,40 @@
},
{
"type": "pcb_plated_hole",
- "pcb_plated_hole_id": "pcb_plated_hole_155",
+ "pcb_plated_hole_id": "pcb_plated_hole_id",
+ "shape": "circular_hole_with_rect_pad",
"pcb_component_id": "pcb_component_23",
"pcb_port_id": "pcb_port_153",
- "source_port_id": "pcb_component_23_port_1",
"x": -11.430000000000007,
"y": -7.620000000000019,
"port_hints": [
"1"
],
- "shape": "circular_hole_with_rect_pad",
"hole_shape": "circle",
"pad_shape": "rect",
"hole_diameter": 0.75,
"rect_ccw_rotation": 0,
"rect_pad_width": 1.3,
"rect_pad_height": 1.3,
- "rect_border_radius": 0.1625,
"hole_offset_x": 0,
"hole_offset_y": 0,
"layers": [
"top",
"bottom"
- ]
+ ],
+ "rect_border_radius": 0.1625
},
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_156",
+ "shape": "circle",
"pcb_component_id": "pcb_component_23",
"pcb_port_id": "pcb_port_154",
- "source_port_id": "pcb_component_23_port_2",
"x": -10.159999999999997,
"y": -6.350000000000023,
"port_hints": [
"2"
],
- "shape": "circle",
"hole_diameter": 0.75,
"outer_diameter": 1.3,
"layers": [
@@ -10270,15 +10239,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_157",
+ "shape": "circle",
"pcb_component_id": "pcb_component_23",
"pcb_port_id": "pcb_port_155",
- "source_port_id": "pcb_component_23_port_3",
"x": -8.890000000000015,
"y": -7.620000000000019,
"port_hints": [
"3"
],
- "shape": "circle",
"hole_diameter": 0.75,
"outer_diameter": 1.3,
"layers": [
@@ -10288,42 +10256,40 @@
},
{
"type": "pcb_plated_hole",
- "pcb_plated_hole_id": "pcb_plated_hole_158",
+ "pcb_plated_hole_id": "pcb_plated_hole_id",
+ "shape": "circular_hole_with_rect_pad",
"pcb_component_id": "pcb_component_24",
"pcb_port_id": "pcb_port_156",
- "source_port_id": "pcb_component_24_port_1",
"x": -5.588000000000022,
"y": 29.463999999999984,
"port_hints": [
"1"
],
- "shape": "circular_hole_with_rect_pad",
"hole_shape": "circle",
"pad_shape": "rect",
"hole_diameter": 0.75,
- "rect_ccw_rotation": 0,
+ "rect_ccw_rotation": 180,
"rect_pad_width": 1.3,
"rect_pad_height": 1.3,
- "rect_border_radius": 0.1625,
"hole_offset_x": 0,
"hole_offset_y": 0,
"layers": [
"top",
"bottom"
- ]
+ ],
+ "rect_border_radius": 0.1625
},
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_159",
+ "shape": "circle",
"pcb_component_id": "pcb_component_24",
"pcb_port_id": "pcb_port_157",
- "source_port_id": "pcb_component_24_port_2",
"x": -6.8580000000000325,
"y": 28.19399999999998,
"port_hints": [
"2"
],
- "shape": "circle",
"hole_diameter": 0.75,
"outer_diameter": 1.3,
"layers": [
@@ -10334,15 +10300,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_160",
+ "shape": "circle",
"pcb_component_id": "pcb_component_24",
"pcb_port_id": "pcb_port_158",
- "source_port_id": "pcb_component_24_port_3",
"x": -8.128000000000014,
"y": 29.463999999999984,
"port_hints": [
"3"
],
- "shape": "circle",
"hole_diameter": 0.75,
"outer_diameter": 1.3,
"layers": [
@@ -10352,42 +10317,40 @@
},
{
"type": "pcb_plated_hole",
- "pcb_plated_hole_id": "pcb_plated_hole_161",
+ "pcb_plated_hole_id": "pcb_plated_hole_id",
+ "shape": "circular_hole_with_rect_pad",
"pcb_component_id": "pcb_component_25",
"pcb_port_id": "pcb_port_159",
- "source_port_id": "pcb_component_25_port_1",
"x": -7.6200000000000045,
"y": 20.319999999999993,
"port_hints": [
"1"
],
- "shape": "circular_hole_with_rect_pad",
"hole_shape": "circle",
"pad_shape": "rect",
"hole_diameter": 0.75,
"rect_ccw_rotation": 0,
"rect_pad_width": 1.3,
"rect_pad_height": 1.3,
- "rect_border_radius": 0.1625,
"hole_offset_x": 0,
"hole_offset_y": 0,
"layers": [
"top",
"bottom"
- ]
+ ],
+ "rect_border_radius": 0.1625
},
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_162",
+ "shape": "circle",
"pcb_component_id": "pcb_component_25",
"pcb_port_id": "pcb_port_160",
- "source_port_id": "pcb_component_25_port_2",
"x": -6.349999999999994,
"y": 21.58999999999999,
"port_hints": [
"2"
],
- "shape": "circle",
"hole_diameter": 0.75,
"outer_diameter": 1.3,
"layers": [
@@ -10398,15 +10361,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_163",
+ "shape": "circle",
"pcb_component_id": "pcb_component_25",
"pcb_port_id": "pcb_port_161",
- "source_port_id": "pcb_component_25_port_3",
"x": -5.0800000000000125,
"y": 20.319999999999993,
"port_hints": [
"3"
],
- "shape": "circle",
"hole_diameter": 0.75,
"outer_diameter": 1.3,
"layers": [
@@ -10417,15 +10379,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_164",
+ "shape": "circle",
"pcb_component_id": "pcb_component_26",
"pcb_port_id": "pcb_port_162",
- "source_port_id": "pcb_component_26_port_1",
"x": -1.2700000000000102,
"y": 21.58999999999999,
"port_hints": [
"1"
],
- "shape": "circle",
"hole_diameter": 0.8,
"outer_diameter": 1.6,
"layers": [
@@ -10436,19 +10397,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_165",
+ "shape": "pill",
"pcb_component_id": "pcb_component_26",
"pcb_port_id": "pcb_port_163",
- "source_port_id": "pcb_component_26_port_2",
"x": -1.2700000000000102,
"y": 31.749999999999986,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 1.6,
"outer_height": 1.6,
+ "ccw_rotation": 90,
"layers": [
"top",
"bottom"
@@ -10457,15 +10418,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_166",
+ "shape": "circle",
"pcb_component_id": "pcb_component_27",
"pcb_port_id": "pcb_port_164",
- "source_port_id": "pcb_component_27_port_1",
"x": -39.37000000000002,
"y": 41.90999999999999,
"port_hints": [
"1"
],
- "shape": "circle",
"hole_diameter": 0.8,
"outer_diameter": 1.6,
"layers": [
@@ -10476,19 +10436,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_167",
+ "shape": "pill",
"pcb_component_id": "pcb_component_27",
"pcb_port_id": "pcb_port_165",
- "source_port_id": "pcb_component_27_port_2",
"x": -29.210000000000022,
"y": 41.90999999999999,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 1.6,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -10497,15 +10457,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_168",
+ "shape": "circle",
"pcb_component_id": "pcb_component_28",
"pcb_port_id": "pcb_port_166",
- "source_port_id": "pcb_component_28_port_1",
"x": -14.605000000000018,
"y": 12.699999999999989,
"port_hints": [
"1"
],
- "shape": "circle",
"hole_diameter": 0.8,
"outer_diameter": 1.6,
"layers": [
@@ -10516,19 +10475,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_169",
+ "shape": "pill",
"pcb_component_id": "pcb_component_28",
"pcb_port_id": "pcb_port_167",
- "source_port_id": "pcb_component_28_port_2",
"x": -4.445000000000022,
"y": 12.699999999999989,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 1.6,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -10537,15 +10496,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_170",
+ "shape": "circle",
"pcb_component_id": "pcb_component_29",
"pcb_port_id": "pcb_port_168",
- "source_port_id": "pcb_component_29_port_1",
"x": -66.04000000000002,
"y": -27.940000000000012,
"port_hints": [
"1"
],
- "shape": "circle",
"hole_diameter": 0.8,
"outer_diameter": 1.6,
"layers": [
@@ -10556,19 +10514,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_171",
+ "shape": "pill",
"pcb_component_id": "pcb_component_29",
"pcb_port_id": "pcb_port_169",
- "source_port_id": "pcb_component_29_port_2",
"x": -55.880000000000024,
"y": -27.940000000000012,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 1.6,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -10577,15 +10535,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_172",
+ "shape": "circle",
"pcb_component_id": "pcb_component_30",
"pcb_port_id": "pcb_port_170",
- "source_port_id": "pcb_component_30_port_1",
"x": -66.04000000000002,
"y": -24.384000000000015,
"port_hints": [
"1"
],
- "shape": "circle",
"hole_diameter": 0.8,
"outer_diameter": 1.6,
"layers": [
@@ -10596,19 +10553,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_173",
+ "shape": "pill",
"pcb_component_id": "pcb_component_30",
"pcb_port_id": "pcb_port_171",
- "source_port_id": "pcb_component_30_port_2",
"x": -55.880000000000024,
"y": -24.384000000000015,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 1.6,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -10617,15 +10574,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_174",
+ "shape": "circle",
"pcb_component_id": "pcb_component_31",
"pcb_port_id": "pcb_port_172",
- "source_port_id": "pcb_component_31_port_1",
"x": -66.04000000000002,
"y": -20.955000000000013,
"port_hints": [
"1"
],
- "shape": "circle",
"hole_diameter": 0.8,
"outer_diameter": 1.6,
"layers": [
@@ -10636,19 +10592,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_175",
+ "shape": "pill",
"pcb_component_id": "pcb_component_31",
"pcb_port_id": "pcb_port_173",
- "source_port_id": "pcb_component_31_port_2",
"x": -55.880000000000024,
"y": -20.955000000000013,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 1.6,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -10657,15 +10613,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_176",
+ "shape": "circle",
"pcb_component_id": "pcb_component_32",
"pcb_port_id": "pcb_port_174",
- "source_port_id": "pcb_component_32_port_1",
"x": -66.04000000000002,
"y": -17.653000000000006,
"port_hints": [
"1"
],
- "shape": "circle",
"hole_diameter": 0.8,
"outer_diameter": 1.6,
"layers": [
@@ -10676,19 +10631,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_177",
+ "shape": "pill",
"pcb_component_id": "pcb_component_32",
"pcb_port_id": "pcb_port_175",
- "source_port_id": "pcb_component_32_port_2",
"x": -55.880000000000024,
"y": -17.653000000000006,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 1.6,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -10697,15 +10652,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_178",
+ "shape": "circle",
"pcb_component_id": "pcb_component_33",
"pcb_port_id": "pcb_port_176",
- "source_port_id": "pcb_component_33_port_1",
"x": -65.91300000000001,
"y": -35.30600000000001,
"port_hints": [
"1"
],
- "shape": "circle",
"hole_diameter": 0.8,
"outer_diameter": 1.6,
"layers": [
@@ -10716,19 +10670,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_179",
+ "shape": "pill",
"pcb_component_id": "pcb_component_33",
"pcb_port_id": "pcb_port_177",
- "source_port_id": "pcb_component_33_port_2",
"x": -55.753000000000014,
"y": -35.30600000000001,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 1.6,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -10737,15 +10691,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_180",
+ "shape": "circle",
"pcb_component_id": "pcb_component_34",
"pcb_port_id": "pcb_port_178",
- "source_port_id": "pcb_component_34_port_1",
"x": -13.970000000000027,
"y": 35.55999999999999,
"port_hints": [
"1"
],
- "shape": "circle",
"hole_diameter": 0.8,
"outer_diameter": 1.6,
"layers": [
@@ -10756,19 +10709,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_181",
+ "shape": "pill",
"pcb_component_id": "pcb_component_34",
"pcb_port_id": "pcb_port_179",
- "source_port_id": "pcb_component_34_port_2",
"x": -3.8100000000000307,
"y": 35.55999999999999,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 1.6,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -10777,15 +10730,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_182",
+ "shape": "circle",
"pcb_component_id": "pcb_component_35",
"pcb_port_id": "pcb_port_180",
- "source_port_id": "pcb_component_35_port_1",
"x": -65.91300000000001,
"y": -31.750000000000014,
"port_hints": [
"1"
],
- "shape": "circle",
"hole_diameter": 0.8,
"outer_diameter": 1.6,
"layers": [
@@ -10796,19 +10748,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_183",
+ "shape": "pill",
"pcb_component_id": "pcb_component_35",
"pcb_port_id": "pcb_port_181",
- "source_port_id": "pcb_component_35_port_2",
"x": -55.753000000000014,
"y": -31.750000000000014,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 1.6,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -10817,15 +10769,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_184",
+ "shape": "circle",
"pcb_component_id": "pcb_component_36",
"pcb_port_id": "pcb_port_182",
- "source_port_id": "pcb_component_36_port_1",
"x": 4.444999999999993,
"y": -12.065000000000012,
"port_hints": [
"1"
],
- "shape": "circle",
"hole_diameter": 0.8,
"outer_diameter": 1.6,
"layers": [
@@ -10836,19 +10787,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_185",
+ "shape": "pill",
"pcb_component_id": "pcb_component_36",
"pcb_port_id": "pcb_port_183",
- "source_port_id": "pcb_component_36_port_2",
"x": -5.715000000000003,
"y": -12.065000000000012,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 1.6,
"outer_height": 1.6,
+ "ccw_rotation": 180,
"layers": [
"top",
"bottom"
@@ -10857,15 +10808,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_186",
+ "shape": "circle",
"pcb_component_id": "pcb_component_37",
"pcb_port_id": "pcb_port_184",
- "source_port_id": "pcb_component_37_port_1",
"x": -8.890000000000015,
"y": -12.065000000000012,
"port_hints": [
"1"
],
- "shape": "circle",
"hole_diameter": 0.8,
"outer_diameter": 1.6,
"layers": [
@@ -10876,19 +10826,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_187",
+ "shape": "pill",
"pcb_component_id": "pcb_component_37",
"pcb_port_id": "pcb_port_185",
- "source_port_id": "pcb_component_37_port_2",
"x": -19.05000000000001,
"y": -12.065000000000012,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 1.6,
"outer_height": 1.6,
+ "ccw_rotation": 180,
"layers": [
"top",
"bottom"
@@ -10897,15 +10847,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_188",
+ "shape": "circle",
"pcb_component_id": "pcb_component_38",
"pcb_port_id": "pcb_port_186",
- "source_port_id": "pcb_component_38_port_1",
"x": -4.445000000000022,
"y": 6.349999999999994,
"port_hints": [
"1"
],
- "shape": "circle",
"hole_diameter": 0.8,
"outer_diameter": 1.6,
"layers": [
@@ -10916,19 +10865,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_189",
+ "shape": "pill",
"pcb_component_id": "pcb_component_38",
"pcb_port_id": "pcb_port_187",
- "source_port_id": "pcb_component_38_port_2",
"x": -14.605000000000018,
"y": 6.349999999999994,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 1.6,
"outer_height": 1.6,
+ "ccw_rotation": 180,
"layers": [
"top",
"bottom"
@@ -10937,15 +10886,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_190",
+ "shape": "circle",
"pcb_component_id": "pcb_component_39",
"pcb_port_id": "pcb_port_188",
- "source_port_id": "pcb_component_39_port_1",
"x": 2.539999999999992,
"y": 21.58999999999999,
"port_hints": [
"1"
],
- "shape": "circle",
"hole_diameter": 0.8,
"outer_diameter": 1.6,
"layers": [
@@ -10956,19 +10904,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_191",
+ "shape": "pill",
"pcb_component_id": "pcb_component_39",
"pcb_port_id": "pcb_port_189",
- "source_port_id": "pcb_component_39_port_2",
"x": 2.539999999999992,
"y": 31.749999999999986,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 1.6,
"outer_height": 1.6,
+ "ccw_rotation": 90,
"layers": [
"top",
"bottom"
@@ -10977,15 +10925,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_192",
+ "shape": "circle",
"pcb_component_id": "pcb_component_40",
"pcb_port_id": "pcb_port_190",
- "source_port_id": "pcb_component_40_port_1",
"x": -35.56000000000002,
"y": 14.98599999999999,
"port_hints": [
"1"
],
- "shape": "circle",
"hole_diameter": 0.8,
"outer_diameter": 1.6,
"layers": [
@@ -10996,19 +10943,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_193",
+ "shape": "pill",
"pcb_component_id": "pcb_component_40",
"pcb_port_id": "pcb_port_191",
- "source_port_id": "pcb_component_40_port_2",
"x": -25.400000000000006,
"y": 14.98599999999999,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 1.6,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -11017,15 +10964,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_194",
+ "shape": "circle",
"pcb_component_id": "pcb_component_41",
"pcb_port_id": "pcb_port_192",
- "source_port_id": "pcb_component_41_port_1",
"x": -35.56000000000002,
"y": 11.429999999999993,
"port_hints": [
"1"
],
- "shape": "circle",
"hole_diameter": 0.8,
"outer_diameter": 1.6,
"layers": [
@@ -11036,19 +10982,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_195",
+ "shape": "pill",
"pcb_component_id": "pcb_component_41",
"pcb_port_id": "pcb_port_193",
- "source_port_id": "pcb_component_41_port_2",
"x": -25.400000000000006,
"y": 11.429999999999993,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 1.6,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -11057,15 +11003,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_196",
+ "shape": "circle",
"pcb_component_id": "pcb_component_42",
"pcb_port_id": "pcb_port_194",
- "source_port_id": "pcb_component_42_port_1",
"x": -14.605000000000018,
"y": 2.539999999999992,
"port_hints": [
"1"
],
- "shape": "circle",
"hole_diameter": 0.8,
"outer_diameter": 1.6,
"layers": [
@@ -11076,19 +11021,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_197",
+ "shape": "pill",
"pcb_component_id": "pcb_component_42",
"pcb_port_id": "pcb_port_195",
- "source_port_id": "pcb_component_42_port_2",
"x": -4.445000000000022,
"y": 2.539999999999992,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 1.6,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -11097,15 +11042,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_198",
+ "shape": "circle",
"pcb_component_id": "pcb_component_43",
"pcb_port_id": "pcb_port_196",
- "source_port_id": "pcb_component_43_port_1",
"x": -13.335000000000008,
"y": -21.590000000000018,
"port_hints": [
"1"
],
- "shape": "circle",
"hole_diameter": 0.8,
"outer_diameter": 1.6,
"layers": [
@@ -11116,19 +11060,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_199",
+ "shape": "pill",
"pcb_component_id": "pcb_component_43",
"pcb_port_id": "pcb_port_197",
- "source_port_id": "pcb_component_43_port_2",
"x": -13.335000000000008,
"y": -31.750000000000014,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 1.6,
"outer_height": 1.6,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -11137,15 +11081,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_200",
+ "shape": "circle",
"pcb_component_id": "pcb_component_44",
"pcb_port_id": "pcb_port_198",
- "source_port_id": "pcb_component_44_port_1",
"x": -14.605000000000018,
"y": -0.88900000000001,
"port_hints": [
"1"
],
- "shape": "circle",
"hole_diameter": 0.8,
"outer_diameter": 1.6,
"layers": [
@@ -11156,19 +11099,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_201",
+ "shape": "pill",
"pcb_component_id": "pcb_component_44",
"pcb_port_id": "pcb_port_199",
- "source_port_id": "pcb_component_44_port_2",
"x": -4.445000000000022,
"y": -0.88900000000001,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 1.6,
"outer_height": 1.6,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -11177,15 +11120,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_202",
+ "shape": "circle",
"pcb_component_id": "pcb_component_45",
"pcb_port_id": "pcb_port_200",
- "source_port_id": "pcb_component_45_port_1",
"x": -18.41500000000002,
"y": -31.750000000000014,
"port_hints": [
"1"
],
- "shape": "circle",
"hole_diameter": 0.8,
"outer_diameter": 1.6,
"layers": [
@@ -11196,19 +11138,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_203",
+ "shape": "pill",
"pcb_component_id": "pcb_component_45",
"pcb_port_id": "pcb_port_201",
- "source_port_id": "pcb_component_45_port_2",
"x": -18.41500000000002,
"y": -21.590000000000018,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 1.6,
"outer_height": 1.6,
+ "ccw_rotation": 90,
"layers": [
"top",
"bottom"
@@ -11216,20 +11158,19 @@
},
{
"type": "pcb_plated_hole",
- "pcb_plated_hole_id": "pcb_plated_hole_204",
+ "pcb_plated_hole_id": "pcb_plated_hole_id",
+ "shape": "circular_hole_with_rect_pad",
"pcb_component_id": "pcb_component_46",
"pcb_port_id": "pcb_port_202",
- "source_port_id": "pcb_component_46_port_1",
"x": 2.539999999999992,
"y": 12.699999999999989,
"port_hints": [
"1"
],
- "shape": "circular_hole_with_rect_pad",
"hole_shape": "circle",
"pad_shape": "rect",
"hole_diameter": 0.9,
- "rect_ccw_rotation": 0,
+ "rect_ccw_rotation": 180,
"rect_pad_width": 1.8,
"rect_pad_height": 1.8,
"hole_offset_x": 0,
@@ -11242,15 +11183,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_205",
+ "shape": "circle",
"pcb_component_id": "pcb_component_46",
"pcb_port_id": "pcb_port_203",
- "source_port_id": "pcb_component_46_port_2",
"x": 0,
"y": 12.699999999999989,
"port_hints": [
"2"
],
- "shape": "circle",
"hole_diameter": 0.9,
"outer_diameter": 1.8,
"layers": [
@@ -11260,20 +11200,19 @@
},
{
"type": "pcb_plated_hole",
- "pcb_plated_hole_id": "pcb_plated_hole_206",
+ "pcb_plated_hole_id": "pcb_plated_hole_id",
+ "shape": "circular_hole_with_rect_pad",
"pcb_component_id": "pcb_component_47",
"pcb_port_id": "pcb_port_204",
- "source_port_id": "pcb_component_47_port_1",
"x": 2.539999999999992,
"y": 2.539999999999992,
"port_hints": [
"1"
],
- "shape": "circular_hole_with_rect_pad",
"hole_shape": "circle",
"pad_shape": "rect",
"hole_diameter": 0.9,
- "rect_ccw_rotation": 0,
+ "rect_ccw_rotation": 180,
"rect_pad_width": 1.8,
"rect_pad_height": 1.8,
"hole_offset_x": 0,
@@ -11286,15 +11225,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_207",
+ "shape": "circle",
"pcb_component_id": "pcb_component_47",
"pcb_port_id": "pcb_port_205",
- "source_port_id": "pcb_component_47_port_2",
"x": 0,
"y": 2.539999999999992,
"port_hints": [
"2"
],
- "shape": "circle",
"hole_diameter": 0.9,
"outer_diameter": 1.8,
"layers": [
@@ -11304,20 +11242,19 @@
},
{
"type": "pcb_plated_hole",
- "pcb_plated_hole_id": "pcb_plated_hole_208",
+ "pcb_plated_hole_id": "pcb_plated_hole_id",
+ "shape": "circular_hole_with_rect_pad",
"pcb_component_id": "pcb_component_48",
"pcb_port_id": "pcb_port_206",
- "source_port_id": "pcb_component_48_port_1",
"x": 2.539999999999992,
"y": -6.985000000000014,
"port_hints": [
"1"
],
- "shape": "circular_hole_with_rect_pad",
"hole_shape": "circle",
"pad_shape": "rect",
"hole_diameter": 0.9,
- "rect_ccw_rotation": 0,
+ "rect_ccw_rotation": 180,
"rect_pad_width": 1.8,
"rect_pad_height": 1.8,
"hole_offset_x": 0,
@@ -11330,15 +11267,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_209",
+ "shape": "circle",
"pcb_component_id": "pcb_component_48",
"pcb_port_id": "pcb_port_207",
- "source_port_id": "pcb_component_48_port_2",
"x": 0,
"y": -6.985000000000014,
"port_hints": [
"2"
],
- "shape": "circle",
"hole_diameter": 0.9,
"outer_diameter": 1.8,
"layers": [
@@ -11349,15 +11285,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_210",
+ "shape": "circle",
"pcb_component_id": "pcb_component_49",
"pcb_port_id": "pcb_port_208",
- "source_port_id": "pcb_component_49_port_1",
"x": -39.37000000000002,
"y": 38.09999999999999,
"port_hints": [
"1"
],
- "shape": "circle",
"hole_diameter": 0.8,
"outer_diameter": 1.6,
"layers": [
@@ -11368,15 +11303,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_211",
+ "shape": "circle",
"pcb_component_id": "pcb_component_49",
"pcb_port_id": "pcb_port_209",
- "source_port_id": "pcb_component_49_port_2",
"x": -34.37000000000002,
"y": 38.09999999999999,
"port_hints": [
"2"
],
- "shape": "circle",
"hole_diameter": 0.8,
"outer_diameter": 1.6,
"layers": [
@@ -11387,15 +11321,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_212",
+ "shape": "circle",
"pcb_component_id": "pcb_component_50",
"pcb_port_id": "pcb_port_210",
- "source_port_id": "pcb_component_50_port_1",
"x": -24.130000000000024,
"y": 40.639999999999986,
"port_hints": [
"1"
],
- "shape": "circle",
"hole_diameter": 0.8,
"outer_diameter": 1.6,
"layers": [
@@ -11406,15 +11339,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_213",
+ "shape": "circle",
"pcb_component_id": "pcb_component_50",
"pcb_port_id": "pcb_port_211",
- "source_port_id": "pcb_component_50_port_2",
"x": -19.130000000000024,
"y": 40.639999999999986,
"port_hints": [
"2"
],
- "shape": "circle",
"hole_diameter": 0.8,
"outer_diameter": 1.6,
"layers": [
@@ -11425,15 +11357,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_214",
+ "shape": "circle",
"pcb_component_id": "pcb_component_51",
"pcb_port_id": "pcb_port_212",
- "source_port_id": "pcb_component_51_port_1",
"x": 45.08499999999998,
"y": 19.049999999999983,
"port_hints": [
"1"
],
- "shape": "circle",
"hole_diameter": 0.8,
"outer_diameter": 1.6,
"layers": [
@@ -11444,15 +11375,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_215",
+ "shape": "circle",
"pcb_component_id": "pcb_component_51",
"pcb_port_id": "pcb_port_213",
- "source_port_id": "pcb_component_51_port_2",
"x": 45.08499999999998,
"y": 14.049999999999983,
"port_hints": [
"2"
],
- "shape": "circle",
"hole_diameter": 0.8,
"outer_diameter": 1.6,
"layers": [
@@ -11463,15 +11393,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_216",
+ "shape": "circle",
"pcb_component_id": "pcb_component_52",
"pcb_port_id": "pcb_port_214",
- "source_port_id": "pcb_component_52_port_1",
"x": -10.668000000000006,
"y": 40.38599999999999,
"port_hints": [
"1"
],
- "shape": "circle",
"hole_diameter": 0.8,
"outer_diameter": 1.6,
"layers": [
@@ -11482,15 +11411,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_217",
+ "shape": "circle",
"pcb_component_id": "pcb_component_52",
"pcb_port_id": "pcb_port_215",
- "source_port_id": "pcb_component_52_port_2",
"x": -5.668000000000006,
"y": 40.38599999999999,
"port_hints": [
"2"
],
- "shape": "circle",
"hole_diameter": 0.8,
"outer_diameter": 1.6,
"layers": [
@@ -11501,15 +11429,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_218",
+ "shape": "circle",
"pcb_component_id": "pcb_component_53",
"pcb_port_id": "pcb_port_216",
- "source_port_id": "pcb_component_53_port_1",
"x": 43.17999999999998,
"y": -22.22500000000001,
"port_hints": [
"1"
],
- "shape": "circle",
"hole_diameter": 0.8,
"outer_diameter": 1.6,
"layers": [
@@ -11520,15 +11447,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_219",
+ "shape": "circle",
"pcb_component_id": "pcb_component_53",
"pcb_port_id": "pcb_port_217",
- "source_port_id": "pcb_component_53_port_2",
"x": 43.17999999999998,
"y": -27.22500000000001,
"port_hints": [
"2"
],
- "shape": "circle",
"hole_diameter": 0.8,
"outer_diameter": 1.6,
"layers": [
@@ -11538,20 +11464,19 @@
},
{
"type": "pcb_plated_hole",
- "pcb_plated_hole_id": "pcb_plated_hole_220",
+ "pcb_plated_hole_id": "pcb_plated_hole_id",
+ "shape": "circular_hole_with_rect_pad",
"pcb_component_id": "pcb_component_54",
"pcb_port_id": "pcb_port_218",
- "source_port_id": "pcb_component_54_port_1",
"x": -16.51000000000002,
"y": 33.01999999999999,
"port_hints": [
"1"
],
- "shape": "circular_hole_with_rect_pad",
"hole_shape": "circle",
"pad_shape": "rect",
"hole_diameter": 0.8,
- "rect_ccw_rotation": 0,
+ "rect_ccw_rotation": 180,
"rect_pad_width": 1.6,
"rect_pad_height": 1.6,
"hole_offset_x": 0,
@@ -11564,19 +11489,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_221",
+ "shape": "pill",
"pcb_component_id": "pcb_component_54",
"pcb_port_id": "pcb_port_219",
- "source_port_id": "pcb_component_54_port_2",
"x": -29.210000000000022,
"y": 33.01999999999999,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 1.6,
"outer_height": 1.6,
+ "ccw_rotation": 180,
"layers": [
"top",
"bottom"
@@ -11585,15 +11510,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_222",
+ "shape": "circle",
"pcb_component_id": "pcb_component_55",
"pcb_port_id": "pcb_port_220",
- "source_port_id": "pcb_component_55_port_1",
"x": -26.03500000000001,
"y": -0.6350000000000193,
"port_hints": [
"1"
],
- "shape": "circle",
"hole_diameter": 1.27,
"outer_diameter": 2.032,
"layers": [
@@ -11604,15 +11528,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_223",
+ "shape": "circle",
"pcb_component_id": "pcb_component_55",
"pcb_port_id": "pcb_port_221",
- "source_port_id": "pcb_component_55_port_2",
"x": -36.19500000000001,
"y": 1.904999999999987,
"port_hints": [
"2"
],
- "shape": "circle",
"hole_diameter": 1.27,
"outer_diameter": 2.032,
"layers": [
@@ -11623,15 +11546,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_224",
+ "shape": "circle",
"pcb_component_id": "pcb_component_55",
"pcb_port_id": "pcb_port_222",
- "source_port_id": "pcb_component_55_port_3",
"x": -26.03500000000001,
"y": 4.444999999999979,
"port_hints": [
"3"
],
- "shape": "circle",
"hole_diameter": 1.27,
"outer_diameter": 2.032,
"layers": [
@@ -11641,20 +11563,19 @@
},
{
"type": "pcb_plated_hole",
- "pcb_plated_hole_id": "pcb_plated_hole_225",
+ "pcb_plated_hole_id": "pcb_plated_hole_id",
+ "shape": "circular_hole_with_rect_pad",
"pcb_component_id": "pcb_component_56",
"pcb_port_id": "pcb_port_223",
- "source_port_id": "pcb_component_56_port_1",
"x": -71.87000000000002,
"y": 30.169999999999987,
"port_hints": [
"1"
],
- "shape": "circular_hole_with_rect_pad",
"hole_shape": "circle",
"pad_shape": "rect",
"hole_diameter": 1.5,
- "rect_ccw_rotation": 180,
+ "rect_ccw_rotation": 270,
"rect_pad_width": 3,
"rect_pad_height": 3,
"hole_offset_x": 0,
@@ -11667,15 +11588,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_226",
+ "shape": "circle",
"pcb_component_id": "pcb_component_56",
"pcb_port_id": "pcb_port_224",
- "source_port_id": "pcb_component_56_port_2",
"x": -71.87000000000002,
"y": 25.169999999999987,
"port_hints": [
"2"
],
- "shape": "circle",
"hole_diameter": 1.5,
"outer_diameter": 3,
"layers": [
@@ -11685,16 +11605,15 @@
},
{
"type": "pcb_plated_hole",
- "pcb_plated_hole_id": "pcb_plated_hole_227",
+ "pcb_plated_hole_id": "pcb_plated_hole_id",
+ "shape": "circular_hole_with_rect_pad",
"pcb_component_id": "pcb_component_57",
"pcb_port_id": "pcb_port_225",
- "source_port_id": "pcb_component_57_port_1",
"x": -57.15000000000002,
"y": 19.049999999999983,
"port_hints": [
"1"
],
- "shape": "circular_hole_with_rect_pad",
"hole_shape": "circle",
"pad_shape": "rect",
"hole_diameter": 1.1,
@@ -11711,19 +11630,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_228",
+ "shape": "pill",
"pcb_component_id": "pcb_component_57",
"pcb_port_id": "pcb_port_226",
- "source_port_id": "pcb_component_57_port_2",
"x": -54.610000000000014,
"y": 19.049999999999983,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 1.1,
"hole_height": 1.1,
"outer_width": 1.905,
"outer_height": 2,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -11732,19 +11651,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_229",
+ "shape": "pill",
"pcb_component_id": "pcb_component_57",
"pcb_port_id": "pcb_port_227",
- "source_port_id": "pcb_component_57_port_3",
"x": -52.07000000000002,
"y": 19.049999999999983,
"port_hints": [
"3"
],
- "shape": "pill",
"hole_width": 1.1,
"hole_height": 1.1,
"outer_width": 1.905,
"outer_height": 2,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -11753,15 +11672,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_230",
+ "shape": "circle",
"pcb_component_id": "pcb_component_58",
"pcb_port_id": "pcb_port_228",
- "source_port_id": "pcb_component_58_port_1",
"x": -13.589000000000027,
"y": 19.176999999999992,
"port_hints": [
"1"
],
- "shape": "circle",
"hole_diameter": 0.8,
"outer_diameter": 1.6,
"layers": [
@@ -11772,19 +11690,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_231",
+ "shape": "pill",
"pcb_component_id": "pcb_component_58",
"pcb_port_id": "pcb_port_229",
- "source_port_id": "pcb_component_58_port_2",
"x": -13.589000000000027,
"y": 29.33699999999999,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 1.6,
"outer_height": 1.6,
+ "ccw_rotation": 90,
"layers": [
"top",
"bottom"
@@ -11793,15 +11711,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_232",
+ "shape": "circle",
"pcb_component_id": "pcb_component_59",
"pcb_port_id": "pcb_port_230",
- "source_port_id": "pcb_component_59_port_1",
"x": -19.55800000000002,
"y": 27.93999999999999,
"port_hints": [
"1"
],
- "shape": "circle",
"hole_diameter": 0.8,
"outer_diameter": 1.6,
"layers": [
@@ -11812,19 +11729,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_233",
+ "shape": "pill",
"pcb_component_id": "pcb_component_59",
"pcb_port_id": "pcb_port_231",
- "source_port_id": "pcb_component_59_port_2",
"x": -19.55800000000002,
"y": 7.939999999999998,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 1.6,
"outer_height": 1.6,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -11833,15 +11750,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_234",
+ "shape": "circle",
"pcb_component_id": "pcb_component_60",
"pcb_port_id": "pcb_port_232",
- "source_port_id": "pcb_component_60_port_1",
"x": -27.940000000000012,
"y": 27.93999999999999,
"port_hints": [
"1"
],
- "shape": "circle",
"hole_diameter": 1.3,
"outer_diameter": 2.6,
"layers": [
@@ -11852,15 +11768,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_235",
+ "shape": "circle",
"pcb_component_id": "pcb_component_60",
"pcb_port_id": "pcb_port_233",
- "source_port_id": "pcb_component_60_port_2",
"x": -27.940000000000012,
"y": 22.939999999999998,
"port_hints": [
"2"
],
- "shape": "circle",
"hole_diameter": 1.3,
"outer_diameter": 2.6,
"layers": [
@@ -11870,20 +11785,19 @@
},
{
"type": "pcb_plated_hole",
- "pcb_plated_hole_id": "pcb_plated_hole_236",
+ "pcb_plated_hole_id": "pcb_plated_hole_id",
+ "shape": "circular_hole_with_rect_pad",
"pcb_component_id": "pcb_component_61",
"pcb_port_id": "pcb_port_234",
- "source_port_id": "pcb_component_61_port_1",
"x": -75.37000000000002,
"y": 0.46999999999998465,
"port_hints": [
"1"
],
- "shape": "circular_hole_with_rect_pad",
"hole_shape": "circle",
"pad_shape": "rect",
"hole_diameter": 0.8,
- "rect_ccw_rotation": 180,
+ "rect_ccw_rotation": 90,
"rect_pad_width": 1.6,
"rect_pad_height": 1.6,
"hole_offset_x": 0,
@@ -11896,19 +11810,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_237",
+ "shape": "pill",
"pcb_component_id": "pcb_component_61",
"pcb_port_id": "pcb_port_235",
- "source_port_id": "pcb_component_61_port_2",
"x": -75.37000000000002,
"y": 13.169999999999987,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 0.8,
"hole_height": 0.8,
"outer_width": 1.6,
"outer_height": 1.6,
+ "ccw_rotation": 90,
"layers": [
"top",
"bottom"
@@ -11917,58 +11831,58 @@
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_0",
+ "hole_shape": "circle",
"x": -76.20000000000002,
"y": -45.72,
- "hole_diameter": 4.3,
- "hole_shape": "circle"
+ "hole_diameter": 4.3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_1",
+ "hole_shape": "circle",
"x": 5.079999999999984,
"y": -45.72,
- "hole_diameter": 4.3,
- "hole_shape": "circle"
+ "hole_diameter": 4.3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_2",
+ "hole_shape": "circle",
"x": 76.19999999999999,
"y": -45.72,
- "hole_diameter": 4.3,
- "hole_shape": "circle"
+ "hole_diameter": 4.3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_3",
+ "hole_shape": "circle",
"x": 76.19999999999999,
"y": 45.719999999999985,
- "hole_diameter": 4.3,
- "hole_shape": "circle"
+ "hole_diameter": 4.3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_4",
+ "hole_shape": "circle",
"x": 5.079999999999984,
"y": 45.719999999999985,
- "hole_diameter": 4.3,
- "hole_shape": "circle"
+ "hole_diameter": 4.3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_5",
+ "hole_shape": "circle",
"x": -76.20000000000002,
"y": 45.719999999999985,
- "hole_diameter": 4.3,
- "hole_shape": "circle"
+ "hole_diameter": 4.3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_6",
+ "hole_shape": "circle",
"x": -54.610000000000014,
"y": 35.70999999999998,
- "hole_diameter": 3.5,
- "hole_shape": "circle"
+ "hole_diameter": 3.5
},
{
"type": "pcb_trace",
@@ -61218,7 +61132,8 @@
"x": -55.68000000000002,
"y": 6.992999999999981
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61231,7 +61146,8 @@
"x": -56.58800000000002,
"y": 4.309999999999988
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61244,7 +61160,8 @@
"x": -70.07000000000002,
"y": -42.72999999999999
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61257,7 +61174,8 @@
"x": 5.079999999999984,
"y": -40.41999999999999
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61270,7 +61188,8 @@
"x": 76.19999999999999,
"y": -40.41999999999999
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61283,7 +61202,8 @@
"x": 68.32999999999998,
"y": 47.36999999999998
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61296,7 +61216,8 @@
"x": -1.670000000000016,
"y": 47.16999999999999
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61309,7 +61230,8 @@
"x": -76.20000000000002,
"y": 51.01999999999998
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61322,7 +61244,8 @@
"x": 14.929999999999978,
"y": 42.96999999999999
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61335,7 +61258,8 @@
"x": 12.429999999999978,
"y": 36.86999999999999
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61348,7 +61272,8 @@
"x": 21.72999999999999,
"y": -33.030000000000015
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61361,7 +61286,8 @@
"x": 21.829999999999984,
"y": -22.430000000000007
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61374,7 +61300,8 @@
"x": -39.37000000000002,
"y": 35.34999999999999
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61387,7 +61314,8 @@
"x": 57.785,
"y": 41.69999999999999
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61400,7 +61328,8 @@
"x": 58.03899999999999,
"y": -15.450000000000017
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61413,7 +61342,8 @@
"x": -40.43000000000002,
"y": -25.400000000000006
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61426,7 +61356,8 @@
"x": -43.670000000000016,
"y": -27.430000000000007
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61439,7 +61370,8 @@
"x": -43.87000000000002,
"y": -29.03
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61452,7 +61384,8 @@
"x": -43.47000000000001,
"y": -30.93000000000002
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61465,7 +61398,8 @@
"x": -44.07000000000001,
"y": -32.530000000000015
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61478,7 +61412,8 @@
"x": -43.670000000000016,
"y": -21.13000000000001
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61491,7 +61426,8 @@
"x": -44.07000000000001,
"y": -22.63000000000001
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61504,7 +61440,8 @@
"x": -43.670000000000016,
"y": -17.63000000000001
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61517,7 +61454,8 @@
"x": -43.97000000000001,
"y": -19.13000000000001
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61530,7 +61468,8 @@
"x": -4.170000000000016,
"y": 9.36999999999999
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61543,7 +61482,8 @@
"x": -15.970000000000027,
"y": 9.469999999999985
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61556,7 +61496,8 @@
"x": -43.670000000000016,
"y": -24.730000000000018
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61569,7 +61510,8 @@
"x": -44.27000000000001,
"y": -25.93000000000002
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61582,7 +61524,8 @@
"x": -49.530000000000015,
"y": -37.045000000000016
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61595,7 +61538,8 @@
"x": -43.87000000000002,
"y": -35.63000000000001
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61608,7 +61552,8 @@
"x": -68.27000000000002,
"y": -24.49000000000001
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61621,7 +61566,8 @@
"x": -10.159999999999997,
"y": -4.0600000000000165
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61634,7 +61580,8 @@
"x": -6.8580000000000325,
"y": 25.903999999999982
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61647,7 +61594,8 @@
"x": -6.349999999999994,
"y": 23.879999999999995
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61660,7 +61608,8 @@
"x": -3.5800000000000125,
"y": 26.669999999999987
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61673,7 +61622,8 @@
"x": -34.29000000000002,
"y": 44.21999999999999
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61686,7 +61636,8 @@
"x": -9.525000000000006,
"y": 15.009999999999991
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61699,7 +61650,8 @@
"x": -62.97000000000003,
"y": -27.930000000000007
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61712,7 +61664,8 @@
"x": -63.07000000000002,
"y": -24.330000000000013
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61725,7 +61678,8 @@
"x": -63.170000000000016,
"y": -21.13000000000001
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61738,7 +61692,8 @@
"x": -60.96000000000002,
"y": -15.343000000000004
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61751,7 +61706,8 @@
"x": -63.97000000000001,
"y": -37.83000000000001
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61764,7 +61720,8 @@
"x": -8.890000000000015,
"y": 37.86999999999999
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61777,7 +61734,8 @@
"x": -62.77000000000001,
"y": -31.63000000000001
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61790,7 +61748,8 @@
"x": -0.6350000000000193,
"y": -14.375000000000014
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61803,7 +61762,8 @@
"x": -13.970000000000027,
"y": -14.375000000000014
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61816,7 +61776,8 @@
"x": -1.7700000000000102,
"y": 8.069999999999993
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61829,7 +61790,8 @@
"x": 5.22999999999999,
"y": 22.769999999999982
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61842,7 +61804,8 @@
"x": -30.480000000000018,
"y": 17.295999999999992
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61855,7 +61818,8 @@
"x": -38.27000000000001,
"y": 11.569999999999993
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61868,7 +61832,8 @@
"x": -17.77000000000001,
"y": 2.769999999999996
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61881,7 +61846,8 @@
"x": -13.170000000000016,
"y": -35.130000000000024
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61894,7 +61860,8 @@
"x": -17.970000000000027,
"y": -0.730000000000004
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61907,7 +61874,8 @@
"x": -18.470000000000027,
"y": -35.13000000000001
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61920,7 +61888,8 @@
"x": 1.2699999999999818,
"y": 8.739999999999995
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61933,7 +61902,8 @@
"x": 1.2699999999999818,
"y": -1.4200000000000017
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61946,7 +61916,8 @@
"x": 6.22999999999999,
"y": -6.430000000000021
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61959,7 +61930,8 @@
"x": -41.97000000000001,
"y": 38.069999999999986
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61972,7 +61944,8 @@
"x": -21.630000000000024,
"y": 43.54999999999998
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61985,7 +61958,8 @@
"x": 47.994999999999976,
"y": 16.549999999999983
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -61998,7 +61972,8 @@
"x": -8.168000000000006,
"y": 43.29599999999999
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -62011,7 +61986,8 @@
"x": 46.089999999999975,
"y": -24.72500000000001
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -62024,7 +62000,8 @@
"x": -22.860000000000014,
"y": 30.89999999999999
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -62037,7 +62014,8 @@
"x": -16.51000000000002,
"y": 31.21999999999999
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -62050,7 +62028,8 @@
"x": -23.495000000000005,
"y": -5.715000000000018
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -62063,7 +62042,8 @@
"x": -63.97000000000001,
"y": 28.26999999999999
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -62076,7 +62056,8 @@
"x": -61.37000000000002,
"y": 35.56999999999998
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -62089,7 +62070,8 @@
"x": -15.970000000000027,
"y": 26.169999999999995
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -62102,7 +62084,8 @@
"x": -15.188000000000017,
"y": 17.939999999999998
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -62115,7 +62098,8 @@
"x": -22.980000000000018,
"y": 25.439999999999998
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -62128,7 +62112,8 @@
"x": -77.49000000000002,
"y": 6.819999999999979
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -62141,7 +62126,8 @@
"x": -77.17000000000002,
"y": 0.46999999999998465
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -62154,254 +62140,8 @@
"x": -5.588000000000022,
"y": -9.420000000000016
},
- "layer": "bottom"
- },
- {
- "type": "pcb_silkscreen_text",
- "pcb_silkscreen_text_id": "pcb_silkscreen_text_73",
- "pcb_component_id": "",
- "text": "+8/12V",
- "anchor_position": {
- "x": -72.17000000000002,
- "y": 34.66999999999999
- },
- "layer": "top",
- "font_size": 3.048,
- "font": "tscircuit2024"
- },
- {
- "type": "pcb_silkscreen_text",
- "pcb_silkscreen_text_id": "pcb_silkscreen_text_74",
- "pcb_component_id": "",
- "text": "VCC ON",
- "anchor_position": {
- "x": 9.22999999999999,
- "y": -8.930000000000007
- },
- "layer": "top",
- "font_size": 3.048,
- "font": "tscircuit2024"
- },
- {
- "type": "pcb_silkscreen_text",
- "pcb_silkscreen_text_id": "pcb_silkscreen_text_75",
- "pcb_component_id": "",
- "text": "JP-CHARRAS",
- "anchor_position": {
- "x": -59.05500000000002,
- "y": -46.99000000000001
- },
- "layer": "top",
- "font_size": 3.048,
- "font": "tscircuit2024"
- },
- {
- "type": "pcb_silkscreen_text",
- "pcb_silkscreen_text_id": "pcb_silkscreen_text_76",
- "pcb_component_id": "",
- "text": "1=>>",
- "anchor_position": {
- "x": 13.96999999999997,
- "y": 41.274999999999984
- },
- "layer": "top",
- "font_size": 3.048,
- "font": "tscircuit2024"
- },
- {
- "type": "pcb_silkscreen_text",
- "pcb_silkscreen_text_id": "pcb_silkscreen_text_77",
- "pcb_component_id": "",
- "text": "PWR ON",
- "anchor_position": {
- "x": 10.159999999999997,
- "y": 1.2699999999999818
- },
- "layer": "top",
- "font_size": 3.048,
- "font": "tscircuit2024"
- },
- {
- "type": "pcb_silkscreen_text",
- "pcb_silkscreen_text_id": "pcb_silkscreen_text_78",
- "pcb_component_id": "",
- "text": "PIC PROGRAMMER V03",
- "anchor_position": {
- "x": -28.575000000000017,
- "y": -41.910000000000025
- },
- "layer": "top",
- "font_size": 3.048,
- "font": "tscircuit2024"
- },
- {
- "type": "pcb_silkscreen_text",
- "pcb_silkscreen_text_id": "pcb_silkscreen_text_79",
- "pcb_component_id": "",
- "text": "1=>>",
- "anchor_position": {
- "x": 46.98999999999998,
- "y": -17.780000000000015
- },
- "layer": "top",
- "font_size": 3.048,
- "font": "tscircuit2024"
- },
- {
- "type": "pcb_silkscreen_text",
- "pcb_silkscreen_text_id": "pcb_silkscreen_text_80",
- "pcb_component_id": "",
- "text": "PIC 18 PINS",
- "anchor_position": {
- "x": 57.785,
- "y": -42.545000000000016
- },
- "layer": "top",
- "font_size": 3.048,
- "font": "tscircuit2024"
- },
- {
- "type": "pcb_silkscreen_text",
- "pcb_silkscreen_text_id": "pcb_silkscreen_text_81",
- "pcb_component_id": "",
- "text": "I2C PROM",
- "anchor_position": {
- "x": 12.699999999999989,
- "y": -24.13000000000001
- },
- "layer": "top",
- "font_size": 3.048,
- "font": "tscircuit2024"
- },
- {
- "type": "pcb_silkscreen_text",
- "pcb_silkscreen_text_id": "pcb_silkscreen_text_82",
- "pcb_component_id": "",
- "text": "VPP ON",
- "anchor_position": {
- "x": 9.524999999999977,
- "y": 9.524999999999991
- },
- "layer": "top",
- "font_size": 3.048,
- "font": "tscircuit2024"
- },
- {
- "type": "pcb_silkscreen_text",
- "pcb_silkscreen_text_id": "pcb_silkscreen_text_83",
- "pcb_component_id": "",
- "text": "1=>>",
- "anchor_position": {
- "x": 17.779999999999973,
- "y": -19.05000000000001
- },
- "layer": "top",
- "font_size": 3.048,
- "font": "tscircuit2024"
- },
- {
- "type": "pcb_silkscreen_text",
- "pcb_silkscreen_text_id": "pcb_silkscreen_text_84",
- "pcb_component_id": "",
- "text": "13V ADJUST",
- "anchor_position": {
- "x": -30.480000000000018,
- "y": -5.0800000000000125
- },
- "layer": "top",
- "font_size": 3.048,
- "font": "tscircuit2024"
- },
- {
- "type": "pcb_silkscreen_text",
- "pcb_silkscreen_text_id": "pcb_silkscreen_text_85",
- "pcb_component_id": "",
- "text": "PIC 8 PINS",
- "anchor_position": {
- "x": 29.84499999999997,
- "y": -41.910000000000025
- },
- "layer": "top",
- "font_size": 3.048,
- "font": "tscircuit2024"
- },
- {
- "type": "pcb_silkscreen_text",
- "pcb_silkscreen_text_id": "pcb_silkscreen_text_86",
- "pcb_component_id": "",
- "text": "PIC 28 PINS",
- "anchor_position": {
- "x": 59.05499999999998,
- "y": 45.08499999999999
- },
- "layer": "top",
- "font_size": 3.048,
- "font": "tscircuit2024"
- },
- {
- "type": "pcb_silkscreen_text",
- "pcb_silkscreen_text_id": "pcb_silkscreen_text_87",
- "pcb_component_id": "",
- "text": "1=>>",
- "anchor_position": {
- "x": 17.779999999999973,
- "y": -30.480000000000018
- },
- "layer": "top",
- "font_size": 3.048,
- "font": "tscircuit2024"
- },
- {
- "type": "pcb_silkscreen_text",
- "pcb_silkscreen_text_id": "pcb_silkscreen_text_88",
- "pcb_component_id": "",
- "text": "PIC 40 PINS",
- "anchor_position": {
- "x": 28.57499999999999,
- "y": 45.08499999999999
- },
- "layer": "top",
- "font_size": 3.048,
- "font": "tscircuit2024"
- },
- {
- "type": "pcb_silkscreen_text",
- "pcb_silkscreen_text_id": "pcb_silkscreen_text_89",
- "pcb_component_id": "",
- "text": "1=>>",
- "anchor_position": {
- "x": 48.329999999999984,
- "y": 41.469999999999985
- },
- "layer": "top",
- "font_size": 3.048,
- "font": "tscircuit2024"
- },
- {
- "type": "pcb_silkscreen_text",
- "pcb_silkscreen_text_id": "pcb_silkscreen_text_90",
- "pcb_component_id": "",
- "text": "J-P CHARRAS",
- "anchor_position": {
- "x": -59.05500000000002,
- "y": -46.99000000000001
- },
- "layer": "bottom",
- "font_size": 3.048,
- "font": "tscircuit2024"
- },
- {
- "type": "pcb_silkscreen_text",
- "pcb_silkscreen_text_id": "pcb_silkscreen_text_91",
- "pcb_component_id": "",
- "text": "PIC PROGRAMMER V03",
- "anchor_position": {
- "x": -29.210000000000022,
- "y": -44.45000000000002
- },
"layer": "bottom",
- "font_size": 3.048,
- "font": "tscircuit2024"
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_path",
@@ -62644,3953 +62384,3853 @@
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_14",
- "pcb_component_id": "pcb_component_0",
+ "pcb_component_id": "pcb_component_1",
"layer": "top",
"route": [
{
- "x": -69.63000000000002,
- "y": 14.802999999999983
+ "x": -67.80800000000002,
+ "y": 2.59999999999998
},
{
- "x": -69.63000000000002,
- "y": 7.802999999999983
+ "x": -66.00800000000002,
+ "y": 2.59999999999998
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_15",
- "pcb_component_id": "pcb_component_0",
+ "pcb_component_id": "pcb_component_1",
"layer": "top",
"route": [
{
- "x": -69.63000000000002,
- "y": 7.802999999999983
+ "x": -67.64800000000002,
+ "y": -1.4210854715202004e-14
},
{
- "x": -41.73000000000002,
- "y": 7.802999999999983
+ "x": -65.70800000000003,
+ "y": -1.4210854715202004e-14
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_16",
- "pcb_component_id": "pcb_component_0",
+ "pcb_component_id": "pcb_component_1",
"layer": "top",
"route": [
{
- "x": -41.73000000000002,
- "y": 14.802999999999983
+ "x": -66.90800000000002,
+ "y": 3.499999999999986
},
{
- "x": -69.63000000000002,
- "y": 14.802999999999983
+ "x": -66.90800000000002,
+ "y": 1.6999999999999886
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_17",
- "pcb_component_id": "pcb_component_0",
+ "pcb_component_id": "pcb_component_1",
"layer": "top",
"route": [
{
- "x": -41.73000000000002,
- "y": 7.802999999999983
+ "x": -65.70800000000003,
+ "y": 3.3699999999999903
},
{
- "x": -41.73000000000002,
- "y": 14.802999999999983
+ "x": -65.70800000000003,
+ "y": -3.3700000000000188
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_18",
- "pcb_component_id": "pcb_component_0",
+ "pcb_component_id": "pcb_component_1",
"layer": "top",
"route": [
{
- "x": -68.18000000000002,
- "y": 11.302999999999983
+ "x": -65.70800000000003,
+ "y": 3.3699999999999903
},
{
- "x": -64.68000000000002,
- "y": 11.302999999999983
+ "x": -63.908000000000015,
+ "y": 3.3699999999999903
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_19",
- "pcb_component_id": "pcb_component_0",
+ "pcb_component_id": "pcb_component_1",
"layer": "top",
"route": [
{
- "x": -64.68000000000002,
- "y": 8.052999999999983
+ "x": -65.70800000000003,
+ "y": -3.3700000000000188
},
{
- "x": -64.68000000000002,
- "y": 14.552999999999983
+ "x": -63.908000000000015,
+ "y": -3.3700000000000188
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_20",
- "pcb_component_id": "pcb_component_0",
+ "pcb_component_id": "pcb_component_1",
"layer": "top",
"route": [
{
- "x": -50.160000000000025,
- "y": 14.552999999999983
+ "x": -63.908000000000015,
+ "y": 3.3699999999999903
},
{
- "x": -64.68000000000002,
- "y": 14.552999999999983
+ "x": -63.008000000000024,
+ "y": 2.4699999999999847
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_21",
- "pcb_component_id": "pcb_component_0",
+ "pcb_component_id": "pcb_component_1",
"layer": "top",
"route": [
{
- "x": -50.160000000000025,
- "y": 8.052999999999983
+ "x": -63.908000000000015,
+ "y": -3.3700000000000188
},
{
- "x": -64.68000000000002,
- "y": 8.052999999999983
+ "x": -63.008000000000024,
+ "y": -2.470000000000013
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_22",
- "pcb_component_id": "pcb_component_0",
+ "pcb_component_id": "pcb_component_1",
"layer": "top",
"route": [
{
- "x": -49.280000000000015,
- "y": 10.402999999999977
+ "x": -63.008000000000024,
+ "y": 2.4699999999999847
},
{
- "x": -49.280000000000015,
- "y": 12.202999999999989
+ "x": -62.10800000000002,
+ "y": 3.3699999999999903
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_23",
- "pcb_component_id": "pcb_component_0",
+ "pcb_component_id": "pcb_component_1",
"layer": "top",
"route": [
{
- "x": -49.26000000000002,
- "y": 13.652999999999977
+ "x": -63.008000000000024,
+ "y": -2.470000000000013
},
{
- "x": -50.160000000000025,
- "y": 14.552999999999983
+ "x": -62.10800000000002,
+ "y": -3.3700000000000188
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_24",
- "pcb_component_id": "pcb_component_0",
+ "pcb_component_id": "pcb_component_1",
"layer": "top",
"route": [
{
- "x": -49.26000000000002,
- "y": 8.952999999999989
+ "x": -62.10800000000002,
+ "y": 3.3699999999999903
},
{
- "x": -50.160000000000025,
- "y": 8.052999999999983
+ "x": -47.46800000000002,
+ "y": 3.3699999999999903
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_25",
- "pcb_component_id": "pcb_component_0",
+ "pcb_component_id": "pcb_component_1",
"layer": "top",
"route": [
{
- "x": -48.380000000000024,
- "y": 11.302999999999983
+ "x": -62.10800000000002,
+ "y": -3.3700000000000188
},
{
- "x": -50.18000000000002,
- "y": 11.302999999999983
+ "x": -47.46800000000002,
+ "y": -3.3700000000000188
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_26",
- "pcb_component_id": "pcb_component_0",
+ "pcb_component_id": "pcb_component_1",
"layer": "top",
"route": [
{
- "x": -48.360000000000014,
- "y": 14.552999999999983
+ "x": -47.46800000000002,
+ "y": 3.3699999999999903
},
{
- "x": -49.26000000000002,
- "y": 13.652999999999977
+ "x": -47.46800000000002,
+ "y": -3.3700000000000188
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_27",
- "pcb_component_id": "pcb_component_0",
+ "pcb_component_id": "pcb_component_1",
"layer": "top",
"route": [
{
- "x": -48.360000000000014,
- "y": 8.052999999999983
+ "x": -45.52800000000002,
+ "y": -1.4210854715202004e-14
},
{
- "x": -49.26000000000002,
- "y": 8.952999999999989
+ "x": -47.46800000000002,
+ "y": -1.4210854715202004e-14
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_28",
- "pcb_component_id": "pcb_component_0",
+ "pcb_component_id": "pcb_component_8",
"layer": "top",
"route": [
{
- "x": -46.68000000000002,
- "y": 14.552999999999983
+ "x": 13.96999999999997,
+ "y": -3.8100000000000023
},
{
- "x": -48.360000000000014,
- "y": 14.552999999999983
+ "x": 17.779999999999973,
+ "y": -3.8100000000000023
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.381
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_29",
- "pcb_component_id": "pcb_component_0",
+ "pcb_component_id": "pcb_component_8",
"layer": "top",
"route": [
{
- "x": -46.68000000000002,
- "y": 8.052999999999983
+ "x": 16.509999999999962,
+ "y": 62.22999999999999
},
{
- "x": -48.360000000000014,
- "y": 8.052999999999983
+ "x": 16.509999999999962,
+ "y": 55.879999999999995
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.381
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_30",
- "pcb_component_id": "pcb_component_0",
+ "pcb_component_id": "pcb_component_8",
"layer": "top",
"route": [
{
- "x": -46.68000000000002,
- "y": 8.052999999999983
+ "x": 17.754999999999967,
+ "y": 47.43499999999999
},
{
- "x": -46.68000000000002,
- "y": 14.552999999999983
+ "x": 19.024999999999977,
+ "y": 48.70499999999999
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.381
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_31",
- "pcb_component_id": "pcb_component_0",
+ "pcb_component_id": "pcb_component_8",
"layer": "top",
"route": [
{
- "x": -43.18000000000002,
- "y": 11.302999999999983
+ "x": 17.779999999999973,
+ "y": 53.974999999999994
},
{
- "x": -46.68000000000002,
- "y": 11.302999999999983
+ "x": 17.754999999999967,
+ "y": 47.43499999999999
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.381
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_32",
- "pcb_component_id": "pcb_component_1",
+ "pcb_component_id": "pcb_component_8",
"layer": "top",
"route": [
{
- "x": -67.80800000000002,
- "y": 2.59999999999998
+ "x": 17.779999999999973,
+ "y": -8.890000000000015
},
{
- "x": -66.00800000000002,
- "y": 2.59999999999998
+ "x": 13.96999999999997,
+ "y": -8.890000000000015
}
],
- "stroke_width": 0.12
+ "stroke_width": 0.381
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_33",
- "pcb_component_id": "pcb_component_1",
+ "pcb_component_id": "pcb_component_8",
"layer": "top",
"route": [
{
- "x": -67.64800000000002,
- "y": -1.4210854715202004e-14
+ "x": 17.779999999999973,
+ "y": -15.240000000000009
},
{
- "x": -65.70800000000003,
- "y": -1.4210854715202004e-14
+ "x": 17.754999999999967,
+ "y": 47.43499999999999
}
],
- "stroke_width": 0.12
+ "stroke_width": 0.381
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_34",
- "pcb_component_id": "pcb_component_1",
+ "pcb_component_id": "pcb_component_8",
"layer": "top",
"route": [
{
- "x": -66.90800000000002,
- "y": 3.499999999999986
+ "x": 19.029999999999973,
+ "y": 48.66999999999999
},
{
- "x": -66.90800000000002,
- "y": 1.6999999999999886
+ "x": 39.349999999999966,
+ "y": 48.66999999999999
}
],
- "stroke_width": 0.12
+ "stroke_width": 0.381
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_35",
- "pcb_component_id": "pcb_component_1",
+ "pcb_component_id": "pcb_component_8",
"layer": "top",
"route": [
{
- "x": -65.70800000000003,
- "y": 3.3699999999999903
+ "x": 19.049999999999983,
+ "y": 53.974999999999994
},
{
- "x": -65.70800000000003,
- "y": -3.3700000000000188
+ "x": 19.049999999999983,
+ "y": 44.44999999999999
}
],
- "stroke_width": 0.12
+ "stroke_width": 0.381
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_36",
- "pcb_component_id": "pcb_component_1",
+ "pcb_component_id": "pcb_component_8",
"layer": "top",
"route": [
{
- "x": -65.70800000000003,
- "y": 3.3699999999999903
+ "x": 19.049999999999983,
+ "y": 44.44999999999999
},
{
- "x": -63.908000000000015,
- "y": 3.3699999999999903
+ "x": 17.779999999999973,
+ "y": 44.44999999999999
}
],
- "stroke_width": 0.12
+ "stroke_width": 0.381
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_37",
- "pcb_component_id": "pcb_component_1",
+ "pcb_component_id": "pcb_component_8",
"layer": "top",
"route": [
{
- "x": -65.70800000000003,
- "y": -3.3700000000000188
+ "x": 19.049999999999983,
+ "y": -16.51000000000002
},
{
- "x": -63.908000000000015,
- "y": -3.3700000000000188
+ "x": 17.779999999999973,
+ "y": -15.240000000000009
}
],
- "stroke_width": 0.12
+ "stroke_width": 0.381
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_38",
- "pcb_component_id": "pcb_component_1",
+ "pcb_component_id": "pcb_component_8",
"layer": "top",
"route": [
{
- "x": -63.908000000000015,
- "y": 3.3699999999999903
+ "x": 20.319999999999965,
+ "y": 55.879999999999995
},
{
- "x": -63.008000000000024,
- "y": 2.4699999999999847
+ "x": 20.319999999999965,
+ "y": 62.22999999999999
}
],
- "stroke_width": 0.12
+ "stroke_width": 0.381
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_39",
- "pcb_component_id": "pcb_component_1",
+ "pcb_component_id": "pcb_component_8",
"layer": "top",
"route": [
{
- "x": -63.908000000000015,
- "y": -3.3700000000000188
+ "x": 24.129999999999967,
+ "y": 44.44999999999999
},
{
- "x": -63.008000000000024,
- "y": -2.470000000000013
+ "x": 34.289999999999964,
+ "y": 44.44999999999999
}
],
- "stroke_width": 0.12
+ "stroke_width": 0.381
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_40",
- "pcb_component_id": "pcb_component_1",
+ "pcb_component_id": "pcb_component_8",
"layer": "top",
"route": [
{
- "x": -63.008000000000024,
- "y": 2.4699999999999847
+ "x": 24.129999999999967,
+ "y": -11.430000000000007
},
{
- "x": -62.10800000000002,
- "y": 3.3699999999999903
+ "x": 24.129999999999967,
+ "y": 44.44999999999999
}
],
- "stroke_width": 0.12
+ "stroke_width": 0.381
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_41",
- "pcb_component_id": "pcb_component_1",
+ "pcb_component_id": "pcb_component_8",
"layer": "top",
"route": [
{
- "x": -63.008000000000024,
- "y": -2.470000000000013
+ "x": 34.289999999999964,
+ "y": 44.44999999999999
},
{
- "x": -62.10800000000002,
- "y": -3.3700000000000188
+ "x": 34.289999999999964,
+ "y": -11.430000000000007
}
],
- "stroke_width": 0.12
+ "stroke_width": 0.381
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_42",
- "pcb_component_id": "pcb_component_1",
+ "pcb_component_id": "pcb_component_8",
"layer": "top",
"route": [
{
- "x": -62.10800000000002,
- "y": 3.3699999999999903
+ "x": 34.289999999999964,
+ "y": -11.430000000000007
},
{
- "x": -47.46800000000002,
- "y": 3.3699999999999903
+ "x": 24.129999999999967,
+ "y": -11.430000000000007
}
],
- "stroke_width": 0.12
+ "stroke_width": 0.381
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_43",
- "pcb_component_id": "pcb_component_1",
+ "pcb_component_id": "pcb_component_8",
"layer": "top",
"route": [
{
- "x": -62.10800000000002,
- "y": -3.3700000000000188
+ "x": 39.35499999999996,
+ "y": 48.70499999999999
},
{
- "x": -47.46800000000002,
- "y": -3.3700000000000188
+ "x": 40.62499999999997,
+ "y": 47.43499999999999
}
],
- "stroke_width": 0.12
+ "stroke_width": 0.381
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_44",
- "pcb_component_id": "pcb_component_1",
+ "pcb_component_id": "pcb_component_8",
"layer": "top",
"route": [
{
- "x": -47.46800000000002,
- "y": 3.3699999999999903
+ "x": 39.369999999999976,
+ "y": -16.51000000000002
},
{
- "x": -47.46800000000002,
- "y": -3.3700000000000188
- }
+ "x": 19.049999999999983,
+ "y": -16.51000000000002
+ }
],
- "stroke_width": 0.12
+ "stroke_width": 0.381
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_45",
- "pcb_component_id": "pcb_component_1",
+ "pcb_component_id": "pcb_component_8",
"layer": "top",
"route": [
{
- "x": -45.52800000000002,
- "y": -1.4210854715202004e-14
+ "x": 40.62499999999997,
+ "y": 47.43499999999999
},
{
- "x": -47.46800000000002,
- "y": -1.4210854715202004e-14
+ "x": 40.639999999999986,
+ "y": -15.240000000000009
}
],
- "stroke_width": 0.12
+ "stroke_width": 0.381
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_46",
- "pcb_component_id": "pcb_component_1",
+ "pcb_component_id": "pcb_component_8",
"layer": "top",
"route": [
{
- "x": -70.53800000000003,
- "y": 3.499999999999986
+ "x": 40.639999999999986,
+ "y": 39.36999999999999
},
{
- "x": -70.53800000000003,
- "y": -3.500000000000014
+ "x": 44.44999999999999,
+ "y": 39.36999999999999
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.381
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_47",
- "pcb_component_id": "pcb_component_1",
+ "pcb_component_id": "pcb_component_8",
"layer": "top",
"route": [
{
- "x": -70.53800000000003,
- "y": -3.500000000000014
+ "x": 40.639999999999986,
+ "y": -15.240000000000009
},
{
- "x": -42.63800000000002,
- "y": -3.500000000000014
+ "x": 39.369999999999976,
+ "y": -16.51000000000002
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.381
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_48",
- "pcb_component_id": "pcb_component_1",
+ "pcb_component_id": "pcb_component_8",
"layer": "top",
"route": [
{
- "x": -42.63800000000002,
- "y": 3.499999999999986
+ "x": 44.44999999999999,
+ "y": 44.44999999999999
},
{
- "x": -70.53800000000003,
- "y": 3.499999999999986
+ "x": 40.639999999999986,
+ "y": 44.44999999999999
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.381
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_49",
- "pcb_component_id": "pcb_component_1",
+ "pcb_component_id": "pcb_component_8",
"layer": "top",
"route": [
{
- "x": -42.63800000000002,
- "y": -3.500000000000014
+ "x": 13.971334999999982,
+ "y": -8.890665000000013
},
{
- "x": -42.63800000000002,
- "y": 3.499999999999986
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_50",
- "pcb_component_id": "pcb_component_1",
- "layer": "top",
- "route": [
- {
- "x": -69.08800000000002,
- "y": -1.4210854715202004e-14
+ "x": 13.88281792404598,
+ "y": -8.844503188640033
},
{
- "x": -65.58800000000002,
- "y": -1.4210854715202004e-14
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_51",
- "pcb_component_id": "pcb_component_1",
- "layer": "top",
- "route": [
- {
- "x": -65.58800000000002,
- "y": 3.249999999999986
+ "x": 13.795978069270888,
+ "y": -8.795258643905441
},
{
- "x": -65.58800000000002,
- "y": -3.250000000000014
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_52",
- "pcb_component_id": "pcb_component_1",
- "layer": "top",
- "route": [
- {
- "x": -65.58800000000002,
- "y": 3.249999999999986
+ "x": 13.71092275327183,
+ "y": -8.742992222717618
},
{
- "x": -63.908000000000015,
- "y": 3.249999999999986
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_53",
- "pcb_component_id": "pcb_component_1",
- "layer": "top",
- "route": [
- {
- "x": -65.58800000000002,
- "y": -3.250000000000014
+ "x": 13.62775708829443,
+ "y": -8.68776851646436
},
{
- "x": -63.908000000000015,
- "y": -3.250000000000014
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_54",
- "pcb_component_id": "pcb_component_1",
- "layer": "top",
- "route": [
- {
- "x": -63.908000000000015,
- "y": 3.249999999999986
+ "x": 13.546583851333821,
+ "y": -8.629655771177141
},
{
- "x": -63.008000000000024,
- "y": 2.34999999999998
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_55",
- "pcb_component_id": "pcb_component_1",
- "layer": "top",
- "route": [
- {
- "x": -63.908000000000015,
- "y": -3.250000000000014
+ "x": 13.467503357121842,
+ "y": -8.568725803191995
},
{
- "x": -63.008000000000024,
- "y": -2.3500000000000085
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_56",
- "pcb_component_id": "pcb_component_1",
- "layer": "top",
- "route": [
- {
- "x": -63.88800000000002,
- "y": -1.4210854715202004e-14
+ "x": 13.39061333415711,
+ "y": -8.505053910398061
},
{
- "x": -62.08800000000002,
- "y": -1.4210854715202004e-14
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_57",
- "pcb_component_id": "pcb_component_1",
- "layer": "top",
- "route": [
- {
- "x": -63.008000000000024,
- "y": 2.34999999999998
+ "x": 13.31600880393097,
+ "y": -8.438718779183787
},
{
- "x": -62.10800000000002,
- "y": 3.249999999999986
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_58",
- "pcb_component_id": "pcb_component_1",
- "layer": "top",
- "route": [
- {
- "x": -63.008000000000024,
- "y": -2.3500000000000085
+ "x": 13.24378196349906,
+ "y": -8.36980238719535
},
{
- "x": -62.10800000000002,
- "y": -3.250000000000014
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_59",
- "pcb_component_id": "pcb_component_1",
- "layer": "top",
- "route": [
- {
- "x": -62.98800000000003,
- "y": 0.8999999999999915
+ "x": 13.17402207154322,
+ "y": -8.298389902027907
},
{
- "x": -62.98800000000003,
- "y": -0.9000000000000199
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_60",
- "pcb_component_id": "pcb_component_1",
- "layer": "top",
- "route": [
- {
- "x": -62.10800000000002,
- "y": 3.249999999999986
+ "x": 13.10681533806465,
+ "y": -8.22456957597457
},
{
- "x": -47.58800000000002,
- "y": 3.249999999999986
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_61",
- "pcb_component_id": "pcb_component_1",
- "layer": "top",
- "route": [
- {
- "x": -62.10800000000002,
- "y": -3.250000000000014
+ "x": 13.042244817844704,
+ "y": -8.148432636963292
},
{
- "x": -47.58800000000002,
- "y": -3.250000000000014
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_62",
- "pcb_component_id": "pcb_component_1",
- "layer": "top",
- "route": [
- {
- "x": -47.58800000000002,
- "y": 3.249999999999986
+ "x": 12.980390307804953,
+ "y": -8.070073175816475
},
{
- "x": -47.58800000000002,
- "y": -3.250000000000014
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_63",
- "pcb_component_id": "pcb_component_1",
- "layer": "top",
- "route": [
- {
- "x": -44.08800000000002,
- "y": -1.4210854715202004e-14
+ "x": 12.921328248393252,
+ "y": -7.989588029972481
},
{
- "x": -47.58800000000002,
- "y": -1.4210854715202004e-14
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_64",
- "pcb_component_id": "pcb_component_2",
- "layer": "top",
- "route": [
- {
- "x": -71.90000000000002,
- "y": -45.72
+ "x": 12.865131629117883,
+ "y": -7.907076663813029
},
{
- "x": -72.22731801020149,
- "y": -44.07446124083011
+ "x": 12.811869898346373,
+ "y": -7.822641045743964
},
{
- "x": -73.15944084089786,
- "y": -42.67944084089785
+ "x": 12.761608877480512,
+ "y": -7.736385522181692
},
{
- "x": -74.55446124083014,
- "y": -41.74731801020147
+ "x": 12.71441067961345,
+ "y": -7.648416688600818
},
{
- "x": -76.20000000000002,
- "y": -41.42
+ "x": 12.670333632769768,
+ "y": -7.55884325780228
},
{
- "x": -77.8455387591699,
- "y": -41.74731801020147
+ "x": 12.629432207823186,
+ "y": -7.467775925564979
},
{
- "x": -79.24055915910218,
- "y": -42.67944084089785
+ "x": 12.591756951180685,
+ "y": -7.375327233846804
},
{
- "x": -80.17268198979855,
- "y": -44.07446124083011
+ "x": 12.557354422316934,
+ "y": -7.281611431704064
},
{
- "x": -80.50000000000001,
- "y": -45.72
+ "x": 12.526267136235475,
+ "y": -7.186744334101306
},
{
- "x": -80.17268198979855,
- "y": -47.36553875916989
+ "x": 12.498533510928326,
+ "y": -7.090843178786045
},
{
- "x": -79.24055915910218,
- "y": -48.76055915910215
+ "x": 12.474187819898532,
+ "y": -6.994026481405058
},
{
- "x": -77.84553875916991,
- "y": -49.69268198979853
+ "x": 12.45326014980472,
+ "y": -6.896413889041554
},
{
- "x": -76.20000000000002,
- "y": -50.019999999999996
+ "x": 12.435776363279558,
+ "y": -6.798126032354048
},
{
- "x": -74.55446124083014,
- "y": -49.69268198979853
+ "x": 12.421758066968579,
+ "y": -6.699284376499762
},
{
- "x": -73.15944084089786,
- "y": -48.76055915910215
+ "x": 12.411222584828437,
+ "y": -6.600011071026657
},
{
- "x": -72.22731801020149,
- "y": -47.36553875916989
+ "x": 12.404182936717689,
+ "y": -6.500428798919842
},
{
- "x": -71.90000000000002,
- "y": -45.72
- }
- ],
- "stroke_width": 0.15
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_65",
- "pcb_component_id": "pcb_component_2",
- "layer": "top",
- "route": [
- {
- "x": -71.65000000000002,
- "y": -45.72
+ "x": 12.400647822306809,
+ "y": -6.400660624988561
},
{
- "x": -71.99634812707366,
- "y": -43.97879038273884
+ "x": 12.400621610326994,
+ "y": -6.3008298437815
},
{
- "x": -72.98266414560122,
- "y": -42.50266414560121
+ "x": 12.404104333171318,
+ "y": -6.20105982721806
},
{
- "x": -74.45879038273885,
- "y": -41.51634812707364
+ "x": 12.411091686854576,
+ "y": -6.1014738721240604
},
{
- "x": -76.20000000000002,
- "y": -41.17
+ "x": 12.421575036332314,
+ "y": -6.002195047860226
},
{
- "x": -77.94120961726118,
- "y": -41.51634812707364
+ "x": 12.435541426172023,
+ "y": -5.903346044231839
},
{
- "x": -79.41733585439881,
- "y": -42.50266414560121
+ "x": 12.45297359656368,
+ "y": -5.80504901986734
},
{
- "x": -80.40365187292637,
- "y": -43.97879038273884
+ "x": 12.473850004649478,
+ "y": -5.707425451253428
},
{
- "x": -80.75000000000001,
- "y": -45.72
+ "x": 12.498144851146833,
+ "y": -5.610595982613191
},
{
- "x": -80.40365187292637,
- "y": -47.461209617261154
+ "x": 12.525828112231352,
+ "y": -5.5146802768126975
},
{
- "x": -79.41733585439881,
- "y": -48.93733585439879
+ "x": 12.556865576640632,
+ "y": -5.419796867480386
},
{
- "x": -77.94120961726118,
- "y": -49.92365187292635
+ "x": 12.59121888795275,
+ "y": -5.326063012521942
},
{
- "x": -76.20000000000002,
- "y": -50.269999999999996
+ "x": 12.628845591987783,
+ "y": -5.233594549211787
},
{
- "x": -74.45879038273885,
- "y": -49.92365187292636
+ "x": 12.669699189272876,
+ "y": -5.14250575104019
},
{
- "x": -72.98266414560123,
- "y": -48.93733585439879
+ "x": 12.713729192506946,
+ "y": -5.052909186492826
},
{
- "x": -71.99634812707366,
- "y": -47.46120961726116
+ "x": 12.760881188953249,
+ "y": -4.964915579937539
},
{
- "x": -71.65000000000002,
- "y": -45.72
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_66",
- "pcb_component_id": "pcb_component_3",
- "layer": "top",
- "route": [
- {
- "x": 9.379999999999985,
- "y": -45.72
+ "x": 12.811096907683435,
+ "y": -4.878633674789981
},
{
- "x": 9.052681989798517,
- "y": -44.07446124083011
+ "x": 12.864314291589125,
+ "y": -4.794170099127371
},
{
- "x": 8.12055915910214,
- "y": -42.67944084089785
+ "x": 12.920467574072944,
+ "y": -4.711629233916426
},
{
- "x": 6.72553875916987,
- "y": -41.74731801020147
+ "x": 12.979487360323418,
+ "y": -4.63111308401821
},
{
- "x": 5.079999999999984,
- "y": -41.42
+ "x": 13.04130071307381,
+ "y": -4.552721152129578
},
{
- "x": 3.4344612408300983,
- "y": -41.74731801020147
+ "x": 13.105831242738901,
+ "y": -4.476550315816581
},
{
- "x": 2.03944084089783,
- "y": -42.67944084089785
+ "x": 13.172999201817902,
+ "y": -4.402694707792236
},
{
- "x": 1.1073180102014515,
- "y": -44.07446124083011
+ "x": 13.242721583447207,
+ "y": -4.331245599586353
},
{
- "x": 0.7799999999999843,
- "y": -45.72
+ "x": 13.31491222398131,
+ "y": -4.2622912887511575
},
{
- "x": 1.1073180102014506,
- "y": -47.36553875916989
+ "x": 13.389481909474569,
+ "y": -4.195916989742315
},
{
- "x": 2.039440840897829,
- "y": -48.76055915910215
+ "x": 13.466338485932823,
+ "y": -4.1322047286099775
},
{
- "x": 3.4344612408300956,
- "y": -49.69268198979853
+ "x": 13.545386973198276,
+ "y": -4.071233241630196
},
{
- "x": 5.079999999999983,
- "y": -50.019999999999996
+ "x": 13.626529682326833,
+ "y": -4.013077878001724
},
{
- "x": 6.725538759169871,
- "y": -49.69268198979853
+ "x": 13.709666336313262,
+ "y": -3.9578105067287908
},
{
- "x": 8.120559159102138,
- "y": -48.76055915910215
+ "x": 13.794694194014482,
+ "y": -3.905499427804557
},
{
- "x": 9.052681989798515,
- "y": -47.36553875916989
+ "x": 13.881508177118207,
+ "y": -3.856209287805285
},
{
- "x": 9.379999999999985,
- "y": -45.72
+ "x": 13.970000999999712,
+ "y": -3.810000999999488
}
],
- "stroke_width": 0.15
+ "stroke_width": 0.381
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_67",
- "pcb_component_id": "pcb_component_3",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_50",
+ "pcb_component_id": "pcb_component_8",
"layer": "top",
"route": [
{
- "x": 9.629999999999985,
- "y": -45.72
+ "x": 16.509948999999978,
+ "y": 62.22999999999999
},
{
- "x": 9.283651872926338,
- "y": -43.97879038273884
+ "x": 16.512572050863525,
+ "y": 62.32993567971273
},
{
- "x": 8.297335854398776,
- "y": -42.50266414560121
+ "x": 16.52043394238268,
+ "y": 62.429596159027355
},
{
- "x": 6.821209617261143,
- "y": -41.51634812707364
+ "x": 16.53351302475349,
+ "y": 62.528706996375334
},
{
- "x": 5.079999999999984,
- "y": -41.17
+ "x": 16.551773281252935,
+ "y": 62.626995263773104
},
{
- "x": 3.338790382738826,
- "y": -41.51634812707364
+ "x": 16.575164427420475,
+ "y": 62.724190298401666
},
{
- "x": 1.8626641456011934,
- "y": -42.50266414560121
+ "x": 16.603622049529775,
+ "y": 62.8200244479485
},
{
- "x": 0.87634812707363,
- "y": -43.97879038273884
+ "x": 16.63706778196891,
+ "y": 62.91423380765916
},
{
- "x": 0.5299999999999843,
- "y": -45.72
+ "x": 16.6754095230408,
+ "y": 63.006558947069045
},
{
- "x": 0.8763481270736291,
- "y": -47.461209617261154
+ "x": 16.718541688589823,
+ "y": 63.096745624414055
},
{
- "x": 1.862664145601192,
- "y": -48.93733585439879
+ "x": 16.766345502755684,
+ "y": 63.18454548675264
},
{
- "x": 3.3387903827388232,
- "y": -49.92365187292635
+ "x": 16.818689325054294,
+ "y": 63.26971675387161
},
{
- "x": 5.079999999999983,
- "y": -50.269999999999996
+ "x": 16.87542901288478,
+ "y": 63.352024884092025
},
{
- "x": 6.821209617261143,
- "y": -49.92365187292636
+ "x": 16.936408318464288,
+ "y": 63.43124322014195
},
{
- "x": 8.297335854398774,
- "y": -48.93733585439879
+ "x": 17.001459319097876,
+ "y": 63.50715361331739
},
{
- "x": 9.283651872926338,
- "y": -47.46120961726116
+ "x": 17.07040287959802,
+ "y": 63.579547024212616
},
{
- "x": 9.629999999999985,
- "y": -45.72
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_68",
- "pcb_component_id": "pcb_component_4",
- "layer": "top",
- "route": [
- {
- "x": 80.49999999999999,
- "y": -45.72
+ "x": 17.14304914558096,
+ "y": 63.6482240983656
},
{
- "x": 80.17268198979852,
- "y": -44.07446124083011
+ "x": 17.219198066281137,
+ "y": 63.712995715233475
},
{
- "x": 79.24055915910215,
- "y": -42.67944084089785
+ "x": 17.298639945443995,
+ "y": 63.77368350898604
},
{
- "x": 77.84553875916987,
- "y": -41.74731801020147
+ "x": 17.381156018780274,
+ "y": 63.83012035968345
},
{
- "x": 76.19999999999999,
- "y": -41.42
+ "x": 17.46651905639152,
+ "y": 63.882150853485285
},
{
- "x": 74.55446124083011,
- "y": -41.74731801020147
+ "x": 17.554493988507858,
+ "y": 63.929631710623795
},
{
- "x": 73.15944084089783,
- "y": -42.67944084089785
+ "x": 17.644838552814974,
+ "y": 63.97243217996272
},
{
- "x": 72.22731801020146,
- "y": -44.07446124083011
+ "x": 17.73730396158777,
+ "y": 64.01043439905531
},
{
- "x": 71.89999999999999,
- "y": -45.72
+ "x": 17.831635586793197,
+ "y": 64.04353371870974
},
{
- "x": 72.22731801020146,
- "y": -47.36553875916989
+ "x": 17.927573661276142,
+ "y": 64.0716389911685
},
{
- "x": 73.15944084089783,
- "y": -48.76055915910215
+ "x": 18.024853994097356,
+ "y": 64.09467282110785
},
{
- "x": 74.5544612408301,
- "y": -49.69268198979853
+ "x": 18.123208698053077,
+ "y": 64.11257177876648
},
{
- "x": 76.19999999999999,
- "y": -50.019999999999996
+ "x": 18.2223669273736,
+ "y": 64.12528657461607
},
{
- "x": 77.84553875916987,
- "y": -49.69268198979853
+ "x": 18.322055623569014,
+ "y": 64.1327821950932
},
{
- "x": 79.24055915910215,
- "y": -48.76055915910215
+ "x": 18.422000267368134,
+ "y": 64.13503799901835
},
{
- "x": 80.17268198979852,
- "y": -47.36553875916989
+ "x": 18.521925634680116,
+ "y": 64.132047774437
},
{
- "x": 80.49999999999999,
- "y": -45.72
- }
- ],
- "stroke_width": 0.15
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_69",
- "pcb_component_id": "pcb_component_4",
- "layer": "top",
- "route": [
- {
- "x": 80.74999999999999,
- "y": -45.72
+ "x": 18.621556554497033,
+ "y": 64.1238197557258
},
{
- "x": 80.40365187292635,
- "y": -43.97879038273884
+ "x": 18.720618666650324,
+ "y": 64.11037660091705
},
{
- "x": 79.41733585439879,
- "y": -42.50266414560121
+ "x": 18.818839177334127,
+ "y": 64.09175532930385
},
{
- "x": 77.94120961726115,
- "y": -41.51634812707364
+ "x": 18.915947610315555,
+ "y": 64.06800721949757
},
{
- "x": 76.19999999999999,
- "y": -41.17
+ "x": 19.01167655176269,
+ "y": 64.03919766821866
},
{
- "x": 74.45879038273883,
- "y": -41.51634812707364
+ "x": 19.105762386639498,
+ "y": 64.00540601020941
},
{
- "x": 72.98266414560119,
- "y": -42.50266414560121
+ "x": 19.197946024639776,
+ "y": 63.966725299764654
},
{
- "x": 71.99634812707363,
- "y": -43.97879038273884
+ "x": 19.28797361366111,
+ "y": 63.92326205448214
},
{
- "x": 71.64999999999999,
- "y": -45.72
+ "x": 19.375597238853857,
+ "y": 63.87513596193804
},
{
- "x": 71.99634812707363,
- "y": -47.461209617261154
+ "x": 19.460575605320514,
+ "y": 63.82247955009545
},
{
- "x": 72.98266414560119,
- "y": -48.93733585439879
+ "x": 19.542674702585316,
+ "y": 63.765437822353505
},
{
- "x": 74.45879038273883,
- "y": -49.92365187292635
+ "x": 19.621668449003977,
+ "y": 63.70416785824203
},
{
- "x": 76.19999999999999,
- "y": -50.269999999999996
+ "x": 19.6973393143397,
+ "y": 63.6388383808614
},
{
- "x": 77.94120961726115,
- "y": -49.92365187292636
+ "x": 19.769478918790128,
+ "y": 63.56962929225871
},
{
- "x": 79.41733585439877,
- "y": -48.93733585439879
+ "x": 19.837888606816676,
+ "y": 63.496731178019786
},
{
- "x": 80.40365187292635,
- "y": -47.46120961726116
+ "x": 19.90237999419506,
+ "y": 63.42034478244119
},
{
- "x": 80.74999999999999,
- "y": -45.72
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_70",
- "pcb_component_id": "pcb_component_5",
- "layer": "top",
- "route": [
- {
- "x": 80.49999999999999,
- "y": 45.719999999999985
+ "x": 19.962775486781368,
+ "y": 63.34068045572754
},
{
- "x": 80.17268198979852,
- "y": 47.36553875916987
+ "x": 20.01890876956452,
+ "y": 63.25795757473644
},
{
- "x": 79.24055915910215,
- "y": 48.76055915910214
+ "x": 20.070625264658872,
+ "y": 63.172403938866104
},
{
- "x": 77.84553875916987,
- "y": 49.692681989798515
+ "x": 20.11778255697547,
+ "y": 63.084255142749264
},
{
- "x": 76.19999999999999,
- "y": 50.01999999999998
+ "x": 20.160250786399587,
+ "y": 62.99375392748085
},
{
- "x": 74.55446124083011,
- "y": 49.692681989798515
+ "x": 20.197913005395236,
+ "y": 62.901149512166
},
{
- "x": 73.15944084089783,
- "y": 48.76055915910214
+ "x": 20.23066550105105,
+ "y": 62.806696907629146
},
{
- "x": 72.22731801020146,
- "y": 47.36553875916987
+ "x": 20.258418080681395,
+ "y": 62.71065621417402
},
{
- "x": 71.89999999999999,
- "y": 45.719999999999985
+ "x": 20.28109432019582,
+ "y": 62.61329190532851
},
{
- "x": 72.22731801020146,
- "y": 44.0744612408301
+ "x": 20.298631774553087,
+ "y": 62.51487209954661
},
{
- "x": 73.15944084089783,
- "y": 42.67944084089783
+ "x": 20.31098214972016,
+ "y": 62.41566782187315
},
{
- "x": 74.5544612408301,
- "y": 41.747318010201454
+ "x": 20.318111435662615,
+ "y": 62.31595225760442
},
{
- "x": 76.19999999999999,
- "y": 41.41999999999999
+ "x": 20.320000000000277,
+ "y": 62.21599999999999
+ }
+ ],
+ "stroke_width": 0.381
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_51",
+ "pcb_component_id": "pcb_component_8",
+ "layer": "top",
+ "route": [
+ {
+ "x": 20.319999999999965,
+ "y": 55.879999999999995
},
{
- "x": 77.84553875916987,
- "y": 41.747318010201454
+ "x": 20.317389263707383,
+ "y": 55.780300003357226
},
{
- "x": 79.24055915910215,
- "y": 42.67944084089783
+ "x": 20.309564210676456,
+ "y": 55.68087327747519
},
{
- "x": 80.17268198979852,
- "y": 44.0744612408301
+ "x": 20.296546288833582,
+ "y": 55.581992344098474
},
{
- "x": 80.49999999999999,
- "y": 45.719999999999985
- }
- ],
- "stroke_width": 0.15
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_71",
- "pcb_component_id": "pcb_component_5",
- "layer": "top",
- "route": [
+ "x": 20.27837117939771,
+ "y": 55.483928228992326
+ },
{
- "x": 80.74999999999999,
- "y": 45.719999999999985
+ "x": 20.25508869908046,
+ "y": 55.3869497190799
},
{
- "x": 80.40365187292635,
- "y": 47.46120961726114
+ "x": 20.226762663542047,
+ "y": 55.29132262571597
},
{
- "x": 79.41733585439879,
- "y": 48.937335854398775
+ "x": 20.19347071247691,
+ "y": 55.197309056116495
},
{
- "x": 77.94120961726115,
- "y": 49.92365187292634
+ "x": 20.15530409680889,
+ "y": 55.105166694940934
},
{
- "x": 76.19999999999999,
- "y": 50.26999999999998
+ "x": 20.11236742857855,
+ "y": 55.015148097996544
},
{
- "x": 74.45879038273883,
- "y": 49.92365187292634
+ "x": 20.06477839420907,
+ "y": 54.92750000000043
},
{
- "x": 72.98266414560119,
- "y": 48.937335854398775
+ "x": 20.01266743193574,
+ "y": 54.84246263829685
},
{
- "x": 71.99634812707363,
- "y": 47.46120961726114
+ "x": 19.956177374283982,
+ "y": 54.76026909438336
},
{
- "x": 71.64999999999999,
- "y": 45.719999999999985
+ "x": 19.895463056575238,
+ "y": 54.68114465505062
},
{
- "x": 71.99634812707363,
- "y": 43.97879038273883
+ "x": 19.830690892534136,
+ "y": 54.60530619488698
},
{
- "x": 72.98266414560119,
- "y": 42.502664145601194
+ "x": 19.762038418160103,
+ "y": 54.532961581840276
},
{
- "x": 74.45879038273883,
- "y": 41.516348127073634
+ "x": 19.689693805113365,
+ "y": 54.46430910746625
},
{
- "x": 76.19999999999999,
- "y": 41.16999999999999
+ "x": 19.613855344949684,
+ "y": 54.3995369434252
},
{
- "x": 77.94120961726115,
- "y": 41.51634812707363
+ "x": 19.534730905616925,
+ "y": 54.33882262571649
},
{
- "x": 79.41733585439877,
- "y": 42.502664145601194
+ "x": 19.452537361703406,
+ "y": 54.28233256806477
},
{
- "x": 80.40365187292635,
- "y": 43.97879038273882
+ "x": 19.367499999999808,
+ "y": 54.23022160579147
},
{
- "x": 80.74999999999999,
- "y": 45.719999999999985
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_72",
- "pcb_component_id": "pcb_component_6",
- "layer": "top",
- "route": [
+ "x": 19.279851902003685,
+ "y": 54.18263257142202
+ },
{
- "x": 9.379999999999985,
- "y": 45.719999999999985
+ "x": 19.189833305059267,
+ "y": 54.13969590319173
},
{
- "x": 9.052681989798517,
- "y": 47.36553875916987
+ "x": 19.09769094388369,
+ "y": 54.10152928752374
},
{
- "x": 8.12055915910214,
- "y": 48.76055915910214
+ "x": 19.003677374284194,
+ "y": 54.068237336458665
},
{
- "x": 6.72553875916987,
- "y": 49.692681989798515
+ "x": 18.908050280920264,
+ "y": 54.039911300920274
},
{
- "x": 5.079999999999984,
- "y": 50.01999999999998
+ "x": 18.811071771007818,
+ "y": 54.01662882060306
},
{
- "x": 3.4344612408300983,
- "y": 49.692681989798515
+ "x": 18.713007655901663,
+ "y": 53.99845371116724
},
{
- "x": 2.03944084089783,
- "y": 48.76055915910214
+ "x": 18.61412672252493,
+ "y": 53.98543578932442
},
{
- "x": 1.1073180102014515,
- "y": 47.36553875916987
+ "x": 18.514699996642918,
+ "y": 53.97761073629353
},
{
- "x": 0.7799999999999843,
- "y": 45.719999999999985
+ "x": 18.415000000000134,
+ "y": 53.97500000000099
},
{
- "x": 1.1073180102014506,
- "y": 44.0744612408301
+ "x": 18.31530000335735,
+ "y": 53.97761073629353
},
{
- "x": 2.039440840897829,
- "y": 42.67944084089783
+ "x": 18.21587327747534,
+ "y": 53.98543578932442
},
{
- "x": 3.4344612408300956,
- "y": 41.747318010201454
+ "x": 18.116992344098605,
+ "y": 53.99845371116724
},
{
- "x": 5.079999999999983,
- "y": 41.41999999999999
+ "x": 18.01892822899245,
+ "y": 54.01662882060306
},
{
- "x": 6.725538759169871,
- "y": 41.747318010201454
+ "x": 17.921949719080004,
+ "y": 54.039911300920274
},
{
- "x": 8.120559159102138,
- "y": 42.67944084089783
+ "x": 17.826322625716074,
+ "y": 54.068237336458665
},
{
- "x": 9.052681989798515,
- "y": 44.0744612408301
+ "x": 17.732309056116577,
+ "y": 54.10152928752374
},
{
- "x": 9.379999999999985,
- "y": 45.719999999999985
- }
- ],
- "stroke_width": 0.15
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_73",
- "pcb_component_id": "pcb_component_6",
- "layer": "top",
- "route": [
+ "x": 17.640166694941,
+ "y": 54.13969590319173
+ },
+ {
+ "x": 17.550148097996583,
+ "y": 54.18263257142202
+ },
+ {
+ "x": 17.46250000000046,
+ "y": 54.23022160579147
+ },
+ {
+ "x": 17.377462638296862,
+ "y": 54.28233256806477
+ },
+ {
+ "x": 17.295269094383343,
+ "y": 54.33882262571649
+ },
+ {
+ "x": 17.216144655050584,
+ "y": 54.3995369434252
+ },
{
- "x": 9.629999999999985,
- "y": 45.719999999999985
+ "x": 17.140306194886904,
+ "y": 54.46430910746625
},
{
- "x": 9.283651872926338,
- "y": 47.46120961726114
+ "x": 17.067961581840166,
+ "y": 54.532961581840276
},
{
- "x": 8.297335854398776,
- "y": 48.937335854398775
+ "x": 16.999309107466132,
+ "y": 54.60530619488698
},
{
- "x": 6.821209617261143,
- "y": 49.92365187292634
+ "x": 16.93453694342503,
+ "y": 54.68114465505062
},
{
- "x": 5.079999999999984,
- "y": 50.26999999999998
+ "x": 16.873822625716286,
+ "y": 54.76026909438336
},
{
- "x": 3.338790382738826,
- "y": 49.92365187292634
+ "x": 16.81733256806453,
+ "y": 54.842462638296844
},
{
- "x": 1.8626641456011934,
- "y": 48.937335854398775
+ "x": 16.765221605791197,
+ "y": 54.92750000000043
},
{
- "x": 0.87634812707363,
- "y": 47.46120961726114
+ "x": 16.717632571421717,
+ "y": 55.015148097996544
},
{
- "x": 0.5299999999999843,
- "y": 45.719999999999985
+ "x": 16.674695903191378,
+ "y": 55.105166694940934
},
{
- "x": 0.8763481270736291,
- "y": 43.97879038273883
+ "x": 16.63652928752336,
+ "y": 55.197309056116495
},
{
- "x": 1.862664145601192,
- "y": 42.502664145601194
+ "x": 16.60323733645822,
+ "y": 55.29132262571597
},
{
- "x": 3.3387903827388232,
- "y": 41.516348127073634
+ "x": 16.57491130091981,
+ "y": 55.386949719079894
},
{
- "x": 5.079999999999983,
- "y": 41.16999999999999
+ "x": 16.55162882060256,
+ "y": 55.483928228992326
},
{
- "x": 6.821209617261143,
- "y": 41.51634812707363
+ "x": 16.533453711166686,
+ "y": 55.581992344098474
},
{
- "x": 8.297335854398774,
- "y": 42.502664145601194
+ "x": 16.520435789323813,
+ "y": 55.68087327747519
},
{
- "x": 9.283651872926338,
- "y": 43.97879038273882
+ "x": 16.512610736292885,
+ "y": 55.780300003357226
},
{
- "x": 9.629999999999985,
- "y": 45.719999999999985
+ "x": 16.510000000000304,
+ "y": 55.879999999999995
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.381
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_74",
- "pcb_component_id": "pcb_component_7",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_52",
+ "pcb_component_id": "pcb_component_8",
"layer": "top",
"route": [
{
- "x": -71.90000000000002,
- "y": 45.719999999999985
+ "x": 44.44866499999998,
+ "y": 44.45066499999999
+ },
+ {
+ "x": 44.53718207595398,
+ "y": 44.40450318864003
+ },
+ {
+ "x": 44.6240219307291,
+ "y": 44.35525864390545
},
{
- "x": -72.22731801020149,
- "y": 47.36553875916987
+ "x": 44.709077246728185,
+ "y": 44.302992222717656
},
{
- "x": -73.15944084089786,
- "y": 48.76055915910214
+ "x": 44.792242911705586,
+ "y": 44.24776851646442
},
{
- "x": -74.55446124083014,
- "y": 49.692681989798515
+ "x": 44.87341614866622,
+ "y": 44.18965577117722
},
{
- "x": -76.20000000000002,
- "y": 50.01999999999998
+ "x": 44.9524966428782,
+ "y": 44.12872580319208
},
{
- "x": -77.8455387591699,
- "y": 49.692681989798515
+ "x": 45.029386665842935,
+ "y": 44.06505391039817
},
{
- "x": -79.24055915910218,
- "y": 48.76055915910214
+ "x": 45.1039911960691,
+ "y": 43.998718779183896
},
{
- "x": -80.17268198979855,
- "y": 47.36553875916987
+ "x": 45.17621803650104,
+ "y": 43.92980238719547
},
{
- "x": -80.50000000000001,
- "y": 45.719999999999985
+ "x": 45.24597792845688,
+ "y": 43.858389902028044
},
{
- "x": -80.17268198979855,
- "y": 44.0744612408301
+ "x": 45.31318466193545,
+ "y": 43.784569575974714
},
{
- "x": -79.24055915910218,
- "y": 42.67944084089783
+ "x": 45.3777551821554,
+ "y": 43.70843263696345
},
{
- "x": -77.84553875916991,
- "y": 41.747318010201454
+ "x": 45.43960969219518,
+ "y": 43.630073175816634
},
{
- "x": -76.20000000000002,
- "y": 41.41999999999999
+ "x": 45.498671751606906,
+ "y": 43.54958802997266
},
{
- "x": -74.55446124083014,
- "y": 41.747318010201454
+ "x": 45.554868370882275,
+ "y": 43.46707666381321
},
{
- "x": -73.15944084089786,
- "y": 42.67944084089783
+ "x": 45.608130101653785,
+ "y": 43.382641045744144
},
{
- "x": -72.22731801020149,
- "y": 44.0744612408301
+ "x": 45.658391122519674,
+ "y": 43.29638552218188
},
{
- "x": -71.90000000000002,
- "y": 45.719999999999985
- }
- ],
- "stroke_width": 0.15
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_75",
- "pcb_component_id": "pcb_component_7",
- "layer": "top",
- "route": [
+ "x": 45.705589320386736,
+ "y": 43.208416688601005
+ },
+ {
+ "x": 45.74966636723042,
+ "y": 43.11884325780246
+ },
{
- "x": -71.65000000000002,
- "y": 45.719999999999985
+ "x": 45.79056779217703,
+ "y": 43.02777592556517
},
{
- "x": -71.99634812707366,
- "y": 47.46120961726114
+ "x": 45.82824304881953,
+ "y": 42.935327233847
},
{
- "x": -72.98266414560122,
- "y": 48.937335854398775
+ "x": 45.86264557768328,
+ "y": 42.841611431704244
},
{
- "x": -74.45879038273885,
- "y": 49.92365187292634
+ "x": 45.89373286376474,
+ "y": 42.74674433410149
},
{
- "x": -76.20000000000002,
- "y": 50.26999999999998
+ "x": 45.92146648907189,
+ "y": 42.650843178786225
},
{
- "x": -77.94120961726118,
- "y": 49.92365187292634
+ "x": 45.94581218010168,
+ "y": 42.55402648140524
},
{
- "x": -79.41733585439881,
- "y": 48.937335854398775
+ "x": 45.96673985019552,
+ "y": 42.456413889041734
},
{
- "x": -80.40365187292637,
- "y": 47.46120961726114
+ "x": 45.984223636720685,
+ "y": 42.35812603235423
},
{
- "x": -80.75000000000001,
- "y": 45.719999999999985
+ "x": 45.998241933031636,
+ "y": 42.259284376499934
},
{
- "x": -80.40365187292637,
- "y": 43.97879038273883
+ "x": 46.00877741517178,
+ "y": 42.16001107102684
},
{
- "x": -79.41733585439881,
- "y": 42.502664145601194
+ "x": 46.015817063282526,
+ "y": 42.060428798920015
},
{
- "x": -77.94120961726118,
- "y": 41.516348127073634
+ "x": 46.019352177693406,
+ "y": 41.96066062498873
},
{
- "x": -76.20000000000002,
- "y": 41.16999999999999
+ "x": 46.01937838967322,
+ "y": 41.86082984378167
+ },
+ {
+ "x": 46.0158956668289,
+ "y": 41.761059827218226
+ },
+ {
+ "x": 46.00890831314561,
+ "y": 41.661473872124226
+ },
+ {
+ "x": 45.99842496366787,
+ "y": 41.5621950478604
+ },
+ {
+ "x": 45.984458573828135,
+ "y": 41.46334604423201
+ },
+ {
+ "x": 45.96702640343648,
+ "y": 41.365049019867506
+ },
+ {
+ "x": 45.94614999535065,
+ "y": 41.267425451253594
+ },
+ {
+ "x": 45.9218551488533,
+ "y": 41.170595982613364
+ },
+ {
+ "x": 45.89417188776875,
+ "y": 41.07468027681288
+ },
+ {
+ "x": 45.86313442335947,
+ "y": 40.97979686748056
+ },
+ {
+ "x": 45.828781112047324,
+ "y": 40.886063012522115
+ },
+ {
+ "x": 45.79115440801226,
+ "y": 40.793594549211974
+ },
+ {
+ "x": 45.75030081072717,
+ "y": 40.70250575104038
+ },
+ {
+ "x": 45.7062708074931,
+ "y": 40.61290918649302
+ },
+ {
+ "x": 45.65911881104677,
+ "y": 40.52491557993774
+ },
+ {
+ "x": 45.60890309231655,
+ "y": 40.438633674790196
+ },
+ {
+ "x": 45.555685708410834,
+ "y": 40.3541700991276
+ },
+ {
+ "x": 45.499532425926986,
+ "y": 40.27162923391666
+ },
+ {
+ "x": 45.44051263967651,
+ "y": 40.19111308401847
+ },
+ {
+ "x": 45.37869928692609,
+ "y": 40.11272115212984
+ },
+ {
+ "x": 45.31416875726097,
+ "y": 40.03655031581686
+ },
+ {
+ "x": 45.24700079818197,
+ "y": 39.962694707792544
+ },
+ {
+ "x": 45.17727841655264,
+ "y": 39.891245599586675
+ },
+ {
+ "x": 45.10508777601851,
+ "y": 39.8222912887515
+ },
+ {
+ "x": 45.03051809052522,
+ "y": 39.75591698974267
+ },
+ {
+ "x": 44.95366151406694,
+ "y": 39.69220472861036
+ },
+ {
+ "x": 44.874613026801484,
+ "y": 39.6312332416306
+ },
+ {
+ "x": 44.7934703176729,
+ "y": 39.573077878002174
},
{
- "x": -74.45879038273885,
- "y": 41.51634812707363
+ "x": 44.71033366368644,
+ "y": 39.51781050672926
},
{
- "x": -72.98266414560123,
- "y": 42.502664145601194
+ "x": 44.62530580598519,
+ "y": 39.46549942780506
},
{
- "x": -71.99634812707366,
- "y": 43.97879038273882
+ "x": 44.53849182288144,
+ "y": 39.41620928780582
},
{
- "x": -71.65000000000002,
- "y": 45.719999999999985
+ "x": 44.449998999999934,
+ "y": 39.37000100000006
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.381
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_76",
- "pcb_component_id": "pcb_component_8",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_53",
+ "pcb_component_id": "pcb_component_9",
"layer": "top",
"route": [
{
- "x": 13.96999999999997,
- "y": -3.8100000000000023
+ "x": 23.95999999999998,
+ "y": -29.090000000000018
},
{
- "x": 17.779999999999973,
- "y": -3.8100000000000023
+ "x": 23.95999999999998,
+ "y": -39.49000000000001
}
],
- "stroke_width": 0.381
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_77",
- "pcb_component_id": "pcb_component_8",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_54",
+ "pcb_component_id": "pcb_component_9",
"layer": "top",
"route": [
{
- "x": 16.509999999999962,
- "y": 62.22999999999999
+ "x": 23.95999999999998,
+ "y": -39.49000000000001
},
{
- "x": 16.509999999999962,
- "y": 55.879999999999995
+ "x": 34.45999999999998,
+ "y": -39.49000000000001
}
],
- "stroke_width": 0.381
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_78",
- "pcb_component_id": "pcb_component_8",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_55",
+ "pcb_component_id": "pcb_component_9",
"layer": "top",
"route": [
{
- "x": 17.754999999999967,
- "y": 47.43499999999999
+ "x": 26.95999999999998,
+ "y": -29.15000000000002
},
{
- "x": 19.024999999999977,
- "y": 48.70499999999999
+ "x": 26.95999999999998,
+ "y": -39.43000000000001
}
],
- "stroke_width": 0.381
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_79",
- "pcb_component_id": "pcb_component_8",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_56",
+ "pcb_component_id": "pcb_component_9",
"layer": "top",
"route": [
{
- "x": 17.779999999999973,
- "y": 53.974999999999994
+ "x": 26.95999999999998,
+ "y": -39.43000000000001
},
{
- "x": 17.754999999999967,
- "y": 47.43499999999999
+ "x": 31.45999999999998,
+ "y": -39.43000000000001
}
],
- "stroke_width": 0.381
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_80",
- "pcb_component_id": "pcb_component_8",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_57",
+ "pcb_component_id": "pcb_component_9",
"layer": "top",
"route": [
{
- "x": 17.779999999999973,
- "y": -8.890000000000015
+ "x": 28.20999999999998,
+ "y": -29.15000000000002
},
{
- "x": 13.96999999999997,
- "y": -8.890000000000015
+ "x": 26.95999999999998,
+ "y": -29.15000000000002
}
],
- "stroke_width": 0.381
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_81",
- "pcb_component_id": "pcb_component_8",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_58",
+ "pcb_component_id": "pcb_component_9",
"layer": "top",
"route": [
{
- "x": 17.779999999999973,
- "y": -15.240000000000009
+ "x": 31.45999999999998,
+ "y": -29.15000000000002
},
{
- "x": 17.754999999999967,
- "y": 47.43499999999999
+ "x": 30.20999999999998,
+ "y": -29.15000000000002
}
],
- "stroke_width": 0.381
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_82",
- "pcb_component_id": "pcb_component_8",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_59",
+ "pcb_component_id": "pcb_component_9",
"layer": "top",
"route": [
{
- "x": 19.029999999999973,
- "y": 48.66999999999999
+ "x": 31.45999999999998,
+ "y": -39.43000000000001
},
{
- "x": 39.349999999999966,
- "y": 48.66999999999999
+ "x": 31.45999999999998,
+ "y": -29.15000000000002
}
],
- "stroke_width": 0.381
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_83",
- "pcb_component_id": "pcb_component_8",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_60",
+ "pcb_component_id": "pcb_component_9",
"layer": "top",
"route": [
{
- "x": 19.049999999999983,
- "y": 53.974999999999994
+ "x": 34.45999999999998,
+ "y": -29.090000000000018
},
{
- "x": 19.049999999999983,
- "y": 44.44999999999999
+ "x": 23.95999999999998,
+ "y": -29.090000000000018
}
],
- "stroke_width": 0.381
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_84",
- "pcb_component_id": "pcb_component_8",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_61",
+ "pcb_component_id": "pcb_component_9",
"layer": "top",
"route": [
{
- "x": 19.049999999999983,
- "y": 44.44999999999999
+ "x": 34.45999999999998,
+ "y": -39.49000000000001
},
{
- "x": 17.779999999999973,
- "y": 44.44999999999999
+ "x": 34.45999999999998,
+ "y": -29.090000000000018
}
],
- "stroke_width": 0.381
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_85",
- "pcb_component_id": "pcb_component_8",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_62",
+ "pcb_component_id": "pcb_component_9",
"layer": "top",
"route": [
{
- "x": 19.049999999999983,
- "y": -16.51000000000002
+ "x": 30.20999999999998,
+ "y": -29.15000000000002
},
{
- "x": 17.779999999999973,
- "y": -15.240000000000009
- }
- ],
- "stroke_width": 0.381
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_86",
- "pcb_component_id": "pcb_component_8",
- "layer": "top",
- "route": [
- {
- "x": 20.319999999999965,
- "y": 55.879999999999995
+ "x": 30.205184726672513,
+ "y": -29.248017140329864
},
{
- "x": 20.319999999999965,
- "y": 62.22999999999999
- }
- ],
- "stroke_width": 0.381
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_87",
- "pcb_component_id": "pcb_component_8",
- "layer": "top",
- "route": [
- {
- "x": 24.129999999999967,
- "y": 44.44999999999999
+ "x": 30.190785280403844,
+ "y": -29.34509032201676
},
{
- "x": 34.289999999999964,
- "y": 44.44999999999999
- }
- ],
- "stroke_width": 0.381
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_88",
- "pcb_component_id": "pcb_component_8",
- "layer": "top",
- "route": [
- {
- "x": 24.129999999999967,
- "y": -11.430000000000007
+ "x": 30.166940335733074,
+ "y": -29.44028467725542
},
{
- "x": 24.129999999999967,
- "y": 44.44999999999999
- }
- ],
- "stroke_width": 0.381
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_89",
- "pcb_component_id": "pcb_component_8",
- "layer": "top",
- "route": [
+ "x": 30.13387953251234,
+ "y": -29.53268343236641
+ },
{
- "x": 34.289999999999964,
- "y": 44.44999999999999
+ "x": 30.091921264349537,
+ "y": -29.621396736827677
},
{
- "x": 34.289999999999964,
- "y": -11.430000000000007
- }
- ],
- "stroke_width": 0.381
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_90",
- "pcb_component_id": "pcb_component_8",
- "layer": "top",
- "route": [
+ "x": 30.041469612303786,
+ "y": -29.705570233021632
+ },
{
- "x": 34.289999999999964,
- "y": -11.430000000000007
+ "x": 29.98301045336399,
+ "y": -29.78439328416603
},
{
- "x": 24.129999999999967,
- "y": -11.430000000000007
- }
- ],
- "stroke_width": 0.381
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_91",
- "pcb_component_id": "pcb_component_8",
- "layer": "top",
- "route": [
+ "x": 29.917106781187755,
+ "y": -29.85710678118926
+ },
{
- "x": 39.35499999999996,
- "y": 48.70499999999999
+ "x": 29.844393284164795,
+ "y": -29.923010453365762
},
{
- "x": 40.62499999999997,
- "y": 47.43499999999999
- }
- ],
- "stroke_width": 0.381
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_92",
- "pcb_component_id": "pcb_component_8",
- "layer": "top",
- "route": [
+ "x": 29.76557023302061,
+ "y": -29.981469612305858
+ },
{
- "x": 39.369999999999976,
- "y": -16.51000000000002
+ "x": 29.681396736826855,
+ "y": -30.031921264351908
},
{
- "x": 19.049999999999983,
- "y": -16.51000000000002
- }
- ],
- "stroke_width": 0.381
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_93",
- "pcb_component_id": "pcb_component_8",
- "layer": "top",
- "route": [
+ "x": 29.59268343236573,
+ "y": -30.07387953251505
+ },
{
- "x": 40.62499999999997,
- "y": 47.43499999999999
+ "x": 29.500284677254882,
+ "y": -30.10694033573614
},
{
- "x": 40.639999999999986,
- "y": -15.240000000000009
- }
- ],
- "stroke_width": 0.381
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_94",
- "pcb_component_id": "pcb_component_8",
- "layer": "top",
- "route": [
+ "x": 29.405090322016292,
+ "y": -30.13078528040728
+ },
{
- "x": 40.639999999999986,
- "y": 39.36999999999999
+ "x": 29.30801714032947,
+ "y": -30.145184726676334
},
{
- "x": 44.44999999999999,
- "y": 39.36999999999999
- }
- ],
- "stroke_width": 0.381
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_95",
- "pcb_component_id": "pcb_component_8",
- "layer": "top",
- "route": [
+ "x": 29.20999999999964,
+ "y": -30.150000000004155
+ },
{
- "x": 40.639999999999986,
- "y": -15.240000000000009
+ "x": 29.11198285966981,
+ "y": -30.145184726676334
},
{
- "x": 39.369999999999976,
- "y": -16.51000000000002
- }
- ],
- "stroke_width": 0.381
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_96",
- "pcb_component_id": "pcb_component_8",
- "layer": "top",
- "route": [
+ "x": 29.014909677982985,
+ "y": -30.13078528040728
+ },
{
- "x": 44.44999999999999,
- "y": 44.44999999999999
+ "x": 28.919715322744395,
+ "y": -30.10694033573614
},
{
- "x": 40.639999999999986,
- "y": 44.44999999999999
- }
- ],
- "stroke_width": 0.381
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_97",
- "pcb_component_id": "pcb_component_8",
- "layer": "top",
- "route": [
+ "x": 28.827316567633545,
+ "y": -30.07387953251505
+ },
{
- "x": 12.20999999999998,
- "y": -3.2600000000000193
+ "x": 28.738603263172422,
+ "y": -30.031921264351908
},
{
- "x": 17.20999999999998,
- "y": -3.2600000000000193
- }
- ],
- "stroke_width": 0.15
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_98",
- "pcb_component_id": "pcb_component_8",
- "layer": "top",
- "route": [
+ "x": 28.654429766978666,
+ "y": -29.981469612305858
+ },
{
- "x": 12.20999999999998,
- "y": -9.26000000000002
+ "x": 28.575606715834482,
+ "y": -29.923010453365762
},
{
- "x": 12.20999999999998,
- "y": -3.2600000000000193
- }
- ],
- "stroke_width": 0.15
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_99",
- "pcb_component_id": "pcb_component_8",
- "layer": "top",
- "route": [
+ "x": 28.502893218811522,
+ "y": -29.85710678118926
+ },
{
- "x": 15.70999999999998,
- "y": 65.24
+ "x": 28.43698954663529,
+ "y": -29.78439328416603
},
{
- "x": 21.20999999999998,
- "y": 65.24
- }
- ],
- "stroke_width": 0.15
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_100",
- "pcb_component_id": "pcb_component_8",
- "layer": "top",
- "route": [
+ "x": 28.37853038769549,
+ "y": -29.705570233021632
+ },
{
- "x": 15.70999999999998,
- "y": 50.23999999999999
+ "x": 28.32807873564974,
+ "y": -29.621396736827677
},
{
- "x": 15.70999999999998,
- "y": 65.24
- }
- ],
- "stroke_width": 0.15
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_101",
- "pcb_component_id": "pcb_component_8",
- "layer": "top",
- "route": [
+ "x": 28.28612046748694,
+ "y": -29.53268343236641
+ },
{
- "x": 17.20999999999998,
- "y": 50.23999999999999
+ "x": 28.253059664266203,
+ "y": -29.44028467725542
},
{
- "x": 15.70999999999998,
- "y": 50.23999999999999
- }
- ],
- "stroke_width": 0.15
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_102",
- "pcb_component_id": "pcb_component_8",
- "layer": "top",
- "route": [
+ "x": 28.229214719595433,
+ "y": -29.34509032201676
+ },
{
- "x": 17.20999999999998,
- "y": -3.2600000000000193
+ "x": 28.214815273326764,
+ "y": -29.248017140329864
},
{
- "x": 17.20999999999998,
- "y": 50.23999999999999
+ "x": 28.209999999999297,
+ "y": -29.15000000000002
}
],
- "stroke_width": 0.15
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_103",
- "pcb_component_id": "pcb_component_8",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_63",
+ "pcb_component_id": "pcb_component_10",
"layer": "top",
"route": [
{
- "x": 17.20999999999998,
- "y": -9.26000000000002
+ "x": 23.95999999999998,
+ "y": -17.66000000000001
},
{
- "x": 12.20999999999998,
- "y": -9.26000000000002
+ "x": 23.95999999999998,
+ "y": -28.060000000000016
}
],
- "stroke_width": 0.15
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_104",
- "pcb_component_id": "pcb_component_8",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_64",
+ "pcb_component_id": "pcb_component_10",
"layer": "top",
"route": [
{
- "x": 17.20999999999998,
- "y": -17.26000000000002
+ "x": 23.95999999999998,
+ "y": -28.060000000000016
},
{
- "x": 17.20999999999998,
- "y": -9.26000000000002
+ "x": 34.45999999999998,
+ "y": -28.060000000000016
}
],
- "stroke_width": 0.15
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_105",
- "pcb_component_id": "pcb_component_8",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_65",
+ "pcb_component_id": "pcb_component_10",
"layer": "top",
"route": [
{
- "x": 21.20999999999998,
- "y": 65.24
+ "x": 26.95999999999998,
+ "y": -17.720000000000013
},
{
- "x": 21.20999999999998,
- "y": 50.23999999999999
+ "x": 26.95999999999998,
+ "y": -28.000000000000014
}
],
- "stroke_width": 0.15
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_106",
- "pcb_component_id": "pcb_component_8",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_66",
+ "pcb_component_id": "pcb_component_10",
"layer": "top",
"route": [
{
- "x": 21.20999999999998,
- "y": 50.23999999999999
+ "x": 26.95999999999998,
+ "y": -28.000000000000014
},
{
- "x": 41.20999999999998,
- "y": 50.23999999999999
+ "x": 31.45999999999998,
+ "y": -28.000000000000014
}
],
- "stroke_width": 0.15
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_107",
- "pcb_component_id": "pcb_component_8",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_67",
+ "pcb_component_id": "pcb_component_10",
"layer": "top",
"route": [
{
- "x": 41.20999999999998,
- "y": 50.23999999999999
+ "x": 28.20999999999998,
+ "y": -17.720000000000013
},
{
- "x": 41.20999999999998,
- "y": 45.23999999999999
+ "x": 26.95999999999998,
+ "y": -17.720000000000013
}
],
- "stroke_width": 0.15
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_108",
- "pcb_component_id": "pcb_component_8",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_68",
+ "pcb_component_id": "pcb_component_10",
"layer": "top",
"route": [
{
- "x": 41.20999999999998,
- "y": 45.23999999999999
+ "x": 31.45999999999998,
+ "y": -17.720000000000013
},
{
- "x": 46.20999999999998,
- "y": 45.23999999999999
+ "x": 30.20999999999998,
+ "y": -17.720000000000013
}
],
- "stroke_width": 0.15
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_109",
- "pcb_component_id": "pcb_component_8",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_69",
+ "pcb_component_id": "pcb_component_10",
"layer": "top",
"route": [
{
- "x": 41.20999999999998,
- "y": 38.73999999999999
+ "x": 31.45999999999998,
+ "y": -28.000000000000014
},
{
- "x": 41.20999999999998,
- "y": -17.26000000000002
+ "x": 31.45999999999998,
+ "y": -17.720000000000013
}
],
- "stroke_width": 0.15
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_110",
- "pcb_component_id": "pcb_component_8",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_70",
+ "pcb_component_id": "pcb_component_10",
"layer": "top",
"route": [
{
- "x": 41.20999999999998,
- "y": -17.26000000000002
+ "x": 34.45999999999998,
+ "y": -17.66000000000001
},
{
- "x": 17.20999999999998,
- "y": -17.26000000000002
+ "x": 23.95999999999998,
+ "y": -17.66000000000001
}
],
- "stroke_width": 0.15
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_111",
- "pcb_component_id": "pcb_component_8",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_71",
+ "pcb_component_id": "pcb_component_10",
"layer": "top",
"route": [
{
- "x": 46.20999999999998,
- "y": 45.23999999999999
+ "x": 34.45999999999998,
+ "y": -28.060000000000016
},
{
- "x": 46.20999999999998,
- "y": 38.73999999999999
+ "x": 34.45999999999998,
+ "y": -17.66000000000001
}
],
- "stroke_width": 0.15
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_112",
- "pcb_component_id": "pcb_component_8",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_72",
+ "pcb_component_id": "pcb_component_10",
"layer": "top",
"route": [
{
- "x": 46.20999999999998,
- "y": 38.73999999999999
+ "x": 30.20999999999998,
+ "y": -17.720000000000013
},
{
- "x": 41.20999999999998,
- "y": 38.73999999999999
- }
- ],
- "stroke_width": 0.15
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_113",
- "pcb_component_id": "pcb_component_8",
- "layer": "top",
- "route": [
- {
- "x": 13.971334999999982,
- "y": -8.890665000000013
+ "x": 30.205184726672314,
+ "y": -17.8180171403299
},
{
- "x": 13.88281792404598,
- "y": -8.844503188640033
+ "x": 30.190785280403446,
+ "y": -17.91509032201681
},
{
- "x": 13.795978069270888,
- "y": -8.795258643905441
+ "x": 30.166940335732505,
+ "y": -18.010284677255484
},
{
- "x": 13.71092275327183,
- "y": -8.742992222717618
+ "x": 30.1338795325116,
+ "y": -18.102683432366447
},
{
- "x": 13.62775708829443,
- "y": -8.68776851646436
+ "x": 30.091921264348628,
+ "y": -18.1913967368277
},
{
- "x": 13.546583851333821,
- "y": -8.629655771177141
+ "x": 30.041469612302734,
+ "y": -18.275570233021625
},
{
- "x": 13.467503357121842,
- "y": -8.568725803191995
+ "x": 29.983010453362823,
+ "y": -18.35439328416598
},
{
- "x": 13.39061333415711,
- "y": -8.505053910398061
+ "x": 29.917106781186504,
+ "y": -18.42710678118918
},
{
- "x": 13.31600880393097,
- "y": -8.438718779183787
+ "x": 29.844393284163402,
+ "y": -18.493010453365642
},
{
- "x": 13.24378196349906,
- "y": -8.36980238719535
+ "x": 29.76557023301916,
+ "y": -18.551469612305695
},
{
- "x": 13.17402207154322,
- "y": -8.298389902027907
+ "x": 29.681396736825292,
+ "y": -18.601921264351716
},
{
- "x": 13.10681533806465,
- "y": -8.22456957597457
+ "x": 29.59268343236414,
+ "y": -18.64387953251483
},
{
- "x": 13.042244817844704,
- "y": -8.148432636963292
+ "x": 29.500284677253205,
+ "y": -18.676940335735893
},
{
- "x": 12.980390307804953,
- "y": -8.070073175816475
+ "x": 29.405090322014587,
+ "y": -18.70078528040702
},
{
- "x": 12.921328248393252,
- "y": -7.989588029972481
+ "x": 29.308017140327706,
+ "y": -18.715184726676043
},
{
- "x": 12.865131629117883,
- "y": -7.907076663813029
+ "x": 29.20999999999782,
+ "y": -18.720000000003864
},
{
- "x": 12.811869898346373,
- "y": -7.822641045743964
+ "x": 29.111982859667933,
+ "y": -18.715184726676043
},
{
- "x": 12.761608877480512,
- "y": -7.736385522181692
+ "x": 29.014909677981052,
+ "y": -18.70078528040702
},
{
- "x": 12.71441067961345,
- "y": -7.648416688600818
+ "x": 28.919715322742434,
+ "y": -18.676940335735893
},
{
- "x": 12.670333632769768,
- "y": -7.55884325780228
+ "x": 28.8273165676315,
+ "y": -18.64387953251483
},
{
- "x": 12.629432207823186,
- "y": -7.467775925564979
+ "x": 28.738603263170347,
+ "y": -18.601921264351716
},
{
- "x": 12.591756951180685,
- "y": -7.375327233846804
+ "x": 28.654429766976477,
+ "y": -18.551469612305695
},
{
- "x": 12.557354422316934,
- "y": -7.281611431704064
+ "x": 28.575606715832237,
+ "y": -18.493010453365642
},
{
- "x": 12.526267136235475,
- "y": -7.186744334101306
+ "x": 28.502893218809135,
+ "y": -18.42710678118918
},
{
- "x": 12.498533510928326,
- "y": -7.090843178786045
+ "x": 28.436989546632816,
+ "y": -18.35439328416598
},
{
- "x": 12.474187819898532,
- "y": -6.994026481405058
+ "x": 28.378530387692905,
+ "y": -18.275570233021625
},
{
- "x": 12.45326014980472,
- "y": -6.896413889041554
+ "x": 28.32807873564701,
+ "y": -18.1913967368277
},
{
- "x": 12.435776363279558,
- "y": -6.798126032354048
+ "x": 28.28612046748404,
+ "y": -18.102683432366447
},
{
- "x": 12.421758066968579,
- "y": -6.699284376499762
+ "x": 28.253059664263134,
+ "y": -18.010284677255484
},
{
- "x": 12.411222584828437,
- "y": -6.600011071026657
+ "x": 28.229214719592193,
+ "y": -17.91509032201681
},
{
- "x": 12.404182936717689,
- "y": -6.500428798919842
+ "x": 28.214815273323325,
+ "y": -17.8180171403299
},
{
- "x": 12.400647822306809,
- "y": -6.400660624988561
+ "x": 28.20999999999566,
+ "y": -17.720000000000013
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_73",
+ "pcb_component_id": "pcb_component_11",
+ "layer": "top",
+ "route": [
+ {
+ "x": -41.62000000000002,
+ "y": 34.34999999999999
},
{
- "x": 12.400621610326994,
- "y": -6.3008298437815
+ "x": -41.62000000000002,
+ "y": 24.069999999999993
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_74",
+ "pcb_component_id": "pcb_component_11",
+ "layer": "top",
+ "route": [
+ {
+ "x": -41.62000000000002,
+ "y": 24.069999999999993
},
{
- "x": 12.404104333171318,
- "y": -6.20105982721806
+ "x": -37.12000000000002,
+ "y": 24.069999999999993
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_75",
+ "pcb_component_id": "pcb_component_11",
+ "layer": "top",
+ "route": [
+ {
+ "x": -40.37000000000002,
+ "y": 34.34999999999999
},
{
- "x": 12.411091686854576,
- "y": -6.1014738721240604
+ "x": -41.62000000000002,
+ "y": 34.34999999999999
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_76",
+ "pcb_component_id": "pcb_component_11",
+ "layer": "top",
+ "route": [
+ {
+ "x": -37.12000000000002,
+ "y": 34.34999999999999
},
{
- "x": 12.421575036332314,
- "y": -6.002195047860226
+ "x": -38.37000000000002,
+ "y": 34.34999999999999
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_77",
+ "pcb_component_id": "pcb_component_11",
+ "layer": "top",
+ "route": [
+ {
+ "x": -37.12000000000002,
+ "y": 24.069999999999993
},
{
- "x": 12.435541426172023,
- "y": -5.903346044231839
+ "x": -37.12000000000002,
+ "y": 34.34999999999999
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_78",
+ "pcb_component_id": "pcb_component_11",
+ "layer": "top",
+ "route": [
+ {
+ "x": -38.37000000000002,
+ "y": 34.34999999999999
},
{
- "x": 12.45297359656368,
- "y": -5.80504901986734
+ "x": -38.37481527332784,
+ "y": 34.25198285967045
},
{
- "x": 12.473850004649478,
- "y": -5.707425451253428
+ "x": -38.38921471959682,
+ "y": 34.154909677983895
},
{
- "x": 12.498144851146833,
- "y": -5.610595982613191
+ "x": -38.41305966426785,
+ "y": 34.05971532274558
},
{
- "x": 12.525828112231352,
- "y": -5.5146802768126975
+ "x": -38.44612046748878,
+ "y": 33.96731656763498
},
{
- "x": 12.556865576640632,
- "y": -5.419796867480386
+ "x": -38.48807873565171,
+ "y": 33.87860326317409
},
{
- "x": 12.59121888795275,
- "y": -5.326063012521942
+ "x": -38.53853038769752,
+ "y": 33.79442976698051
},
{
- "x": 12.628845591987783,
- "y": -5.233594549211787
+ "x": -38.59698954663733,
+ "y": 33.715606715836486
},
{
- "x": 12.669699189272876,
- "y": -5.14250575104019
+ "x": -38.66289321881351,
+ "y": 33.642893218813605
},
{
- "x": 12.713729192506946,
- "y": -5.052909186492826
+ "x": -38.73560671583641,
+ "y": 33.576989546637435
},
{
- "x": 12.760881188953249,
- "y": -4.964915579937539
+ "x": -38.81442976698044,
+ "y": 33.518530387697645
},
{
- "x": 12.811096907683435,
- "y": -4.878633674789981
+ "x": -38.89860326317404,
+ "y": 33.468078735651844
},
{
- "x": 12.864314291589125,
- "y": -4.794170099127371
+ "x": -38.98731656763492,
+ "y": 33.42612046748893
},
{
- "x": 12.920467574072944,
- "y": -4.711629233916426
+ "x": -39.07971532274554,
+ "y": 33.393059664268016
},
{
- "x": 12.979487360323418,
- "y": -4.63111308401821
+ "x": -39.17490967798385,
+ "y": 33.369214719597
},
{
- "x": 13.04130071307381,
- "y": -4.552721152129578
+ "x": -39.2719828596704,
+ "y": 33.354815273328036
},
{
- "x": 13.105831242738901,
- "y": -4.476550315816581
+ "x": -39.36999999999995,
+ "y": 33.350000000000236
},
{
- "x": 13.172999201817902,
- "y": -4.402694707792236
+ "x": -39.46801714032949,
+ "y": 33.354815273328036
},
{
- "x": 13.242721583447207,
- "y": -4.331245599586353
+ "x": -39.56509032201605,
+ "y": 33.369214719597
},
{
- "x": 13.31491222398131,
- "y": -4.2622912887511575
+ "x": -39.66028467725435,
+ "y": 33.393059664268016
},
{
- "x": 13.389481909474569,
- "y": -4.195916989742315
+ "x": -39.752683432364975,
+ "y": 33.42612046748893
},
{
- "x": 13.466338485932823,
- "y": -4.1322047286099775
+ "x": -39.84139673682586,
+ "y": 33.468078735651844
},
{
- "x": 13.545386973198276,
- "y": -4.071233241630196
+ "x": -39.92557023301946,
+ "y": 33.518530387697645
},
{
- "x": 13.626529682326833,
- "y": -4.013077878001724
+ "x": -40.004393284163484,
+ "y": 33.576989546637435
},
{
- "x": 13.709666336313262,
- "y": -3.9578105067287908
+ "x": -40.07710678118639,
+ "y": 33.642893218813605
},
{
- "x": 13.794694194014482,
- "y": -3.905499427804557
+ "x": -40.143010453362564,
+ "y": 33.715606715836486
},
{
- "x": 13.881508177118207,
- "y": -3.856209287805285
+ "x": -40.201469612302375,
+ "y": 33.79442976698051
},
{
- "x": 13.970000999999712,
- "y": -3.810000999999488
+ "x": -40.251921264348184,
+ "y": 33.87860326317409
+ },
+ {
+ "x": -40.29387953251111,
+ "y": 33.96731656763498
+ },
+ {
+ "x": -40.32694033573205,
+ "y": 34.05971532274558
+ },
+ {
+ "x": -40.35078528040307,
+ "y": 34.154909677983895
+ },
+ {
+ "x": -40.365184726672055,
+ "y": 34.25198285967045
+ },
+ {
+ "x": -40.36999999999988,
+ "y": 34.34999999999999
}
],
- "stroke_width": 0.381
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_114",
- "pcb_component_id": "pcb_component_8",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_79",
+ "pcb_component_id": "pcb_component_12",
"layer": "top",
"route": [
{
- "x": 16.509948999999978,
- "y": 62.22999999999999
+ "x": 52.535,
+ "y": 40.75999999999999
},
{
- "x": 16.512572050863525,
- "y": 62.32993567971273
- },
+ "x": 52.535,
+ "y": 4.959999999999994
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_80",
+ "pcb_component_id": "pcb_component_12",
+ "layer": "top",
+ "route": [
{
- "x": 16.52043394238268,
- "y": 62.429596159027355
+ "x": 52.535,
+ "y": 4.959999999999994
},
{
- "x": 16.53351302475349,
- "y": 62.528706996375334
- },
+ "x": 63.035,
+ "y": 4.959999999999994
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_81",
+ "pcb_component_id": "pcb_component_12",
+ "layer": "top",
+ "route": [
{
- "x": 16.551773281252935,
- "y": 62.626995263773104
+ "x": 55.535,
+ "y": 40.69999999999999
},
{
- "x": 16.575164427420475,
- "y": 62.724190298401666
- },
+ "x": 55.535,
+ "y": 5.019999999999982
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_82",
+ "pcb_component_id": "pcb_component_12",
+ "layer": "top",
+ "route": [
{
- "x": 16.603622049529775,
- "y": 62.8200244479485
+ "x": 55.535,
+ "y": 5.019999999999982
},
{
- "x": 16.63706778196891,
- "y": 62.91423380765916
- },
+ "x": 60.035,
+ "y": 5.019999999999982
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_83",
+ "pcb_component_id": "pcb_component_12",
+ "layer": "top",
+ "route": [
{
- "x": 16.6754095230408,
- "y": 63.006558947069045
+ "x": 56.785,
+ "y": 40.69999999999999
},
{
- "x": 16.718541688589823,
- "y": 63.096745624414055
- },
+ "x": 55.535,
+ "y": 40.69999999999999
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_84",
+ "pcb_component_id": "pcb_component_12",
+ "layer": "top",
+ "route": [
{
- "x": 16.766345502755684,
- "y": 63.18454548675264
+ "x": 60.035,
+ "y": 40.69999999999999
},
{
- "x": 16.818689325054294,
- "y": 63.26971675387161
- },
+ "x": 58.785,
+ "y": 40.69999999999999
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_85",
+ "pcb_component_id": "pcb_component_12",
+ "layer": "top",
+ "route": [
{
- "x": 16.87542901288478,
- "y": 63.352024884092025
+ "x": 60.035,
+ "y": 5.019999999999982
},
{
- "x": 16.936408318464288,
- "y": 63.43124322014195
- },
+ "x": 60.035,
+ "y": 40.69999999999999
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_86",
+ "pcb_component_id": "pcb_component_12",
+ "layer": "top",
+ "route": [
{
- "x": 17.001459319097876,
- "y": 63.50715361331739
+ "x": 63.035,
+ "y": 40.75999999999999
},
{
- "x": 17.07040287959802,
- "y": 63.579547024212616
- },
+ "x": 52.535,
+ "y": 40.75999999999999
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_87",
+ "pcb_component_id": "pcb_component_12",
+ "layer": "top",
+ "route": [
{
- "x": 17.14304914558096,
- "y": 63.6482240983656
+ "x": 63.035,
+ "y": 4.959999999999994
},
{
- "x": 17.219198066281137,
- "y": 63.712995715233475
+ "x": 63.035,
+ "y": 40.75999999999999
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_88",
+ "pcb_component_id": "pcb_component_12",
+ "layer": "top",
+ "route": [
+ {
+ "x": 58.785,
+ "y": 40.69999999999999
},
{
- "x": 17.298639945443995,
- "y": 63.77368350898604
+ "x": 58.780184726672246,
+ "y": 40.60198285967052
},
{
- "x": 17.381156018780274,
- "y": 63.83012035968345
+ "x": 58.76578528040335,
+ "y": 40.504909677984045
},
{
- "x": 17.46651905639152,
- "y": 63.882150853485285
+ "x": 58.74194033573241,
+ "y": 40.4097153227458
},
{
- "x": 17.554493988507858,
- "y": 63.929631710623795
+ "x": 58.70887953251156,
+ "y": 40.317316567635245
},
{
- "x": 17.644838552814974,
- "y": 63.97243217996272
+ "x": 58.6669212643487,
+ "y": 40.22860326317441
},
{
- "x": 17.73730396158777,
- "y": 64.01043439905531
+ "x": 58.61646961230298,
+ "y": 40.14442976698087
},
{
- "x": 17.831635586793197,
- "y": 64.04353371870974
+ "x": 58.558010453363266,
+ "y": 40.06560671583689
},
{
- "x": 17.927573661276142,
- "y": 64.0716389911685
+ "x": 58.492106781187175,
+ "y": 39.99289321881404
},
{
- "x": 18.024853994097356,
- "y": 64.09467282110785
+ "x": 58.41939328416436,
+ "y": 39.9269895466379
},
{
- "x": 18.123208698053077,
- "y": 64.11257177876648
+ "x": 58.3405702330204,
+ "y": 39.86853038769813
},
{
- "x": 18.2223669273736,
- "y": 64.12528657461607
+ "x": 58.2563967368269,
+ "y": 39.81807873565235
},
{
- "x": 18.322055623569014,
- "y": 64.1327821950932
+ "x": 58.16768343236609,
+ "y": 39.77612046748945
},
{
- "x": 18.422000267368134,
- "y": 64.13503799901835
+ "x": 58.07528467725555,
+ "y": 39.74305966426855
},
{
- "x": 18.521925634680116,
- "y": 64.132047774437
+ "x": 57.98009032201733,
+ "y": 39.719214719597545
},
{
- "x": 18.621556554497033,
- "y": 64.1238197557258
+ "x": 57.88301714033085,
+ "y": 39.704815273328585
},
{
- "x": 18.720618666650324,
- "y": 64.11037660091705
+ "x": 57.78500000000139,
+ "y": 39.700000000000784
},
{
- "x": 18.818839177334127,
- "y": 64.09175532930385
+ "x": 57.68698285967193,
+ "y": 39.704815273328585
},
{
- "x": 18.915947610315555,
- "y": 64.06800721949757
+ "x": 57.589909677985446,
+ "y": 39.719214719597545
},
{
- "x": 19.01167655176269,
- "y": 64.03919766821866
+ "x": 57.494715322747226,
+ "y": 39.74305966426855
},
{
- "x": 19.105762386639498,
- "y": 64.00540601020941
+ "x": 57.40231656763669,
+ "y": 39.77612046748945
},
{
- "x": 19.197946024639776,
- "y": 63.966725299764654
+ "x": 57.31360326317588,
+ "y": 39.81807873565235
},
{
- "x": 19.28797361366111,
- "y": 63.92326205448214
+ "x": 57.22942976698238,
+ "y": 39.86853038769813
},
{
- "x": 19.375597238853857,
- "y": 63.87513596193804
+ "x": 57.15060671583842,
+ "y": 39.9269895466379
},
{
- "x": 19.460575605320514,
- "y": 63.82247955009545
+ "x": 57.0778932188156,
+ "y": 39.99289321881404
},
{
- "x": 19.542674702585316,
- "y": 63.765437822353505
+ "x": 57.01198954663951,
+ "y": 40.06560671583689
},
{
- "x": 19.621668449003977,
- "y": 63.70416785824203
+ "x": 56.9535303876998,
+ "y": 40.14442976698087
},
{
- "x": 19.6973393143397,
- "y": 63.6388383808614
+ "x": 56.90307873565408,
+ "y": 40.22860326317441
},
{
- "x": 19.769478918790128,
- "y": 63.56962929225871
+ "x": 56.86112046749122,
+ "y": 40.317316567635245
},
{
- "x": 19.837888606816676,
- "y": 63.496731178019786
+ "x": 56.82805966427037,
+ "y": 40.4097153227458
},
{
- "x": 19.90237999419506,
- "y": 63.42034478244119
+ "x": 56.80421471959943,
+ "y": 40.504909677984045
},
{
- "x": 19.962775486781368,
- "y": 63.34068045572754
+ "x": 56.78981527333053,
+ "y": 40.60198285967052
},
{
- "x": 20.01890876956452,
- "y": 63.25795757473644
- },
+ "x": 56.78500000000278,
+ "y": 40.69999999999999
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_89",
+ "pcb_component_id": "pcb_component_13",
+ "layer": "top",
+ "route": [
{
- "x": 20.070625264658872,
- "y": 63.172403938866104
+ "x": 52.78899999999999,
+ "y": -16.390000000000015
},
{
- "x": 20.11778255697547,
- "y": 63.084255142749264
- },
+ "x": 52.78899999999999,
+ "y": -39.49000000000001
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_90",
+ "pcb_component_id": "pcb_component_13",
+ "layer": "top",
+ "route": [
{
- "x": 20.160250786399587,
- "y": 62.99375392748085
+ "x": 52.78899999999999,
+ "y": -39.49000000000001
},
{
- "x": 20.197913005395236,
- "y": 62.901149512166
- },
+ "x": 63.28899999999999,
+ "y": -39.49000000000001
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_91",
+ "pcb_component_id": "pcb_component_13",
+ "layer": "top",
+ "route": [
{
- "x": 20.23066550105105,
- "y": 62.806696907629146
+ "x": 55.78899999999999,
+ "y": -16.450000000000017
},
{
- "x": 20.258418080681395,
- "y": 62.71065621417402
- },
+ "x": 55.78899999999999,
+ "y": -39.43000000000001
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_92",
+ "pcb_component_id": "pcb_component_13",
+ "layer": "top",
+ "route": [
{
- "x": 20.28109432019582,
- "y": 62.61329190532851
+ "x": 55.78899999999999,
+ "y": -39.43000000000001
},
{
- "x": 20.298631774553087,
- "y": 62.51487209954661
- },
+ "x": 60.28899999999999,
+ "y": -39.43000000000001
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_93",
+ "pcb_component_id": "pcb_component_13",
+ "layer": "top",
+ "route": [
{
- "x": 20.31098214972016,
- "y": 62.41566782187315
+ "x": 57.03899999999999,
+ "y": -16.450000000000017
},
{
- "x": 20.318111435662615,
- "y": 62.31595225760442
+ "x": 55.78899999999999,
+ "y": -16.450000000000017
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_94",
+ "pcb_component_id": "pcb_component_13",
+ "layer": "top",
+ "route": [
+ {
+ "x": 60.28899999999999,
+ "y": -16.450000000000017
},
{
- "x": 20.320000000000277,
- "y": 62.21599999999999
+ "x": 59.03899999999999,
+ "y": -16.450000000000017
}
],
- "stroke_width": 0.381
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_115",
- "pcb_component_id": "pcb_component_8",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_95",
+ "pcb_component_id": "pcb_component_13",
"layer": "top",
"route": [
{
- "x": 20.319999999999965,
- "y": 55.879999999999995
+ "x": 60.28899999999999,
+ "y": -39.43000000000001
},
{
- "x": 20.317389263707383,
- "y": 55.780300003357226
- },
+ "x": 60.28899999999999,
+ "y": -16.450000000000017
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_96",
+ "pcb_component_id": "pcb_component_13",
+ "layer": "top",
+ "route": [
{
- "x": 20.309564210676456,
- "y": 55.68087327747519
+ "x": 63.28899999999999,
+ "y": -16.390000000000015
},
{
- "x": 20.296546288833582,
- "y": 55.581992344098474
- },
+ "x": 52.78899999999999,
+ "y": -16.390000000000015
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_97",
+ "pcb_component_id": "pcb_component_13",
+ "layer": "top",
+ "route": [
{
- "x": 20.27837117939771,
- "y": 55.483928228992326
+ "x": 63.28899999999999,
+ "y": -39.49000000000001
},
{
- "x": 20.25508869908046,
- "y": 55.3869497190799
+ "x": 63.28899999999999,
+ "y": -16.390000000000015
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_98",
+ "pcb_component_id": "pcb_component_13",
+ "layer": "top",
+ "route": [
+ {
+ "x": 59.03899999999999,
+ "y": -16.450000000000017
},
{
- "x": 20.226762663542047,
- "y": 55.29132262571597
+ "x": 59.03418472667212,
+ "y": -16.548017140329506
},
{
- "x": 20.19347071247691,
- "y": 55.197309056116495
+ "x": 59.01978528040311,
+ "y": -16.645090322016003
},
{
- "x": 20.15530409680889,
- "y": 55.105166694940934
+ "x": 58.99594033573209,
+ "y": -16.740284677254266
},
{
- "x": 20.11236742857855,
- "y": 55.015148097996544
+ "x": 58.962879532511124,
+ "y": -16.832683432364817
},
{
- "x": 20.06477839420907,
- "y": 54.92750000000043
+ "x": 58.92092126434818,
+ "y": -16.921396736825656
},
{
- "x": 20.01266743193574,
- "y": 54.84246263829685
+ "x": 58.87046961230237,
+ "y": -17.005570233019185
},
{
- "x": 19.956177374283982,
- "y": 54.76026909438336
+ "x": 58.812010453362575,
+ "y": -17.084393284163156
},
{
- "x": 19.895463056575238,
- "y": 54.68114465505062
+ "x": 58.74610678118643,
+ "y": -17.157106781186002
},
{
- "x": 19.830690892534136,
- "y": 54.60530619488698
+ "x": 58.67339328416355,
+ "y": -17.22301045336212
},
{
- "x": 19.762038418160103,
- "y": 54.532961581840276
+ "x": 58.59457023301954,
+ "y": -17.281469612301876
},
{
- "x": 19.689693805113365,
- "y": 54.46430910746625
+ "x": 58.51039673682598,
+ "y": -17.331921264347642
},
{
- "x": 19.613855344949684,
- "y": 54.3995369434252
+ "x": 58.421683432365114,
+ "y": -17.37387953251053
},
{
- "x": 19.534730905616925,
- "y": 54.33882262571649
+ "x": 58.32928467725455,
+ "y": -17.40694033573142
},
{
- "x": 19.452537361703406,
- "y": 54.28233256806477
+ "x": 58.23409032201627,
+ "y": -17.430785280402418
},
{
- "x": 19.367499999999808,
- "y": 54.23022160579147
+ "x": 58.13701714032976,
+ "y": -17.44518472667137
},
{
- "x": 19.279851902003685,
- "y": 54.18263257142202
+ "x": 58.03900000000027,
+ "y": -17.449999999999164
},
{
- "x": 19.189833305059267,
- "y": 54.13969590319173
+ "x": 57.94098285967078,
+ "y": -17.44518472667137
},
{
- "x": 19.09769094388369,
- "y": 54.10152928752374
+ "x": 57.84390967798427,
+ "y": -17.430785280402418
},
{
- "x": 19.003677374284194,
- "y": 54.068237336458665
+ "x": 57.748715322745994,
+ "y": -17.40694033573142
},
{
- "x": 18.908050280920264,
- "y": 54.039911300920274
+ "x": 57.65631656763543,
+ "y": -17.37387953251053
},
{
- "x": 18.811071771007818,
- "y": 54.01662882060306
+ "x": 57.56760326317456,
+ "y": -17.331921264347642
},
{
- "x": 18.713007655901663,
- "y": 53.99845371116724
+ "x": 57.483429766981004,
+ "y": -17.281469612301876
},
{
- "x": 18.61412672252493,
- "y": 53.98543578932442
+ "x": 57.40460671583699,
+ "y": -17.22301045336212
},
{
- "x": 18.514699996642918,
- "y": 53.97761073629353
+ "x": 57.331893218814116,
+ "y": -17.157106781186002
},
{
- "x": 18.415000000000134,
- "y": 53.97500000000099
+ "x": 57.26598954663797,
+ "y": -17.084393284163156
},
{
- "x": 18.31530000335735,
- "y": 53.97761073629353
+ "x": 57.20753038769817,
+ "y": -17.005570233019185
},
{
- "x": 18.21587327747534,
- "y": 53.98543578932442
+ "x": 57.15707873565236,
+ "y": -16.921396736825656
},
{
- "x": 18.116992344098605,
- "y": 53.99845371116724
+ "x": 57.11512046748942,
+ "y": -16.832683432364817
},
{
- "x": 18.01892822899245,
- "y": 54.01662882060306
+ "x": 57.082059664268456,
+ "y": -16.740284677254266
},
{
- "x": 17.921949719080004,
- "y": 54.039911300920274
+ "x": 57.05821471959743,
+ "y": -16.645090322016003
},
{
- "x": 17.826322625716074,
- "y": 54.068237336458665
+ "x": 57.04381527332842,
+ "y": -16.548017140329506
},
{
- "x": 17.732309056116577,
- "y": 54.10152928752374
+ "x": 57.039000000000556,
+ "y": -16.450000000000017
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_99",
+ "pcb_component_id": "pcb_component_14",
+ "layer": "top",
+ "route": [
+ {
+ "x": -39.43000000000002,
+ "y": -23.150000000000006
},
{
- "x": 17.640166694941,
- "y": 54.13969590319173
+ "x": -39.43000000000002,
+ "y": -24.400000000000006
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_100",
+ "pcb_component_id": "pcb_component_14",
+ "layer": "top",
+ "route": [
+ {
+ "x": -39.43000000000002,
+ "y": -26.400000000000006
},
{
- "x": 17.550148097996583,
- "y": 54.18263257142202
+ "x": -39.43000000000002,
+ "y": -27.650000000000006
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_101",
+ "pcb_component_id": "pcb_component_14",
+ "layer": "top",
+ "route": [
+ {
+ "x": -39.43000000000002,
+ "y": -27.650000000000006
},
{
- "x": 17.46250000000046,
- "y": 54.23022160579147
+ "x": -21.53000000000003,
+ "y": -27.650000000000006
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_102",
+ "pcb_component_id": "pcb_component_14",
+ "layer": "top",
+ "route": [
+ {
+ "x": -21.53000000000003,
+ "y": -23.150000000000006
},
{
- "x": 17.377462638296862,
- "y": 54.28233256806477
+ "x": -39.43000000000002,
+ "y": -23.150000000000006
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_103",
+ "pcb_component_id": "pcb_component_14",
+ "layer": "top",
+ "route": [
+ {
+ "x": -21.53000000000003,
+ "y": -27.650000000000006
},
{
- "x": 17.295269094383343,
- "y": 54.33882262571649
+ "x": -21.53000000000003,
+ "y": -23.150000000000006
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_104",
+ "pcb_component_id": "pcb_component_14",
+ "layer": "top",
+ "route": [
+ {
+ "x": -39.43000000000002,
+ "y": -24.400000000000006
},
{
- "x": 17.216144655050584,
- "y": 54.3995369434252
+ "x": -39.33198285967056,
+ "y": -24.404815273327912
},
{
- "x": 17.140306194886904,
- "y": 54.46430910746625
+ "x": -39.234909677984106,
+ "y": -24.419214719596965
},
{
- "x": 17.067961581840166,
- "y": 54.532961581840276
+ "x": -39.139715322745886,
+ "y": -24.44305966426805
},
{
- "x": 16.999309107466132,
- "y": 54.60530619488698
+ "x": -39.04731656763539,
+ "y": -24.476120467489025
},
{
- "x": 16.93453694342503,
- "y": 54.68114465505062
+ "x": -38.958603263174595,
+ "y": -24.518078735651983
},
{
- "x": 16.873822625716286,
- "y": 54.76026909438336
+ "x": -38.87442976698111,
+ "y": -24.568530387697805
},
{
- "x": 16.81733256806453,
- "y": 54.842462638296844
+ "x": -38.795606715837195,
+ "y": -24.626989546637603
},
{
- "x": 16.765221605791197,
- "y": 54.92750000000043
+ "x": -38.722893218814406,
+ "y": -24.692893218813765
},
{
- "x": 16.717632571421717,
- "y": 55.015148097996544
+ "x": -38.656989546638314,
+ "y": -24.76560671583664
},
{
- "x": 16.674695903191378,
- "y": 55.105166694940934
+ "x": -38.5985303876986,
+ "y": -24.844429766980625
},
{
- "x": 16.63652928752336,
- "y": 55.197309056116495
+ "x": -38.54807873565288,
+ "y": -24.928603263174168
},
{
- "x": 16.60323733645822,
- "y": 55.29132262571597
+ "x": -38.50612046749001,
+ "y": -25.017316567635007
},
{
- "x": 16.57491130091981,
- "y": 55.386949719079894
+ "x": -38.473059664269144,
+ "y": -25.109715322745544
},
{
- "x": 16.55162882060256,
- "y": 55.483928228992326
+ "x": -38.44921471959816,
+ "y": -25.204909677983792
},
{
- "x": 16.533453711166686,
- "y": 55.581992344098474
+ "x": -38.43481527332922,
+ "y": -25.30198285967026
},
{
- "x": 16.520435789323813,
- "y": 55.68087327747519
+ "x": -38.43000000000143,
+ "y": -25.39999999999972
},
{
- "x": 16.512610736292885,
- "y": 55.780300003357226
+ "x": -38.43481527332922,
+ "y": -25.498017140329182
},
{
- "x": 16.510000000000304,
- "y": 55.879999999999995
- }
- ],
- "stroke_width": 0.381
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_116",
- "pcb_component_id": "pcb_component_8",
- "layer": "top",
- "route": [
- {
- "x": 44.44866499999998,
- "y": 44.45066499999999
- },
- {
- "x": 44.53718207595398,
- "y": 44.40450318864003
- },
- {
- "x": 44.6240219307291,
- "y": 44.35525864390545
- },
- {
- "x": 44.709077246728185,
- "y": 44.302992222717656
- },
- {
- "x": 44.792242911705586,
- "y": 44.24776851646442
- },
- {
- "x": 44.87341614866622,
- "y": 44.18965577117722
- },
- {
- "x": 44.9524966428782,
- "y": 44.12872580319208
- },
- {
- "x": 45.029386665842935,
- "y": 44.06505391039817
- },
- {
- "x": 45.1039911960691,
- "y": 43.998718779183896
- },
- {
- "x": 45.17621803650104,
- "y": 43.92980238719547
- },
- {
- "x": 45.24597792845688,
- "y": 43.858389902028044
- },
- {
- "x": 45.31318466193545,
- "y": 43.784569575974714
- },
- {
- "x": 45.3777551821554,
- "y": 43.70843263696345
- },
- {
- "x": 45.43960969219518,
- "y": 43.630073175816634
- },
- {
- "x": 45.498671751606906,
- "y": 43.54958802997266
- },
- {
- "x": 45.554868370882275,
- "y": 43.46707666381321
- },
- {
- "x": 45.608130101653785,
- "y": 43.382641045744144
- },
- {
- "x": 45.658391122519674,
- "y": 43.29638552218188
- },
- {
- "x": 45.705589320386736,
- "y": 43.208416688601005
- },
- {
- "x": 45.74966636723042,
- "y": 43.11884325780246
- },
- {
- "x": 45.79056779217703,
- "y": 43.02777592556517
- },
- {
- "x": 45.82824304881953,
- "y": 42.935327233847
- },
- {
- "x": 45.86264557768328,
- "y": 42.841611431704244
- },
- {
- "x": 45.89373286376474,
- "y": 42.74674433410149
- },
- {
- "x": 45.92146648907189,
- "y": 42.650843178786225
- },
- {
- "x": 45.94581218010168,
- "y": 42.55402648140524
- },
- {
- "x": 45.96673985019552,
- "y": 42.456413889041734
- },
- {
- "x": 45.984223636720685,
- "y": 42.35812603235423
- },
- {
- "x": 45.998241933031636,
- "y": 42.259284376499934
- },
- {
- "x": 46.00877741517178,
- "y": 42.16001107102684
- },
- {
- "x": 46.015817063282526,
- "y": 42.060428798920015
- },
- {
- "x": 46.019352177693406,
- "y": 41.96066062498873
- },
- {
- "x": 46.01937838967322,
- "y": 41.86082984378167
- },
- {
- "x": 46.0158956668289,
- "y": 41.761059827218226
- },
- {
- "x": 46.00890831314561,
- "y": 41.661473872124226
- },
- {
- "x": 45.99842496366787,
- "y": 41.5621950478604
- },
- {
- "x": 45.984458573828135,
- "y": 41.46334604423201
- },
- {
- "x": 45.96702640343648,
- "y": 41.365049019867506
- },
- {
- "x": 45.94614999535065,
- "y": 41.267425451253594
- },
- {
- "x": 45.9218551488533,
- "y": 41.170595982613364
- },
- {
- "x": 45.89417188776875,
- "y": 41.07468027681288
- },
- {
- "x": 45.86313442335947,
- "y": 40.97979686748056
- },
- {
- "x": 45.828781112047324,
- "y": 40.886063012522115
- },
- {
- "x": 45.79115440801226,
- "y": 40.793594549211974
- },
- {
- "x": 45.75030081072717,
- "y": 40.70250575104038
- },
- {
- "x": 45.7062708074931,
- "y": 40.61290918649302
- },
- {
- "x": 45.65911881104677,
- "y": 40.52491557993774
- },
- {
- "x": 45.60890309231655,
- "y": 40.438633674790196
- },
- {
- "x": 45.555685708410834,
- "y": 40.3541700991276
- },
- {
- "x": 45.499532425926986,
- "y": 40.27162923391666
+ "x": -38.44921471959816,
+ "y": -25.59509032201565
},
{
- "x": 45.44051263967651,
- "y": 40.19111308401847
+ "x": -38.473059664269144,
+ "y": -25.6902846772539
},
{
- "x": 45.37869928692609,
- "y": 40.11272115212984
+ "x": -38.50612046749001,
+ "y": -25.782683432364436
},
{
- "x": 45.31416875726097,
- "y": 40.03655031581686
+ "x": -38.54807873565288,
+ "y": -25.871396736825275
},
{
- "x": 45.24700079818197,
- "y": 39.962694707792544
+ "x": -38.5985303876986,
+ "y": -25.95557023301882
},
{
- "x": 45.17727841655264,
- "y": 39.891245599586675
+ "x": -38.656989546638314,
+ "y": -26.034393284162803
},
{
- "x": 45.10508777601851,
- "y": 39.8222912887515
+ "x": -38.722893218814406,
+ "y": -26.107106781185678
},
{
- "x": 45.03051809052522,
- "y": 39.75591698974267
+ "x": -38.795606715837195,
+ "y": -26.17301045336184
},
{
- "x": 44.95366151406694,
- "y": 39.69220472861036
+ "x": -38.87442976698111,
+ "y": -26.231469612301638
},
{
- "x": 44.874613026801484,
- "y": 39.6312332416306
+ "x": -38.958603263174595,
+ "y": -26.28192126434746
},
{
- "x": 44.7934703176729,
- "y": 39.573077878002174
+ "x": -39.04731656763539,
+ "y": -26.323879532510418
},
{
- "x": 44.71033366368644,
- "y": 39.51781050672926
+ "x": -39.139715322745886,
+ "y": -26.356940335731394
},
{
- "x": 44.62530580598519,
- "y": 39.46549942780506
+ "x": -39.234909677984106,
+ "y": -26.380785280402478
},
{
- "x": 44.53849182288144,
- "y": 39.41620928780582
+ "x": -39.33198285967056,
+ "y": -26.39518472667153
},
{
- "x": 44.449998999999934,
- "y": 39.37000100000006
+ "x": -39.43000000000002,
+ "y": -26.399999999999437
}
],
- "stroke_width": 0.381
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_117",
- "pcb_component_id": "pcb_component_9",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_105",
+ "pcb_component_id": "pcb_component_15",
"layer": "top",
"route": [
{
- "x": 23.95999999999998,
- "y": -29.090000000000018
+ "x": -52.30000000000001,
+ "y": -28.067000000000007
},
{
- "x": 23.95999999999998,
- "y": -39.49000000000001
+ "x": -51.650000000000006,
+ "y": -28.067000000000007
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_118",
- "pcb_component_id": "pcb_component_9",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_106",
+ "pcb_component_id": "pcb_component_15",
"layer": "top",
"route": [
{
- "x": 23.95999999999998,
- "y": -39.49000000000001
+ "x": -51.650000000000006,
+ "y": -26.947000000000003
},
{
- "x": 34.45999999999998,
- "y": -39.49000000000001
+ "x": -51.650000000000006,
+ "y": -29.187000000000012
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_119",
- "pcb_component_id": "pcb_component_9",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_107",
+ "pcb_component_id": "pcb_component_15",
"layer": "top",
"route": [
{
- "x": 26.95999999999998,
- "y": -29.15000000000002
+ "x": -51.650000000000006,
+ "y": -29.187000000000012
},
{
- "x": 26.95999999999998,
- "y": -39.43000000000001
+ "x": -47.41000000000001,
+ "y": -29.187000000000012
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_120",
- "pcb_component_id": "pcb_component_9",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_108",
+ "pcb_component_id": "pcb_component_15",
"layer": "top",
"route": [
{
- "x": 26.95999999999998,
- "y": -39.43000000000001
+ "x": -48.250000000000014,
+ "y": -29.187000000000012
},
{
- "x": 31.45999999999998,
- "y": -39.43000000000001
+ "x": -48.250000000000014,
+ "y": -26.947000000000003
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_121",
- "pcb_component_id": "pcb_component_9",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_109",
+ "pcb_component_id": "pcb_component_15",
"layer": "top",
"route": [
{
- "x": 28.20999999999998,
- "y": -29.15000000000002
+ "x": -48.13000000000001,
+ "y": -29.187000000000012
},
{
- "x": 26.95999999999998,
- "y": -29.15000000000002
+ "x": -48.13000000000001,
+ "y": -26.947000000000003
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_122",
- "pcb_component_id": "pcb_component_9",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_110",
+ "pcb_component_id": "pcb_component_15",
"layer": "top",
"route": [
{
- "x": 31.45999999999998,
- "y": -29.15000000000002
+ "x": -48.01000000000002,
+ "y": -29.187000000000012
},
{
- "x": 30.20999999999998,
- "y": -29.15000000000002
+ "x": -48.01000000000002,
+ "y": -26.947000000000003
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_123",
- "pcb_component_id": "pcb_component_9",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_111",
+ "pcb_component_id": "pcb_component_15",
"layer": "top",
"route": [
{
- "x": 31.45999999999998,
- "y": -39.43000000000001
+ "x": -47.41000000000001,
+ "y": -26.947000000000003
},
{
- "x": 31.45999999999998,
- "y": -29.15000000000002
+ "x": -51.650000000000006,
+ "y": -26.947000000000003
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_124",
- "pcb_component_id": "pcb_component_9",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_112",
+ "pcb_component_id": "pcb_component_15",
"layer": "top",
"route": [
{
- "x": 34.45999999999998,
- "y": -29.090000000000018
+ "x": -47.41000000000001,
+ "y": -29.187000000000012
},
{
- "x": 23.95999999999998,
- "y": -29.090000000000018
+ "x": -47.41000000000001,
+ "y": -26.947000000000003
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_125",
- "pcb_component_id": "pcb_component_9",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_113",
+ "pcb_component_id": "pcb_component_15",
"layer": "top",
"route": [
{
- "x": 34.45999999999998,
- "y": -39.49000000000001
+ "x": -46.76000000000002,
+ "y": -28.067000000000007
},
{
- "x": 34.45999999999998,
- "y": -29.090000000000018
+ "x": -47.41000000000001,
+ "y": -28.067000000000007
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_126",
- "pcb_component_id": "pcb_component_9",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_114",
+ "pcb_component_id": "pcb_component_16",
"layer": "top",
"route": [
{
- "x": 23.849999999999966,
- "y": -28.880000000000024
+ "x": -52.30000000000001,
+ "y": -31.750000000000014
},
{
- "x": 23.849999999999966,
- "y": -39.68000000000001
+ "x": -51.650000000000006,
+ "y": -31.750000000000014
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_127",
- "pcb_component_id": "pcb_component_9",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_115",
+ "pcb_component_id": "pcb_component_16",
"layer": "top",
"route": [
{
- "x": 23.849999999999966,
- "y": -39.68000000000001
+ "x": -51.650000000000006,
+ "y": -30.63000000000001
},
{
- "x": 34.54999999999998,
- "y": -39.68000000000001
+ "x": -51.650000000000006,
+ "y": -32.87000000000002
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_128",
- "pcb_component_id": "pcb_component_9",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_116",
+ "pcb_component_id": "pcb_component_16",
"layer": "top",
"route": [
{
- "x": 34.54999999999998,
- "y": -28.880000000000024
+ "x": -51.650000000000006,
+ "y": -32.87000000000002
},
{
- "x": 23.849999999999966,
- "y": -28.880000000000024
+ "x": -47.41000000000001,
+ "y": -32.87000000000002
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_129",
- "pcb_component_id": "pcb_component_9",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_117",
+ "pcb_component_id": "pcb_component_16",
"layer": "top",
"route": [
{
- "x": 34.54999999999998,
- "y": -39.68000000000001
+ "x": -48.250000000000014,
+ "y": -32.87000000000002
},
{
- "x": 34.54999999999998,
- "y": -28.880000000000024
+ "x": -48.250000000000014,
+ "y": -30.63000000000001
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_130",
- "pcb_component_id": "pcb_component_9",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_118",
+ "pcb_component_id": "pcb_component_16",
"layer": "top",
"route": [
{
- "x": 24.129999999999967,
- "y": -29.15000000000002
+ "x": -48.13000000000001,
+ "y": -32.87000000000002
},
{
- "x": 24.129999999999967,
- "y": -39.43000000000001
+ "x": -48.13000000000001,
+ "y": -30.63000000000001
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_131",
- "pcb_component_id": "pcb_component_9",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_119",
+ "pcb_component_id": "pcb_component_16",
"layer": "top",
"route": [
{
- "x": 24.129999999999967,
- "y": -39.43000000000001
+ "x": -48.01000000000002,
+ "y": -32.87000000000002
},
{
- "x": 34.289999999999964,
- "y": -39.43000000000001
+ "x": -48.01000000000002,
+ "y": -30.63000000000001
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_132",
- "pcb_component_id": "pcb_component_9",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_120",
+ "pcb_component_id": "pcb_component_16",
"layer": "top",
"route": [
{
- "x": 26.034999999999968,
- "y": -30.210000000000022
+ "x": -47.41000000000001,
+ "y": -30.63000000000001
},
{
- "x": 27.034999999999968,
- "y": -29.210000000000022
+ "x": -51.650000000000006,
+ "y": -30.63000000000001
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_133",
- "pcb_component_id": "pcb_component_9",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_121",
+ "pcb_component_id": "pcb_component_16",
"layer": "top",
"route": [
{
- "x": 26.034999999999968,
- "y": -39.37000000000003
+ "x": -47.41000000000001,
+ "y": -32.87000000000002
},
{
- "x": 26.034999999999968,
- "y": -30.210000000000022
+ "x": -47.41000000000001,
+ "y": -30.63000000000001
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_134",
- "pcb_component_id": "pcb_component_9",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_122",
+ "pcb_component_id": "pcb_component_16",
"layer": "top",
"route": [
{
- "x": 27.034999999999968,
- "y": -29.210000000000022
+ "x": -46.76000000000002,
+ "y": -31.750000000000014
},
{
- "x": 32.38499999999999,
- "y": -29.210000000000022
+ "x": -47.41000000000001,
+ "y": -31.750000000000014
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_135",
- "pcb_component_id": "pcb_component_9",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_123",
+ "pcb_component_id": "pcb_component_17",
"layer": "top",
"route": [
{
- "x": 32.38499999999999,
- "y": -29.210000000000022
+ "x": -52.30000000000001,
+ "y": -21.717000000000013
},
{
- "x": 32.38499999999999,
- "y": -39.37000000000003
+ "x": -51.650000000000006,
+ "y": -21.717000000000013
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_136",
- "pcb_component_id": "pcb_component_9",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_124",
+ "pcb_component_id": "pcb_component_17",
"layer": "top",
"route": [
{
- "x": 32.38499999999999,
- "y": -39.37000000000003
+ "x": -51.650000000000006,
+ "y": -20.59700000000001
},
{
- "x": 26.034999999999968,
- "y": -39.37000000000003
+ "x": -51.650000000000006,
+ "y": -22.837000000000018
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_137",
- "pcb_component_id": "pcb_component_9",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_125",
+ "pcb_component_id": "pcb_component_17",
"layer": "top",
"route": [
{
- "x": 34.289999999999964,
- "y": -29.15000000000002
+ "x": -51.650000000000006,
+ "y": -22.837000000000018
},
{
- "x": 24.129999999999967,
- "y": -29.15000000000002
+ "x": -47.41000000000001,
+ "y": -22.837000000000018
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_138",
- "pcb_component_id": "pcb_component_9",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_126",
+ "pcb_component_id": "pcb_component_17",
"layer": "top",
"route": [
{
- "x": 34.289999999999964,
- "y": -39.43000000000001
+ "x": -48.250000000000014,
+ "y": -22.837000000000018
},
{
- "x": 34.289999999999964,
- "y": -29.15000000000002
+ "x": -48.250000000000014,
+ "y": -20.59700000000001
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_139",
- "pcb_component_id": "pcb_component_9",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_127",
+ "pcb_component_id": "pcb_component_17",
"layer": "top",
"route": [
{
- "x": 30.20999999999998,
- "y": -29.15000000000002
- },
- {
- "x": 30.205184726672513,
- "y": -29.248017140329864
- },
- {
- "x": 30.190785280403844,
- "y": -29.34509032201676
- },
- {
- "x": 30.166940335733074,
- "y": -29.44028467725542
- },
- {
- "x": 30.13387953251234,
- "y": -29.53268343236641
- },
- {
- "x": 30.091921264349537,
- "y": -29.621396736827677
- },
- {
- "x": 30.041469612303786,
- "y": -29.705570233021632
- },
- {
- "x": 29.98301045336399,
- "y": -29.78439328416603
+ "x": -48.13000000000001,
+ "y": -22.837000000000018
},
{
- "x": 29.917106781187755,
- "y": -29.85710678118926
- },
+ "x": -48.13000000000001,
+ "y": -20.59700000000001
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_128",
+ "pcb_component_id": "pcb_component_17",
+ "layer": "top",
+ "route": [
{
- "x": 29.844393284164795,
- "y": -29.923010453365762
+ "x": -48.01000000000002,
+ "y": -22.837000000000018
},
{
- "x": 29.76557023302061,
- "y": -29.981469612305858
- },
+ "x": -48.01000000000002,
+ "y": -20.59700000000001
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_129",
+ "pcb_component_id": "pcb_component_17",
+ "layer": "top",
+ "route": [
{
- "x": 29.681396736826855,
- "y": -30.031921264351908
+ "x": -47.41000000000001,
+ "y": -20.59700000000001
},
{
- "x": 29.59268343236573,
- "y": -30.07387953251505
- },
+ "x": -51.650000000000006,
+ "y": -20.59700000000001
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_130",
+ "pcb_component_id": "pcb_component_17",
+ "layer": "top",
+ "route": [
{
- "x": 29.500284677254882,
- "y": -30.10694033573614
+ "x": -47.41000000000001,
+ "y": -22.837000000000018
},
{
- "x": 29.405090322016292,
- "y": -30.13078528040728
- },
+ "x": -47.41000000000001,
+ "y": -20.59700000000001
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_131",
+ "pcb_component_id": "pcb_component_17",
+ "layer": "top",
+ "route": [
{
- "x": 29.30801714032947,
- "y": -30.145184726676334
+ "x": -46.76000000000002,
+ "y": -21.717000000000013
},
{
- "x": 29.20999999999964,
- "y": -30.150000000004155
- },
+ "x": -47.41000000000001,
+ "y": -21.717000000000013
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_132",
+ "pcb_component_id": "pcb_component_18",
+ "layer": "top",
+ "route": [
{
- "x": 29.11198285966981,
- "y": -30.145184726676334
+ "x": -52.30000000000001,
+ "y": -18.415000000000006
},
{
- "x": 29.014909677982985,
- "y": -30.13078528040728
- },
+ "x": -51.650000000000006,
+ "y": -18.415000000000006
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_133",
+ "pcb_component_id": "pcb_component_18",
+ "layer": "top",
+ "route": [
{
- "x": 28.919715322744395,
- "y": -30.10694033573614
+ "x": -51.650000000000006,
+ "y": -17.295
},
{
- "x": 28.827316567633545,
- "y": -30.07387953251505
- },
+ "x": -51.650000000000006,
+ "y": -19.53500000000001
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_134",
+ "pcb_component_id": "pcb_component_18",
+ "layer": "top",
+ "route": [
{
- "x": 28.738603263172422,
- "y": -30.031921264351908
+ "x": -51.650000000000006,
+ "y": -19.53500000000001
},
{
- "x": 28.654429766978666,
- "y": -29.981469612305858
- },
+ "x": -47.41000000000001,
+ "y": -19.53500000000001
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_135",
+ "pcb_component_id": "pcb_component_18",
+ "layer": "top",
+ "route": [
{
- "x": 28.575606715834482,
- "y": -29.923010453365762
+ "x": -48.250000000000014,
+ "y": -19.53500000000001
},
{
- "x": 28.502893218811522,
- "y": -29.85710678118926
- },
+ "x": -48.250000000000014,
+ "y": -17.295
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_136",
+ "pcb_component_id": "pcb_component_18",
+ "layer": "top",
+ "route": [
{
- "x": 28.43698954663529,
- "y": -29.78439328416603
+ "x": -48.13000000000001,
+ "y": -19.53500000000001
},
{
- "x": 28.37853038769549,
- "y": -29.705570233021632
- },
+ "x": -48.13000000000001,
+ "y": -17.295
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_137",
+ "pcb_component_id": "pcb_component_18",
+ "layer": "top",
+ "route": [
{
- "x": 28.32807873564974,
- "y": -29.621396736827677
+ "x": -48.01000000000002,
+ "y": -19.53500000000001
},
{
- "x": 28.28612046748694,
- "y": -29.53268343236641
- },
+ "x": -48.01000000000002,
+ "y": -17.295
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_138",
+ "pcb_component_id": "pcb_component_18",
+ "layer": "top",
+ "route": [
{
- "x": 28.253059664266203,
- "y": -29.44028467725542
+ "x": -47.41000000000001,
+ "y": -17.295
},
{
- "x": 28.229214719595433,
- "y": -29.34509032201676
- },
+ "x": -51.650000000000006,
+ "y": -17.295
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_139",
+ "pcb_component_id": "pcb_component_18",
+ "layer": "top",
+ "route": [
{
- "x": 28.214815273326764,
- "y": -29.248017140329864
+ "x": -47.41000000000001,
+ "y": -19.53500000000001
},
{
- "x": 28.209999999999297,
- "y": -29.15000000000002
+ "x": -47.41000000000001,
+ "y": -17.295
}
],
"stroke_width": 0.12
@@ -66598,16 +66238,16 @@
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_140",
- "pcb_component_id": "pcb_component_10",
+ "pcb_component_id": "pcb_component_18",
"layer": "top",
"route": [
{
- "x": 23.95999999999998,
- "y": -17.66000000000001
+ "x": -46.76000000000002,
+ "y": -18.415000000000006
},
{
- "x": 23.95999999999998,
- "y": -28.060000000000016
+ "x": -47.41000000000001,
+ "y": -18.415000000000006
}
],
"stroke_width": 0.12
@@ -66615,16 +66255,16 @@
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_141",
- "pcb_component_id": "pcb_component_10",
+ "pcb_component_id": "pcb_component_19",
"layer": "top",
"route": [
{
- "x": 23.95999999999998,
- "y": -28.060000000000016
+ "x": -13.565000000000026,
+ "y": 9.524999999999991
},
{
- "x": 34.45999999999998,
- "y": -28.060000000000016
+ "x": -12.91500000000002,
+ "y": 9.524999999999991
}
],
"stroke_width": 0.12
@@ -66632,16 +66272,16 @@
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_142",
- "pcb_component_id": "pcb_component_10",
+ "pcb_component_id": "pcb_component_19",
"layer": "top",
"route": [
{
- "x": 26.95999999999998,
- "y": -17.720000000000013
+ "x": -12.91500000000002,
+ "y": 10.644999999999996
},
{
- "x": 26.95999999999998,
- "y": -28.000000000000014
+ "x": -12.91500000000002,
+ "y": 8.404999999999987
}
],
"stroke_width": 0.12
@@ -66649,16 +66289,16 @@
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_143",
- "pcb_component_id": "pcb_component_10",
+ "pcb_component_id": "pcb_component_19",
"layer": "top",
"route": [
{
- "x": 26.95999999999998,
- "y": -28.000000000000014
+ "x": -12.91500000000002,
+ "y": 8.404999999999987
},
{
- "x": 31.45999999999998,
- "y": -28.000000000000014
+ "x": -8.675000000000011,
+ "y": 8.404999999999987
}
],
"stroke_width": 0.12
@@ -66666,16 +66306,16 @@
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_144",
- "pcb_component_id": "pcb_component_10",
+ "pcb_component_id": "pcb_component_19",
"layer": "top",
"route": [
{
- "x": 28.20999999999998,
- "y": -17.720000000000013
+ "x": -12.315000000000026,
+ "y": 10.644999999999996
},
{
- "x": 26.95999999999998,
- "y": -17.720000000000013
+ "x": -12.315000000000026,
+ "y": 8.404999999999987
}
],
"stroke_width": 0.12
@@ -66683,16 +66323,16 @@
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_145",
- "pcb_component_id": "pcb_component_10",
+ "pcb_component_id": "pcb_component_19",
"layer": "top",
"route": [
{
- "x": 31.45999999999998,
- "y": -17.720000000000013
+ "x": -12.195000000000022,
+ "y": 10.644999999999996
},
{
- "x": 30.20999999999998,
- "y": -17.720000000000013
+ "x": -12.195000000000022,
+ "y": 8.404999999999987
}
],
"stroke_width": 0.12
@@ -66700,16 +66340,16 @@
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_146",
- "pcb_component_id": "pcb_component_10",
+ "pcb_component_id": "pcb_component_19",
"layer": "top",
"route": [
{
- "x": 31.45999999999998,
- "y": -28.000000000000014
+ "x": -12.075000000000017,
+ "y": 10.644999999999996
},
{
- "x": 31.45999999999998,
- "y": -17.720000000000013
+ "x": -12.075000000000017,
+ "y": 8.404999999999987
}
],
"stroke_width": 0.12
@@ -66717,16 +66357,16 @@
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_147",
- "pcb_component_id": "pcb_component_10",
+ "pcb_component_id": "pcb_component_19",
"layer": "top",
"route": [
{
- "x": 34.45999999999998,
- "y": -17.66000000000001
+ "x": -8.675000000000011,
+ "y": 10.644999999999996
},
{
- "x": 23.95999999999998,
- "y": -17.66000000000001
+ "x": -12.91500000000002,
+ "y": 10.644999999999996
}
],
"stroke_width": 0.12
@@ -66734,16 +66374,16 @@
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_148",
- "pcb_component_id": "pcb_component_10",
+ "pcb_component_id": "pcb_component_19",
"layer": "top",
"route": [
{
- "x": 34.45999999999998,
- "y": -28.060000000000016
+ "x": -8.675000000000011,
+ "y": 8.404999999999987
},
{
- "x": 34.45999999999998,
- "y": -17.66000000000001
+ "x": -8.675000000000011,
+ "y": 10.644999999999996
}
],
"stroke_width": 0.12
@@ -66751,395 +66391,271 @@
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_149",
- "pcb_component_id": "pcb_component_10",
+ "pcb_component_id": "pcb_component_19",
"layer": "top",
"route": [
{
- "x": 23.849999999999966,
- "y": -17.450000000000017
+ "x": -8.025000000000006,
+ "y": 9.524999999999991
},
{
- "x": 23.849999999999966,
- "y": -28.250000000000014
+ "x": -8.675000000000011,
+ "y": 9.524999999999991
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_150",
- "pcb_component_id": "pcb_component_10",
+ "pcb_component_id": "pcb_component_20",
"layer": "top",
"route": [
{
- "x": 23.849999999999966,
- "y": -28.250000000000014
+ "x": -52.30000000000001,
+ "y": -25.146000000000015
},
{
- "x": 34.54999999999998,
- "y": -28.250000000000014
+ "x": -51.650000000000006,
+ "y": -25.146000000000015
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_151",
- "pcb_component_id": "pcb_component_10",
+ "pcb_component_id": "pcb_component_20",
"layer": "top",
"route": [
{
- "x": 34.54999999999998,
- "y": -17.450000000000017
+ "x": -51.650000000000006,
+ "y": -24.02600000000001
},
{
- "x": 23.849999999999966,
- "y": -17.450000000000017
+ "x": -51.650000000000006,
+ "y": -26.26600000000002
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_152",
- "pcb_component_id": "pcb_component_10",
+ "pcb_component_id": "pcb_component_20",
"layer": "top",
"route": [
{
- "x": 34.54999999999998,
- "y": -28.250000000000014
+ "x": -51.650000000000006,
+ "y": -26.26600000000002
},
{
- "x": 34.54999999999998,
- "y": -17.450000000000017
+ "x": -47.41000000000001,
+ "y": -26.26600000000002
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_153",
- "pcb_component_id": "pcb_component_10",
+ "pcb_component_id": "pcb_component_20",
"layer": "top",
"route": [
{
- "x": 24.129999999999967,
- "y": -17.720000000000013
+ "x": -48.250000000000014,
+ "y": -26.26600000000002
},
{
- "x": 24.129999999999967,
- "y": -28.000000000000014
+ "x": -48.250000000000014,
+ "y": -24.02600000000001
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_154",
- "pcb_component_id": "pcb_component_10",
+ "pcb_component_id": "pcb_component_20",
"layer": "top",
"route": [
{
- "x": 24.129999999999967,
- "y": -28.000000000000014
+ "x": -48.13000000000001,
+ "y": -26.26600000000002
},
{
- "x": 34.289999999999964,
- "y": -28.000000000000014
+ "x": -48.13000000000001,
+ "y": -24.02600000000001
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_155",
- "pcb_component_id": "pcb_component_10",
+ "pcb_component_id": "pcb_component_20",
"layer": "top",
"route": [
{
- "x": 26.034999999999968,
- "y": -18.780000000000015
+ "x": -48.01000000000002,
+ "y": -26.26600000000002
},
{
- "x": 27.034999999999968,
- "y": -17.780000000000015
+ "x": -48.01000000000002,
+ "y": -24.02600000000001
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_156",
- "pcb_component_id": "pcb_component_10",
+ "pcb_component_id": "pcb_component_20",
"layer": "top",
"route": [
{
- "x": 26.034999999999968,
- "y": -27.940000000000012
+ "x": -47.41000000000001,
+ "y": -24.02600000000001
},
{
- "x": 26.034999999999968,
- "y": -18.780000000000015
+ "x": -51.650000000000006,
+ "y": -24.02600000000001
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_157",
- "pcb_component_id": "pcb_component_10",
+ "pcb_component_id": "pcb_component_20",
"layer": "top",
"route": [
{
- "x": 27.034999999999968,
- "y": -17.780000000000015
+ "x": -47.41000000000001,
+ "y": -26.26600000000002
},
{
- "x": 32.38499999999999,
- "y": -17.780000000000015
+ "x": -47.41000000000001,
+ "y": -24.02600000000001
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_158",
- "pcb_component_id": "pcb_component_10",
+ "pcb_component_id": "pcb_component_20",
"layer": "top",
"route": [
{
- "x": 32.38499999999999,
- "y": -17.780000000000015
+ "x": -46.76000000000002,
+ "y": -25.146000000000015
},
{
- "x": 32.38499999999999,
- "y": -27.940000000000012
+ "x": -47.41000000000001,
+ "y": -25.146000000000015
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_159",
- "pcb_component_id": "pcb_component_10",
+ "pcb_component_id": "pcb_component_21",
"layer": "top",
"route": [
{
- "x": 32.38499999999999,
- "y": -27.940000000000012
+ "x": -52.30000000000001,
+ "y": -34.92500000000001
},
{
- "x": 26.034999999999968,
- "y": -27.940000000000012
+ "x": -51.650000000000006,
+ "y": -34.92500000000001
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_160",
- "pcb_component_id": "pcb_component_10",
+ "pcb_component_id": "pcb_component_21",
"layer": "top",
"route": [
{
- "x": 34.289999999999964,
- "y": -17.720000000000013
+ "x": -51.650000000000006,
+ "y": -33.80500000000001
},
{
- "x": 24.129999999999967,
- "y": -17.720000000000013
+ "x": -51.650000000000006,
+ "y": -36.045000000000016
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_161",
- "pcb_component_id": "pcb_component_10",
+ "pcb_component_id": "pcb_component_21",
"layer": "top",
"route": [
{
- "x": 34.289999999999964,
- "y": -28.000000000000014
+ "x": -51.650000000000006,
+ "y": -36.045000000000016
},
{
- "x": 34.289999999999964,
- "y": -17.720000000000013
+ "x": -47.41000000000001,
+ "y": -36.045000000000016
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_162",
- "pcb_component_id": "pcb_component_10",
+ "pcb_component_id": "pcb_component_21",
"layer": "top",
"route": [
{
- "x": 30.20999999999998,
- "y": -17.720000000000013
+ "x": -48.250000000000014,
+ "y": -36.045000000000016
},
{
- "x": 30.205184726672314,
- "y": -17.8180171403299
- },
+ "x": -48.250000000000014,
+ "y": -33.80500000000001
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_163",
+ "pcb_component_id": "pcb_component_21",
+ "layer": "top",
+ "route": [
{
- "x": 30.190785280403446,
- "y": -17.91509032201681
+ "x": -48.13000000000001,
+ "y": -36.045000000000016
},
{
- "x": 30.166940335732505,
- "y": -18.010284677255484
- },
+ "x": -48.13000000000001,
+ "y": -33.80500000000001
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_164",
+ "pcb_component_id": "pcb_component_21",
+ "layer": "top",
+ "route": [
{
- "x": 30.1338795325116,
- "y": -18.102683432366447
+ "x": -48.01000000000002,
+ "y": -36.045000000000016
},
{
- "x": 30.091921264348628,
- "y": -18.1913967368277
- },
- {
- "x": 30.041469612302734,
- "y": -18.275570233021625
- },
- {
- "x": 29.983010453362823,
- "y": -18.35439328416598
- },
- {
- "x": 29.917106781186504,
- "y": -18.42710678118918
- },
- {
- "x": 29.844393284163402,
- "y": -18.493010453365642
- },
- {
- "x": 29.76557023301916,
- "y": -18.551469612305695
- },
- {
- "x": 29.681396736825292,
- "y": -18.601921264351716
- },
- {
- "x": 29.59268343236414,
- "y": -18.64387953251483
- },
- {
- "x": 29.500284677253205,
- "y": -18.676940335735893
- },
- {
- "x": 29.405090322014587,
- "y": -18.70078528040702
- },
- {
- "x": 29.308017140327706,
- "y": -18.715184726676043
- },
- {
- "x": 29.20999999999782,
- "y": -18.720000000003864
- },
- {
- "x": 29.111982859667933,
- "y": -18.715184726676043
- },
- {
- "x": 29.014909677981052,
- "y": -18.70078528040702
- },
- {
- "x": 28.919715322742434,
- "y": -18.676940335735893
- },
- {
- "x": 28.8273165676315,
- "y": -18.64387953251483
- },
- {
- "x": 28.738603263170347,
- "y": -18.601921264351716
- },
- {
- "x": 28.654429766976477,
- "y": -18.551469612305695
- },
- {
- "x": 28.575606715832237,
- "y": -18.493010453365642
- },
- {
- "x": 28.502893218809135,
- "y": -18.42710678118918
- },
- {
- "x": 28.436989546632816,
- "y": -18.35439328416598
- },
- {
- "x": 28.378530387692905,
- "y": -18.275570233021625
- },
- {
- "x": 28.32807873564701,
- "y": -18.1913967368277
- },
- {
- "x": 28.28612046748404,
- "y": -18.102683432366447
- },
- {
- "x": 28.253059664263134,
- "y": -18.010284677255484
- },
- {
- "x": 28.229214719592193,
- "y": -17.91509032201681
- },
- {
- "x": 28.214815273323325,
- "y": -17.8180171403299
- },
- {
- "x": 28.20999999999566,
- "y": -17.720000000000013
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_163",
- "pcb_component_id": "pcb_component_11",
- "layer": "top",
- "route": [
- {
- "x": -41.62000000000002,
- "y": 34.34999999999999
- },
- {
- "x": -41.62000000000002,
- "y": 24.069999999999993
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_164",
- "pcb_component_id": "pcb_component_11",
- "layer": "top",
- "route": [
- {
- "x": -41.62000000000002,
- "y": 24.069999999999993
- },
- {
- "x": -37.12000000000002,
- "y": 24.069999999999993
+ "x": -48.01000000000002,
+ "y": -33.80500000000001
}
],
"stroke_width": 0.12
@@ -67147,16 +66663,16 @@
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_165",
- "pcb_component_id": "pcb_component_11",
+ "pcb_component_id": "pcb_component_21",
"layer": "top",
"route": [
{
- "x": -40.37000000000002,
- "y": 34.34999999999999
+ "x": -47.41000000000001,
+ "y": -33.80500000000001
},
{
- "x": -41.62000000000002,
- "y": 34.34999999999999
+ "x": -51.650000000000006,
+ "y": -33.80500000000001
}
],
"stroke_width": 0.12
@@ -67164,16 +66680,16 @@
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_166",
- "pcb_component_id": "pcb_component_11",
+ "pcb_component_id": "pcb_component_21",
"layer": "top",
"route": [
{
- "x": -37.12000000000002,
- "y": 34.34999999999999
+ "x": -47.41000000000001,
+ "y": -36.045000000000016
},
{
- "x": -38.37000000000002,
- "y": 34.34999999999999
+ "x": -47.41000000000001,
+ "y": -33.80500000000001
}
],
"stroke_width": 0.12
@@ -67181,16 +66697,16 @@
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_167",
- "pcb_component_id": "pcb_component_11",
+ "pcb_component_id": "pcb_component_21",
"layer": "top",
"route": [
{
- "x": -37.12000000000002,
- "y": 24.069999999999993
+ "x": -46.76000000000002,
+ "y": -34.92500000000001
},
{
- "x": -37.12000000000002,
- "y": 34.34999999999999
+ "x": -47.41000000000001,
+ "y": -34.92500000000001
}
],
"stroke_width": 0.12
@@ -67198,19440 +66714,6303 @@
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_168",
- "pcb_component_id": "pcb_component_11",
+ "pcb_component_id": "pcb_component_22",
"layer": "top",
"route": [
{
- "x": -44.630000000000024,
- "y": 34.569999999999986
+ "x": -81.55000000000003,
+ "y": -9.005000000000024
},
{
- "x": -44.630000000000024,
- "y": 23.86999999999999
+ "x": -69.21000000000002,
+ "y": -9.005000000000024
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_169",
- "pcb_component_id": "pcb_component_11",
+ "pcb_component_id": "pcb_component_22",
"layer": "top",
"route": [
{
- "x": -44.630000000000024,
- "y": 23.86999999999999
+ "x": -69.21000000000002,
+ "y": -9.005000000000024
},
{
- "x": -34.08000000000003,
- "y": 23.86999999999999
+ "x": -69.21000000000002,
+ "y": -39.97500000000002
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_170",
- "pcb_component_id": "pcb_component_11",
+ "pcb_component_id": "pcb_component_22",
"layer": "top",
"route": [
{
- "x": -34.08000000000003,
- "y": 34.569999999999986
+ "x": -69.21000000000002,
+ "y": -39.97500000000002
},
{
- "x": -44.630000000000024,
- "y": 34.569999999999986
+ "x": -81.55000000000003,
+ "y": -39.97500000000002
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_171",
- "pcb_component_id": "pcb_component_11",
+ "pcb_component_id": "pcb_component_22",
"layer": "top",
"route": [
{
- "x": -34.08000000000003,
- "y": 23.86999999999999
+ "x": -68.74867500000002,
+ "y": -30.030000000000015
},
{
- "x": -34.08000000000003,
- "y": 34.569999999999986
+ "x": -68.31566200000002,
+ "y": -29.780000000000015
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_172",
- "pcb_component_id": "pcb_component_11",
+ "pcb_component_id": "pcb_component_22",
"layer": "top",
"route": [
{
- "x": -42.545000000000016,
- "y": 33.28999999999999
+ "x": -68.31566200000002,
+ "y": -29.780000000000015
},
{
- "x": -41.545000000000016,
- "y": 34.28999999999999
+ "x": -68.31566200000002,
+ "y": -30.280000000000015
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_173",
- "pcb_component_id": "pcb_component_11",
+ "pcb_component_id": "pcb_component_22",
"layer": "top",
"route": [
{
- "x": -42.545000000000016,
- "y": 24.129999999999995
+ "x": -68.31566200000002,
+ "y": -30.280000000000015
},
{
- "x": -42.545000000000016,
- "y": 33.28999999999999
+ "x": -68.74867500000002,
+ "y": -30.030000000000015
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_174",
- "pcb_component_id": "pcb_component_11",
+ "pcb_component_id": "pcb_component_23",
"layer": "top",
"route": [
{
- "x": -41.545000000000016,
- "y": 34.28999999999999
+ "x": -11.960000000000008,
+ "y": -9.470000000000013
},
{
- "x": -36.19500000000002,
- "y": 34.28999999999999
+ "x": -8.360000000000014,
+ "y": -9.470000000000013
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_175",
- "pcb_component_id": "pcb_component_11",
+ "pcb_component_id": "pcb_component_23",
"layer": "top",
"route": [
{
- "x": -36.19500000000002,
- "y": 34.28999999999999
+ "x": -11.998478000000006,
+ "y": -9.458478000000014
},
{
- "x": -36.19500000000002,
- "y": 24.129999999999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_176",
- "pcb_component_id": "pcb_component_11",
- "layer": "top",
- "route": [
+ "x": -12.067001662527872,
+ "y": -9.387299448351797
+ },
{
- "x": -36.19500000000002,
- "y": 24.129999999999995
+ "x": -12.132771491623117,
+ "y": -9.313568802608287
},
{
- "x": -42.545000000000016,
- "y": 24.129999999999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_177",
- "pcb_component_id": "pcb_component_11",
- "layer": "top",
- "route": [
+ "x": -12.195692511406378,
+ "y": -9.237392534582042
+ },
{
- "x": -38.37000000000002,
- "y": 34.34999999999999
+ "x": -12.255673859862895,
+ "y": -9.158880647722086
},
{
- "x": -38.37481527332784,
- "y": 34.25198285967045
+ "x": -12.312628920053044,
+ "y": -9.078146518261804
},
{
- "x": -38.38921471959682,
- "y": 34.154909677983895
+ "x": -12.366475445192862,
+ "y": -8.995306731496385
},
{
- "x": -38.41305966426785,
- "y": 34.05971532274558
+ "x": -12.417135677423659,
+ "y": -8.910480913426113
},
{
- "x": -38.44612046748878,
- "y": 33.96731656763498
+ "x": -12.464536460099481,
+ "y": -8.823791558008665
},
{
- "x": -38.48807873565171,
- "y": 33.87860326317409
+ "x": -12.508609343429896,
+ "y": -8.735363850270005
},
{
- "x": -38.53853038769752,
- "y": 33.79442976698051
+ "x": -12.549290683326035,
+ "y": -8.645325485529028
},
{
- "x": -38.59698954663733,
- "y": 33.715606715836486
+ "x": -12.586521733306625,
+ "y": -8.553806484997367
},
{
- "x": -38.66289321881351,
- "y": 33.642893218813605
+ "x": -12.620248729331877,
+ "y": -8.460939008020304
},
{
- "x": -38.73560671583641,
- "y": 33.576989546637435
+ "x": -12.650422967442069,
+ "y": -8.366857161230186
},
{
- "x": -38.81442976698044,
- "y": 33.518530387697645
+ "x": -12.677000874089345,
+ "y": -8.271696804887739
},
{
- "x": -38.89860326317404,
- "y": 33.468078735651844
+ "x": -12.699944069060564,
+ "y": -8.175595356691133
},
{
- "x": -38.98731656763492,
- "y": 33.42612046748893
+ "x": -12.719219420900998,
+ "y": -8.078691593335947
},
{
- "x": -39.07971532274554,
- "y": 33.393059664268016
+ "x": -12.73479909475816,
+ "y": -7.9811254501126
},
{
- "x": -39.17490967798385,
- "y": 33.369214719597
+ "x": -12.746660592577172,
+ "y": -7.883037818830871
},
{
- "x": -39.2719828596704,
- "y": 33.354815273328036
+ "x": -12.754786785589346,
+ "y": -7.784570344362891
},
{
- "x": -39.36999999999995,
- "y": 33.350000000000236
+ "x": -12.75916593904742,
+ "y": -7.685865220098947
},
{
- "x": -39.46801714032949,
- "y": 33.354815273328036
+ "x": -12.759791729171013,
+ "y": -7.587064982610897
},
{
- "x": -39.56509032201605,
- "y": 33.369214719597
+ "x": -12.756663252278827,
+ "y": -7.488312305820301
},
{
- "x": -39.66028467725435,
- "y": 33.393059664268016
+ "x": -12.749785026093463,
+ "y": -7.389749794967983
},
{
- "x": -39.752683432364975,
- "y": 33.42612046748893
+ "x": -12.739166983217586,
+ "y": -7.291519780682847
},
{
- "x": -39.84139673682586,
- "y": 33.468078735651844
+ "x": -12.7248244567906,
+ "y": -7.193764113447315
},
{
- "x": -39.92557023301946,
- "y": 33.518530387697645
+ "x": -12.706778158346651,
+ "y": -7.096623958756041
},
{
- "x": -40.004393284163484,
- "y": 33.576989546637435
+ "x": -12.685054147905788,
+ "y": -7.000239593263828
},
{
- "x": -40.07710678118639,
- "y": 33.642893218813605
+ "x": -12.659683796341568,
+ "y": -6.904750202217073
},
{
- "x": -40.143010453362564,
- "y": 33.715606715836486
+ "x": -12.630703740079582,
+ "y": -6.810293678461306
},
{
- "x": -40.201469612302375,
- "y": 33.79442976698051
+ "x": -12.598155828192034,
+ "y": -6.717006423314999
},
{
- "x": -40.251921264348184,
- "y": 33.87860326317409
+ "x": -12.562087061965059,
+ "y": -6.62502314959724
},
{
- "x": -40.29387953251111,
- "y": 33.96731656763498
+ "x": -12.522549527025632,
+ "y": -6.5344766870938145
},
{
- "x": -40.32694033573205,
- "y": 34.05971532274558
+ "x": -12.479600318126813,
+ "y": -6.445497790742266
},
{
- "x": -40.35078528040307,
- "y": 34.154909677983895
+ "x": -12.43330145669907,
+ "y": -6.358214951813494
},
{
- "x": -40.365184726672055,
- "y": 34.25198285967045
+ "x": -12.383719801287384,
+ "y": -6.272754212361917
},
{
- "x": -40.36999999999988,
- "y": 34.34999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_178",
- "pcb_component_id": "pcb_component_12",
- "layer": "top",
- "route": [
+ "x": -12.330926951003221,
+ "y": -6.189238983212718
+ },
{
- "x": 52.535,
- "y": 40.75999999999999
+ "x": -12.274999142130696,
+ "y": -6.107789865748558
},
{
- "x": 52.535,
- "y": 4.959999999999994
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_179",
- "pcb_component_id": "pcb_component_12",
- "layer": "top",
- "route": [
+ "x": -12.216017138036534,
+ "y": -6.0285244777534785
+ },
{
- "x": 52.535,
- "y": 4.959999999999994
+ "x": -12.154066112542608,
+ "y": -5.951557283565165
},
{
- "x": 63.035,
- "y": 4.959999999999994
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_180",
- "pcb_component_id": "pcb_component_12",
- "layer": "top",
- "route": [
+ "x": -12.089235526929286,
+ "y": -5.876999428781062
+ },
{
- "x": 55.535,
- "y": 40.69999999999999
+ "x": -12.021619000747734,
+ "y": -5.804958579756985
},
{
- "x": 55.535,
- "y": 5.019999999999982
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_181",
- "pcb_component_id": "pcb_component_12",
- "layer": "top",
- "route": [
+ "x": -11.95131417662708,
+ "y": -5.7355387681299135
+ },
{
- "x": 55.535,
- "y": 5.019999999999982
+ "x": -11.878422579272325,
+ "y": -5.668840240589631
},
{
- "x": 60.035,
- "y": 5.019999999999982
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_182",
- "pcb_component_id": "pcb_component_12",
- "layer": "top",
- "route": [
+ "x": -11.803049468855903,
+ "y": -5.604959314116002
+ },
{
- "x": 56.785,
- "y": 40.69999999999999
+ "x": -11.725303689015476,
+ "y": -5.543988236891053
},
{
- "x": 55.535,
- "y": 40.69999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_183",
- "pcb_component_id": "pcb_component_12",
- "layer": "top",
- "route": [
+ "x": -11.645297509676368,
+ "y": -5.486015055086597
+ },
{
- "x": 60.035,
- "y": 40.69999999999999
+ "x": -11.563146464926831,
+ "y": -5.431123485719965
},
{
- "x": 58.785,
- "y": 40.69999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_184",
- "pcb_component_id": "pcb_component_12",
- "layer": "top",
- "route": [
+ "x": -11.4789691861792,
+ "y": -5.379392795761163
+ },
{
- "x": 60.035,
- "y": 5.019999999999982
+ "x": -11.392887230858491,
+ "y": -5.330897687666237
},
{
- "x": 60.035,
- "y": 40.69999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_185",
- "pcb_component_id": "pcb_component_12",
- "layer": "top",
- "route": [
+ "x": -11.305024906865754,
+ "y": -5.285708191502138
+ },
{
- "x": 63.035,
- "y": 40.75999999999999
+ "x": -11.215509093069215,
+ "y": -5.243889563818826
},
{
- "x": 52.535,
- "y": 40.75999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_186",
- "pcb_component_id": "pcb_component_12",
- "layer": "top",
- "route": [
+ "x": -11.1244690560832,
+ "y": -5.205502193414475
+ },
{
- "x": 63.035,
- "y": 4.959999999999994
+ "x": -11.03203626359877,
+ "y": -5.170601514130283
},
{
- "x": 63.035,
- "y": 40.75999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_187",
- "pcb_component_id": "pcb_component_12",
- "layer": "top",
- "route": [
+ "x": -10.938344194535716,
+ "y": -5.139237924800341
+ },
{
- "x": 52.42499999999998,
- "y": 40.96999999999999
+ "x": -10.843528146290623,
+ "y": -5.111456716472475
},
{
- "x": 52.42499999999998,
- "y": 4.719999999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_188",
- "pcb_component_id": "pcb_component_12",
- "layer": "top",
- "route": [
+ "x": -10.747725039358528,
+ "y": -5.087298007005103
+ },
{
- "x": 52.42499999999998,
- "y": 4.719999999999999
+ "x": -10.651073219610936,
+ "y": -5.066796683134385
},
{
- "x": 63.125,
- "y": 4.719999999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_189",
- "pcb_component_id": "pcb_component_12",
- "layer": "top",
- "route": [
+ "x": -10.553712258515475,
+ "y": -5.049982350095576
+ },
{
- "x": 63.125,
- "y": 40.96999999999999
+ "x": -10.455782751585645,
+ "y": -5.03687928887112
},
{
- "x": 52.42499999999998,
- "y": 40.96999999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_190",
- "pcb_component_id": "pcb_component_12",
- "layer": "top",
- "route": [
+ "x": -10.357426115351842,
+ "y": -5.02750642112737
+ },
{
- "x": 63.125,
- "y": 4.719999999999999
+ "x": -10.258784383146718,
+ "y": -5.021877281890468
},
{
- "x": 63.125,
- "y": 40.96999999999999
+ "x": -10.159999999999997,
+ "y": -5.020000000000891
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_191",
- "pcb_component_id": "pcb_component_12",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_176",
+ "pcb_component_id": "pcb_component_23",
"layer": "top",
"route": [
{
- "x": 52.704999999999984,
- "y": 40.69999999999999
+ "x": -10.159999999999997,
+ "y": -5.020000000000024
},
{
- "x": 52.704999999999984,
- "y": 5.019999999999982
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_192",
- "pcb_component_id": "pcb_component_12",
- "layer": "top",
- "route": [
+ "x": -10.061215616853218,
+ "y": -5.021877281889587
+ },
{
- "x": 52.704999999999984,
- "y": 5.019999999999982
+ "x": -9.962573884648066,
+ "y": -5.027506421126461
},
{
- "x": 62.86500000000001,
- "y": 5.019999999999982
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_193",
- "pcb_component_id": "pcb_component_12",
- "layer": "top",
- "route": [
+ "x": -9.864217248414207,
+ "y": -5.036879288870196
+ },
{
- "x": 54.609999999999985,
- "y": 39.63999999999999
+ "x": -9.76628774148432,
+ "y": -5.049982350094638
},
{
- "x": 55.609999999999985,
- "y": 40.63999999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_194",
- "pcb_component_id": "pcb_component_12",
- "layer": "top",
- "route": [
+ "x": -9.66892678038883,
+ "y": -5.066796683133447
+ },
{
- "x": 54.609999999999985,
- "y": 5.079999999999984
+ "x": -9.572274960641181,
+ "y": -5.087298007004151
},
{
- "x": 54.609999999999985,
- "y": 39.63999999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_195",
- "pcb_component_id": "pcb_component_12",
- "layer": "top",
- "route": [
+ "x": -9.476471853709029,
+ "y": -5.111456716471508
+ },
{
- "x": 55.609999999999985,
- "y": 40.63999999999999
+ "x": -9.381655805463907,
+ "y": -5.1392379247993745
},
{
- "x": 60.96000000000001,
- "y": 40.63999999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_196",
- "pcb_component_id": "pcb_component_12",
- "layer": "top",
- "route": [
+ "x": -9.287963736400798,
+ "y": -5.1706015141293165
+ },
{
- "x": 60.96000000000001,
- "y": 40.63999999999999
+ "x": -9.19553094391631,
+ "y": -5.205502193413508
},
{
- "x": 60.96000000000001,
- "y": 5.079999999999984
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_197",
- "pcb_component_id": "pcb_component_12",
- "layer": "top",
- "route": [
+ "x": -9.104490906930266,
+ "y": -5.243889563817859
+ },
{
- "x": 60.96000000000001,
- "y": 5.079999999999984
+ "x": -9.014975093133671,
+ "y": -5.285708191501186
},
{
- "x": 54.609999999999985,
- "y": 5.079999999999984
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_198",
- "pcb_component_id": "pcb_component_12",
- "layer": "top",
- "route": [
+ "x": -8.927112769140876,
+ "y": -5.330897687665285
+ },
{
- "x": 62.86500000000001,
- "y": 40.69999999999999
+ "x": -8.84103081382014,
+ "y": -5.379392795760225
},
{
- "x": 52.704999999999984,
- "y": 40.69999999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_199",
- "pcb_component_id": "pcb_component_12",
- "layer": "top",
- "route": [
+ "x": -8.756853535072452,
+ "y": -5.431123485719041
+ },
{
- "x": 62.86500000000001,
- "y": 5.019999999999982
+ "x": -8.674702490322858,
+ "y": -5.486015055085687
},
{
- "x": 62.86500000000001,
- "y": 40.69999999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_200",
- "pcb_component_id": "pcb_component_12",
- "layer": "top",
- "route": [
+ "x": -8.594696310983721,
+ "y": -5.543988236890158
+ },
{
- "x": 58.785,
- "y": 40.69999999999999
+ "x": -8.516950531143237,
+ "y": -5.604959314115135
},
{
- "x": 58.780184726672246,
- "y": 40.60198285967052
+ "x": -8.441577420726787,
+ "y": -5.668840240588793
},
{
- "x": 58.76578528040335,
- "y": 40.504909677984045
+ "x": -8.368685823371976,
+ "y": -5.735538768129089
},
{
- "x": 58.74194033573241,
- "y": 40.4097153227458
+ "x": -8.298380999251293,
+ "y": -5.804958579756189
},
{
- "x": 58.70887953251156,
- "y": 40.317316567635245
+ "x": -8.230764473069684,
+ "y": -5.8769994287802945
},
{
- "x": 58.6669212643487,
- "y": 40.22860326317441
+ "x": -8.165933887456362,
+ "y": -5.951557283564426
},
{
- "x": 58.61646961230298,
- "y": 40.14442976698087
+ "x": -8.103982861962379,
+ "y": -6.028524477752768
},
{
- "x": 58.558010453363266,
- "y": 40.06560671583689
+ "x": -8.045000857868217,
+ "y": -6.10778986574789
},
{
- "x": 58.492106781187175,
- "y": 39.99289321881404
+ "x": -7.989073048995635,
+ "y": -6.189238983212078
},
{
- "x": 58.41939328416436,
- "y": 39.9269895466379
+ "x": -7.936280198711444,
+ "y": -6.2727542123613205
},
{
- "x": 58.3405702330204,
- "y": 39.86853038769813
+ "x": -7.88669854329973,
+ "y": -6.358214951812926
},
{
- "x": 58.2563967368269,
- "y": 39.81807873565235
+ "x": -7.840399681871958,
+ "y": -6.44549779074174
},
{
- "x": 58.16768343236609,
- "y": 39.77612046748945
+ "x": -7.797450472973139,
+ "y": -6.534476687093317
},
{
- "x": 58.07528467725555,
- "y": 39.74305966426855
+ "x": -7.757912938033684,
+ "y": -6.6250231495967995
},
{
- "x": 57.98009032201733,
- "y": 39.719214719597545
+ "x": -7.72184417180668,
+ "y": -6.7170064233145865
},
{
- "x": 57.88301714033085,
- "y": 39.704815273328585
+ "x": -7.689296259919132,
+ "y": -6.810293678460951
},
{
- "x": 57.78500000000139,
- "y": 39.700000000000784
+ "x": -7.660316203657146,
+ "y": -6.904750202216761
},
{
- "x": 57.68698285967193,
- "y": 39.704815273328585
+ "x": -7.634945852092898,
+ "y": -7.000239593263558
},
{
- "x": 57.589909677985446,
- "y": 39.719214719597545
+ "x": -7.613221841652006,
+ "y": -7.096623958755828
},
{
- "x": 57.494715322747226,
- "y": 39.74305966426855
+ "x": -7.595175543208057,
+ "y": -7.193764113447145
},
{
- "x": 57.40231656763669,
- "y": 39.77612046748945
+ "x": -7.580833016781099,
+ "y": -7.291519780682719
},
{
- "x": 57.31360326317588,
- "y": 39.81807873565235
+ "x": -7.570214973905195,
+ "y": -7.389749794967898
},
{
- "x": 57.22942976698238,
- "y": 39.86853038769813
+ "x": -7.5633367477198306,
+ "y": -7.488312305820273
},
{
- "x": 57.15060671583842,
- "y": 39.9269895466379
+ "x": -7.560208270827644,
+ "y": -7.587064982610912
},
{
- "x": 57.0778932188156,
- "y": 39.99289321881404
+ "x": -7.560834060951265,
+ "y": -7.685865220098989
},
{
- "x": 57.01198954663951,
- "y": 40.06560671583689
+ "x": -7.56521321440934,
+ "y": -7.78457034436299
},
{
- "x": 56.9535303876998,
- "y": 40.14442976698087
+ "x": -7.5733394074215425,
+ "y": -7.8830378188310135
},
{
- "x": 56.90307873565408,
- "y": 40.22860326317441
+ "x": -7.585200905240555,
+ "y": -7.981125450112785
},
{
- "x": 56.86112046749122,
- "y": 40.317316567635245
+ "x": -7.600780579097716,
+ "y": -8.078691593336174
},
{
- "x": 56.82805966427037,
- "y": 40.4097153227458
+ "x": -7.620055930938179,
+ "y": -8.175595356691403
},
{
- "x": 56.80421471959943,
- "y": 40.504909677984045
+ "x": -7.6429991259094265,
+ "y": -8.271696804888052
},
{
- "x": 56.78981527333053,
- "y": 40.60198285967052
+ "x": -7.6695770325567025,
+ "y": -8.366857161230541
},
{
- "x": 56.78500000000278,
- "y": 40.69999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_201",
- "pcb_component_id": "pcb_component_13",
- "layer": "top",
- "route": [
+ "x": -7.699751270666923,
+ "y": -8.460939008020702
+ },
{
- "x": 52.78899999999999,
- "y": -16.390000000000015
+ "x": -7.733478266692202,
+ "y": -8.553806484997807
},
{
- "x": 52.78899999999999,
- "y": -39.49000000000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_202",
- "pcb_component_id": "pcb_component_13",
- "layer": "top",
- "route": [
+ "x": -7.77070931667285,
+ "y": -8.645325485529497
+ },
{
- "x": 52.78899999999999,
- "y": -39.49000000000001
+ "x": -7.811390656568989,
+ "y": -8.735363850270517
},
{
- "x": 63.28899999999999,
- "y": -39.49000000000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_203",
- "pcb_component_id": "pcb_component_13",
- "layer": "top",
- "route": [
+ "x": -7.855463539899461,
+ "y": -8.82379155800922
+ },
{
- "x": 55.78899999999999,
- "y": -16.450000000000017
+ "x": -7.9028643225753115,
+ "y": -8.910480913426682
},
{
- "x": 55.78899999999999,
- "y": -39.43000000000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_204",
- "pcb_component_id": "pcb_component_13",
- "layer": "top",
- "route": [
+ "x": -7.953524554806165,
+ "y": -8.995306731496996
+ },
{
- "x": 55.78899999999999,
- "y": -39.43000000000001
+ "x": -8.007371079946012,
+ "y": -9.078146518262443
},
{
- "x": 60.28899999999999,
- "y": -39.43000000000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_205",
- "pcb_component_id": "pcb_component_13",
- "layer": "top",
- "route": [
+ "x": -8.064326140136188,
+ "y": -9.158880647722754
+ },
{
- "x": 57.03899999999999,
- "y": -16.450000000000017
+ "x": -8.124307488592734,
+ "y": -9.237392534582739
},
{
- "x": 55.78899999999999,
- "y": -16.450000000000017
+ "x": -8.187228508376052,
+ "y": -9.313568802608998
+ },
+ {
+ "x": -8.252998337471354,
+ "y": -9.387299448352522
+ },
+ {
+ "x": -8.321521999999277,
+ "y": -9.458478000000767
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_206",
- "pcb_component_id": "pcb_component_13",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_177",
+ "pcb_component_id": "pcb_component_24",
"layer": "top",
"route": [
{
- "x": 60.28899999999999,
- "y": -16.450000000000017
+ "x": -5.058000000000021,
+ "y": 31.313999999999986
},
{
- "x": 59.03899999999999,
- "y": -16.450000000000017
+ "x": -8.658000000000015,
+ "y": 31.313999999999986
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_207",
- "pcb_component_id": "pcb_component_13",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_178",
+ "pcb_component_id": "pcb_component_24",
"layer": "top",
"route": [
{
- "x": 60.28899999999999,
- "y": -39.43000000000001
+ "x": -6.8580000000000325,
+ "y": 26.863999999999983
},
{
- "x": 60.28899999999999,
- "y": -16.450000000000017
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_208",
- "pcb_component_id": "pcb_component_13",
- "layer": "top",
- "route": [
- {
- "x": 63.28899999999999,
- "y": -16.390000000000015
+ "x": -6.956784383146754,
+ "y": 26.86587728188961
},
{
- "x": 52.78899999999999,
- "y": -16.390000000000015
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_209",
- "pcb_component_id": "pcb_component_13",
- "layer": "top",
- "route": [
- {
- "x": 63.28899999999999,
- "y": -39.49000000000001
+ "x": -7.05542611535185,
+ "y": 26.871506421126554
},
{
- "x": 63.28899999999999,
- "y": -16.390000000000015
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_210",
- "pcb_component_id": "pcb_component_13",
- "layer": "top",
- "route": [
- {
- "x": 52.678999999999974,
- "y": -16.18000000000002
+ "x": -7.153782751585652,
+ "y": 26.880879288870346
},
{
- "x": 52.678999999999974,
- "y": -39.68000000000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_211",
- "pcb_component_id": "pcb_component_13",
- "layer": "top",
- "route": [
- {
- "x": 52.678999999999974,
- "y": -39.68000000000001
+ "x": -7.251712258515482,
+ "y": 26.893982350094838
},
{
- "x": 63.37899999999999,
- "y": -39.68000000000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_212",
- "pcb_component_id": "pcb_component_13",
- "layer": "top",
- "route": [
+ "x": -7.349073219610915,
+ "y": 26.91079668313369
+ },
{
- "x": 63.37899999999999,
- "y": -16.18000000000002
+ "x": -7.445725039358507,
+ "y": 26.931298007004443
},
{
- "x": 52.678999999999974,
- "y": -16.18000000000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_213",
- "pcb_component_id": "pcb_component_13",
- "layer": "top",
- "route": [
+ "x": -7.541528146290574,
+ "y": 26.95545671647185
+ },
{
- "x": 63.37899999999999,
- "y": -39.68000000000001
+ "x": -7.636344194535667,
+ "y": 26.983237924799745
},
{
- "x": 63.37899999999999,
- "y": -16.18000000000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_214",
- "pcb_component_id": "pcb_component_13",
- "layer": "top",
- "route": [
+ "x": -7.7300362635986914,
+ "y": 27.014601514129723
+ },
{
- "x": 52.958999999999975,
- "y": -16.450000000000017
+ "x": -7.822469056083122,
+ "y": 27.04950219341395
},
{
- "x": 52.958999999999975,
- "y": -39.43000000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_215",
- "pcb_component_id": "pcb_component_13",
- "layer": "top",
- "route": [
+ "x": -7.913509093069109,
+ "y": 27.087889563818322
+ },
{
- "x": 52.958999999999975,
- "y": -39.43000000000001
+ "x": -8.003024906865619,
+ "y": 27.12970819150167
},
{
- "x": 63.11899999999997,
- "y": -39.43000000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_216",
- "pcb_component_id": "pcb_component_13",
- "layer": "top",
- "route": [
+ "x": -8.090887230858357,
+ "y": 27.174897687665784
+ },
{
- "x": 54.863999999999976,
- "y": -17.51000000000002
+ "x": -8.176969186179036,
+ "y": 27.223392795760738
},
{
- "x": 55.863999999999976,
- "y": -16.51000000000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_217",
- "pcb_component_id": "pcb_component_13",
- "layer": "top",
- "route": [
+ "x": -8.261146464926668,
+ "y": 27.27512348571957
+ },
{
- "x": 54.863999999999976,
- "y": -39.370000000000005
+ "x": -8.343297509676177,
+ "y": 27.33001505508622
},
{
- "x": 54.863999999999976,
- "y": -17.51000000000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_218",
- "pcb_component_id": "pcb_component_13",
- "layer": "top",
- "route": [
+ "x": -8.423303689015256,
+ "y": 27.387988236890685
+ },
{
- "x": 55.863999999999976,
- "y": -16.51000000000002
+ "x": -8.501049468855683,
+ "y": 27.448959314115662
},
{
- "x": 61.214,
- "y": -16.51000000000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_219",
- "pcb_component_id": "pcb_component_13",
- "layer": "top",
- "route": [
+ "x": -8.576422579272077,
+ "y": 27.512840240589306
+ },
{
- "x": 61.214,
- "y": -16.51000000000002
+ "x": -8.64931417662683,
+ "y": 27.579538768129602
},
{
- "x": 61.214,
- "y": -39.370000000000005
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_220",
- "pcb_component_id": "pcb_component_13",
- "layer": "top",
- "route": [
+ "x": -8.719619000747457,
+ "y": 27.64895857975668
+ },
{
- "x": 61.214,
- "y": -39.370000000000005
+ "x": -8.78723552692901,
+ "y": 27.72099942878077
},
{
- "x": 54.863999999999976,
- "y": -39.370000000000005
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_221",
- "pcb_component_id": "pcb_component_13",
- "layer": "top",
- "route": [
+ "x": -8.852066112542303,
+ "y": 27.795557283564882
+ },
{
- "x": 63.11899999999997,
- "y": -16.450000000000017
+ "x": -8.9140171380362,
+ "y": 27.87252447775321
},
{
- "x": 52.958999999999975,
- "y": -16.450000000000017
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_222",
- "pcb_component_id": "pcb_component_13",
- "layer": "top",
- "route": [
+ "x": -8.972999142130334,
+ "y": 27.951789865748296
+ },
{
- "x": 63.11899999999997,
- "y": -39.43000000000001
+ "x": -9.028926951002859,
+ "y": 28.03323898321245
},
{
- "x": 63.11899999999997,
- "y": -16.450000000000017
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_223",
- "pcb_component_id": "pcb_component_13",
- "layer": "top",
- "route": [
+ "x": -9.081719801287022,
+ "y": 28.116754212361663
+ },
{
- "x": 59.03899999999999,
- "y": -16.450000000000017
+ "x": -9.13130145669868,
+ "y": 28.20221495181324
},
{
- "x": 59.03418472667212,
- "y": -16.548017140329506
+ "x": -9.177600318126423,
+ "y": 28.28949779074202
},
{
- "x": 59.01978528040311,
- "y": -16.645090322016003
+ "x": -9.220549527025213,
+ "y": 28.37847668709356
},
{
- "x": 58.99594033573209,
- "y": -16.740284677254266
+ "x": -9.260087061964612,
+ "y": 28.469023149596993
},
{
- "x": 58.962879532511124,
- "y": -16.832683432364817
+ "x": -9.296155828191615,
+ "y": 28.561006423314744
},
{
- "x": 58.92092126434818,
- "y": -16.921396736825656
+ "x": -9.328703740079135,
+ "y": 28.65429367846106
},
{
- "x": 58.87046961230237,
- "y": -17.005570233019185
+ "x": -9.357683796341092,
+ "y": 28.748750202216826
},
{
- "x": 58.812010453362575,
- "y": -17.084393284163156
+ "x": -9.383054147905312,
+ "y": 28.844239593263573
},
{
- "x": 58.74610678118643,
- "y": -17.157106781186002
+ "x": -9.404778158346204,
+ "y": 28.940623958755786
},
{
- "x": 58.67339328416355,
- "y": -17.22301045336212
+ "x": -9.422824456790124,
+ "y": 29.037764113447054
},
{
- "x": 58.59457023301954,
- "y": -17.281469612301876
+ "x": -9.43716698321711,
+ "y": 29.13551978068258
},
{
- "x": 58.51039673682598,
- "y": -17.331921264347642
+ "x": -9.447785026092987,
+ "y": 29.233749794967714
},
{
- "x": 58.421683432365114,
- "y": -17.37387953251053
+ "x": -9.454663252278351,
+ "y": 29.332312305820032
},
{
- "x": 58.32928467725455,
- "y": -17.40694033573142
+ "x": -9.457791729170538,
+ "y": 29.43106498261062
},
{
- "x": 58.23409032201627,
- "y": -17.430785280402418
+ "x": -9.457165939046945,
+ "y": 29.529865220098657
},
{
- "x": 58.13701714032976,
- "y": -17.44518472667137
+ "x": -9.452786785588899,
+ "y": 29.628570344362608
},
{
- "x": 58.03900000000027,
- "y": -17.449999999999164
+ "x": -9.444660592576696,
+ "y": 29.727037818830574
},
{
- "x": 57.94098285967078,
- "y": -17.44518472667137
+ "x": -9.432799094757712,
+ "y": 29.82512545011231
},
{
- "x": 57.84390967798427,
- "y": -17.430785280402418
+ "x": -9.417219420900551,
+ "y": 29.922691593335642
},
{
- "x": 57.748715322745994,
- "y": -17.40694033573142
+ "x": -9.397944069060145,
+ "y": 30.019595356690836
},
{
- "x": 57.65631656763543,
- "y": -17.37387953251053
+ "x": -9.375000874088926,
+ "y": 30.115696804887435
},
{
- "x": 57.56760326317456,
- "y": -17.331921264347642
+ "x": -9.348422967441678,
+ "y": 30.21085716122988
},
{
- "x": 57.483429766981004,
- "y": -17.281469612301876
+ "x": -9.318248729331486,
+ "y": 30.304939008020007
},
{
- "x": 57.40460671583699,
- "y": -17.22301045336212
+ "x": -9.284521733306235,
+ "y": 30.39780648499707
},
{
- "x": 57.331893218814116,
- "y": -17.157106781186002
+ "x": -9.247290683325645,
+ "y": 30.48932548552873
},
{
- "x": 57.26598954663797,
- "y": -17.084393284163156
+ "x": -9.206609343429562,
+ "y": 30.5793638502697
},
{
- "x": 57.20753038769817,
- "y": -17.005570233019185
+ "x": -9.162536460099147,
+ "y": 30.667791558008375
},
{
- "x": 57.15707873565236,
- "y": -16.921396736825656
+ "x": -9.115135677423325,
+ "y": 30.754480913425823
},
{
- "x": 57.11512046748942,
- "y": -16.832683432364817
+ "x": -9.064475445192556,
+ "y": 30.8393067314961
},
{
- "x": 57.082059664268456,
- "y": -16.740284677254266
+ "x": -9.010628920052739,
+ "y": 30.922146518261528
},
{
- "x": 57.05821471959743,
- "y": -16.645090322016003
+ "x": -8.953673859862619,
+ "y": 31.002880647721817
},
{
- "x": 57.04381527332842,
- "y": -16.548017140329506
+ "x": -8.89369251140613,
+ "y": 31.081392534581788
},
{
- "x": 57.039000000000556,
- "y": -16.450000000000017
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_224",
- "pcb_component_id": "pcb_component_14",
- "layer": "top",
- "route": [
+ "x": -8.830771491622897,
+ "y": 31.15756880260804
+ },
{
- "x": -39.43000000000002,
- "y": -23.150000000000006
+ "x": -8.76500166252768,
+ "y": 31.231299448351557
},
{
- "x": -39.43000000000002,
- "y": -24.400000000000006
+ "x": -8.696477999999814,
+ "y": 31.302477999999795
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_225",
- "pcb_component_id": "pcb_component_14",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_179",
+ "pcb_component_id": "pcb_component_24",
"layer": "top",
"route": [
{
- "x": -39.43000000000002,
- "y": -26.400000000000006
+ "x": -5.019522000000023,
+ "y": 31.302477999999986
},
{
- "x": -39.43000000000002,
- "y": -27.650000000000006
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_226",
- "pcb_component_id": "pcb_component_14",
- "layer": "top",
- "route": [
+ "x": -4.9509983374721855,
+ "y": 31.23129944835175
+ },
{
- "x": -39.43000000000002,
- "y": -27.650000000000006
+ "x": -4.885228508376969,
+ "y": 31.157568802608232
},
{
- "x": -21.53000000000003,
- "y": -27.650000000000006
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_227",
- "pcb_component_id": "pcb_component_14",
- "layer": "top",
- "route": [
+ "x": -4.822307488593708,
+ "y": 31.08139253458198
+ },
{
- "x": -21.53000000000003,
- "y": -23.150000000000006
+ "x": -4.762326140137219,
+ "y": 31.00288064772201
},
{
- "x": -39.43000000000002,
- "y": -23.150000000000006
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_228",
- "pcb_component_id": "pcb_component_14",
- "layer": "top",
- "route": [
+ "x": -4.705371079947099,
+ "y": 30.92214651826172
+ },
{
- "x": -21.53000000000003,
- "y": -27.650000000000006
+ "x": -4.65152455480731,
+ "y": 30.839306731496293
},
{
- "x": -21.53000000000003,
- "y": -23.150000000000006
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_229",
- "pcb_component_id": "pcb_component_14",
- "layer": "top",
- "route": [
+ "x": -4.600864322576513,
+ "y": 30.754480913426008
+ },
{
- "x": -39.65000000000002,
- "y": -20.110000000000014
+ "x": -4.553463539900719,
+ "y": 30.66779155800856
},
{
- "x": -39.65000000000002,
- "y": -30.66000000000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_230",
- "pcb_component_id": "pcb_component_14",
- "layer": "top",
- "route": [
+ "x": -4.509390656570332,
+ "y": 30.579363850269893
+ },
{
- "x": -39.65000000000002,
- "y": -30.66000000000001
+ "x": -4.4687093166742216,
+ "y": 30.489325485528916
},
{
- "x": -21.30000000000001,
- "y": -30.66000000000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_231",
- "pcb_component_id": "pcb_component_14",
- "layer": "top",
- "route": [
+ "x": -4.431478266693631,
+ "y": 30.397806484997254
+ },
{
- "x": -21.30000000000001,
- "y": -20.110000000000014
+ "x": -4.397751270668408,
+ "y": 30.3049390080202
},
{
- "x": -39.65000000000002,
- "y": -20.110000000000014
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_232",
- "pcb_component_id": "pcb_component_14",
- "layer": "top",
- "route": [
+ "x": -4.367577032558216,
+ "y": 30.210857161230074
+ },
{
- "x": -21.30000000000001,
- "y": -30.66000000000001
+ "x": -4.340999125910969,
+ "y": 30.115696804887627
},
{
- "x": -21.30000000000001,
- "y": -20.110000000000014
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_233",
- "pcb_component_id": "pcb_component_14",
- "layer": "top",
- "route": [
+ "x": -4.3180559309397495,
+ "y": 30.019595356691028
+ },
{
- "x": -39.37000000000002,
- "y": -22.22500000000001
+ "x": -4.298780579099343,
+ "y": 29.922691593335834
},
{
- "x": -21.590000000000032,
- "y": -22.22500000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_234",
- "pcb_component_id": "pcb_component_14",
- "layer": "top",
- "route": [
+ "x": -4.283200905242182,
+ "y": 29.825125450112502
+ },
{
- "x": -39.37000000000002,
- "y": -27.575000000000003
+ "x": -4.2713394074231985,
+ "y": 29.727037818830766
},
{
- "x": -39.37000000000002,
- "y": -22.22500000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_235",
- "pcb_component_id": "pcb_component_14",
- "layer": "top",
- "route": [
+ "x": -4.263213214411024,
+ "y": 29.6285703443628
+ },
{
- "x": -38.37000000000002,
- "y": -28.575000000000003
+ "x": -4.258834060952978,
+ "y": 29.52986522009885
},
{
- "x": -39.37000000000002,
- "y": -27.575000000000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_236",
- "pcb_component_id": "pcb_component_14",
- "layer": "top",
- "route": [
+ "x": -4.258208270829357,
+ "y": 29.431064982610813
+ },
{
- "x": -21.590000000000032,
- "y": -22.22500000000001
+ "x": -4.261336747721572,
+ "y": 29.33231230582023
},
{
- "x": -21.590000000000032,
- "y": -28.575000000000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_237",
- "pcb_component_id": "pcb_component_14",
- "layer": "top",
- "route": [
+ "x": -4.268214973906936,
+ "y": 29.233749794967913
+ },
{
- "x": -21.590000000000032,
- "y": -28.575000000000003
+ "x": -4.278833016782841,
+ "y": 29.135519780682777
},
{
- "x": -38.37000000000002,
- "y": -28.575000000000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_238",
- "pcb_component_id": "pcb_component_14",
- "layer": "top",
- "route": [
+ "x": -4.293175543209799,
+ "y": 29.03776411344726
+ },
{
- "x": -39.43000000000002,
- "y": -24.400000000000006
+ "x": -4.311221841653747,
+ "y": 28.940623958755992
},
{
- "x": -39.33198285967056,
- "y": -24.404815273327912
+ "x": -4.332945852094639,
+ "y": 28.84423959326378
},
{
- "x": -39.234909677984106,
- "y": -24.419214719596965
+ "x": -4.358316203658859,
+ "y": 28.748750202217032
},
{
- "x": -39.139715322745886,
- "y": -24.44305966426805
+ "x": -4.3872962599208165,
+ "y": 28.654293678461272
},
{
- "x": -39.04731656763539,
- "y": -24.476120467489025
+ "x": -4.419844171808364,
+ "y": 28.561006423314957
},
{
- "x": -38.958603263174595,
- "y": -24.518078735651983
+ "x": -4.45591293803534,
+ "y": 28.469023149597213
},
{
- "x": -38.87442976698111,
- "y": -24.568530387697805
+ "x": -4.495450472974767,
+ "y": 28.37847668709378
},
{
- "x": -38.795606715837195,
- "y": -24.626989546637603
+ "x": -4.538399681873557,
+ "y": 28.289497790742246
},
{
- "x": -38.722893218814406,
- "y": -24.692893218813765
+ "x": -4.5846985433013,
+ "y": 28.202214951813467
},
{
- "x": -38.656989546638314,
- "y": -24.76560671583664
+ "x": -4.634280198712958,
+ "y": 28.116754212361897
},
{
- "x": -38.5985303876986,
- "y": -24.844429766980625
+ "x": -4.687073048997149,
+ "y": 28.03323898321269
},
{
- "x": -38.54807873565288,
- "y": -24.928603263174168
+ "x": -4.743000857869674,
+ "y": 27.951789865748538
},
{
- "x": -38.50612046749001,
- "y": -25.017316567635007
+ "x": -4.801982861963808,
+ "y": 27.87252447775346
},
{
- "x": -38.473059664269144,
- "y": -25.109715322745544
+ "x": -4.863933887457705,
+ "y": 27.795557283565138
},
{
- "x": -38.44921471959816,
- "y": -25.204909677983792
+ "x": -4.928764473071027,
+ "y": 27.720999428781035
},
{
- "x": -38.43481527332922,
- "y": -25.30198285967026
+ "x": -4.996380999252551,
+ "y": 27.64895857975695
},
{
- "x": -38.43000000000143,
- "y": -25.39999999999972
+ "x": -5.066685823373206,
+ "y": 27.57953876812988
},
{
- "x": -38.43481527332922,
- "y": -25.498017140329182
+ "x": -5.13957742072796,
+ "y": 27.51284024058959
},
{
- "x": -38.44921471959816,
- "y": -25.59509032201565
+ "x": -5.214950531144325,
+ "y": 27.448959314115953
},
{
- "x": -38.473059664269144,
- "y": -25.6902846772539
+ "x": -5.29269631098478,
+ "y": 27.387988236890983
},
{
- "x": -38.50612046749001,
- "y": -25.782683432364436
+ "x": -5.37270249032386,
+ "y": 27.330015055086527
},
{
- "x": -38.54807873565288,
- "y": -25.871396736825275
+ "x": -5.454853535073397,
+ "y": 27.27512348571988
},
{
- "x": -38.5985303876986,
- "y": -25.95557023301882
+ "x": -5.539030813821,
+ "y": 27.223392795761058
},
{
- "x": -38.656989546638314,
- "y": -26.034393284162803
+ "x": -5.62511276914168,
+ "y": 27.17489768766611
},
{
- "x": -38.722893218814406,
- "y": -26.107106781185678
+ "x": -5.712975093134418,
+ "y": 27.12970819150201
},
{
- "x": -38.795606715837195,
- "y": -26.17301045336184
+ "x": -5.802490906930956,
+ "y": 27.08788956381867
},
{
- "x": -38.87442976698111,
- "y": -26.231469612301638
+ "x": -5.893530943916915,
+ "y": 27.049502193414305
},
{
- "x": -38.958603263174595,
- "y": -26.28192126434746
+ "x": -5.985963736401374,
+ "y": 27.014601514130092
},
{
- "x": -39.04731656763539,
- "y": -26.323879532510418
+ "x": -6.079655805464398,
+ "y": 26.983237924800115
},
{
- "x": -39.139715322745886,
- "y": -26.356940335731394
+ "x": -6.174471853709463,
+ "y": 26.955456716472234
},
{
- "x": -39.234909677984106,
- "y": -26.380785280402478
+ "x": -6.270274960641558,
+ "y": 26.931298007004834
},
{
- "x": -39.33198285967056,
- "y": -26.39518472667153
+ "x": -6.36692678038915,
+ "y": 26.910796683134095
},
{
- "x": -39.43000000000002,
- "y": -26.399999999999437
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_239",
- "pcb_component_id": "pcb_component_15",
- "layer": "top",
- "route": [
+ "x": -6.464287741484583,
+ "y": 26.89398235009525
+ },
{
- "x": -52.30000000000001,
- "y": -28.067000000000007
+ "x": -6.562217248414413,
+ "y": 26.880879288870766
},
{
- "x": -51.650000000000006,
- "y": -28.067000000000007
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_240",
- "pcb_component_id": "pcb_component_15",
- "layer": "top",
- "route": [
+ "x": -6.660573884648215,
+ "y": 26.871506421126988
+ },
{
- "x": -51.650000000000006,
- "y": -26.947000000000003
+ "x": -6.759215616853311,
+ "y": 26.86587728189005
},
{
- "x": -51.650000000000006,
- "y": -29.187000000000012
+ "x": -6.8580000000000325,
+ "y": 26.864000000000438
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_241",
- "pcb_component_id": "pcb_component_15",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_180",
+ "pcb_component_id": "pcb_component_25",
"layer": "top",
"route": [
{
- "x": -51.650000000000006,
- "y": -29.187000000000012
+ "x": -8.150000000000006,
+ "y": 18.47
},
{
- "x": -47.41000000000001,
- "y": -29.187000000000012
+ "x": -4.550000000000011,
+ "y": 18.47
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_242",
- "pcb_component_id": "pcb_component_15",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_181",
+ "pcb_component_id": "pcb_component_25",
"layer": "top",
"route": [
{
- "x": -48.250000000000014,
- "y": -29.187000000000012
+ "x": -8.188478000000003,
+ "y": 18.481522
},
{
- "x": -48.250000000000014,
- "y": -26.947000000000003
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_243",
- "pcb_component_id": "pcb_component_15",
- "layer": "top",
- "route": [
+ "x": -8.25700166252787,
+ "y": 18.55270055164823
+ },
{
- "x": -48.13000000000001,
- "y": -29.187000000000012
+ "x": -8.322771491623115,
+ "y": 18.626431197391753
},
{
- "x": -48.13000000000001,
- "y": -26.947000000000003
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_244",
- "pcb_component_id": "pcb_component_15",
- "layer": "top",
- "route": [
+ "x": -8.385692511406404,
+ "y": 18.702607465417998
+ },
{
- "x": -48.01000000000002,
- "y": -29.187000000000012
+ "x": -8.445673859862922,
+ "y": 18.78111935227797
},
{
- "x": -48.01000000000002,
- "y": -26.947000000000003
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_245",
- "pcb_component_id": "pcb_component_15",
- "layer": "top",
- "route": [
+ "x": -8.50262892005307,
+ "y": 18.861853481738265
+ },
{
- "x": -47.41000000000001,
- "y": -26.947000000000003
+ "x": -8.556475445192888,
+ "y": 18.944693268503684
},
{
- "x": -51.650000000000006,
- "y": -26.947000000000003
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_246",
- "pcb_component_id": "pcb_component_15",
- "layer": "top",
- "route": [
+ "x": -8.607135677423685,
+ "y": 19.02951908657397
+ },
{
- "x": -47.41000000000001,
- "y": -29.187000000000012
+ "x": -8.654536460099507,
+ "y": 19.116208441991432
},
{
- "x": -47.41000000000001,
- "y": -26.947000000000003
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_247",
- "pcb_component_id": "pcb_component_15",
- "layer": "top",
- "route": [
+ "x": -8.69860934342995,
+ "y": 19.204636149730106
+ },
{
- "x": -46.76000000000002,
- "y": -28.067000000000007
+ "x": -8.739290683326061,
+ "y": 19.294674514471083
},
{
- "x": -47.41000000000001,
- "y": -28.067000000000007
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_248",
- "pcb_component_id": "pcb_component_15",
- "layer": "top",
- "route": [
+ "x": -8.77652173330668,
+ "y": 19.38619351500276
+ },
{
- "x": -54.390000000000015,
- "y": -26.817000000000007
+ "x": -8.810248729331931,
+ "y": 19.479060991979836
},
{
- "x": -54.390000000000015,
- "y": -29.317000000000007
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_249",
- "pcb_component_id": "pcb_component_15",
- "layer": "top",
- "route": [
+ "x": -8.840422967442123,
+ "y": 19.573142838769968
+ },
{
- "x": -54.390000000000015,
- "y": -29.317000000000007
+ "x": -8.867000874089399,
+ "y": 19.66830319511243
},
{
- "x": -44.670000000000016,
- "y": -29.317000000000007
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_250",
- "pcb_component_id": "pcb_component_15",
- "layer": "top",
- "route": [
+ "x": -8.889944069060618,
+ "y": 19.764404643309035
+ },
{
- "x": -44.670000000000016,
- "y": -26.817000000000007
+ "x": -8.909219420901081,
+ "y": 19.861308406664236
},
{
- "x": -54.390000000000015,
- "y": -26.817000000000007
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_251",
- "pcb_component_id": "pcb_component_15",
- "layer": "top",
- "route": [
+ "x": -8.924799094758214,
+ "y": 19.958874549887582
+ },
{
- "x": -44.670000000000016,
- "y": -29.317000000000007
+ "x": -8.936660592577226,
+ "y": 20.05696218116934
},
{
- "x": -44.670000000000016,
- "y": -26.817000000000007
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_252",
- "pcb_component_id": "pcb_component_15",
- "layer": "top",
- "route": [
+ "x": -8.944786785589429,
+ "y": 20.15542965563732
+ },
{
- "x": -53.34000000000002,
- "y": -28.067000000000007
+ "x": -8.949165939047475,
+ "y": 20.254134779901293
},
{
- "x": -51.530000000000015,
- "y": -28.067000000000007
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_253",
- "pcb_component_id": "pcb_component_15",
- "layer": "top",
- "route": [
+ "x": -8.949791729171096,
+ "y": 20.352935017389342
+ },
{
- "x": -51.530000000000015,
- "y": -27.067000000000007
+ "x": -8.94666325227891,
+ "y": 20.451687694179938
},
{
- "x": -51.530000000000015,
- "y": -29.067000000000007
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_254",
- "pcb_component_id": "pcb_component_15",
- "layer": "top",
- "route": [
+ "x": -8.939785026093546,
+ "y": 20.55025020503227
+ },
{
- "x": -51.530000000000015,
- "y": -29.067000000000007
+ "x": -8.92916698321767,
+ "y": 20.64848021931742
},
{
- "x": -47.530000000000015,
- "y": -29.067000000000007
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_255",
- "pcb_component_id": "pcb_component_15",
- "layer": "top",
- "route": [
+ "x": -8.914824456790683,
+ "y": 20.746235886552967
+ },
{
- "x": -48.23000000000002,
- "y": -29.067000000000007
+ "x": -8.896778158346734,
+ "y": 20.843376041244255
},
{
- "x": -48.23000000000002,
- "y": -27.067000000000007
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_256",
- "pcb_component_id": "pcb_component_15",
- "layer": "top",
- "route": [
+ "x": -8.875054147905871,
+ "y": 20.939760406736468
+ },
{
- "x": -48.13000000000001,
- "y": -29.067000000000007
+ "x": -8.849683796341651,
+ "y": 21.035249797783237
},
{
- "x": -48.13000000000001,
- "y": -27.067000000000007
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_257",
- "pcb_component_id": "pcb_component_15",
- "layer": "top",
- "route": [
+ "x": -8.820703740079665,
+ "y": 21.129706321539018
+ },
+ {
+ "x": -8.788155828192146,
+ "y": 21.222993576685354
+ },
+ {
+ "x": -8.752087061965142,
+ "y": 21.314976850403113
+ },
+ {
+ "x": -8.712549527025743,
+ "y": 21.405523312906567
+ },
+ {
+ "x": -8.669600318126925,
+ "y": 21.494502209258115
+ },
+ {
+ "x": -8.623301456699181,
+ "y": 21.5817850481869
+ },
+ {
+ "x": -8.573719801287496,
+ "y": 21.667245787638493
+ },
+ {
+ "x": -8.520926951003332,
+ "y": 21.750761016787706
+ },
+ {
+ "x": -8.464999142130779,
+ "y": 21.83221013425188
+ },
+ {
+ "x": -8.406017138036646,
+ "y": 21.911475522246974
+ },
+ {
+ "x": -8.34406611254272,
+ "y": 21.9884427164353
+ },
+ {
+ "x": -8.279235526929398,
+ "y": 22.06300057121942
+ },
+ {
+ "x": -8.211619000747845,
+ "y": 22.13504142024351
+ },
+ {
+ "x": -8.14131417662719,
+ "y": 22.204461231870596
+ },
+ {
+ "x": -8.068422579272436,
+ "y": 22.271159759410892
+ },
+ {
+ "x": -7.9930494688560145,
+ "y": 22.335040685884536
+ },
+ {
+ "x": -7.915303689015559,
+ "y": 22.396011763109513
+ },
+ {
+ "x": -7.835297509676451,
+ "y": 22.45398494491397
+ },
+ {
+ "x": -7.753146464926914,
+ "y": 22.508876514280615
+ },
+ {
+ "x": -7.668969186179282,
+ "y": 22.560607204239446
+ },
+ {
+ "x": -7.582887230858574,
+ "y": 22.609102312334386
+ },
+ {
+ "x": -7.4950249068658366,
+ "y": 22.6542918084985
+ },
+ {
+ "x": -7.405509093069298,
+ "y": 22.696110436181826
+ },
+ {
+ "x": -7.314469056083283,
+ "y": 22.73449780658619
+ },
+ {
+ "x": -7.222036263598824,
+ "y": 22.769398485870397
+ },
+ {
+ "x": -7.128344194535771,
+ "y": 22.800762075200367
+ },
+ {
+ "x": -7.033528146290678,
+ "y": 22.828543283528248
+ },
+ {
+ "x": -6.9377250393585825,
+ "y": 22.852701992995634
+ },
+ {
+ "x": -6.8410732196109905,
+ "y": 22.873203316866366
+ },
+ {
+ "x": -6.743712258515501,
+ "y": 22.890017649905204
+ },
+ {
+ "x": -6.645782751585671,
+ "y": 22.903120711129674
+ },
+ {
+ "x": -6.54742611535184,
+ "y": 22.912493578873438
+ },
{
- "x": -48.030000000000015,
- "y": -29.067000000000007
+ "x": -6.448784383146744,
+ "y": 22.918122718110354
},
{
- "x": -48.030000000000015,
- "y": -27.067000000000007
+ "x": -6.349999999999994,
+ "y": 22.91999999999996
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_258",
- "pcb_component_id": "pcb_component_15",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_182",
+ "pcb_component_id": "pcb_component_25",
"layer": "top",
"route": [
{
- "x": -47.530000000000015,
- "y": -27.067000000000007
+ "x": -6.349999999999994,
+ "y": 22.919999999999987
+ },
+ {
+ "x": -6.251215616853244,
+ "y": 22.91812271811041
+ },
+ {
+ "x": -6.15257388464812,
+ "y": 22.91249357887351
+ },
+ {
+ "x": -6.0542172484142895,
+ "y": 22.90312071112976
+ },
+ {
+ "x": -5.956287741484459,
+ "y": 22.890017649905303
+ },
+ {
+ "x": -5.85892678038897,
+ "y": 22.873203316866494
+ },
+ {
+ "x": -5.762274960641349,
+ "y": 22.852701992995776
+ },
+ {
+ "x": -5.666471853709254,
+ "y": 22.828543283528404
+ },
+ {
+ "x": -5.5716558054641325,
+ "y": 22.800762075200538
+ },
+ {
+ "x": -5.47796373640108,
+ "y": 22.769398485870582
+ },
+ {
+ "x": -5.385530943916592,
+ "y": 22.734497806586376
+ },
+ {
+ "x": -5.294490906930577,
+ "y": 22.696110436182025
+ },
+ {
+ "x": -5.204975093134038,
+ "y": 22.654291808498698
+ },
+ {
+ "x": -5.117112769141272,
+ "y": 22.6091023123346
+ },
+ {
+ "x": -5.031030813820564,
+ "y": 22.56060720423966
+ },
+ {
+ "x": -4.946853535072904,
+ "y": 22.508876514280843
+ },
+ {
+ "x": -4.864702490323367,
+ "y": 22.453984944914197
+ },
+ {
+ "x": -4.784696310984231,
+ "y": 22.39601176310974
+ },
+ {
+ "x": -4.706950531143775,
+ "y": 22.335040685884763
+ },
+ {
+ "x": -4.6315774207273535,
+ "y": 22.27115975941112
+ },
+ {
+ "x": -4.558685823372571,
+ "y": 22.204461231870823
+ },
+ {
+ "x": -4.488380999251916,
+ "y": 22.135041420243738
+ },
+ {
+ "x": -4.4207644730703635,
+ "y": 22.063000571219646
+ },
+ {
+ "x": -4.3559338874570415,
+ "y": 21.988442716435515
+ },
+ {
+ "x": -4.293982861963087,
+ "y": 21.911475522247187
+ },
+ {
+ "x": -4.235000857868954,
+ "y": 21.832210134252094
+ },
+ {
+ "x": -4.1790730489964005,
+ "y": 21.75076101678792
+ },
+ {
+ "x": -4.126280198712209,
+ "y": 21.66724578763869
+ },
+ {
+ "x": -4.076698543300552,
+ "y": 21.5817850481871
+ },
+ {
+ "x": -4.030399681872808,
+ "y": 21.4945022092583
+ },
+ {
+ "x": -3.9874504729739897,
+ "y": 21.405523312906737
+ },
+ {
+ "x": -3.9479129380345626,
+ "y": 21.314976850403283
+ },
+ {
+ "x": -3.9118441718075587,
+ "y": 21.222993576685525
+ },
+ {
+ "x": -3.8792962599200393,
+ "y": 21.12970632153919
+ },
+ {
+ "x": -3.8503162036580534,
+ "y": 21.035249797783393
+ },
+ {
+ "x": -3.8249458520938333,
+ "y": 20.939760406736625
+ },
+ {
+ "x": -3.80322184165297,
+ "y": 20.843376041244383
+ },
+ {
+ "x": -3.78517554320905,
+ "y": 20.746235886553094
+ },
+ {
+ "x": -3.7708330167820634,
+ "y": 20.64848021931755
+ },
+ {
+ "x": -3.760214973906187,
+ "y": 20.550250205032384
+ },
+ {
+ "x": -3.753336747720823,
+ "y": 20.451687694180038
+ },
+ {
+ "x": -3.750208270828665,
+ "y": 20.352935017389427
+ },
+ {
+ "x": -3.750834060952286,
+ "y": 20.254134779901378
+ },
+ {
+ "x": -3.7552132144103325,
+ "y": 20.155429655637406
+ },
+ {
+ "x": -3.7633394074225635,
+ "y": 20.05696218116941
+ },
+ {
+ "x": -3.775200905241576,
+ "y": 19.958874549887653
+ },
+ {
+ "x": -3.790780579098737,
+ "y": 19.861308406664307
+ },
+ {
+ "x": -3.8100559309391997,
+ "y": 19.764404643309092
+ },
+ {
+ "x": -3.8329991259104474,
+ "y": 19.668303195112472
+ },
+ {
+ "x": -3.8595770325577234,
+ "y": 19.57314283877001
+ },
+ {
+ "x": -3.8897512706679436,
+ "y": 19.47906099197988
+ },
+ {
+ "x": -3.9234782666932233,
+ "y": 19.3861935150028
+ },
+ {
+ "x": -3.9607093166738423,
+ "y": 19.29467451447114
+ },
+ {
+ "x": -4.001390656569981,
+ "y": 19.20463614973015
+ },
+ {
+ "x": -4.045463539900425,
+ "y": 19.116208441991475
+ },
+ {
+ "x": -4.0928643225762755,
+ "y": 19.029519086574027
+ },
+ {
+ "x": -4.143524554807101,
+ "y": 18.94469326850374
+ },
+ {
+ "x": -4.197371079946947,
+ "y": 18.861853481738322
+ },
+ {
+ "x": -4.254326140137124,
+ "y": 18.78111935227804
+ },
+ {
+ "x": -4.314307488593641,
+ "y": 18.70260746541807
+ },
+ {
+ "x": -4.377228508376959,
+ "y": 18.626431197391824
+ },
+ {
+ "x": -4.442998337472233,
+ "y": 18.55270055164833
},
{
- "x": -51.530000000000015,
- "y": -27.067000000000007
+ "x": -4.511522000000127,
+ "y": 18.481522000000098
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_259",
- "pcb_component_id": "pcb_component_15",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_183",
+ "pcb_component_id": "pcb_component_26",
"layer": "top",
"route": [
{
- "x": -47.530000000000015,
- "y": -29.067000000000007
+ "x": -2.640000000000015,
+ "y": 29.93999999999999
},
{
- "x": -47.530000000000015,
- "y": -27.067000000000007
+ "x": -2.640000000000015,
+ "y": 23.39999999999999
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_260",
- "pcb_component_id": "pcb_component_15",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_184",
+ "pcb_component_id": "pcb_component_26",
"layer": "top",
"route": [
{
- "x": -45.72000000000001,
- "y": -28.067000000000007
+ "x": -2.640000000000015,
+ "y": 23.39999999999999
},
{
- "x": -47.530000000000015,
- "y": -28.067000000000007
+ "x": 0.09999999999999432,
+ "y": 23.39999999999999
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_261",
- "pcb_component_id": "pcb_component_16",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_185",
+ "pcb_component_id": "pcb_component_26",
"layer": "top",
"route": [
{
- "x": -52.30000000000001,
- "y": -31.750000000000014
+ "x": -1.2700000000000102,
+ "y": 30.709999999999987
},
{
- "x": -51.650000000000006,
- "y": -31.750000000000014
+ "x": -1.2700000000000102,
+ "y": 29.93999999999999
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_262",
- "pcb_component_id": "pcb_component_16",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_186",
+ "pcb_component_id": "pcb_component_26",
"layer": "top",
"route": [
{
- "x": -51.650000000000006,
- "y": -30.63000000000001
+ "x": -1.2700000000000102,
+ "y": 22.629999999999995
},
{
- "x": -51.650000000000006,
- "y": -32.87000000000002
+ "x": -1.2700000000000102,
+ "y": 23.39999999999999
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_263",
- "pcb_component_id": "pcb_component_16",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_187",
+ "pcb_component_id": "pcb_component_26",
"layer": "top",
"route": [
{
- "x": -51.650000000000006,
- "y": -32.87000000000002
+ "x": 0.09999999999999432,
+ "y": 29.93999999999999
},
{
- "x": -47.41000000000001,
- "y": -32.87000000000002
+ "x": -2.640000000000015,
+ "y": 29.93999999999999
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_264",
- "pcb_component_id": "pcb_component_16",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_188",
+ "pcb_component_id": "pcb_component_26",
"layer": "top",
"route": [
{
- "x": -48.250000000000014,
- "y": -32.87000000000002
+ "x": 0.09999999999999432,
+ "y": 23.39999999999999
},
{
- "x": -48.250000000000014,
- "y": -30.63000000000001
+ "x": 0.09999999999999432,
+ "y": 29.93999999999999
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_265",
- "pcb_component_id": "pcb_component_16",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_189",
+ "pcb_component_id": "pcb_component_27",
"layer": "top",
"route": [
{
- "x": -48.13000000000001,
- "y": -32.87000000000002
+ "x": -38.33000000000001,
+ "y": 41.90999999999999
},
{
- "x": -48.13000000000001,
- "y": -30.63000000000001
+ "x": -37.56000000000002,
+ "y": 41.90999999999999
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_266",
- "pcb_component_id": "pcb_component_16",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_190",
+ "pcb_component_id": "pcb_component_27",
"layer": "top",
"route": [
{
- "x": -48.01000000000002,
- "y": -32.87000000000002
+ "x": -37.56000000000002,
+ "y": 43.27999999999999
},
{
- "x": -48.01000000000002,
- "y": -30.63000000000001
+ "x": -37.56000000000002,
+ "y": 40.53999999999999
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_267",
- "pcb_component_id": "pcb_component_16",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_191",
+ "pcb_component_id": "pcb_component_27",
"layer": "top",
"route": [
{
- "x": -47.41000000000001,
- "y": -30.63000000000001
+ "x": -37.56000000000002,
+ "y": 40.53999999999999
},
{
- "x": -51.650000000000006,
- "y": -30.63000000000001
+ "x": -31.020000000000024,
+ "y": 40.53999999999999
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_268",
- "pcb_component_id": "pcb_component_16",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_192",
+ "pcb_component_id": "pcb_component_27",
"layer": "top",
"route": [
{
- "x": -47.41000000000001,
- "y": -32.87000000000002
+ "x": -31.020000000000024,
+ "y": 43.27999999999999
},
{
- "x": -47.41000000000001,
- "y": -30.63000000000001
+ "x": -37.56000000000002,
+ "y": 43.27999999999999
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_269",
- "pcb_component_id": "pcb_component_16",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_193",
+ "pcb_component_id": "pcb_component_27",
"layer": "top",
"route": [
{
- "x": -46.76000000000002,
- "y": -31.750000000000014
- },
+ "x": -31.020000000000024,
+ "y": 40.53999999999999
+ },
{
- "x": -47.41000000000001,
- "y": -31.750000000000014
+ "x": -31.020000000000024,
+ "y": 43.27999999999999
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_270",
- "pcb_component_id": "pcb_component_16",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_194",
+ "pcb_component_id": "pcb_component_27",
"layer": "top",
"route": [
{
- "x": -54.390000000000015,
- "y": -30.500000000000014
+ "x": -30.250000000000014,
+ "y": 41.90999999999999
},
{
- "x": -54.390000000000015,
- "y": -33.000000000000014
+ "x": -31.020000000000024,
+ "y": 41.90999999999999
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_271",
- "pcb_component_id": "pcb_component_16",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_195",
+ "pcb_component_id": "pcb_component_28",
"layer": "top",
"route": [
{
- "x": -54.390000000000015,
- "y": -33.000000000000014
+ "x": -13.565000000000026,
+ "y": 12.699999999999989
},
{
- "x": -44.670000000000016,
- "y": -33.000000000000014
+ "x": -12.795000000000016,
+ "y": 12.699999999999989
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_272",
- "pcb_component_id": "pcb_component_16",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_196",
+ "pcb_component_id": "pcb_component_28",
"layer": "top",
"route": [
{
- "x": -44.670000000000016,
- "y": -30.500000000000014
+ "x": -12.795000000000016,
+ "y": 14.069999999999993
},
{
- "x": -54.390000000000015,
- "y": -30.500000000000014
+ "x": -12.795000000000016,
+ "y": 11.329999999999984
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_273",
- "pcb_component_id": "pcb_component_16",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_197",
+ "pcb_component_id": "pcb_component_28",
"layer": "top",
"route": [
{
- "x": -44.670000000000016,
- "y": -33.000000000000014
+ "x": -12.795000000000016,
+ "y": 11.329999999999984
},
{
- "x": -44.670000000000016,
- "y": -30.500000000000014
+ "x": -6.255000000000024,
+ "y": 11.329999999999984
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_274",
- "pcb_component_id": "pcb_component_16",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_198",
+ "pcb_component_id": "pcb_component_28",
"layer": "top",
"route": [
{
- "x": -53.34000000000002,
- "y": -31.750000000000014
+ "x": -6.255000000000024,
+ "y": 14.069999999999993
},
{
- "x": -51.530000000000015,
- "y": -31.750000000000014
+ "x": -12.795000000000016,
+ "y": 14.069999999999993
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_275",
- "pcb_component_id": "pcb_component_16",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_199",
+ "pcb_component_id": "pcb_component_28",
"layer": "top",
"route": [
{
- "x": -51.530000000000015,
- "y": -30.750000000000014
+ "x": -6.255000000000024,
+ "y": 11.329999999999984
},
{
- "x": -51.530000000000015,
- "y": -32.750000000000014
+ "x": -6.255000000000024,
+ "y": 14.069999999999993
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_276",
- "pcb_component_id": "pcb_component_16",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_200",
+ "pcb_component_id": "pcb_component_28",
"layer": "top",
"route": [
{
- "x": -51.530000000000015,
- "y": -32.750000000000014
+ "x": -5.485000000000014,
+ "y": 12.699999999999989
},
{
- "x": -47.530000000000015,
- "y": -32.750000000000014
+ "x": -6.255000000000024,
+ "y": 12.699999999999989
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_277",
- "pcb_component_id": "pcb_component_16",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_201",
+ "pcb_component_id": "pcb_component_29",
"layer": "top",
"route": [
{
- "x": -48.23000000000002,
- "y": -32.750000000000014
+ "x": -65.00000000000001,
+ "y": -27.940000000000012
},
{
- "x": -48.23000000000002,
- "y": -30.750000000000014
+ "x": -64.23000000000002,
+ "y": -27.940000000000012
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_278",
- "pcb_component_id": "pcb_component_16",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_202",
+ "pcb_component_id": "pcb_component_29",
"layer": "top",
"route": [
{
- "x": -48.13000000000001,
- "y": -32.750000000000014
+ "x": -64.23000000000002,
+ "y": -26.570000000000007
},
{
- "x": -48.13000000000001,
- "y": -30.750000000000014
+ "x": -64.23000000000002,
+ "y": -29.310000000000016
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_279",
- "pcb_component_id": "pcb_component_16",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_203",
+ "pcb_component_id": "pcb_component_29",
"layer": "top",
"route": [
{
- "x": -48.030000000000015,
- "y": -32.750000000000014
+ "x": -64.23000000000002,
+ "y": -29.310000000000016
},
{
- "x": -48.030000000000015,
- "y": -30.750000000000014
+ "x": -57.690000000000026,
+ "y": -29.310000000000016
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_280",
- "pcb_component_id": "pcb_component_16",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_204",
+ "pcb_component_id": "pcb_component_29",
"layer": "top",
"route": [
{
- "x": -47.530000000000015,
- "y": -30.750000000000014
+ "x": -57.690000000000026,
+ "y": -26.570000000000007
},
{
- "x": -51.530000000000015,
- "y": -30.750000000000014
+ "x": -64.23000000000002,
+ "y": -26.570000000000007
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_281",
- "pcb_component_id": "pcb_component_16",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_205",
+ "pcb_component_id": "pcb_component_29",
"layer": "top",
"route": [
{
- "x": -47.530000000000015,
- "y": -32.750000000000014
+ "x": -57.690000000000026,
+ "y": -29.310000000000016
},
{
- "x": -47.530000000000015,
- "y": -30.750000000000014
+ "x": -57.690000000000026,
+ "y": -26.570000000000007
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_282",
- "pcb_component_id": "pcb_component_16",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_206",
+ "pcb_component_id": "pcb_component_29",
"layer": "top",
"route": [
{
- "x": -45.72000000000001,
- "y": -31.750000000000014
+ "x": -56.920000000000016,
+ "y": -27.940000000000012
},
{
- "x": -47.530000000000015,
- "y": -31.750000000000014
+ "x": -57.690000000000026,
+ "y": -27.940000000000012
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_283",
- "pcb_component_id": "pcb_component_17",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_207",
+ "pcb_component_id": "pcb_component_30",
"layer": "top",
"route": [
{
- "x": -52.30000000000001,
- "y": -21.717000000000013
+ "x": -65.00000000000001,
+ "y": -24.384000000000015
},
{
- "x": -51.650000000000006,
- "y": -21.717000000000013
+ "x": -64.23000000000002,
+ "y": -24.384000000000015
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_284",
- "pcb_component_id": "pcb_component_17",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_208",
+ "pcb_component_id": "pcb_component_30",
"layer": "top",
"route": [
{
- "x": -51.650000000000006,
- "y": -20.59700000000001
+ "x": -64.23000000000002,
+ "y": -23.01400000000001
},
{
- "x": -51.650000000000006,
- "y": -22.837000000000018
+ "x": -64.23000000000002,
+ "y": -25.75400000000002
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_285",
- "pcb_component_id": "pcb_component_17",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_209",
+ "pcb_component_id": "pcb_component_30",
"layer": "top",
"route": [
{
- "x": -51.650000000000006,
- "y": -22.837000000000018
+ "x": -64.23000000000002,
+ "y": -25.75400000000002
},
{
- "x": -47.41000000000001,
- "y": -22.837000000000018
+ "x": -57.690000000000026,
+ "y": -25.75400000000002
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_286",
- "pcb_component_id": "pcb_component_17",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_210",
+ "pcb_component_id": "pcb_component_30",
"layer": "top",
"route": [
{
- "x": -48.250000000000014,
- "y": -22.837000000000018
+ "x": -57.690000000000026,
+ "y": -23.01400000000001
},
{
- "x": -48.250000000000014,
- "y": -20.59700000000001
+ "x": -64.23000000000002,
+ "y": -23.01400000000001
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_287",
- "pcb_component_id": "pcb_component_17",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_211",
+ "pcb_component_id": "pcb_component_30",
"layer": "top",
"route": [
{
- "x": -48.13000000000001,
- "y": -22.837000000000018
+ "x": -57.690000000000026,
+ "y": -25.75400000000002
},
{
- "x": -48.13000000000001,
- "y": -20.59700000000001
+ "x": -57.690000000000026,
+ "y": -23.01400000000001
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_288",
- "pcb_component_id": "pcb_component_17",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_212",
+ "pcb_component_id": "pcb_component_30",
"layer": "top",
"route": [
{
- "x": -48.01000000000002,
- "y": -22.837000000000018
+ "x": -56.920000000000016,
+ "y": -24.384000000000015
},
{
- "x": -48.01000000000002,
- "y": -20.59700000000001
+ "x": -57.690000000000026,
+ "y": -24.384000000000015
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_289",
- "pcb_component_id": "pcb_component_17",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_213",
+ "pcb_component_id": "pcb_component_31",
"layer": "top",
"route": [
{
- "x": -47.41000000000001,
- "y": -20.59700000000001
+ "x": -65.00000000000001,
+ "y": -20.955000000000013
},
{
- "x": -51.650000000000006,
- "y": -20.59700000000001
+ "x": -64.23000000000002,
+ "y": -20.955000000000013
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_290",
- "pcb_component_id": "pcb_component_17",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_214",
+ "pcb_component_id": "pcb_component_31",
"layer": "top",
"route": [
{
- "x": -47.41000000000001,
- "y": -22.837000000000018
+ "x": -64.23000000000002,
+ "y": -19.585000000000008
},
{
- "x": -47.41000000000001,
- "y": -20.59700000000001
+ "x": -64.23000000000002,
+ "y": -22.325000000000017
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_291",
- "pcb_component_id": "pcb_component_17",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_215",
+ "pcb_component_id": "pcb_component_31",
"layer": "top",
"route": [
{
- "x": -46.76000000000002,
- "y": -21.717000000000013
+ "x": -64.23000000000002,
+ "y": -22.325000000000017
},
{
- "x": -47.41000000000001,
- "y": -21.717000000000013
+ "x": -57.690000000000026,
+ "y": -22.325000000000017
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_292",
- "pcb_component_id": "pcb_component_17",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_216",
+ "pcb_component_id": "pcb_component_31",
"layer": "top",
"route": [
{
- "x": -54.390000000000015,
- "y": -20.467000000000013
+ "x": -57.690000000000026,
+ "y": -19.585000000000008
},
{
- "x": -54.390000000000015,
- "y": -22.967000000000013
+ "x": -64.23000000000002,
+ "y": -19.585000000000008
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_293",
- "pcb_component_id": "pcb_component_17",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_217",
+ "pcb_component_id": "pcb_component_31",
"layer": "top",
"route": [
{
- "x": -54.390000000000015,
- "y": -22.967000000000013
+ "x": -57.690000000000026,
+ "y": -22.325000000000017
},
{
- "x": -44.670000000000016,
- "y": -22.967000000000013
+ "x": -57.690000000000026,
+ "y": -19.585000000000008
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_294",
- "pcb_component_id": "pcb_component_17",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_218",
+ "pcb_component_id": "pcb_component_31",
"layer": "top",
"route": [
{
- "x": -44.670000000000016,
- "y": -20.467000000000013
+ "x": -56.920000000000016,
+ "y": -20.955000000000013
},
{
- "x": -54.390000000000015,
- "y": -20.467000000000013
+ "x": -57.690000000000026,
+ "y": -20.955000000000013
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_295",
- "pcb_component_id": "pcb_component_17",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_219",
+ "pcb_component_id": "pcb_component_32",
"layer": "top",
"route": [
{
- "x": -44.670000000000016,
- "y": -22.967000000000013
+ "x": -65.00000000000001,
+ "y": -17.653000000000006
},
{
- "x": -44.670000000000016,
- "y": -20.467000000000013
+ "x": -64.23000000000002,
+ "y": -17.653000000000006
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_296",
- "pcb_component_id": "pcb_component_17",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_220",
+ "pcb_component_id": "pcb_component_32",
"layer": "top",
"route": [
{
- "x": -53.34000000000002,
- "y": -21.717000000000013
+ "x": -64.23000000000002,
+ "y": -16.283
},
{
- "x": -51.530000000000015,
- "y": -21.717000000000013
+ "x": -64.23000000000002,
+ "y": -19.02300000000001
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_297",
- "pcb_component_id": "pcb_component_17",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_221",
+ "pcb_component_id": "pcb_component_32",
"layer": "top",
"route": [
{
- "x": -51.530000000000015,
- "y": -20.717000000000013
+ "x": -64.23000000000002,
+ "y": -19.02300000000001
},
{
- "x": -51.530000000000015,
- "y": -22.717000000000013
+ "x": -57.690000000000026,
+ "y": -19.02300000000001
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_298",
- "pcb_component_id": "pcb_component_17",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_222",
+ "pcb_component_id": "pcb_component_32",
"layer": "top",
"route": [
{
- "x": -51.530000000000015,
- "y": -22.717000000000013
+ "x": -57.690000000000026,
+ "y": -16.283
},
{
- "x": -47.530000000000015,
- "y": -22.717000000000013
+ "x": -64.23000000000002,
+ "y": -16.283
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_299",
- "pcb_component_id": "pcb_component_17",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_223",
+ "pcb_component_id": "pcb_component_32",
"layer": "top",
"route": [
{
- "x": -48.23000000000002,
- "y": -22.717000000000013
+ "x": -57.690000000000026,
+ "y": -19.02300000000001
},
{
- "x": -48.23000000000002,
- "y": -20.717000000000013
+ "x": -57.690000000000026,
+ "y": -16.283
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_300",
- "pcb_component_id": "pcb_component_17",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_224",
+ "pcb_component_id": "pcb_component_32",
"layer": "top",
"route": [
{
- "x": -48.13000000000001,
- "y": -22.717000000000013
+ "x": -56.920000000000016,
+ "y": -17.653000000000006
},
{
- "x": -48.13000000000001,
- "y": -20.717000000000013
+ "x": -57.690000000000026,
+ "y": -17.653000000000006
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_301",
- "pcb_component_id": "pcb_component_17",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_225",
+ "pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
{
- "x": -48.030000000000015,
- "y": -22.717000000000013
+ "x": -64.873,
+ "y": -35.30600000000001
},
{
- "x": -48.030000000000015,
- "y": -20.717000000000013
+ "x": -64.10300000000001,
+ "y": -35.30600000000001
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_302",
- "pcb_component_id": "pcb_component_17",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_226",
+ "pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
{
- "x": -47.530000000000015,
- "y": -20.717000000000013
+ "x": -64.10300000000001,
+ "y": -33.93600000000001
},
{
- "x": -51.530000000000015,
- "y": -20.717000000000013
+ "x": -64.10300000000001,
+ "y": -36.676000000000016
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_303",
- "pcb_component_id": "pcb_component_17",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_227",
+ "pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
{
- "x": -47.530000000000015,
- "y": -22.717000000000013
+ "x": -64.10300000000001,
+ "y": -36.676000000000016
},
{
- "x": -47.530000000000015,
- "y": -20.717000000000013
+ "x": -57.56300000000002,
+ "y": -36.676000000000016
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_304",
- "pcb_component_id": "pcb_component_17",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_228",
+ "pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
{
- "x": -45.72000000000001,
- "y": -21.717000000000013
+ "x": -57.56300000000002,
+ "y": -33.93600000000001
},
{
- "x": -47.530000000000015,
- "y": -21.717000000000013
+ "x": -64.10300000000001,
+ "y": -33.93600000000001
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_305",
- "pcb_component_id": "pcb_component_18",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_229",
+ "pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
{
- "x": -52.30000000000001,
- "y": -18.415000000000006
+ "x": -57.56300000000002,
+ "y": -36.676000000000016
},
{
- "x": -51.650000000000006,
- "y": -18.415000000000006
+ "x": -57.56300000000002,
+ "y": -33.93600000000001
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_306",
- "pcb_component_id": "pcb_component_18",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_230",
+ "pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
{
- "x": -51.650000000000006,
- "y": -17.295
+ "x": -56.793000000000006,
+ "y": -35.30600000000001
},
{
- "x": -51.650000000000006,
- "y": -19.53500000000001
+ "x": -57.56300000000002,
+ "y": -35.30600000000001
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_307",
- "pcb_component_id": "pcb_component_18",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_231",
+ "pcb_component_id": "pcb_component_34",
"layer": "top",
"route": [
{
- "x": -51.650000000000006,
- "y": -19.53500000000001
+ "x": -12.930000000000035,
+ "y": 35.55999999999999
},
{
- "x": -47.41000000000001,
- "y": -19.53500000000001
+ "x": -12.160000000000025,
+ "y": 35.55999999999999
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_308",
- "pcb_component_id": "pcb_component_18",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_232",
+ "pcb_component_id": "pcb_component_34",
"layer": "top",
"route": [
{
- "x": -48.250000000000014,
- "y": -19.53500000000001
+ "x": -12.160000000000025,
+ "y": 36.929999999999986
},
{
- "x": -48.250000000000014,
- "y": -17.295
+ "x": -12.160000000000025,
+ "y": 34.18999999999999
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_309",
- "pcb_component_id": "pcb_component_18",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_233",
+ "pcb_component_id": "pcb_component_34",
"layer": "top",
"route": [
{
- "x": -48.13000000000001,
- "y": -19.53500000000001
+ "x": -12.160000000000025,
+ "y": 34.18999999999999
},
{
- "x": -48.13000000000001,
- "y": -17.295
+ "x": -5.620000000000033,
+ "y": 34.18999999999999
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_310",
- "pcb_component_id": "pcb_component_18",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_234",
+ "pcb_component_id": "pcb_component_34",
"layer": "top",
"route": [
{
- "x": -48.01000000000002,
- "y": -19.53500000000001
+ "x": -5.620000000000033,
+ "y": 36.929999999999986
},
{
- "x": -48.01000000000002,
- "y": -17.295
+ "x": -12.160000000000025,
+ "y": 36.929999999999986
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_311",
- "pcb_component_id": "pcb_component_18",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_235",
+ "pcb_component_id": "pcb_component_34",
"layer": "top",
"route": [
{
- "x": -47.41000000000001,
- "y": -17.295
+ "x": -5.620000000000033,
+ "y": 34.18999999999999
},
{
- "x": -51.650000000000006,
- "y": -17.295
+ "x": -5.620000000000033,
+ "y": 36.929999999999986
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_312",
- "pcb_component_id": "pcb_component_18",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_236",
+ "pcb_component_id": "pcb_component_34",
"layer": "top",
"route": [
{
- "x": -47.41000000000001,
- "y": -19.53500000000001
+ "x": -4.850000000000023,
+ "y": 35.55999999999999
},
{
- "x": -47.41000000000001,
- "y": -17.295
+ "x": -5.620000000000033,
+ "y": 35.55999999999999
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_313",
- "pcb_component_id": "pcb_component_18",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_237",
+ "pcb_component_id": "pcb_component_35",
"layer": "top",
"route": [
{
- "x": -46.76000000000002,
- "y": -18.415000000000006
+ "x": -64.873,
+ "y": -31.750000000000014
},
{
- "x": -47.41000000000001,
- "y": -18.415000000000006
+ "x": -64.10300000000001,
+ "y": -31.750000000000014
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_314",
- "pcb_component_id": "pcb_component_18",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_238",
+ "pcb_component_id": "pcb_component_35",
"layer": "top",
"route": [
{
- "x": -54.390000000000015,
- "y": -17.165000000000006
+ "x": -64.10300000000001,
+ "y": -30.38000000000001
},
{
- "x": -54.390000000000015,
- "y": -19.665000000000006
+ "x": -64.10300000000001,
+ "y": -33.12000000000002
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_315",
- "pcb_component_id": "pcb_component_18",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_239",
+ "pcb_component_id": "pcb_component_35",
"layer": "top",
"route": [
{
- "x": -54.390000000000015,
- "y": -19.665000000000006
+ "x": -64.10300000000001,
+ "y": -33.12000000000002
},
{
- "x": -44.670000000000016,
- "y": -19.665000000000006
+ "x": -57.56300000000002,
+ "y": -33.12000000000002
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_316",
- "pcb_component_id": "pcb_component_18",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_240",
+ "pcb_component_id": "pcb_component_35",
"layer": "top",
"route": [
{
- "x": -44.670000000000016,
- "y": -17.165000000000006
+ "x": -57.56300000000002,
+ "y": -30.38000000000001
},
{
- "x": -54.390000000000015,
- "y": -17.165000000000006
+ "x": -64.10300000000001,
+ "y": -30.38000000000001
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_317",
- "pcb_component_id": "pcb_component_18",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_241",
+ "pcb_component_id": "pcb_component_35",
"layer": "top",
"route": [
{
- "x": -44.670000000000016,
- "y": -19.665000000000006
+ "x": -57.56300000000002,
+ "y": -33.12000000000002
},
{
- "x": -44.670000000000016,
- "y": -17.165000000000006
+ "x": -57.56300000000002,
+ "y": -30.38000000000001
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_318",
- "pcb_component_id": "pcb_component_18",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_242",
+ "pcb_component_id": "pcb_component_35",
+ "layer": "top",
"route": [
{
- "x": -53.34000000000002,
- "y": -18.415000000000006
+ "x": -56.793000000000006,
+ "y": -31.750000000000014
},
{
- "x": -51.530000000000015,
- "y": -18.415000000000006
+ "x": -57.56300000000002,
+ "y": -31.750000000000014
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_319",
- "pcb_component_id": "pcb_component_18",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_243",
+ "pcb_component_id": "pcb_component_36",
"layer": "top",
"route": [
{
- "x": -51.530000000000015,
- "y": -17.415000000000006
+ "x": -4.675000000000011,
+ "y": -12.065000000000012
},
{
- "x": -51.530000000000015,
- "y": -19.415000000000006
+ "x": -3.905000000000001,
+ "y": -12.065000000000012
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_320",
- "pcb_component_id": "pcb_component_18",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_244",
+ "pcb_component_id": "pcb_component_36",
"layer": "top",
"route": [
{
- "x": -51.530000000000015,
- "y": -19.415000000000006
+ "x": -3.905000000000001,
+ "y": -10.695000000000007
},
{
- "x": -47.530000000000015,
- "y": -19.415000000000006
+ "x": -3.905000000000001,
+ "y": -13.435000000000016
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_321",
- "pcb_component_id": "pcb_component_18",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_245",
+ "pcb_component_id": "pcb_component_36",
"layer": "top",
"route": [
{
- "x": -48.23000000000002,
- "y": -19.415000000000006
+ "x": -3.905000000000001,
+ "y": -13.435000000000016
},
{
- "x": -48.23000000000002,
- "y": -17.415000000000006
+ "x": 2.634999999999991,
+ "y": -13.435000000000016
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_322",
- "pcb_component_id": "pcb_component_18",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_246",
+ "pcb_component_id": "pcb_component_36",
"layer": "top",
"route": [
{
- "x": -48.13000000000001,
- "y": -19.415000000000006
+ "x": 2.634999999999991,
+ "y": -10.695000000000007
},
{
- "x": -48.13000000000001,
- "y": -17.415000000000006
+ "x": -3.905000000000001,
+ "y": -10.695000000000007
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_323",
- "pcb_component_id": "pcb_component_18",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_247",
+ "pcb_component_id": "pcb_component_36",
"layer": "top",
"route": [
{
- "x": -48.030000000000015,
- "y": -19.415000000000006
+ "x": 2.634999999999991,
+ "y": -13.435000000000016
},
{
- "x": -48.030000000000015,
- "y": -17.415000000000006
+ "x": 2.634999999999991,
+ "y": -10.695000000000007
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_324",
- "pcb_component_id": "pcb_component_18",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_248",
+ "pcb_component_id": "pcb_component_36",
"layer": "top",
"route": [
{
- "x": -47.530000000000015,
- "y": -17.415000000000006
+ "x": 3.405000000000001,
+ "y": -12.065000000000012
},
{
- "x": -51.530000000000015,
- "y": -17.415000000000006
+ "x": 2.634999999999991,
+ "y": -12.065000000000012
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_325",
- "pcb_component_id": "pcb_component_18",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_249",
+ "pcb_component_id": "pcb_component_37",
"layer": "top",
"route": [
{
- "x": -47.530000000000015,
- "y": -19.415000000000006
+ "x": -18.01000000000002,
+ "y": -12.065000000000012
},
{
- "x": -47.530000000000015,
- "y": -17.415000000000006
+ "x": -17.24000000000001,
+ "y": -12.065000000000012
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_326",
- "pcb_component_id": "pcb_component_18",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_250",
+ "pcb_component_id": "pcb_component_37",
"layer": "top",
"route": [
{
- "x": -45.72000000000001,
- "y": -18.415000000000006
+ "x": -17.24000000000001,
+ "y": -10.695000000000007
},
{
- "x": -47.530000000000015,
- "y": -18.415000000000006
+ "x": -17.24000000000001,
+ "y": -13.435000000000016
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_327",
- "pcb_component_id": "pcb_component_19",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_251",
+ "pcb_component_id": "pcb_component_37",
"layer": "top",
"route": [
{
- "x": -13.565000000000026,
- "y": 9.524999999999991
+ "x": -17.24000000000001,
+ "y": -13.435000000000016
},
{
- "x": -12.91500000000002,
- "y": 9.524999999999991
+ "x": -10.700000000000017,
+ "y": -13.435000000000016
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_328",
- "pcb_component_id": "pcb_component_19",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_252",
+ "pcb_component_id": "pcb_component_37",
"layer": "top",
"route": [
{
- "x": -12.91500000000002,
- "y": 10.644999999999996
+ "x": -10.700000000000017,
+ "y": -10.695000000000007
},
{
- "x": -12.91500000000002,
- "y": 8.404999999999987
+ "x": -17.24000000000001,
+ "y": -10.695000000000007
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_329",
- "pcb_component_id": "pcb_component_19",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_253",
+ "pcb_component_id": "pcb_component_37",
"layer": "top",
"route": [
{
- "x": -12.91500000000002,
- "y": 8.404999999999987
+ "x": -10.700000000000017,
+ "y": -13.435000000000016
},
{
- "x": -8.675000000000011,
- "y": 8.404999999999987
+ "x": -10.700000000000017,
+ "y": -10.695000000000007
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_330",
- "pcb_component_id": "pcb_component_19",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_254",
+ "pcb_component_id": "pcb_component_37",
"layer": "top",
"route": [
{
- "x": -12.315000000000026,
- "y": 10.644999999999996
+ "x": -9.930000000000007,
+ "y": -12.065000000000012
},
{
- "x": -12.315000000000026,
- "y": 8.404999999999987
+ "x": -10.700000000000017,
+ "y": -12.065000000000012
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_331",
- "pcb_component_id": "pcb_component_19",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_255",
+ "pcb_component_id": "pcb_component_38",
"layer": "top",
"route": [
{
- "x": -12.195000000000022,
- "y": 10.644999999999996
+ "x": -13.565000000000026,
+ "y": 6.349999999999994
},
{
- "x": -12.195000000000022,
- "y": 8.404999999999987
+ "x": -12.795000000000016,
+ "y": 6.349999999999994
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_332",
- "pcb_component_id": "pcb_component_19",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_256",
+ "pcb_component_id": "pcb_component_38",
"layer": "top",
"route": [
{
- "x": -12.075000000000017,
- "y": 10.644999999999996
+ "x": -12.795000000000016,
+ "y": 7.719999999999999
},
{
- "x": -12.075000000000017,
- "y": 8.404999999999987
+ "x": -12.795000000000016,
+ "y": 4.97999999999999
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_333",
- "pcb_component_id": "pcb_component_19",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_257",
+ "pcb_component_id": "pcb_component_38",
"layer": "top",
"route": [
{
- "x": -8.675000000000011,
- "y": 10.644999999999996
+ "x": -12.795000000000016,
+ "y": 4.97999999999999
},
{
- "x": -12.91500000000002,
- "y": 10.644999999999996
+ "x": -6.255000000000024,
+ "y": 4.97999999999999
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_334",
- "pcb_component_id": "pcb_component_19",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_258",
+ "pcb_component_id": "pcb_component_38",
"layer": "top",
"route": [
{
- "x": -8.675000000000011,
- "y": 8.404999999999987
+ "x": -6.255000000000024,
+ "y": 7.719999999999999
},
{
- "x": -8.675000000000011,
- "y": 10.644999999999996
+ "x": -12.795000000000016,
+ "y": 7.719999999999999
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_335",
- "pcb_component_id": "pcb_component_19",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_259",
+ "pcb_component_id": "pcb_component_38",
"layer": "top",
"route": [
{
- "x": -8.025000000000006,
- "y": 9.524999999999991
+ "x": -6.255000000000024,
+ "y": 4.97999999999999
},
{
- "x": -8.675000000000011,
- "y": 9.524999999999991
+ "x": -6.255000000000024,
+ "y": 7.719999999999999
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_336",
- "pcb_component_id": "pcb_component_19",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_260",
+ "pcb_component_id": "pcb_component_38",
"layer": "top",
"route": [
{
- "x": -15.65500000000003,
- "y": 10.774999999999991
+ "x": -5.485000000000014,
+ "y": 6.349999999999994
},
{
- "x": -15.65500000000003,
- "y": 8.274999999999991
+ "x": -6.255000000000024,
+ "y": 6.349999999999994
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_337",
- "pcb_component_id": "pcb_component_19",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_261",
+ "pcb_component_id": "pcb_component_39",
"layer": "top",
"route": [
{
- "x": -15.65500000000003,
- "y": 8.274999999999991
+ "x": 1.1699999999999875,
+ "y": 29.93999999999999
},
{
- "x": -5.935000000000031,
- "y": 8.274999999999991
+ "x": 1.1699999999999875,
+ "y": 23.39999999999999
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_338",
- "pcb_component_id": "pcb_component_19",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_262",
+ "pcb_component_id": "pcb_component_39",
"layer": "top",
"route": [
{
- "x": -5.935000000000031,
- "y": 10.774999999999991
+ "x": 1.1699999999999875,
+ "y": 23.39999999999999
},
{
- "x": -15.65500000000003,
- "y": 10.774999999999991
+ "x": 3.9099999999999966,
+ "y": 23.39999999999999
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_339",
- "pcb_component_id": "pcb_component_19",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_263",
+ "pcb_component_id": "pcb_component_39",
"layer": "top",
"route": [
{
- "x": -5.935000000000031,
- "y": 8.274999999999991
+ "x": 2.539999999999992,
+ "y": 30.709999999999987
},
{
- "x": -5.935000000000031,
- "y": 10.774999999999991
+ "x": 2.539999999999992,
+ "y": 29.93999999999999
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_340",
- "pcb_component_id": "pcb_component_19",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_264",
+ "pcb_component_id": "pcb_component_39",
"layer": "top",
"route": [
{
- "x": -14.605000000000018,
- "y": 9.524999999999991
+ "x": 2.539999999999992,
+ "y": 22.629999999999995
},
{
- "x": -12.795000000000016,
- "y": 9.524999999999991
+ "x": 2.539999999999992,
+ "y": 23.39999999999999
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_341",
- "pcb_component_id": "pcb_component_19",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_265",
+ "pcb_component_id": "pcb_component_39",
"layer": "top",
"route": [
{
- "x": -12.795000000000016,
- "y": 10.524999999999991
+ "x": 3.9099999999999966,
+ "y": 29.93999999999999
},
{
- "x": -12.795000000000016,
- "y": 8.524999999999991
+ "x": 1.1699999999999875,
+ "y": 29.93999999999999
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_342",
- "pcb_component_id": "pcb_component_19",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_266",
+ "pcb_component_id": "pcb_component_39",
"layer": "top",
"route": [
{
- "x": -12.795000000000016,
- "y": 8.524999999999991
+ "x": 3.9099999999999966,
+ "y": 23.39999999999999
},
{
- "x": -8.795000000000016,
- "y": 8.524999999999991
+ "x": 3.9099999999999966,
+ "y": 29.93999999999999
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_343",
- "pcb_component_id": "pcb_component_19",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_267",
+ "pcb_component_id": "pcb_component_40",
"layer": "top",
"route": [
{
- "x": -12.295000000000016,
- "y": 10.524999999999991
+ "x": -34.52000000000001,
+ "y": 14.98599999999999
},
{
- "x": -12.295000000000016,
- "y": 8.524999999999991
+ "x": -33.750000000000014,
+ "y": 14.98599999999999
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_344",
- "pcb_component_id": "pcb_component_19",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_268",
+ "pcb_component_id": "pcb_component_40",
"layer": "top",
"route": [
{
- "x": -12.195000000000022,
- "y": 10.524999999999991
+ "x": -33.750000000000014,
+ "y": 16.355999999999995
},
{
- "x": -12.195000000000022,
- "y": 8.524999999999991
+ "x": -33.750000000000014,
+ "y": 13.615999999999985
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_345",
- "pcb_component_id": "pcb_component_19",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_269",
+ "pcb_component_id": "pcb_component_40",
"layer": "top",
"route": [
{
- "x": -12.095000000000027,
- "y": 10.524999999999991
+ "x": -33.750000000000014,
+ "y": 13.615999999999985
},
{
- "x": -12.095000000000027,
- "y": 8.524999999999991
+ "x": -27.210000000000022,
+ "y": 13.615999999999985
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_346",
- "pcb_component_id": "pcb_component_19",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_270",
+ "pcb_component_id": "pcb_component_40",
"layer": "top",
"route": [
{
- "x": -8.795000000000016,
- "y": 10.524999999999991
+ "x": -27.210000000000022,
+ "y": 16.355999999999995
},
{
- "x": -12.795000000000016,
- "y": 10.524999999999991
+ "x": -33.750000000000014,
+ "y": 16.355999999999995
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_347",
- "pcb_component_id": "pcb_component_19",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_271",
+ "pcb_component_id": "pcb_component_40",
"layer": "top",
"route": [
{
- "x": -8.795000000000016,
- "y": 8.524999999999991
+ "x": -27.210000000000022,
+ "y": 13.615999999999985
},
{
- "x": -8.795000000000016,
- "y": 10.524999999999991
+ "x": -27.210000000000022,
+ "y": 16.355999999999995
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_348",
- "pcb_component_id": "pcb_component_19",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_272",
+ "pcb_component_id": "pcb_component_40",
"layer": "top",
"route": [
{
- "x": -6.985000000000014,
- "y": 9.524999999999991
+ "x": -26.440000000000012,
+ "y": 14.98599999999999
},
{
- "x": -8.795000000000016,
- "y": 9.524999999999991
+ "x": -27.210000000000022,
+ "y": 14.98599999999999
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_349",
- "pcb_component_id": "pcb_component_20",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_273",
+ "pcb_component_id": "pcb_component_41",
"layer": "top",
"route": [
{
- "x": -52.30000000000001,
- "y": -25.146000000000015
+ "x": -34.52000000000001,
+ "y": 11.429999999999993
},
{
- "x": -51.650000000000006,
- "y": -25.146000000000015
+ "x": -33.750000000000014,
+ "y": 11.429999999999993
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_350",
- "pcb_component_id": "pcb_component_20",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_274",
+ "pcb_component_id": "pcb_component_41",
"layer": "top",
"route": [
{
- "x": -51.650000000000006,
- "y": -24.02600000000001
+ "x": -33.750000000000014,
+ "y": 12.799999999999997
},
{
- "x": -51.650000000000006,
- "y": -26.26600000000002
+ "x": -33.750000000000014,
+ "y": 10.059999999999988
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_351",
- "pcb_component_id": "pcb_component_20",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_275",
+ "pcb_component_id": "pcb_component_41",
"layer": "top",
"route": [
{
- "x": -51.650000000000006,
- "y": -26.26600000000002
+ "x": -33.750000000000014,
+ "y": 10.059999999999988
},
{
- "x": -47.41000000000001,
- "y": -26.26600000000002
+ "x": -27.210000000000022,
+ "y": 10.059999999999988
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_352",
- "pcb_component_id": "pcb_component_20",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_276",
+ "pcb_component_id": "pcb_component_41",
"layer": "top",
"route": [
{
- "x": -48.250000000000014,
- "y": -26.26600000000002
+ "x": -27.210000000000022,
+ "y": 12.799999999999997
},
{
- "x": -48.250000000000014,
- "y": -24.02600000000001
+ "x": -33.750000000000014,
+ "y": 12.799999999999997
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_353",
- "pcb_component_id": "pcb_component_20",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_277",
+ "pcb_component_id": "pcb_component_41",
"layer": "top",
"route": [
{
- "x": -48.13000000000001,
- "y": -26.26600000000002
+ "x": -27.210000000000022,
+ "y": 10.059999999999988
},
{
- "x": -48.13000000000001,
- "y": -24.02600000000001
+ "x": -27.210000000000022,
+ "y": 12.799999999999997
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_354",
- "pcb_component_id": "pcb_component_20",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_278",
+ "pcb_component_id": "pcb_component_41",
"layer": "top",
"route": [
{
- "x": -48.01000000000002,
- "y": -26.26600000000002
+ "x": -26.440000000000012,
+ "y": 11.429999999999993
},
{
- "x": -48.01000000000002,
- "y": -24.02600000000001
+ "x": -27.210000000000022,
+ "y": 11.429999999999993
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_355",
- "pcb_component_id": "pcb_component_20",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_279",
+ "pcb_component_id": "pcb_component_42",
"layer": "top",
"route": [
{
- "x": -47.41000000000001,
- "y": -24.02600000000001
+ "x": -13.565000000000026,
+ "y": 2.539999999999992
},
{
- "x": -51.650000000000006,
- "y": -24.02600000000001
+ "x": -12.795000000000016,
+ "y": 2.539999999999992
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_356",
- "pcb_component_id": "pcb_component_20",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_280",
+ "pcb_component_id": "pcb_component_42",
"layer": "top",
"route": [
{
- "x": -47.41000000000001,
- "y": -26.26600000000002
+ "x": -12.795000000000016,
+ "y": 3.9099999999999966
},
{
- "x": -47.41000000000001,
- "y": -24.02600000000001
+ "x": -12.795000000000016,
+ "y": 1.1699999999999875
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_357",
- "pcb_component_id": "pcb_component_20",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_281",
+ "pcb_component_id": "pcb_component_42",
"layer": "top",
"route": [
{
- "x": -46.76000000000002,
- "y": -25.146000000000015
+ "x": -12.795000000000016,
+ "y": 1.1699999999999875
},
{
- "x": -47.41000000000001,
- "y": -25.146000000000015
+ "x": -6.255000000000024,
+ "y": 1.1699999999999875
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_358",
- "pcb_component_id": "pcb_component_20",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_282",
+ "pcb_component_id": "pcb_component_42",
"layer": "top",
"route": [
{
- "x": -54.390000000000015,
- "y": -23.896000000000015
+ "x": -6.255000000000024,
+ "y": 3.9099999999999966
},
{
- "x": -54.390000000000015,
- "y": -26.396000000000015
+ "x": -12.795000000000016,
+ "y": 3.9099999999999966
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_359",
- "pcb_component_id": "pcb_component_20",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_283",
+ "pcb_component_id": "pcb_component_42",
"layer": "top",
"route": [
{
- "x": -54.390000000000015,
- "y": -26.396000000000015
+ "x": -6.255000000000024,
+ "y": 1.1699999999999875
},
{
- "x": -44.670000000000016,
- "y": -26.396000000000015
+ "x": -6.255000000000024,
+ "y": 3.9099999999999966
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_360",
- "pcb_component_id": "pcb_component_20",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_284",
+ "pcb_component_id": "pcb_component_42",
"layer": "top",
"route": [
{
- "x": -44.670000000000016,
- "y": -23.896000000000015
+ "x": -5.485000000000014,
+ "y": 2.539999999999992
},
{
- "x": -54.390000000000015,
- "y": -23.896000000000015
+ "x": -6.255000000000024,
+ "y": 2.539999999999992
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_361",
- "pcb_component_id": "pcb_component_20",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_285",
+ "pcb_component_id": "pcb_component_43",
"layer": "top",
"route": [
{
- "x": -44.670000000000016,
- "y": -26.396000000000015
+ "x": -14.705000000000013,
+ "y": -23.40000000000002
},
{
- "x": -44.670000000000016,
- "y": -23.896000000000015
+ "x": -14.705000000000013,
+ "y": -29.940000000000012
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_362",
- "pcb_component_id": "pcb_component_20",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_286",
+ "pcb_component_id": "pcb_component_43",
"layer": "top",
"route": [
{
- "x": -53.34000000000002,
- "y": -25.146000000000015
+ "x": -14.705000000000013,
+ "y": -29.940000000000012
},
{
- "x": -51.530000000000015,
- "y": -25.146000000000015
+ "x": -11.965000000000003,
+ "y": -29.940000000000012
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_363",
- "pcb_component_id": "pcb_component_20",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_287",
+ "pcb_component_id": "pcb_component_43",
"layer": "top",
"route": [
{
- "x": -51.530000000000015,
- "y": -24.146000000000015
+ "x": -13.335000000000008,
+ "y": -22.630000000000024
},
{
- "x": -51.530000000000015,
- "y": -26.146000000000015
+ "x": -13.335000000000008,
+ "y": -23.40000000000002
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_364",
- "pcb_component_id": "pcb_component_20",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_288",
+ "pcb_component_id": "pcb_component_43",
"layer": "top",
"route": [
{
- "x": -51.530000000000015,
- "y": -26.146000000000015
+ "x": -13.335000000000008,
+ "y": -30.710000000000022
},
{
- "x": -47.530000000000015,
- "y": -26.146000000000015
+ "x": -13.335000000000008,
+ "y": -29.940000000000012
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_365",
- "pcb_component_id": "pcb_component_20",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_289",
+ "pcb_component_id": "pcb_component_43",
"layer": "top",
"route": [
{
- "x": -48.23000000000002,
- "y": -26.146000000000015
+ "x": -11.965000000000003,
+ "y": -23.40000000000002
},
{
- "x": -48.23000000000002,
- "y": -24.146000000000015
+ "x": -14.705000000000013,
+ "y": -23.40000000000002
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_366",
- "pcb_component_id": "pcb_component_20",
- "layer": "top",
- "route": [
- {
- "x": -48.13000000000001,
- "y": -26.146000000000015
- },
- {
- "x": -48.13000000000001,
- "y": -24.146000000000015
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_367",
- "pcb_component_id": "pcb_component_20",
- "layer": "top",
- "route": [
- {
- "x": -48.030000000000015,
- "y": -26.146000000000015
- },
- {
- "x": -48.030000000000015,
- "y": -24.146000000000015
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_368",
- "pcb_component_id": "pcb_component_20",
- "layer": "top",
- "route": [
- {
- "x": -47.530000000000015,
- "y": -24.146000000000015
- },
- {
- "x": -51.530000000000015,
- "y": -24.146000000000015
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_369",
- "pcb_component_id": "pcb_component_20",
- "layer": "top",
- "route": [
- {
- "x": -47.530000000000015,
- "y": -26.146000000000015
- },
- {
- "x": -47.530000000000015,
- "y": -24.146000000000015
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_370",
- "pcb_component_id": "pcb_component_20",
- "layer": "top",
- "route": [
- {
- "x": -45.72000000000001,
- "y": -25.146000000000015
- },
- {
- "x": -47.530000000000015,
- "y": -25.146000000000015
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_371",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": -52.30000000000001,
- "y": -34.92500000000001
- },
- {
- "x": -51.650000000000006,
- "y": -34.92500000000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_372",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": -51.650000000000006,
- "y": -33.80500000000001
- },
- {
- "x": -51.650000000000006,
- "y": -36.045000000000016
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_373",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": -51.650000000000006,
- "y": -36.045000000000016
- },
- {
- "x": -47.41000000000001,
- "y": -36.045000000000016
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_374",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": -48.250000000000014,
- "y": -36.045000000000016
- },
- {
- "x": -48.250000000000014,
- "y": -33.80500000000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_375",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": -48.13000000000001,
- "y": -36.045000000000016
- },
- {
- "x": -48.13000000000001,
- "y": -33.80500000000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_376",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": -48.01000000000002,
- "y": -36.045000000000016
- },
- {
- "x": -48.01000000000002,
- "y": -33.80500000000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_377",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": -47.41000000000001,
- "y": -33.80500000000001
- },
- {
- "x": -51.650000000000006,
- "y": -33.80500000000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_378",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": -47.41000000000001,
- "y": -36.045000000000016
- },
- {
- "x": -47.41000000000001,
- "y": -33.80500000000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_379",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": -46.76000000000002,
- "y": -34.92500000000001
- },
- {
- "x": -47.41000000000001,
- "y": -34.92500000000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_380",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": -54.390000000000015,
- "y": -33.67500000000001
- },
- {
- "x": -54.390000000000015,
- "y": -36.17500000000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_381",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": -54.390000000000015,
- "y": -36.17500000000001
- },
- {
- "x": -44.670000000000016,
- "y": -36.17500000000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_382",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": -44.670000000000016,
- "y": -33.67500000000001
- },
- {
- "x": -54.390000000000015,
- "y": -33.67500000000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_383",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": -44.670000000000016,
- "y": -36.17500000000001
- },
- {
- "x": -44.670000000000016,
- "y": -33.67500000000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_384",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": -53.34000000000002,
- "y": -34.92500000000001
- },
- {
- "x": -51.530000000000015,
- "y": -34.92500000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_385",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": -51.530000000000015,
- "y": -33.92500000000001
- },
- {
- "x": -51.530000000000015,
- "y": -35.92500000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_386",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": -51.530000000000015,
- "y": -35.92500000000001
- },
- {
- "x": -47.530000000000015,
- "y": -35.92500000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_387",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": -48.23000000000002,
- "y": -35.92500000000001
- },
- {
- "x": -48.23000000000002,
- "y": -33.92500000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_388",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": -48.13000000000001,
- "y": -35.92500000000001
- },
- {
- "x": -48.13000000000001,
- "y": -33.92500000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_389",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": -48.030000000000015,
- "y": -35.92500000000001
- },
- {
- "x": -48.030000000000015,
- "y": -33.92500000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_390",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": -47.530000000000015,
- "y": -33.92500000000001
- },
- {
- "x": -51.530000000000015,
- "y": -33.92500000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_391",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": -47.530000000000015,
- "y": -35.92500000000001
- },
- {
- "x": -47.530000000000015,
- "y": -33.92500000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_392",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": -45.72000000000001,
- "y": -34.92500000000001
- },
- {
- "x": -47.530000000000015,
- "y": -34.92500000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_393",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -81.55000000000003,
- "y": -9.005000000000024
- },
- {
- "x": -69.21000000000002,
- "y": -9.005000000000024
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_394",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -69.21000000000002,
- "y": -9.005000000000024
- },
- {
- "x": -69.21000000000002,
- "y": -39.97500000000002
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_395",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -69.21000000000002,
- "y": -39.97500000000002
- },
- {
- "x": -81.55000000000003,
- "y": -39.97500000000002
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_396",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -68.74867500000002,
- "y": -30.030000000000015
- },
- {
- "x": -68.31566200000002,
- "y": -29.780000000000015
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_397",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -68.31566200000002,
- "y": -29.780000000000015
- },
- {
- "x": -68.31566200000002,
- "y": -30.280000000000015
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_398",
- "pcb_component_id": "pcb_component_22",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_290",
+ "pcb_component_id": "pcb_component_43",
"layer": "top",
"route": [
{
- "x": -68.31566200000002,
- "y": -30.280000000000015
+ "x": -11.965000000000003,
+ "y": -29.940000000000012
},
{
- "x": -68.74867500000002,
- "y": -30.030000000000015
+ "x": -11.965000000000003,
+ "y": -23.40000000000002
}
],
"stroke_width": 0.12
},
{
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_399",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -88.68000000000002,
- "y": -8.560000000000016
- },
- {
- "x": -88.68000000000002,
- "y": -40.420000000000016
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_400",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -88.68000000000002,
- "y": -40.420000000000016
- },
- {
- "x": -68.76000000000002,
- "y": -40.420000000000016
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_401",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -68.76000000000002,
- "y": -8.560000000000016
- },
- {
- "x": -88.68000000000002,
- "y": -8.560000000000016
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_402",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -68.76000000000002,
- "y": -40.420000000000016
- },
- {
- "x": -68.76000000000002,
- "y": -8.560000000000016
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_403",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -88.18000000000002,
- "y": -16.340000000000018
- },
- {
- "x": -88.18000000000002,
- "y": -32.640000000000015
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_404",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -88.18000000000002,
- "y": -32.640000000000015
- },
- {
- "x": -82.01000000000002,
- "y": -32.640000000000015
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_405",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -87.01000000000002,
- "y": -9.490000000000009
- },
- {
- "x": -87.01000000000002,
- "y": -14.490000000000023
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_406",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -87.01000000000002,
- "y": -14.490000000000023
- },
- {
- "x": -82.01000000000002,
- "y": -14.490000000000009
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_407",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -87.01000000000002,
- "y": -34.49000000000001
- },
- {
- "x": -87.01000000000002,
- "y": -39.49000000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_408",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -87.01000000000002,
- "y": -39.49000000000001
- },
- {
- "x": -82.01000000000002,
- "y": -39.49000000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_409",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -82.01000000000002,
- "y": -9.065000000000012
- },
- {
- "x": -82.01000000000002,
- "y": -39.91500000000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_410",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -82.01000000000002,
- "y": -9.490000000000009
- },
- {
- "x": -87.01000000000002,
- "y": -9.490000000000009
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_411",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -82.01000000000002,
- "y": -14.490000000000009
- },
- {
- "x": -82.01000000000002,
- "y": -9.490000000000009
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_412",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -82.01000000000002,
- "y": -16.340000000000018
- },
- {
- "x": -88.18000000000002,
- "y": -16.340000000000018
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_413",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -82.01000000000002,
- "y": -32.640000000000015
- },
- {
- "x": -82.01000000000002,
- "y": -16.340000000000018
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_414",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -82.01000000000002,
- "y": -34.49000000000001
- },
- {
- "x": -87.01000000000002,
- "y": -34.49000000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_415",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -82.01000000000002,
- "y": -39.49000000000001
- },
- {
- "x": -82.01000000000002,
- "y": -34.49000000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_416",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -82.01000000000002,
- "y": -39.91500000000002
- },
- {
- "x": -81.61000000000001,
- "y": -39.91500000000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_417",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -81.61000000000003,
- "y": -9.065000000000012
- },
- {
- "x": -82.01000000000002,
- "y": -9.065000000000012
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_418",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -81.61000000000003,
- "y": -9.065000000000012
- },
- {
- "x": -81.61000000000001,
- "y": -39.91500000000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_419",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -81.61000000000003,
- "y": -10.390000000000015
- },
- {
- "x": -72.49000000000002,
- "y": -10.390000000000015
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_420",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -81.61000000000003,
- "y": -13.590000000000018
- },
- {
- "x": -72.49000000000002,
- "y": -13.590000000000018
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_421",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -81.61000000000001,
- "y": -35.390000000000015
- },
- {
- "x": -72.49000000000002,
- "y": -35.390000000000015
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_422",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -81.61000000000001,
- "y": -38.59
- },
- {
- "x": -72.49000000000002,
- "y": -38.59
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_423",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -81.61000000000001,
- "y": -39.91500000000002
- },
- {
- "x": -81.61000000000003,
- "y": -9.065000000000012
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_424",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -81.61000000000001,
- "y": -39.91500000000002
- },
- {
- "x": -69.27000000000002,
- "y": -39.91500000000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_425",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -69.27000000000002,
- "y": -9.065000000000012
- },
- {
- "x": -81.61000000000003,
- "y": -9.065000000000012
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_426",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -69.27000000000002,
- "y": -39.91500000000002
- },
- {
- "x": -69.27000000000002,
- "y": -9.065000000000012
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_427",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -72.49000000000002,
- "y": -10.390000000000015
- },
- {
- "x": -72.39150255018576,
- "y": -10.39303467402081
- },
- {
- "x": -72.29337873493657,
- "y": -10.402127184525028
- },
- {
- "x": -72.19600077149364,
- "y": -10.417243040505937
- },
- {
- "x": -72.09973804782682,
- "y": -10.438324902344206
- },
- {
- "x": -72.00495572141939,
- "y": -10.465292799316813
- },
- {
- "x": -71.91201333410088,
- "y": -10.498044432953321
- },
- {
- "x": -71.82126344818153,
- "y": -10.536455565089085
- },
- {
- "x": -71.73305030906282,
- "y": -10.580380489143096
- },
- {
- "x": -71.64770853939673,
- "y": -10.629652582832975
- },
- {
- "x": -71.56556186974734,
- "y": -10.68408494023042
- },
- {
- "x": -71.48692191057003,
- "y": -10.743471080759306
- },
- {
- "x": -71.41208697016617,
- "y": -10.807585732447322
- },
- {
- "x": -71.3413409230976,
- "y": -10.876185686459692
- },
- {
- "x": -71.27495213335322,
- "y": -10.949010719673566
- },
- {
- "x": -71.21317243635242,
- "y": -11.02578458179353
- },
- {
- "x": -71.15623618364707,
- "y": -11.106216043263515
- },
- {
- "x": -71.1043593539458,
- "y": -11.190000000000296
- },
- {
- "x": -71.05773873383284,
- "y": -11.276818630757816
- },
- {
- "x": -71.01655117128904,
- "y": -11.366342602731962
- },
- {
- "x": -70.98095290484694,
- "y": -11.45823232083275
- },
- {
- "x": -70.9510789709245,
- "y": -11.552139215884836
- },
- {
- "x": -70.92704269158567,
- "y": -11.647707066869742
- },
- {
- "x": -70.90893524467104,
- "y": -11.744573352194195
- },
- {
- "x": -70.896825317929,
- "y": -11.842370624858773
- },
- {
- "x": -70.89075884845968,
- "y": -11.940727906310144
- },
- {
- "x": -70.89075884845968,
- "y": -12.039272093689846
- },
- {
- "x": -70.896825317929,
- "y": -12.137629375141216
- },
- {
- "x": -70.90893524467104,
- "y": -12.235426647805795
- },
- {
- "x": -70.92704269158567,
- "y": -12.332292933130248
- },
- {
- "x": -70.9510789709245,
- "y": -12.427860784115154
- },
- {
- "x": -70.98095290484694,
- "y": -12.52176767916724
- },
- {
- "x": -71.01655117128904,
- "y": -12.613657397268028
- },
- {
- "x": -71.05773873383284,
- "y": -12.703181369242174
- },
- {
- "x": -71.1043593539458,
- "y": -12.789999999999694
- },
- {
- "x": -71.15623618364707,
- "y": -12.873783956736474
- },
- {
- "x": -71.21317243635242,
- "y": -12.95421541820646
- },
- {
- "x": -71.27495213335322,
- "y": -13.030989280326423
- },
- {
- "x": -71.3413409230976,
- "y": -13.103814313540298
- },
- {
- "x": -71.41208697016617,
- "y": -13.172414267552668
- },
- {
- "x": -71.48692191057003,
- "y": -13.236528919240683
- },
- {
- "x": -71.56556186974736,
- "y": -13.29591505976957
- },
- {
- "x": -71.64770853939672,
- "y": -13.350347417167015
- },
- {
- "x": -71.73305030906282,
- "y": -13.399619510856894
- },
- {
- "x": -71.82126344818153,
- "y": -13.443544434910905
- },
- {
- "x": -71.91201333410088,
- "y": -13.481955567046668
- },
- {
- "x": -72.00495572141939,
- "y": -13.514707200683176
- },
- {
- "x": -72.0997380478268,
- "y": -13.541675097655784
- },
- {
- "x": -72.19600077149364,
- "y": -13.562756959494052
- },
- {
- "x": -72.29337873493657,
- "y": -13.577872815474961
- },
- {
- "x": -72.39150255018576,
- "y": -13.586965325979179
- },
- {
- "x": -72.49000000000002,
- "y": -13.589999999999975
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_428",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -72.49000000000002,
- "y": -35.390000000000015
- },
- {
- "x": -72.39150255018576,
- "y": -35.39303467402078
- },
- {
- "x": -72.29337873493658,
- "y": -35.402127184525
- },
- {
- "x": -72.19600077149367,
- "y": -35.417243040505895
- },
- {
- "x": -72.09973804782683,
- "y": -35.43832490234415
- },
- {
- "x": -72.00495572141942,
- "y": -35.46529279931673
- },
- {
- "x": -71.9120133341009,
- "y": -35.498044432953236
- },
- {
- "x": -71.82126344818155,
- "y": -35.53645556508897
- },
- {
- "x": -71.73305030906285,
- "y": -35.58038048914297
- },
- {
- "x": -71.64770853939675,
- "y": -35.62965258283285
- },
- {
- "x": -71.56556186974737,
- "y": -35.684084940230264
- },
- {
- "x": -71.48692191057006,
- "y": -35.74347108075915
- },
- {
- "x": -71.4120869701662,
- "y": -35.80758573244715
- },
- {
- "x": -71.34134092309763,
- "y": -35.87618568645951
- },
- {
- "x": -71.27495213335325,
- "y": -35.94901071967338
- },
- {
- "x": -71.21317243635245,
- "y": -36.02578458179333
- },
- {
- "x": -71.15623618364708,
- "y": -36.1062160432633
- },
- {
- "x": -71.10435935394581,
- "y": -36.19000000000008
- },
- {
- "x": -71.05773873383285,
- "y": -36.27681863075759
- },
- {
- "x": -71.01655117128905,
- "y": -36.36634260273172
- },
- {
- "x": -70.98095290484696,
- "y": -36.45823232083251
- },
- {
- "x": -70.95107897092453,
- "y": -36.552139215884594
- },
- {
- "x": -70.92704269158568,
- "y": -36.647707066869486
- },
- {
- "x": -70.90893524467106,
- "y": -36.74457335219394
- },
- {
- "x": -70.89682531792901,
- "y": -36.8423706248585
- },
- {
- "x": -70.8907588484597,
- "y": -36.94072790630986
- },
- {
- "x": -70.8907588484597,
- "y": -37.03927209368956
- },
- {
- "x": -70.89682531792901,
- "y": -37.13762937514092
- },
- {
- "x": -70.90893524467106,
- "y": -37.23542664780548
- },
- {
- "x": -70.92704269158568,
- "y": -37.332292933129935
- },
- {
- "x": -70.95107897092453,
- "y": -37.42786078411483
- },
- {
- "x": -70.98095290484696,
- "y": -37.52176767916691
- },
- {
- "x": -71.01655117128905,
- "y": -37.6136573972677
- },
- {
- "x": -71.05773873383285,
- "y": -37.70318136924183
- },
- {
- "x": -71.10435935394581,
- "y": -37.78999999999934
- },
- {
- "x": -71.15623618364708,
- "y": -37.873783956736105
- },
- {
- "x": -71.21317243635245,
- "y": -37.954215418206104
- },
- {
- "x": -71.27495213335325,
- "y": -38.030989280326054
- },
- {
- "x": -71.34134092309763,
- "y": -38.103814313539914
- },
- {
- "x": -71.4120869701662,
- "y": -38.172414267552284
- },
- {
- "x": -71.48692191057006,
- "y": -38.23652891924027
- },
- {
- "x": -71.56556186974737,
- "y": -38.29591505976916
- },
- {
- "x": -71.64770853939675,
- "y": -38.350347417166574
- },
- {
- "x": -71.73305030906285,
- "y": -38.39961951085644
- },
- {
- "x": -71.82126344818155,
- "y": -38.44354443491045
- },
- {
- "x": -71.9120133341009,
- "y": -38.481955567046185
- },
- {
- "x": -72.00495572141942,
- "y": -38.51470720068269
- },
- {
- "x": -72.09973804782683,
- "y": -38.541675097655286
- },
- {
- "x": -72.19600077149367,
- "y": -38.56275695949353
- },
- {
- "x": -72.29337873493658,
- "y": -38.57787281547442
- },
- {
- "x": -72.39150255018576,
- "y": -38.58696532597864
- },
- {
- "x": -72.49000000000002,
- "y": -38.58999999999941
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_429",
- "pcb_component_id": "pcb_component_23",
- "layer": "top",
- "route": [
- {
- "x": -11.960000000000008,
- "y": -9.470000000000013
- },
- {
- "x": -8.360000000000014,
- "y": -9.470000000000013
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_430",
- "pcb_component_id": "pcb_component_23",
- "layer": "top",
- "route": [
- {
- "x": -12.890000000000015,
- "y": -4.890000000000015
- },
- {
- "x": -12.890000000000015,
- "y": -9.630000000000024
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_431",
- "pcb_component_id": "pcb_component_23",
- "layer": "top",
- "route": [
- {
- "x": -12.890000000000015,
- "y": -4.890000000000015
- },
- {
- "x": -7.430000000000007,
- "y": -4.890000000000015
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_432",
- "pcb_component_id": "pcb_component_23",
- "layer": "top",
- "route": [
- {
- "x": -7.430000000000007,
- "y": -9.630000000000024
- },
- {
- "x": -12.890000000000015,
- "y": -9.630000000000024
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_433",
- "pcb_component_id": "pcb_component_23",
- "layer": "top",
- "route": [
- {
- "x": -7.430000000000007,
- "y": -9.630000000000024
- },
- {
- "x": -7.430000000000007,
- "y": -4.890000000000015
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_434",
- "pcb_component_id": "pcb_component_23",
- "layer": "top",
- "route": [
- {
- "x": -11.930000000000007,
- "y": -9.370000000000019
- },
- {
- "x": -8.430000000000007,
- "y": -9.370000000000019
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_435",
- "pcb_component_id": "pcb_component_23",
- "layer": "top",
- "route": [
- {
- "x": -11.998478000000006,
- "y": -9.458478000000014
- },
- {
- "x": -12.067001662527872,
- "y": -9.387299448351797
- },
- {
- "x": -12.132771491623117,
- "y": -9.313568802608287
- },
- {
- "x": -12.195692511406378,
- "y": -9.237392534582042
- },
- {
- "x": -12.255673859862895,
- "y": -9.158880647722086
- },
- {
- "x": -12.312628920053044,
- "y": -9.078146518261804
- },
- {
- "x": -12.366475445192862,
- "y": -8.995306731496385
- },
- {
- "x": -12.417135677423659,
- "y": -8.910480913426113
- },
- {
- "x": -12.464536460099481,
- "y": -8.823791558008665
- },
- {
- "x": -12.508609343429896,
- "y": -8.735363850270005
- },
- {
- "x": -12.549290683326035,
- "y": -8.645325485529028
- },
- {
- "x": -12.586521733306625,
- "y": -8.553806484997367
- },
- {
- "x": -12.620248729331877,
- "y": -8.460939008020304
- },
- {
- "x": -12.650422967442069,
- "y": -8.366857161230186
- },
- {
- "x": -12.677000874089345,
- "y": -8.271696804887739
- },
- {
- "x": -12.699944069060564,
- "y": -8.175595356691133
- },
- {
- "x": -12.719219420900998,
- "y": -8.078691593335947
- },
- {
- "x": -12.73479909475816,
- "y": -7.9811254501126
- },
- {
- "x": -12.746660592577172,
- "y": -7.883037818830871
- },
- {
- "x": -12.754786785589346,
- "y": -7.784570344362891
- },
- {
- "x": -12.75916593904742,
- "y": -7.685865220098947
- },
- {
- "x": -12.759791729171013,
- "y": -7.587064982610897
- },
- {
- "x": -12.756663252278827,
- "y": -7.488312305820301
- },
- {
- "x": -12.749785026093463,
- "y": -7.389749794967983
- },
- {
- "x": -12.739166983217586,
- "y": -7.291519780682847
- },
- {
- "x": -12.7248244567906,
- "y": -7.193764113447315
- },
- {
- "x": -12.706778158346651,
- "y": -7.096623958756041
- },
- {
- "x": -12.685054147905788,
- "y": -7.000239593263828
- },
- {
- "x": -12.659683796341568,
- "y": -6.904750202217073
- },
- {
- "x": -12.630703740079582,
- "y": -6.810293678461306
- },
- {
- "x": -12.598155828192034,
- "y": -6.717006423314999
- },
- {
- "x": -12.562087061965059,
- "y": -6.62502314959724
- },
- {
- "x": -12.522549527025632,
- "y": -6.5344766870938145
- },
- {
- "x": -12.479600318126813,
- "y": -6.445497790742266
- },
- {
- "x": -12.43330145669907,
- "y": -6.358214951813494
- },
- {
- "x": -12.383719801287384,
- "y": -6.272754212361917
- },
- {
- "x": -12.330926951003221,
- "y": -6.189238983212718
- },
- {
- "x": -12.274999142130696,
- "y": -6.107789865748558
- },
- {
- "x": -12.216017138036534,
- "y": -6.0285244777534785
- },
- {
- "x": -12.154066112542608,
- "y": -5.951557283565165
- },
- {
- "x": -12.089235526929286,
- "y": -5.876999428781062
- },
- {
- "x": -12.021619000747734,
- "y": -5.804958579756985
- },
- {
- "x": -11.95131417662708,
- "y": -5.7355387681299135
- },
- {
- "x": -11.878422579272325,
- "y": -5.668840240589631
- },
- {
- "x": -11.803049468855903,
- "y": -5.604959314116002
- },
- {
- "x": -11.725303689015476,
- "y": -5.543988236891053
- },
- {
- "x": -11.645297509676368,
- "y": -5.486015055086597
- },
- {
- "x": -11.563146464926831,
- "y": -5.431123485719965
- },
- {
- "x": -11.4789691861792,
- "y": -5.379392795761163
- },
- {
- "x": -11.392887230858491,
- "y": -5.330897687666237
- },
- {
- "x": -11.305024906865754,
- "y": -5.285708191502138
- },
- {
- "x": -11.215509093069215,
- "y": -5.243889563818826
- },
- {
- "x": -11.1244690560832,
- "y": -5.205502193414475
- },
- {
- "x": -11.03203626359877,
- "y": -5.170601514130283
- },
- {
- "x": -10.938344194535716,
- "y": -5.139237924800341
- },
- {
- "x": -10.843528146290623,
- "y": -5.111456716472475
- },
- {
- "x": -10.747725039358528,
- "y": -5.087298007005103
- },
- {
- "x": -10.651073219610936,
- "y": -5.066796683134385
- },
- {
- "x": -10.553712258515475,
- "y": -5.049982350095576
- },
- {
- "x": -10.455782751585645,
- "y": -5.03687928887112
- },
- {
- "x": -10.357426115351842,
- "y": -5.02750642112737
- },
- {
- "x": -10.258784383146718,
- "y": -5.021877281890468
- },
- {
- "x": -10.159999999999997,
- "y": -5.020000000000891
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_436",
- "pcb_component_id": "pcb_component_23",
- "layer": "top",
- "route": [
- {
- "x": -10.159999999999997,
- "y": -5.020000000000024
- },
- {
- "x": -10.061215616853218,
- "y": -5.021877281889587
- },
- {
- "x": -9.962573884648066,
- "y": -5.027506421126461
- },
- {
- "x": -9.864217248414207,
- "y": -5.036879288870196
- },
- {
- "x": -9.76628774148432,
- "y": -5.049982350094638
- },
- {
- "x": -9.66892678038883,
- "y": -5.066796683133447
- },
- {
- "x": -9.572274960641181,
- "y": -5.087298007004151
- },
- {
- "x": -9.476471853709029,
- "y": -5.111456716471508
- },
- {
- "x": -9.381655805463907,
- "y": -5.1392379247993745
- },
- {
- "x": -9.287963736400798,
- "y": -5.1706015141293165
- },
- {
- "x": -9.19553094391631,
- "y": -5.205502193413508
- },
- {
- "x": -9.104490906930266,
- "y": -5.243889563817859
- },
- {
- "x": -9.014975093133671,
- "y": -5.285708191501186
- },
- {
- "x": -8.927112769140876,
- "y": -5.330897687665285
- },
- {
- "x": -8.84103081382014,
- "y": -5.379392795760225
- },
- {
- "x": -8.756853535072452,
- "y": -5.431123485719041
- },
- {
- "x": -8.674702490322858,
- "y": -5.486015055085687
- },
- {
- "x": -8.594696310983721,
- "y": -5.543988236890158
- },
- {
- "x": -8.516950531143237,
- "y": -5.604959314115135
- },
- {
- "x": -8.441577420726787,
- "y": -5.668840240588793
- },
- {
- "x": -8.368685823371976,
- "y": -5.735538768129089
- },
- {
- "x": -8.298380999251293,
- "y": -5.804958579756189
- },
- {
- "x": -8.230764473069684,
- "y": -5.8769994287802945
- },
- {
- "x": -8.165933887456362,
- "y": -5.951557283564426
- },
- {
- "x": -8.103982861962379,
- "y": -6.028524477752768
- },
- {
- "x": -8.045000857868217,
- "y": -6.10778986574789
- },
- {
- "x": -7.989073048995635,
- "y": -6.189238983212078
- },
- {
- "x": -7.936280198711444,
- "y": -6.2727542123613205
- },
- {
- "x": -7.88669854329973,
- "y": -6.358214951812926
- },
- {
- "x": -7.840399681871958,
- "y": -6.44549779074174
- },
- {
- "x": -7.797450472973139,
- "y": -6.534476687093317
- },
- {
- "x": -7.757912938033684,
- "y": -6.6250231495967995
- },
- {
- "x": -7.72184417180668,
- "y": -6.7170064233145865
- },
- {
- "x": -7.689296259919132,
- "y": -6.810293678460951
- },
- {
- "x": -7.660316203657146,
- "y": -6.904750202216761
- },
- {
- "x": -7.634945852092898,
- "y": -7.000239593263558
- },
- {
- "x": -7.613221841652006,
- "y": -7.096623958755828
- },
- {
- "x": -7.595175543208057,
- "y": -7.193764113447145
- },
- {
- "x": -7.580833016781099,
- "y": -7.291519780682719
- },
- {
- "x": -7.570214973905195,
- "y": -7.389749794967898
- },
- {
- "x": -7.5633367477198306,
- "y": -7.488312305820273
- },
- {
- "x": -7.560208270827644,
- "y": -7.587064982610912
- },
- {
- "x": -7.560834060951265,
- "y": -7.685865220098989
- },
- {
- "x": -7.56521321440934,
- "y": -7.78457034436299
- },
- {
- "x": -7.5733394074215425,
- "y": -7.8830378188310135
- },
- {
- "x": -7.585200905240555,
- "y": -7.981125450112785
- },
- {
- "x": -7.600780579097716,
- "y": -8.078691593336174
- },
- {
- "x": -7.620055930938179,
- "y": -8.175595356691403
- },
- {
- "x": -7.6429991259094265,
- "y": -8.271696804888052
- },
- {
- "x": -7.6695770325567025,
- "y": -8.366857161230541
- },
- {
- "x": -7.699751270666923,
- "y": -8.460939008020702
- },
- {
- "x": -7.733478266692202,
- "y": -8.553806484997807
- },
- {
- "x": -7.77070931667285,
- "y": -8.645325485529497
- },
- {
- "x": -7.811390656568989,
- "y": -8.735363850270517
- },
- {
- "x": -7.855463539899461,
- "y": -8.82379155800922
- },
- {
- "x": -7.9028643225753115,
- "y": -8.910480913426682
- },
- {
- "x": -7.953524554806165,
- "y": -8.995306731496996
- },
- {
- "x": -8.007371079946012,
- "y": -9.078146518262443
- },
- {
- "x": -8.064326140136188,
- "y": -9.158880647722754
- },
- {
- "x": -8.124307488592734,
- "y": -9.237392534582739
- },
- {
- "x": -8.187228508376052,
- "y": -9.313568802608998
- },
- {
- "x": -8.252998337471354,
- "y": -9.387299448352522
- },
- {
- "x": -8.321521999999277,
- "y": -9.458478000000767
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_437",
- "pcb_component_id": "pcb_component_23",
- "layer": "top",
- "route": [
- {
- "x": -11.913624999999996,
- "y": -9.373625000000018
- },
- {
- "x": -11.982240059643999,
- "y": -9.302213524419216
- },
- {
- "x": -12.047949316890026,
- "y": -9.22811953838287
- },
- {
- "x": -12.11064798967493,
- "y": -9.151461194508315
- },
- {
- "x": -12.17023609670889,
- "y": -9.072360734619082
- },
- {
- "x": -12.22661861690878,
- "y": -8.990944294814298
- },
- {
- "x": -12.279705640921776,
- "y": -8.90734170432799
- },
- {
- "x": -12.329412514497704,
- "y": -8.821686278499357
- },
- {
- "x": -12.375659973481305,
- "y": -8.734114606183837
- },
- {
- "x": -12.418374270209455,
- "y": -8.644766331944226
- },
- {
- "x": -12.457487291111477,
- "y": -8.553783933369033
- },
- {
- "x": -12.492936665325203,
- "y": -8.461312493873194
- },
- {
- "x": -12.524665864155537,
- "y": -8.367499471343464
- },
- {
- "x": -12.552624291216887,
- "y": -8.272494462997415
- },
- {
- "x": -12.576767363115778,
- "y": -8.176448966830947
- },
- {
- "x": -12.597056580544972,
- "y": -8.079516140034812
- },
- {
- "x": -12.613459589675614,
- "y": -7.981850554765302
- },
- {
- "x": -12.625950233749734,
- "y": -7.883607951658547
- },
- {
- "x": -12.634508594790589,
- "y": -7.784944991481623
- },
- {
- "x": -12.639121025364574,
- "y": -7.686019005316325
- },
- {
- "x": -12.639780170343784,
- "y": -7.586987743673973
- },
- {
- "x": -12.636484978634712,
- "y": -7.488009124941556
- },
- {
- "x": -12.629240704854482,
- "y": -7.389240983559958
- },
- {
- "x": -12.618058900951524,
- "y": -7.29084081833625
- },
- {
- "x": -12.602957397784593,
- "y": -7.192965541291031
- },
- {
- "x": -12.583960276688998,
- "y": -7.095771227441631
- },
- {
- "x": -12.56109783107587,
- "y": -6.999412865919837
- },
- {
- "x": -12.534406518125195,
- "y": -6.90404411282141
- },
- {
- "x": -12.50392890065018,
- "y": -6.8098170461811804
- },
- {
- "x": -12.469713579225072,
- "y": -6.716881923464555
- },
- {
- "x": -12.43181511468535,
- "y": -6.625386941962233
- },
- {
- "x": -12.390293941123105,
- "y": -6.535478002470143
- },
- {
- "x": -12.34521626951701,
- "y": -6.447298476631374
- },
- {
- "x": -12.296653982150218,
- "y": -6.36098897831117
- },
- {
- "x": -12.244684517984552,
- "y": -6.276687139369727
- },
- {
- "x": -12.18939074917381,
- "y": -6.194527390189947
- },
- {
- "x": -12.130860848913414,
- "y": -6.114640745310567
- },
- {
- "x": -12.069188150836425,
- "y": -6.037154594506163
- },
- {
- "x": -12.0044710001809,
- "y": -5.962192499647458
- },
- {
- "x": -11.936812596965353,
- "y": -5.889873997665589
- },
- {
- "x": -11.866320831422911,
- "y": -5.820314409934724
- },
- {
- "x": -11.793108111955945,
- "y": -5.7536246583770065
- },
- {
- "x": -11.717291185886182,
- "y": -5.689911088582889
- },
- {
- "x": -11.638990953285685,
- "y": -5.6292753002290965
- },
- {
- "x": -11.558332274185773,
- "y": -5.571813985064594
- },
- {
- "x": -11.47544376947127,
- "y": -5.517618772722798
- },
- {
- "x": -11.390457615777564,
- "y": -5.466776084606138
- },
- {
- "x": -11.303509334717575,
- "y": -5.419366996075695
- },
- {
- "x": -11.21473757677461,
- "y": -5.375467107165861
- },
- {
- "x": -11.124283900206052,
- "y": -5.335146422030192
- },
- {
- "x": -11.032292545309986,
- "y": -5.298469237310485
- },
- {
- "x": -10.938910204415066,
- "y": -5.2654940396073755
- },
- {
- "x": -10.844285787960246,
- "y": -5.236273412215695
- },
- {
- "x": -10.748570187037558,
- "y": -5.210853951273563
- },
- {
- "x": -10.65191603277637,
- "y": -5.189276191458646
- },
- {
- "x": -10.55447745295288,
- "y": -5.171574541350282
- },
- {
- "x": -10.45640982621316,
- "y": -5.157777228560491
- },
- {
- "x": -10.357869534301472,
- "y": -5.147906254721335
- },
- {
- "x": -10.259013712688812,
- "y": -5.141977360400375
- },
- {
- "x": -10.159999999999997,
- "y": -5.140000000000342
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_438",
- "pcb_component_id": "pcb_component_23",
- "layer": "top",
- "route": [
- {
- "x": -10.159999999999997,
- "y": -5.140000000000015
- },
- {
- "x": -10.06098628731118,
- "y": -5.141977360400077
- },
- {
- "x": -9.962130465698522,
- "y": -5.14790625472105
- },
- {
- "x": -9.863590173786832,
- "y": -5.157777228560221
- },
- {
- "x": -9.765522547047112,
- "y": -5.171574541350026
- },
- {
- "x": -9.668083967223623,
- "y": -5.1892761914584185
- },
- {
- "x": -9.571429812962435,
- "y": -5.21085395127335
- },
- {
- "x": -9.475714212039776,
- "y": -5.236273412215496
- },
- {
- "x": -9.381089795584955,
- "y": -5.265494039607191
- },
- {
- "x": -9.287707454690036,
- "y": -5.298469237310314
- },
- {
- "x": -9.19571609979397,
- "y": -5.335146422030036
- },
- {
- "x": -9.105262423225412,
- "y": -5.375467107165733
- },
- {
- "x": -9.016490665282475,
- "y": -5.419366996075567
- },
- {
- "x": -8.929542384222458,
- "y": -5.466776084606025
- },
- {
- "x": -8.844556230528752,
- "y": -5.517618772722699
- },
- {
- "x": -8.761667725814277,
- "y": -5.5718139850644945
- },
- {
- "x": -8.681009046714365,
- "y": -5.629275300229011
- },
- {
- "x": -8.602708814113868,
- "y": -5.689911088582818
- },
- {
- "x": -8.526891888044105,
- "y": -5.7536246583769355
- },
- {
- "x": -8.453679168577168,
- "y": -5.820314409934667
- },
- {
- "x": -8.383187403034725,
- "y": -5.889873997665532
- },
- {
- "x": -8.315528999819207,
- "y": -5.962192499647415
- },
- {
- "x": -8.250811849163654,
- "y": -6.03715459450612
- },
- {
- "x": -8.189139151086664,
- "y": -6.114640745310524
- },
- {
- "x": -8.130609250826268,
- "y": -6.1945273901899185
- },
- {
- "x": -8.075315482015554,
- "y": -6.276687139369699
- },
- {
- "x": -8.02334601784986,
- "y": -6.360988978311141
- },
- {
- "x": -7.974783730483097,
- "y": -6.447298476631332
- },
- {
- "x": -7.929706058877002,
- "y": -6.535478002470114
- },
- {
- "x": -7.888184885314757,
- "y": -6.625386941962205
- },
- {
- "x": -7.850286420775035,
- "y": -6.716881923464527
- },
- {
- "x": -7.816071099349955,
- "y": -6.809817046181152
- },
- {
- "x": -7.785593481874912,
- "y": -6.904044112821381
- },
- {
- "x": -7.758902168924237,
- "y": -6.999412865919808
- },
- {
- "x": -7.736039723311109,
- "y": -7.0957712274416025
- },
- {
- "x": -7.717042602215514,
- "y": -7.192965541291002
- },
- {
- "x": -7.701941099048582,
- "y": -7.290840818336221
- },
- {
- "x": -7.690759295145625,
- "y": -7.3892409835599295
- },
- {
- "x": -7.683515021365395,
- "y": -7.488009124941527
- },
- {
- "x": -7.680219829656323,
- "y": -7.586987743673944
- },
- {
- "x": -7.680878974635505,
- "y": -7.686019005316297
- },
- {
- "x": -7.68549140520949,
- "y": -7.784944991481595
- },
- {
- "x": -7.694049766250345,
- "y": -7.883607951658519
- },
- {
- "x": -7.706540410324465,
- "y": -7.981850554765273
- },
- {
- "x": -7.722943419455078,
- "y": -8.079516140034798
- },
- {
- "x": -7.743232636884272,
- "y": -8.176448966830932
- },
- {
- "x": -7.767375708783163,
- "y": -8.2724944629974
- },
- {
- "x": -7.795334135844513,
- "y": -8.36749947134345
- },
- {
- "x": -7.827063334674818,
- "y": -8.46131249387318
- },
- {
- "x": -7.862512708888545,
- "y": -8.553783933369033
- },
- {
- "x": -7.901625729790538,
- "y": -8.644766331944226
- },
- {
- "x": -7.944340026518688,
- "y": -8.734114606183851
- },
- {
- "x": -7.990587485502289,
- "y": -8.82168627849937
- },
- {
- "x": -8.040294359078217,
- "y": -8.907341704328019
- },
- {
- "x": -8.093381383091213,
- "y": -8.990944294814327
- },
- {
- "x": -8.149763903291074,
- "y": -9.072360734619124
- },
- {
- "x": -8.209352010325034,
- "y": -9.151461194508357
- },
- {
- "x": -8.27205068310991,
- "y": -9.228119538382927
- },
- {
- "x": -8.337759940355937,
- "y": -9.302213524419273
- },
- {
- "x": -8.406374999999912,
- "y": -9.37362500000009
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_439",
- "pcb_component_id": "pcb_component_24",
- "layer": "top",
- "route": [
- {
- "x": -5.058000000000021,
- "y": 31.313999999999986
- },
- {
- "x": -8.658000000000015,
- "y": 31.313999999999986
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_440",
- "pcb_component_id": "pcb_component_24",
- "layer": "top",
- "route": [
- {
- "x": -9.588000000000022,
- "y": 31.473999999999982
- },
- {
- "x": -9.588000000000022,
- "y": 26.733999999999988
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_441",
- "pcb_component_id": "pcb_component_24",
- "layer": "top",
- "route": [
- {
- "x": -9.588000000000022,
- "y": 31.473999999999982
- },
- {
- "x": -4.128000000000014,
- "y": 31.473999999999982
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_442",
- "pcb_component_id": "pcb_component_24",
- "layer": "top",
- "route": [
- {
- "x": -4.128000000000014,
- "y": 26.733999999999988
- },
- {
- "x": -9.588000000000022,
- "y": 26.733999999999988
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_443",
- "pcb_component_id": "pcb_component_24",
- "layer": "top",
- "route": [
- {
- "x": -4.128000000000014,
- "y": 26.733999999999988
- },
- {
- "x": -4.128000000000014,
- "y": 31.473999999999982
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_444",
- "pcb_component_id": "pcb_component_24",
- "layer": "top",
- "route": [
- {
- "x": -5.088000000000022,
- "y": 31.213999999999984
- },
- {
- "x": -8.588000000000022,
- "y": 31.213999999999984
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_445",
- "pcb_component_id": "pcb_component_24",
- "layer": "top",
- "route": [
- {
- "x": -6.8580000000000325,
- "y": 26.863999999999983
- },
- {
- "x": -6.956784383146754,
- "y": 26.86587728188961
- },
- {
- "x": -7.05542611535185,
- "y": 26.871506421126554
- },
- {
- "x": -7.153782751585652,
- "y": 26.880879288870346
- },
- {
- "x": -7.251712258515482,
- "y": 26.893982350094838
- },
- {
- "x": -7.349073219610915,
- "y": 26.91079668313369
- },
- {
- "x": -7.445725039358507,
- "y": 26.931298007004443
- },
- {
- "x": -7.541528146290574,
- "y": 26.95545671647185
- },
- {
- "x": -7.636344194535667,
- "y": 26.983237924799745
- },
- {
- "x": -7.7300362635986914,
- "y": 27.014601514129723
- },
- {
- "x": -7.822469056083122,
- "y": 27.04950219341395
- },
- {
- "x": -7.913509093069109,
- "y": 27.087889563818322
- },
- {
- "x": -8.003024906865619,
- "y": 27.12970819150167
- },
- {
- "x": -8.090887230858357,
- "y": 27.174897687665784
- },
- {
- "x": -8.176969186179036,
- "y": 27.223392795760738
- },
- {
- "x": -8.261146464926668,
- "y": 27.27512348571957
- },
- {
- "x": -8.343297509676177,
- "y": 27.33001505508622
- },
- {
- "x": -8.423303689015256,
- "y": 27.387988236890685
- },
- {
- "x": -8.501049468855683,
- "y": 27.448959314115662
- },
- {
- "x": -8.576422579272077,
- "y": 27.512840240589306
- },
- {
- "x": -8.64931417662683,
- "y": 27.579538768129602
- },
- {
- "x": -8.719619000747457,
- "y": 27.64895857975668
- },
- {
- "x": -8.78723552692901,
- "y": 27.72099942878077
- },
- {
- "x": -8.852066112542303,
- "y": 27.795557283564882
- },
- {
- "x": -8.9140171380362,
- "y": 27.87252447775321
- },
- {
- "x": -8.972999142130334,
- "y": 27.951789865748296
- },
- {
- "x": -9.028926951002859,
- "y": 28.03323898321245
- },
- {
- "x": -9.081719801287022,
- "y": 28.116754212361663
- },
- {
- "x": -9.13130145669868,
- "y": 28.20221495181324
- },
- {
- "x": -9.177600318126423,
- "y": 28.28949779074202
- },
- {
- "x": -9.220549527025213,
- "y": 28.37847668709356
- },
- {
- "x": -9.260087061964612,
- "y": 28.469023149596993
- },
- {
- "x": -9.296155828191615,
- "y": 28.561006423314744
- },
- {
- "x": -9.328703740079135,
- "y": 28.65429367846106
- },
- {
- "x": -9.357683796341092,
- "y": 28.748750202216826
- },
- {
- "x": -9.383054147905312,
- "y": 28.844239593263573
- },
- {
- "x": -9.404778158346204,
- "y": 28.940623958755786
- },
- {
- "x": -9.422824456790124,
- "y": 29.037764113447054
- },
- {
- "x": -9.43716698321711,
- "y": 29.13551978068258
- },
- {
- "x": -9.447785026092987,
- "y": 29.233749794967714
- },
- {
- "x": -9.454663252278351,
- "y": 29.332312305820032
- },
- {
- "x": -9.457791729170538,
- "y": 29.43106498261062
- },
- {
- "x": -9.457165939046945,
- "y": 29.529865220098657
- },
- {
- "x": -9.452786785588899,
- "y": 29.628570344362608
- },
- {
- "x": -9.444660592576696,
- "y": 29.727037818830574
- },
- {
- "x": -9.432799094757712,
- "y": 29.82512545011231
- },
- {
- "x": -9.417219420900551,
- "y": 29.922691593335642
- },
- {
- "x": -9.397944069060145,
- "y": 30.019595356690836
- },
- {
- "x": -9.375000874088926,
- "y": 30.115696804887435
- },
- {
- "x": -9.348422967441678,
- "y": 30.21085716122988
- },
- {
- "x": -9.318248729331486,
- "y": 30.304939008020007
- },
- {
- "x": -9.284521733306235,
- "y": 30.39780648499707
- },
- {
- "x": -9.247290683325645,
- "y": 30.48932548552873
- },
- {
- "x": -9.206609343429562,
- "y": 30.5793638502697
- },
- {
- "x": -9.162536460099147,
- "y": 30.667791558008375
- },
- {
- "x": -9.115135677423325,
- "y": 30.754480913425823
- },
- {
- "x": -9.064475445192556,
- "y": 30.8393067314961
- },
- {
- "x": -9.010628920052739,
- "y": 30.922146518261528
- },
- {
- "x": -8.953673859862619,
- "y": 31.002880647721817
- },
- {
- "x": -8.89369251140613,
- "y": 31.081392534581788
- },
- {
- "x": -8.830771491622897,
- "y": 31.15756880260804
- },
- {
- "x": -8.76500166252768,
- "y": 31.231299448351557
- },
- {
- "x": -8.696477999999814,
- "y": 31.302477999999795
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_446",
- "pcb_component_id": "pcb_component_24",
- "layer": "top",
- "route": [
- {
- "x": -5.019522000000023,
- "y": 31.302477999999986
- },
- {
- "x": -4.9509983374721855,
- "y": 31.23129944835175
- },
- {
- "x": -4.885228508376969,
- "y": 31.157568802608232
- },
- {
- "x": -4.822307488593708,
- "y": 31.08139253458198
- },
- {
- "x": -4.762326140137219,
- "y": 31.00288064772201
- },
- {
- "x": -4.705371079947099,
- "y": 30.92214651826172
- },
- {
- "x": -4.65152455480731,
- "y": 30.839306731496293
- },
- {
- "x": -4.600864322576513,
- "y": 30.754480913426008
- },
- {
- "x": -4.553463539900719,
- "y": 30.66779155800856
- },
- {
- "x": -4.509390656570332,
- "y": 30.579363850269893
- },
- {
- "x": -4.4687093166742216,
- "y": 30.489325485528916
- },
- {
- "x": -4.431478266693631,
- "y": 30.397806484997254
- },
- {
- "x": -4.397751270668408,
- "y": 30.3049390080202
- },
- {
- "x": -4.367577032558216,
- "y": 30.210857161230074
- },
- {
- "x": -4.340999125910969,
- "y": 30.115696804887627
- },
- {
- "x": -4.3180559309397495,
- "y": 30.019595356691028
- },
- {
- "x": -4.298780579099343,
- "y": 29.922691593335834
- },
- {
- "x": -4.283200905242182,
- "y": 29.825125450112502
- },
- {
- "x": -4.2713394074231985,
- "y": 29.727037818830766
- },
- {
- "x": -4.263213214411024,
- "y": 29.6285703443628
- },
- {
- "x": -4.258834060952978,
- "y": 29.52986522009885
- },
- {
- "x": -4.258208270829357,
- "y": 29.431064982610813
- },
- {
- "x": -4.261336747721572,
- "y": 29.33231230582023
- },
- {
- "x": -4.268214973906936,
- "y": 29.233749794967913
- },
- {
- "x": -4.278833016782841,
- "y": 29.135519780682777
- },
- {
- "x": -4.293175543209799,
- "y": 29.03776411344726
- },
- {
- "x": -4.311221841653747,
- "y": 28.940623958755992
- },
- {
- "x": -4.332945852094639,
- "y": 28.84423959326378
- },
- {
- "x": -4.358316203658859,
- "y": 28.748750202217032
- },
- {
- "x": -4.3872962599208165,
- "y": 28.654293678461272
- },
- {
- "x": -4.419844171808364,
- "y": 28.561006423314957
- },
- {
- "x": -4.45591293803534,
- "y": 28.469023149597213
- },
- {
- "x": -4.495450472974767,
- "y": 28.37847668709378
- },
- {
- "x": -4.538399681873557,
- "y": 28.289497790742246
- },
- {
- "x": -4.5846985433013,
- "y": 28.202214951813467
- },
- {
- "x": -4.634280198712958,
- "y": 28.116754212361897
- },
- {
- "x": -4.687073048997149,
- "y": 28.03323898321269
- },
- {
- "x": -4.743000857869674,
- "y": 27.951789865748538
- },
- {
- "x": -4.801982861963808,
- "y": 27.87252447775346
- },
- {
- "x": -4.863933887457705,
- "y": 27.795557283565138
- },
- {
- "x": -4.928764473071027,
- "y": 27.720999428781035
- },
- {
- "x": -4.996380999252551,
- "y": 27.64895857975695
- },
- {
- "x": -5.066685823373206,
- "y": 27.57953876812988
- },
- {
- "x": -5.13957742072796,
- "y": 27.51284024058959
- },
- {
- "x": -5.214950531144325,
- "y": 27.448959314115953
- },
- {
- "x": -5.29269631098478,
- "y": 27.387988236890983
- },
- {
- "x": -5.37270249032386,
- "y": 27.330015055086527
- },
- {
- "x": -5.454853535073397,
- "y": 27.27512348571988
- },
- {
- "x": -5.539030813821,
- "y": 27.223392795761058
- },
- {
- "x": -5.62511276914168,
- "y": 27.17489768766611
- },
- {
- "x": -5.712975093134418,
- "y": 27.12970819150201
- },
- {
- "x": -5.802490906930956,
- "y": 27.08788956381867
- },
- {
- "x": -5.893530943916915,
- "y": 27.049502193414305
- },
- {
- "x": -5.985963736401374,
- "y": 27.014601514130092
- },
- {
- "x": -6.079655805464398,
- "y": 26.983237924800115
- },
- {
- "x": -6.174471853709463,
- "y": 26.955456716472234
- },
- {
- "x": -6.270274960641558,
- "y": 26.931298007004834
- },
- {
- "x": -6.36692678038915,
- "y": 26.910796683134095
- },
- {
- "x": -6.464287741484583,
- "y": 26.89398235009525
- },
- {
- "x": -6.562217248414413,
- "y": 26.880879288870766
- },
- {
- "x": -6.660573884648215,
- "y": 26.871506421126988
- },
- {
- "x": -6.759215616853311,
- "y": 26.86587728189005
- },
- {
- "x": -6.8580000000000325,
- "y": 26.864000000000438
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_447",
- "pcb_component_id": "pcb_component_24",
- "layer": "top",
- "route": [
- {
- "x": -6.8580000000000325,
- "y": 26.983999999999988
- },
- {
- "x": -6.957013712688848,
- "y": 26.985977360400085
- },
- {
- "x": -7.055869534301479,
- "y": 26.991906254721094
- },
- {
- "x": -7.154409826213168,
- "y": 27.001777228560307
- },
- {
- "x": -7.25247745295286,
- "y": 27.015574541350148
- },
- {
- "x": -7.349916032776321,
- "y": 27.033276191458555
- },
- {
- "x": -7.4465701870375085,
- "y": 27.05485395127352
- },
- {
- "x": -7.542285787960168,
- "y": 27.080273412215696
- },
- {
- "x": -7.63691020441496,
- "y": 27.109494039607405
- },
- {
- "x": -7.730292545309879,
- "y": 27.142469237310564
- },
- {
- "x": -7.8222839002059175,
- "y": 27.1791464220303
- },
- {
- "x": -7.912737576774447,
- "y": 27.219467107166004
- },
- {
- "x": -8.001509334717383,
- "y": 27.263366996075852
- },
- {
- "x": -8.088457615777344,
- "y": 27.31077608460633
- },
- {
- "x": -8.173443769471021,
- "y": 27.361618772723013
- },
- {
- "x": -8.256332274185496,
- "y": 27.415813985064823
- },
- {
- "x": -8.336990953285408,
- "y": 27.473275300229353
- },
- {
- "x": -8.415291185885877,
- "y": 27.533911088583153
- },
- {
- "x": -8.491108111955612,
- "y": 27.597624658377285
- },
- {
- "x": -8.564320831422549,
- "y": 27.66431440993501
- },
- {
- "x": -8.634812596964963,
- "y": 27.733873997665874
- },
- {
- "x": -8.70247100018048,
- "y": 27.80619249964775
- },
- {
- "x": -8.767188150836006,
- "y": 27.881154594506462
- },
- {
- "x": -8.828860848912996,
- "y": 27.95864074531086
- },
- {
- "x": -8.887390749173363,
- "y": 28.038527390190247
- },
- {
- "x": -8.942684517984077,
- "y": 28.12068713937002
- },
- {
- "x": -8.99465398214977,
- "y": 28.204988978311462
- },
- {
- "x": -9.043216269516535,
- "y": 28.291298476631646
- },
- {
- "x": -9.0882939411226,
- "y": 28.37947800247042
- },
- {
- "x": -9.129815114684845,
- "y": 28.469386941962497
- },
- {
- "x": -9.167713579224568,
- "y": 28.560881923464798
- },
- {
- "x": -9.201928900649676,
- "y": 28.653817046181423
- },
- {
- "x": -9.23240651812472,
- "y": 28.748044112821646
- },
- {
- "x": -9.259097831075394,
- "y": 28.84341286592005
- },
- {
- "x": -9.281960276688523,
- "y": 28.93977122744183
- },
- {
- "x": -9.300957397784117,
- "y": 29.03696554129123
- },
- {
- "x": -9.316058900951077,
- "y": 29.13484081833643
- },
- {
- "x": -9.327240704854034,
- "y": 29.23324098356013
- },
- {
- "x": -9.334484978634293,
- "y": 29.332009124941713
- },
- {
- "x": -9.337780170343365,
- "y": 29.43098774367413
- },
- {
- "x": -9.337121025364212,
- "y": 29.53001900531646
- },
- {
- "x": -9.332508594790255,
- "y": 29.628944991481752
- },
- {
- "x": -9.3239502337494,
- "y": 29.72760795165867
- },
- {
- "x": -9.311459589675337,
- "y": 29.825850554765417
- },
- {
- "x": -9.295056580544724,
- "y": 29.923516140034934
- },
- {
- "x": -9.274767363115558,
- "y": 30.02044896683106
- },
- {
- "x": -9.250624291216695,
- "y": 30.116494462997522
- },
- {
- "x": -9.222665864155374,
- "y": 30.211499471343572
- },
- {
- "x": -9.190936665325097,
- "y": 30.30531249387331
- },
- {
- "x": -9.155487291111399,
- "y": 30.397783933369155
- },
- {
- "x": -9.116374270209434,
- "y": 30.488766331944355
- },
- {
- "x": -9.073659973481313,
- "y": 30.57811460618398
- },
- {
- "x": -9.027412514497769,
- "y": 30.665686278499514
- },
- {
- "x": -8.977705640921869,
- "y": 30.75134170432817
- },
- {
- "x": -8.92461861690893,
- "y": 30.834944294814484
- },
- {
- "x": -8.868236096709069,
- "y": 30.916360734619296
- },
- {
- "x": -8.808647989675165,
- "y": 30.99546119450855
- },
- {
- "x": -8.745949316890318,
- "y": 31.072119538383134
- },
- {
- "x": -8.680240059644348,
- "y": 31.146213524419508
- },
- {
- "x": -8.611625000000402,
- "y": 31.217625000000353
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_448",
- "pcb_component_id": "pcb_component_24",
- "layer": "top",
- "route": [
- {
- "x": -5.104375000000033,
- "y": 31.217624999999984
- },
- {
- "x": -5.03575994035603,
- "y": 31.146213524419167
- },
- {
- "x": -4.970050683110003,
- "y": 31.07211953838282
- },
- {
- "x": -4.9073520103250985,
- "y": 30.995461194508252
- },
- {
- "x": -4.847763903291138,
- "y": 30.91636073461902
- },
- {
- "x": -4.791381383091249,
- "y": 30.83494429481422
- },
- {
- "x": -4.738294359078253,
- "y": 30.751341704327913
- },
- {
- "x": -4.688587485502325,
- "y": 30.665686278499265
- },
- {
- "x": -4.642340026518696,
- "y": 30.57811460618374
- },
- {
- "x": -4.599625729790546,
- "y": 30.48876633194412
- },
- {
- "x": -4.560512708888524,
- "y": 30.397783933368913
- },
- {
- "x": -4.5250633346747975,
- "y": 30.30531249387306
- },
- {
- "x": -4.493334135844492,
- "y": 30.21149947134333
- },
- {
- "x": -4.465375708783142,
- "y": 30.116494462997267
- },
- {
- "x": -4.441232636884223,
- "y": 30.0204489668308
- },
- {
- "x": -4.420943419455028,
- "y": 29.923516140034657
- },
- {
- "x": -4.404540410324387,
- "y": 29.825850554765132
- },
- {
- "x": -4.392049766250267,
- "y": 29.72760795165837
- },
- {
- "x": -4.383491405209412,
- "y": 29.628944991481447
- },
- {
- "x": -4.378878974635427,
- "y": 29.530019005316134
- },
- {
- "x": -4.378219829656246,
- "y": 29.430987743673782
- },
- {
- "x": -4.381515021365317,
- "y": 29.33200912494135
- },
- {
- "x": -4.388759295145547,
- "y": 29.233240983559746
- },
- {
- "x": -4.399941099048476,
- "y": 29.13484081833603
- },
- {
- "x": -4.415042602215408,
- "y": 29.03696554129081
- },
- {
- "x": -4.4340397233110025,
- "y": 28.93977122744139
- },
- {
- "x": -4.456902168924131,
- "y": 28.843412865919596
- },
- {
- "x": -4.483593481874806,
- "y": 28.748044112821162
- },
- {
- "x": -4.51407109934982,
- "y": 28.653817046180926
- },
- {
- "x": -4.548286420774929,
- "y": 28.560881923464287
- },
- {
- "x": -4.586184885314651,
- "y": 28.469386941961957
- },
- {
- "x": -4.627706058876896,
- "y": 28.379478002469867
- },
- {
- "x": -4.672783730482962,
- "y": 28.291298476631077
- },
- {
- "x": -4.721346017849754,
- "y": 28.204988978310872
- },
- {
- "x": -4.773315482015448,
- "y": 28.120687139369423
- },
- {
- "x": -4.828609250826162,
- "y": 28.03852739018963
- },
- {
- "x": -4.887139151086558,
- "y": 27.958640745310234
- },
- {
- "x": -4.9488118491635475,
- "y": 27.881154594505823
- },
- {
- "x": -5.013528999819101,
- "y": 27.80619249964711
- },
- {
- "x": -5.081187403034619,
- "y": 27.73387399766522
- },
- {
- "x": -5.151679168577061,
- "y": 27.66431440993435
- },
- {
- "x": -5.224891888044027,
- "y": 27.597624658376624
- },
- {
- "x": -5.30070881411379,
- "y": 27.533911088582492
- },
- {
- "x": -5.3790090467142875,
- "y": 27.473275300228693
- },
- {
- "x": -5.4596677258141995,
- "y": 27.41581398506417
- },
- {
- "x": -5.542556230528703,
- "y": 27.361618772722366
- },
- {
- "x": -5.627542384222409,
- "y": 27.310776084605685
- },
- {
- "x": -5.714490665282426,
- "y": 27.263366996075227
- },
- {
- "x": -5.8032624232253625,
- "y": 27.219467107165386
- },
- {
- "x": -5.89371609979392,
- "y": 27.179146422029703
- },
- {
- "x": -5.985707454689987,
- "y": 27.14246923730998
- },
- {
- "x": -6.079089795584935,
- "y": 27.10949403960685
- },
- {
- "x": -6.173714212039755,
- "y": 27.080273412215156
- },
- {
- "x": -6.269429812962443,
- "y": 27.054853951273017
- },
- {
- "x": -6.366083967223631,
- "y": 27.03327619145808
- },
- {
- "x": -6.46352254704712,
- "y": 27.0155745413497
- },
- {
- "x": -6.56159017378684,
- "y": 27.001777228559895
- },
- {
- "x": -6.660130465698558,
- "y": 26.991906254720718
- },
- {
- "x": -6.758986287311188,
- "y": 26.98597736039975
- },
- {
- "x": -6.8580000000000325,
- "y": 26.983999999999696
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_449",
- "pcb_component_id": "pcb_component_25",
- "layer": "top",
- "route": [
- {
- "x": -8.150000000000006,
- "y": 18.47
- },
- {
- "x": -4.550000000000011,
- "y": 18.47
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_450",
- "pcb_component_id": "pcb_component_25",
- "layer": "top",
- "route": [
- {
- "x": -9.080000000000013,
- "y": 23.049999999999997
- },
- {
- "x": -9.080000000000013,
- "y": 18.309999999999988
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_451",
- "pcb_component_id": "pcb_component_25",
- "layer": "top",
- "route": [
- {
- "x": -9.080000000000013,
- "y": 23.049999999999997
- },
- {
- "x": -3.6200000000000045,
- "y": 23.049999999999997
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_452",
- "pcb_component_id": "pcb_component_25",
- "layer": "top",
- "route": [
- {
- "x": -3.6200000000000045,
- "y": 18.309999999999988
- },
- {
- "x": -9.080000000000013,
- "y": 18.309999999999988
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_453",
- "pcb_component_id": "pcb_component_25",
- "layer": "top",
- "route": [
- {
- "x": -3.6200000000000045,
- "y": 18.309999999999988
- },
- {
- "x": -3.6200000000000045,
- "y": 23.049999999999997
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_454",
- "pcb_component_id": "pcb_component_25",
- "layer": "top",
- "route": [
- {
- "x": -8.120000000000005,
- "y": 18.569999999999993
- },
- {
- "x": -4.6200000000000045,
- "y": 18.569999999999993
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_455",
- "pcb_component_id": "pcb_component_25",
- "layer": "top",
- "route": [
- {
- "x": -8.188478000000003,
- "y": 18.481522
- },
- {
- "x": -8.25700166252787,
- "y": 18.55270055164823
- },
- {
- "x": -8.322771491623115,
- "y": 18.626431197391753
- },
- {
- "x": -8.385692511406404,
- "y": 18.702607465417998
- },
- {
- "x": -8.445673859862922,
- "y": 18.78111935227797
- },
- {
- "x": -8.50262892005307,
- "y": 18.861853481738265
- },
- {
- "x": -8.556475445192888,
- "y": 18.944693268503684
- },
- {
- "x": -8.607135677423685,
- "y": 19.02951908657397
- },
- {
- "x": -8.654536460099507,
- "y": 19.116208441991432
- },
- {
- "x": -8.69860934342995,
- "y": 19.204636149730106
- },
- {
- "x": -8.739290683326061,
- "y": 19.294674514471083
- },
- {
- "x": -8.77652173330668,
- "y": 19.38619351500276
- },
- {
- "x": -8.810248729331931,
- "y": 19.479060991979836
- },
- {
- "x": -8.840422967442123,
- "y": 19.573142838769968
- },
- {
- "x": -8.867000874089399,
- "y": 19.66830319511243
- },
- {
- "x": -8.889944069060618,
- "y": 19.764404643309035
- },
- {
- "x": -8.909219420901081,
- "y": 19.861308406664236
- },
- {
- "x": -8.924799094758214,
- "y": 19.958874549887582
- },
- {
- "x": -8.936660592577226,
- "y": 20.05696218116934
- },
- {
- "x": -8.944786785589429,
- "y": 20.15542965563732
- },
- {
- "x": -8.949165939047475,
- "y": 20.254134779901293
- },
- {
- "x": -8.949791729171096,
- "y": 20.352935017389342
- },
- {
- "x": -8.94666325227891,
- "y": 20.451687694179938
- },
- {
- "x": -8.939785026093546,
- "y": 20.55025020503227
- },
- {
- "x": -8.92916698321767,
- "y": 20.64848021931742
- },
- {
- "x": -8.914824456790683,
- "y": 20.746235886552967
- },
- {
- "x": -8.896778158346734,
- "y": 20.843376041244255
- },
- {
- "x": -8.875054147905871,
- "y": 20.939760406736468
- },
- {
- "x": -8.849683796341651,
- "y": 21.035249797783237
- },
- {
- "x": -8.820703740079665,
- "y": 21.129706321539018
- },
- {
- "x": -8.788155828192146,
- "y": 21.222993576685354
- },
- {
- "x": -8.752087061965142,
- "y": 21.314976850403113
- },
- {
- "x": -8.712549527025743,
- "y": 21.405523312906567
- },
- {
- "x": -8.669600318126925,
- "y": 21.494502209258115
- },
- {
- "x": -8.623301456699181,
- "y": 21.5817850481869
- },
- {
- "x": -8.573719801287496,
- "y": 21.667245787638493
- },
- {
- "x": -8.520926951003332,
- "y": 21.750761016787706
- },
- {
- "x": -8.464999142130779,
- "y": 21.83221013425188
- },
- {
- "x": -8.406017138036646,
- "y": 21.911475522246974
- },
- {
- "x": -8.34406611254272,
- "y": 21.9884427164353
- },
- {
- "x": -8.279235526929398,
- "y": 22.06300057121942
- },
- {
- "x": -8.211619000747845,
- "y": 22.13504142024351
- },
- {
- "x": -8.14131417662719,
- "y": 22.204461231870596
- },
- {
- "x": -8.068422579272436,
- "y": 22.271159759410892
- },
- {
- "x": -7.9930494688560145,
- "y": 22.335040685884536
- },
- {
- "x": -7.915303689015559,
- "y": 22.396011763109513
- },
- {
- "x": -7.835297509676451,
- "y": 22.45398494491397
- },
- {
- "x": -7.753146464926914,
- "y": 22.508876514280615
- },
- {
- "x": -7.668969186179282,
- "y": 22.560607204239446
- },
- {
- "x": -7.582887230858574,
- "y": 22.609102312334386
- },
- {
- "x": -7.4950249068658366,
- "y": 22.6542918084985
- },
- {
- "x": -7.405509093069298,
- "y": 22.696110436181826
- },
- {
- "x": -7.314469056083283,
- "y": 22.73449780658619
- },
- {
- "x": -7.222036263598824,
- "y": 22.769398485870397
- },
- {
- "x": -7.128344194535771,
- "y": 22.800762075200367
- },
- {
- "x": -7.033528146290678,
- "y": 22.828543283528248
- },
- {
- "x": -6.9377250393585825,
- "y": 22.852701992995634
- },
- {
- "x": -6.8410732196109905,
- "y": 22.873203316866366
- },
- {
- "x": -6.743712258515501,
- "y": 22.890017649905204
- },
- {
- "x": -6.645782751585671,
- "y": 22.903120711129674
- },
- {
- "x": -6.54742611535184,
- "y": 22.912493578873438
- },
- {
- "x": -6.448784383146744,
- "y": 22.918122718110354
- },
- {
- "x": -6.349999999999994,
- "y": 22.91999999999996
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_456",
- "pcb_component_id": "pcb_component_25",
- "layer": "top",
- "route": [
- {
- "x": -6.349999999999994,
- "y": 22.919999999999987
- },
- {
- "x": -6.251215616853244,
- "y": 22.91812271811041
- },
- {
- "x": -6.15257388464812,
- "y": 22.91249357887351
- },
- {
- "x": -6.0542172484142895,
- "y": 22.90312071112976
- },
- {
- "x": -5.956287741484459,
- "y": 22.890017649905303
- },
- {
- "x": -5.85892678038897,
- "y": 22.873203316866494
- },
- {
- "x": -5.762274960641349,
- "y": 22.852701992995776
- },
- {
- "x": -5.666471853709254,
- "y": 22.828543283528404
- },
- {
- "x": -5.5716558054641325,
- "y": 22.800762075200538
- },
- {
- "x": -5.47796373640108,
- "y": 22.769398485870582
- },
- {
- "x": -5.385530943916592,
- "y": 22.734497806586376
- },
- {
- "x": -5.294490906930577,
- "y": 22.696110436182025
- },
- {
- "x": -5.204975093134038,
- "y": 22.654291808498698
- },
- {
- "x": -5.117112769141272,
- "y": 22.6091023123346
- },
- {
- "x": -5.031030813820564,
- "y": 22.56060720423966
- },
- {
- "x": -4.946853535072904,
- "y": 22.508876514280843
- },
- {
- "x": -4.864702490323367,
- "y": 22.453984944914197
- },
- {
- "x": -4.784696310984231,
- "y": 22.39601176310974
- },
- {
- "x": -4.706950531143775,
- "y": 22.335040685884763
- },
- {
- "x": -4.6315774207273535,
- "y": 22.27115975941112
- },
- {
- "x": -4.558685823372571,
- "y": 22.204461231870823
- },
- {
- "x": -4.488380999251916,
- "y": 22.135041420243738
- },
- {
- "x": -4.4207644730703635,
- "y": 22.063000571219646
- },
- {
- "x": -4.3559338874570415,
- "y": 21.988442716435515
- },
- {
- "x": -4.293982861963087,
- "y": 21.911475522247187
- },
- {
- "x": -4.235000857868954,
- "y": 21.832210134252094
- },
- {
- "x": -4.1790730489964005,
- "y": 21.75076101678792
- },
- {
- "x": -4.126280198712209,
- "y": 21.66724578763869
- },
- {
- "x": -4.076698543300552,
- "y": 21.5817850481871
- },
- {
- "x": -4.030399681872808,
- "y": 21.4945022092583
- },
- {
- "x": -3.9874504729739897,
- "y": 21.405523312906737
- },
- {
- "x": -3.9479129380345626,
- "y": 21.314976850403283
- },
- {
- "x": -3.9118441718075587,
- "y": 21.222993576685525
- },
- {
- "x": -3.8792962599200393,
- "y": 21.12970632153919
- },
- {
- "x": -3.8503162036580534,
- "y": 21.035249797783393
- },
- {
- "x": -3.8249458520938333,
- "y": 20.939760406736625
- },
- {
- "x": -3.80322184165297,
- "y": 20.843376041244383
- },
- {
- "x": -3.78517554320905,
- "y": 20.746235886553094
- },
- {
- "x": -3.7708330167820634,
- "y": 20.64848021931755
- },
- {
- "x": -3.760214973906187,
- "y": 20.550250205032384
- },
- {
- "x": -3.753336747720823,
- "y": 20.451687694180038
- },
- {
- "x": -3.750208270828665,
- "y": 20.352935017389427
- },
- {
- "x": -3.750834060952286,
- "y": 20.254134779901378
- },
- {
- "x": -3.7552132144103325,
- "y": 20.155429655637406
- },
- {
- "x": -3.7633394074225635,
- "y": 20.05696218116941
- },
- {
- "x": -3.775200905241576,
- "y": 19.958874549887653
- },
- {
- "x": -3.790780579098737,
- "y": 19.861308406664307
- },
- {
- "x": -3.8100559309391997,
- "y": 19.764404643309092
- },
- {
- "x": -3.8329991259104474,
- "y": 19.668303195112472
- },
- {
- "x": -3.8595770325577234,
- "y": 19.57314283877001
- },
- {
- "x": -3.8897512706679436,
- "y": 19.47906099197988
- },
- {
- "x": -3.9234782666932233,
- "y": 19.3861935150028
- },
- {
- "x": -3.9607093166738423,
- "y": 19.29467451447114
- },
- {
- "x": -4.001390656569981,
- "y": 19.20463614973015
- },
- {
- "x": -4.045463539900425,
- "y": 19.116208441991475
- },
- {
- "x": -4.0928643225762755,
- "y": 19.029519086574027
- },
- {
- "x": -4.143524554807101,
- "y": 18.94469326850374
- },
- {
- "x": -4.197371079946947,
- "y": 18.861853481738322
- },
- {
- "x": -4.254326140137124,
- "y": 18.78111935227804
- },
- {
- "x": -4.314307488593641,
- "y": 18.70260746541807
- },
- {
- "x": -4.377228508376959,
- "y": 18.626431197391824
- },
- {
- "x": -4.442998337472233,
- "y": 18.55270055164833
- },
- {
- "x": -4.511522000000127,
- "y": 18.481522000000098
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_457",
- "pcb_component_id": "pcb_component_25",
- "layer": "top",
- "route": [
- {
- "x": -8.103624999999994,
- "y": 18.566374999999994
- },
- {
- "x": -8.17224005964394,
- "y": 18.63778647558081
- },
- {
- "x": -8.237949316889939,
- "y": 18.711880461617156
- },
- {
- "x": -8.300647989674815,
- "y": 18.788538805491726
- },
- {
- "x": -8.360236096708746,
- "y": 18.86763926538096
- },
- {
- "x": -8.416618616908579,
- "y": 18.949055705185742
- },
- {
- "x": -8.469705640921575,
- "y": 19.03265829567205
- },
- {
- "x": -8.519412514497446,
- "y": 19.118313721500684
- },
- {
- "x": -8.565659973481047,
- "y": 19.205885393816203
- },
- {
- "x": -8.608374270209168,
- "y": 19.295233668055815
- },
- {
- "x": -8.647487291111162,
- "y": 19.386216066630993
- },
- {
- "x": -8.68293666532486,
- "y": 19.478687506126832
- },
- {
- "x": -8.714665864155137,
- "y": 19.572500528656548
- },
- {
- "x": -8.742624291216487,
- "y": 19.667505537002597
- },
- {
- "x": -8.766767363115349,
- "y": 19.76355103316905
- },
- {
- "x": -8.787056580544515,
- "y": 19.860483859965157
- },
- {
- "x": -8.803459589675157,
- "y": 19.958149445234667
- },
- {
- "x": -8.815950233749248,
- "y": 20.056392048341408
- },
- {
- "x": -8.824508594790103,
- "y": 20.155055008518318
- },
- {
- "x": -8.82912102536406,
- "y": 20.2539809946836
- },
- {
- "x": -8.829780170343241,
- "y": 20.353012256325925
- },
- {
- "x": -8.826484978634141,
- "y": 20.45199087505833
- },
- {
- "x": -8.819240704853911,
- "y": 20.550759016439912
- },
- {
- "x": -8.808058900950954,
- "y": 20.649159181663606
- },
- {
- "x": -8.792957397784022,
- "y": 20.747034458708796
- },
- {
- "x": -8.773960276688427,
- "y": 20.844228772558182
- },
- {
- "x": -8.751097831075299,
- "y": 20.940587134079962
- },
- {
- "x": -8.724406518124624,
- "y": 21.03595588717836
- },
- {
- "x": -8.693928900649581,
- "y": 21.130182953818576
- },
- {
- "x": -8.659713579224501,
- "y": 21.223118076535187
- },
- {
- "x": -8.621815114684779,
- "y": 21.314613058037494
- },
- {
- "x": -8.580293941122534,
- "y": 21.404521997529557
- },
- {
- "x": -8.535216269516468,
- "y": 21.492701523368325
- },
- {
- "x": -8.486653982149704,
- "y": 21.5790110216885
- },
- {
- "x": -8.43468451798401,
- "y": 21.663312860629944
- },
- {
- "x": -8.379390749173297,
- "y": 21.74547260980971
- },
- {
- "x": -8.320860848912929,
- "y": 21.82535925468909
- },
- {
- "x": -8.25918815083594,
- "y": 21.902845405493466
- },
- {
- "x": -8.194471000180414,
- "y": 21.97780750035217
- },
- {
- "x": -8.126812596964925,
- "y": 22.05012600233404
- },
- {
- "x": -8.056320831422482,
- "y": 22.11968559006489
- },
- {
- "x": -7.983108111955545,
- "y": 22.186375341622607
- },
- {
- "x": -7.907291185885811,
- "y": 22.250088911416725
- },
- {
- "x": -7.8289909532853414,
- "y": 22.310724699770518
- },
- {
- "x": -7.7483322741854295,
- "y": 22.36818601493502
- },
- {
- "x": -7.665443769470954,
- "y": 22.42238122727683
- },
- {
- "x": -7.580457615777277,
- "y": 22.47322391539349
- },
- {
- "x": -7.493509334717288,
- "y": 22.520633003923948
- },
- {
- "x": -7.40473757677438,
- "y": 22.564532892833782
- },
- {
- "x": -7.314283900205851,
- "y": 22.604853577969465
- },
- {
- "x": -7.222292545309813,
- "y": 22.641530762689186
- },
- {
- "x": -7.128910204414893,
- "y": 22.674505960392324
- },
- {
- "x": -7.034285787960101,
- "y": 22.70372658778402
- },
- {
- "x": -6.938570187037442,
- "y": 22.729146048726165
- },
- {
- "x": -6.841916032776254,
- "y": 22.75072380854111
- },
- {
- "x": -6.744477452952793,
- "y": 22.768425458649503
- },
- {
- "x": -6.646409826213102,
- "y": 22.782222771439308
- },
- {
- "x": -6.547869534301412,
- "y": 22.792093745278493
- },
- {
- "x": -6.44901371268881,
- "y": 22.79802263959948
- },
- {
- "x": -6.349999999999994,
- "y": 22.799999999999557
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_458",
- "pcb_component_id": "pcb_component_25",
- "layer": "top",
- "route": [
- {
- "x": -6.349999999999994,
- "y": 22.799999999999997
- },
- {
- "x": -6.250986287311179,
- "y": 22.79802263959992
- },
- {
- "x": -6.152130465698548,
- "y": 22.792093745278947
- },
- {
- "x": -6.05359017378683,
- "y": 22.782222771439763
- },
- {
- "x": -5.9555225470471385,
- "y": 22.768425458649958
- },
- {
- "x": -5.858083967223649,
- "y": 22.750723808541565
- },
- {
- "x": -5.76142981296249,
- "y": 22.72914604872662
- },
- {
- "x": -5.665714212039802,
- "y": 22.703726587784473
- },
- {
- "x": -5.57108979558501,
- "y": 22.67450596039278
- },
- {
- "x": -5.477707454690091,
- "y": 22.64153076268964
- },
- {
- "x": -5.385716099794024,
- "y": 22.60485357796992
- },
- {
- "x": -5.295262423225495,
- "y": 22.564532892834222
- },
- {
- "x": -5.20649066528253,
- "y": 22.520633003924388
- },
- {
- "x": -5.119542384222541,
- "y": 22.47322391539393
- },
- {
- "x": -5.034556230528864,
- "y": 22.422381227277256
- },
- {
- "x": -4.95166772581436,
- "y": 22.368186014935446
- },
- {
- "x": -4.871009046714477,
- "y": 22.31072469977093
- },
- {
- "x": -4.792708814113979,
- "y": 22.250088911417137
- },
- {
- "x": -4.716891888044245,
- "y": 22.186375341623005
- },
- {
- "x": -4.643679168577279,
- "y": 22.119685590065288
- },
- {
- "x": -4.573187403034865,
- "y": 22.050126002334423
- },
- {
- "x": -4.505528999819347,
- "y": 21.97780750035254
- },
- {
- "x": -4.440811849163794,
- "y": 21.902845405493835
- },
- {
- "x": -4.379139151086832,
- "y": 21.82535925468943
- },
- {
- "x": -4.320609250826436,
- "y": 21.74547260981005
- },
- {
- "x": -4.265315482015723,
- "y": 21.66331286063027
- },
- {
- "x": -4.213346017850029,
- "y": 21.579011021688828
- },
- {
- "x": -4.164783730483265,
- "y": 21.492701523368638
- },
- {
- "x": -4.119706058877171,
- "y": 21.404521997529855
- },
- {
- "x": -4.078184885314954,
- "y": 21.31461305803778
- },
- {
- "x": -4.040286420775203,
- "y": 21.223118076535457
- },
- {
- "x": -4.006071099350123,
- "y": 21.13018295381883
- },
- {
- "x": -3.97559348187508,
- "y": 21.035955887178602
- },
- {
- "x": -3.948902168924434,
- "y": 20.94058713408019
- },
- {
- "x": -3.926039723311277,
- "y": 20.84422877255841
- },
- {
- "x": -3.9070426022157108,
- "y": 20.747034458708995
- },
- {
- "x": -3.891941099048779,
- "y": 20.64915918166379
- },
- {
- "x": -3.880759295145822,
- "y": 20.550759016440082
- },
- {
- "x": -3.8735150213655913,
- "y": 20.4519908750585
- },
- {
- "x": -3.87021982965652,
- "y": 20.353012256326082
- },
- {
- "x": -3.8708789746357013,
- "y": 20.253980994683744
- },
- {
- "x": -3.875491405209658,
- "y": 20.155055008518445
- },
- {
- "x": -3.884049766250513,
- "y": 20.056392048341536
- },
- {
- "x": -3.896540410324633,
- "y": 19.95814944523478
- },
- {
- "x": -3.912943419455246,
- "y": 19.860483859965257
- },
- {
- "x": -3.9332326368844406,
- "y": 19.763551033169136
- },
- {
- "x": -3.9573757087833314,
- "y": 19.66750553700267
- },
- {
- "x": -3.985334135844653,
- "y": 19.57250052865662
- },
- {
- "x": -4.017063334674987,
- "y": 19.47868750612689
- },
- {
- "x": -4.052512708888685,
- "y": 19.38621606663105
- },
- {
- "x": -4.091625729790707,
- "y": 19.295233668055857
- },
- {
- "x": -4.134340026518828,
- "y": 19.205885393816246
- },
- {
- "x": -4.1805874855024285,
- "y": 19.118313721500712
- },
- {
- "x": -4.230294359078329,
- "y": 19.03265829567208
- },
- {
- "x": -4.283381383091324,
- "y": 18.94905570518577
- },
- {
- "x": -4.339763903291185,
- "y": 18.867639265380973
- },
- {
- "x": -4.399352010325146,
- "y": 18.78853880549174
- },
- {
- "x": -4.4620506831100215,
- "y": 18.71188046161717
- },
- {
- "x": -4.52775994035602,
- "y": 18.637786475580825
- },
- {
- "x": -4.596374999999995,
- "y": 18.566375000000008
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_459",
- "pcb_component_id": "pcb_component_26",
- "layer": "top",
- "route": [
- {
- "x": -2.640000000000015,
- "y": 29.93999999999999
- },
- {
- "x": -2.640000000000015,
- "y": 23.39999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_460",
- "pcb_component_id": "pcb_component_26",
- "layer": "top",
- "route": [
- {
- "x": -2.640000000000015,
- "y": 23.39999999999999
- },
- {
- "x": 0.09999999999999432,
- "y": 23.39999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_461",
- "pcb_component_id": "pcb_component_26",
- "layer": "top",
- "route": [
- {
- "x": -1.2700000000000102,
- "y": 30.709999999999987
- },
- {
- "x": -1.2700000000000102,
- "y": 29.93999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_462",
- "pcb_component_id": "pcb_component_26",
- "layer": "top",
- "route": [
- {
- "x": -1.2700000000000102,
- "y": 22.629999999999995
- },
- {
- "x": -1.2700000000000102,
- "y": 23.39999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_463",
- "pcb_component_id": "pcb_component_26",
- "layer": "top",
- "route": [
- {
- "x": 0.09999999999999432,
- "y": 29.93999999999999
- },
- {
- "x": -2.640000000000015,
- "y": 29.93999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_464",
- "pcb_component_id": "pcb_component_26",
- "layer": "top",
- "route": [
- {
- "x": 0.09999999999999432,
- "y": 23.39999999999999
- },
- {
- "x": 0.09999999999999432,
- "y": 29.93999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_465",
- "pcb_component_id": "pcb_component_26",
- "layer": "top",
- "route": [
- {
- "x": -2.7700000000000102,
- "y": 32.79999999999999
- },
- {
- "x": -2.7700000000000102,
- "y": 20.539999999999992
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_466",
- "pcb_component_id": "pcb_component_26",
- "layer": "top",
- "route": [
- {
- "x": -2.7700000000000102,
- "y": 20.539999999999992
- },
- {
- "x": 0.22999999999998977,
- "y": 20.539999999999992
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_467",
- "pcb_component_id": "pcb_component_26",
- "layer": "top",
- "route": [
- {
- "x": 0.22999999999998977,
- "y": 32.79999999999999
- },
- {
- "x": -2.7700000000000102,
- "y": 32.79999999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_468",
- "pcb_component_id": "pcb_component_26",
- "layer": "top",
- "route": [
- {
- "x": 0.22999999999998977,
- "y": 20.539999999999992
- },
- {
- "x": 0.22999999999998977,
- "y": 32.79999999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_469",
- "pcb_component_id": "pcb_component_26",
- "layer": "top",
- "route": [
- {
- "x": -2.5200000000000102,
- "y": 29.819999999999993
- },
- {
- "x": -2.5200000000000102,
- "y": 23.519999999999996
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_470",
- "pcb_component_id": "pcb_component_26",
- "layer": "top",
- "route": [
- {
- "x": -2.5200000000000102,
- "y": 23.519999999999996
- },
- {
- "x": -0.020000000000010232,
- "y": 23.519999999999996
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_471",
- "pcb_component_id": "pcb_component_26",
- "layer": "top",
- "route": [
- {
- "x": -1.2700000000000102,
- "y": 31.749999999999986
- },
- {
- "x": -1.2700000000000102,
- "y": 29.819999999999993
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_472",
- "pcb_component_id": "pcb_component_26",
- "layer": "top",
- "route": [
- {
- "x": -1.2700000000000102,
- "y": 21.58999999999999
- },
- {
- "x": -1.2700000000000102,
- "y": 23.519999999999996
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_473",
- "pcb_component_id": "pcb_component_26",
- "layer": "top",
- "route": [
- {
- "x": -0.020000000000010232,
- "y": 29.819999999999993
- },
- {
- "x": -2.5200000000000102,
- "y": 29.819999999999993
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_474",
- "pcb_component_id": "pcb_component_26",
- "layer": "top",
- "route": [
- {
- "x": -0.020000000000010232,
- "y": 23.519999999999996
- },
- {
- "x": -0.020000000000010232,
- "y": 29.819999999999993
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_475",
- "pcb_component_id": "pcb_component_27",
- "layer": "top",
- "route": [
- {
- "x": -38.33000000000001,
- "y": 41.90999999999999
- },
- {
- "x": -37.56000000000002,
- "y": 41.90999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_476",
- "pcb_component_id": "pcb_component_27",
- "layer": "top",
- "route": [
- {
- "x": -37.56000000000002,
- "y": 43.27999999999999
- },
- {
- "x": -37.56000000000002,
- "y": 40.53999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_477",
- "pcb_component_id": "pcb_component_27",
- "layer": "top",
- "route": [
- {
- "x": -37.56000000000002,
- "y": 40.53999999999999
- },
- {
- "x": -31.020000000000024,
- "y": 40.53999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_478",
- "pcb_component_id": "pcb_component_27",
- "layer": "top",
- "route": [
- {
- "x": -31.020000000000024,
- "y": 43.27999999999999
- },
- {
- "x": -37.56000000000002,
- "y": 43.27999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_479",
- "pcb_component_id": "pcb_component_27",
- "layer": "top",
- "route": [
- {
- "x": -31.020000000000024,
- "y": 40.53999999999999
- },
- {
- "x": -31.020000000000024,
- "y": 43.27999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_480",
- "pcb_component_id": "pcb_component_27",
- "layer": "top",
- "route": [
- {
- "x": -30.250000000000014,
- "y": 41.90999999999999
- },
- {
- "x": -31.020000000000024,
- "y": 41.90999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_481",
- "pcb_component_id": "pcb_component_27",
- "layer": "top",
- "route": [
- {
- "x": -40.420000000000016,
- "y": 43.40999999999999
- },
- {
- "x": -40.420000000000016,
- "y": 40.40999999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_482",
- "pcb_component_id": "pcb_component_27",
- "layer": "top",
- "route": [
- {
- "x": -40.420000000000016,
- "y": 40.40999999999999
- },
- {
- "x": -28.160000000000025,
- "y": 40.40999999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_483",
- "pcb_component_id": "pcb_component_27",
- "layer": "top",
- "route": [
- {
- "x": -28.160000000000025,
- "y": 43.40999999999999
- },
- {
- "x": -40.420000000000016,
- "y": 43.40999999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_484",
- "pcb_component_id": "pcb_component_27",
- "layer": "top",
- "route": [
- {
- "x": -28.160000000000025,
- "y": 40.40999999999999
- },
- {
- "x": -28.160000000000025,
- "y": 43.40999999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_485",
- "pcb_component_id": "pcb_component_27",
- "layer": "top",
- "route": [
- {
- "x": -39.37000000000002,
- "y": 41.90999999999999
- },
- {
- "x": -37.44000000000001,
- "y": 41.90999999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_486",
- "pcb_component_id": "pcb_component_27",
- "layer": "top",
- "route": [
- {
- "x": -37.44000000000001,
- "y": 43.15999999999999
- },
- {
- "x": -37.44000000000001,
- "y": 40.65999999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_487",
- "pcb_component_id": "pcb_component_27",
- "layer": "top",
- "route": [
- {
- "x": -37.44000000000001,
- "y": 40.65999999999999
- },
- {
- "x": -31.140000000000015,
- "y": 40.65999999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_488",
- "pcb_component_id": "pcb_component_27",
- "layer": "top",
- "route": [
- {
- "x": -31.140000000000015,
- "y": 43.15999999999999
- },
- {
- "x": -37.44000000000001,
- "y": 43.15999999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_489",
- "pcb_component_id": "pcb_component_27",
- "layer": "top",
- "route": [
- {
- "x": -31.140000000000015,
- "y": 40.65999999999999
- },
- {
- "x": -31.140000000000015,
- "y": 43.15999999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_490",
- "pcb_component_id": "pcb_component_27",
- "layer": "top",
- "route": [
- {
- "x": -29.210000000000022,
- "y": 41.90999999999999
- },
- {
- "x": -31.140000000000015,
- "y": 41.90999999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_491",
- "pcb_component_id": "pcb_component_28",
- "layer": "top",
- "route": [
- {
- "x": -13.565000000000026,
- "y": 12.699999999999989
- },
- {
- "x": -12.795000000000016,
- "y": 12.699999999999989
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_492",
- "pcb_component_id": "pcb_component_28",
- "layer": "top",
- "route": [
- {
- "x": -12.795000000000016,
- "y": 14.069999999999993
- },
- {
- "x": -12.795000000000016,
- "y": 11.329999999999984
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_493",
- "pcb_component_id": "pcb_component_28",
- "layer": "top",
- "route": [
- {
- "x": -12.795000000000016,
- "y": 11.329999999999984
- },
- {
- "x": -6.255000000000024,
- "y": 11.329999999999984
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_494",
- "pcb_component_id": "pcb_component_28",
- "layer": "top",
- "route": [
- {
- "x": -6.255000000000024,
- "y": 14.069999999999993
- },
- {
- "x": -12.795000000000016,
- "y": 14.069999999999993
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_495",
- "pcb_component_id": "pcb_component_28",
- "layer": "top",
- "route": [
- {
- "x": -6.255000000000024,
- "y": 11.329999999999984
- },
- {
- "x": -6.255000000000024,
- "y": 14.069999999999993
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_496",
- "pcb_component_id": "pcb_component_28",
- "layer": "top",
- "route": [
- {
- "x": -5.485000000000014,
- "y": 12.699999999999989
- },
- {
- "x": -6.255000000000024,
- "y": 12.699999999999989
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_497",
- "pcb_component_id": "pcb_component_28",
- "layer": "top",
- "route": [
- {
- "x": -15.65500000000003,
- "y": 14.199999999999989
- },
- {
- "x": -15.65500000000003,
- "y": 11.199999999999989
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_498",
- "pcb_component_id": "pcb_component_28",
- "layer": "top",
- "route": [
- {
- "x": -15.65500000000003,
- "y": 11.199999999999989
- },
- {
- "x": -3.3950000000000102,
- "y": 11.199999999999989
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_499",
- "pcb_component_id": "pcb_component_28",
- "layer": "top",
- "route": [
- {
- "x": -3.3950000000000102,
- "y": 14.199999999999989
- },
- {
- "x": -15.65500000000003,
- "y": 14.199999999999989
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_500",
- "pcb_component_id": "pcb_component_28",
- "layer": "top",
- "route": [
- {
- "x": -3.3950000000000102,
- "y": 11.199999999999989
- },
- {
- "x": -3.3950000000000102,
- "y": 14.199999999999989
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_501",
- "pcb_component_id": "pcb_component_28",
- "layer": "top",
- "route": [
- {
- "x": -14.605000000000018,
- "y": 12.699999999999989
- },
- {
- "x": -12.675000000000011,
- "y": 12.699999999999989
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_502",
- "pcb_component_id": "pcb_component_28",
- "layer": "top",
- "route": [
- {
- "x": -12.675000000000011,
- "y": 13.949999999999989
- },
- {
- "x": -12.675000000000011,
- "y": 11.449999999999989
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_503",
- "pcb_component_id": "pcb_component_28",
- "layer": "top",
- "route": [
- {
- "x": -12.675000000000011,
- "y": 11.449999999999989
- },
- {
- "x": -6.375000000000028,
- "y": 11.449999999999989
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_504",
- "pcb_component_id": "pcb_component_28",
- "layer": "top",
- "route": [
- {
- "x": -6.375000000000028,
- "y": 13.949999999999989
- },
- {
- "x": -12.675000000000011,
- "y": 13.949999999999989
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_505",
- "pcb_component_id": "pcb_component_28",
- "layer": "top",
- "route": [
- {
- "x": -6.375000000000028,
- "y": 11.449999999999989
- },
- {
- "x": -6.375000000000028,
- "y": 13.949999999999989
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_506",
- "pcb_component_id": "pcb_component_28",
- "layer": "top",
- "route": [
- {
- "x": -4.445000000000022,
- "y": 12.699999999999989
- },
- {
- "x": -6.375000000000028,
- "y": 12.699999999999989
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_507",
- "pcb_component_id": "pcb_component_29",
- "layer": "top",
- "route": [
- {
- "x": -65.00000000000001,
- "y": -27.940000000000012
- },
- {
- "x": -64.23000000000002,
- "y": -27.940000000000012
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_508",
- "pcb_component_id": "pcb_component_29",
- "layer": "top",
- "route": [
- {
- "x": -64.23000000000002,
- "y": -26.570000000000007
- },
- {
- "x": -64.23000000000002,
- "y": -29.310000000000016
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_509",
- "pcb_component_id": "pcb_component_29",
- "layer": "top",
- "route": [
- {
- "x": -64.23000000000002,
- "y": -29.310000000000016
- },
- {
- "x": -57.690000000000026,
- "y": -29.310000000000016
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_510",
- "pcb_component_id": "pcb_component_29",
- "layer": "top",
- "route": [
- {
- "x": -57.690000000000026,
- "y": -26.570000000000007
- },
- {
- "x": -64.23000000000002,
- "y": -26.570000000000007
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_511",
- "pcb_component_id": "pcb_component_29",
- "layer": "top",
- "route": [
- {
- "x": -57.690000000000026,
- "y": -29.310000000000016
- },
- {
- "x": -57.690000000000026,
- "y": -26.570000000000007
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_512",
- "pcb_component_id": "pcb_component_29",
- "layer": "top",
- "route": [
- {
- "x": -56.920000000000016,
- "y": -27.940000000000012
- },
- {
- "x": -57.690000000000026,
- "y": -27.940000000000012
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_513",
- "pcb_component_id": "pcb_component_29",
- "layer": "top",
- "route": [
- {
- "x": -67.09000000000002,
- "y": -26.440000000000012
- },
- {
- "x": -67.09000000000002,
- "y": -29.440000000000012
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_514",
- "pcb_component_id": "pcb_component_29",
- "layer": "top",
- "route": [
- {
- "x": -67.09000000000002,
- "y": -29.440000000000012
- },
- {
- "x": -54.83000000000001,
- "y": -29.440000000000012
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_515",
- "pcb_component_id": "pcb_component_29",
- "layer": "top",
- "route": [
- {
- "x": -54.83000000000001,
- "y": -26.440000000000012
- },
- {
- "x": -67.09000000000002,
- "y": -26.440000000000012
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_516",
- "pcb_component_id": "pcb_component_29",
- "layer": "top",
- "route": [
- {
- "x": -54.83000000000001,
- "y": -29.440000000000012
- },
- {
- "x": -54.83000000000001,
- "y": -26.440000000000012
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_517",
- "pcb_component_id": "pcb_component_29",
- "layer": "top",
- "route": [
- {
- "x": -66.04000000000002,
- "y": -27.940000000000012
- },
- {
- "x": -64.11000000000001,
- "y": -27.940000000000012
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_518",
- "pcb_component_id": "pcb_component_29",
- "layer": "top",
- "route": [
- {
- "x": -64.11000000000001,
- "y": -26.690000000000012
- },
- {
- "x": -64.11000000000001,
- "y": -29.190000000000012
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_519",
- "pcb_component_id": "pcb_component_29",
- "layer": "top",
- "route": [
- {
- "x": -64.11000000000001,
- "y": -29.190000000000012
- },
- {
- "x": -57.81000000000002,
- "y": -29.190000000000012
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_520",
- "pcb_component_id": "pcb_component_29",
- "layer": "top",
- "route": [
- {
- "x": -57.81000000000002,
- "y": -26.690000000000012
- },
- {
- "x": -64.11000000000001,
- "y": -26.690000000000012
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_521",
- "pcb_component_id": "pcb_component_29",
- "layer": "top",
- "route": [
- {
- "x": -57.81000000000002,
- "y": -29.190000000000012
- },
- {
- "x": -57.81000000000002,
- "y": -26.690000000000012
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_522",
- "pcb_component_id": "pcb_component_29",
- "layer": "top",
- "route": [
- {
- "x": -55.880000000000024,
- "y": -27.940000000000012
- },
- {
- "x": -57.81000000000002,
- "y": -27.940000000000012
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_523",
- "pcb_component_id": "pcb_component_30",
- "layer": "top",
- "route": [
- {
- "x": -65.00000000000001,
- "y": -24.384000000000015
- },
- {
- "x": -64.23000000000002,
- "y": -24.384000000000015
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_524",
- "pcb_component_id": "pcb_component_30",
- "layer": "top",
- "route": [
- {
- "x": -64.23000000000002,
- "y": -23.01400000000001
- },
- {
- "x": -64.23000000000002,
- "y": -25.75400000000002
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_525",
- "pcb_component_id": "pcb_component_30",
- "layer": "top",
- "route": [
- {
- "x": -64.23000000000002,
- "y": -25.75400000000002
- },
- {
- "x": -57.690000000000026,
- "y": -25.75400000000002
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_526",
- "pcb_component_id": "pcb_component_30",
- "layer": "top",
- "route": [
- {
- "x": -57.690000000000026,
- "y": -23.01400000000001
- },
- {
- "x": -64.23000000000002,
- "y": -23.01400000000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_527",
- "pcb_component_id": "pcb_component_30",
- "layer": "top",
- "route": [
- {
- "x": -57.690000000000026,
- "y": -25.75400000000002
- },
- {
- "x": -57.690000000000026,
- "y": -23.01400000000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_528",
- "pcb_component_id": "pcb_component_30",
- "layer": "top",
- "route": [
- {
- "x": -56.920000000000016,
- "y": -24.384000000000015
- },
- {
- "x": -57.690000000000026,
- "y": -24.384000000000015
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_529",
- "pcb_component_id": "pcb_component_30",
- "layer": "top",
- "route": [
- {
- "x": -67.09000000000002,
- "y": -22.884000000000015
- },
- {
- "x": -67.09000000000002,
- "y": -25.884000000000015
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_530",
- "pcb_component_id": "pcb_component_30",
- "layer": "top",
- "route": [
- {
- "x": -67.09000000000002,
- "y": -25.884000000000015
- },
- {
- "x": -54.83000000000001,
- "y": -25.884000000000015
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_531",
- "pcb_component_id": "pcb_component_30",
- "layer": "top",
- "route": [
- {
- "x": -54.83000000000001,
- "y": -22.884000000000015
- },
- {
- "x": -67.09000000000002,
- "y": -22.884000000000015
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_532",
- "pcb_component_id": "pcb_component_30",
- "layer": "top",
- "route": [
- {
- "x": -54.83000000000001,
- "y": -25.884000000000015
- },
- {
- "x": -54.83000000000001,
- "y": -22.884000000000015
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_533",
- "pcb_component_id": "pcb_component_30",
- "layer": "top",
- "route": [
- {
- "x": -66.04000000000002,
- "y": -24.384000000000015
- },
- {
- "x": -64.11000000000001,
- "y": -24.384000000000015
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_534",
- "pcb_component_id": "pcb_component_30",
- "layer": "top",
- "route": [
- {
- "x": -64.11000000000001,
- "y": -23.134000000000015
- },
- {
- "x": -64.11000000000001,
- "y": -25.634000000000015
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_535",
- "pcb_component_id": "pcb_component_30",
- "layer": "top",
- "route": [
- {
- "x": -64.11000000000001,
- "y": -25.634000000000015
- },
- {
- "x": -57.81000000000002,
- "y": -25.634000000000015
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_536",
- "pcb_component_id": "pcb_component_30",
- "layer": "top",
- "route": [
- {
- "x": -57.81000000000002,
- "y": -23.134000000000015
- },
- {
- "x": -64.11000000000001,
- "y": -23.134000000000015
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_537",
- "pcb_component_id": "pcb_component_30",
- "layer": "top",
- "route": [
- {
- "x": -57.81000000000002,
- "y": -25.634000000000015
- },
- {
- "x": -57.81000000000002,
- "y": -23.134000000000015
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_538",
- "pcb_component_id": "pcb_component_30",
- "layer": "top",
- "route": [
- {
- "x": -55.880000000000024,
- "y": -24.384000000000015
- },
- {
- "x": -57.81000000000002,
- "y": -24.384000000000015
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_539",
- "pcb_component_id": "pcb_component_31",
- "layer": "top",
- "route": [
- {
- "x": -65.00000000000001,
- "y": -20.955000000000013
- },
- {
- "x": -64.23000000000002,
- "y": -20.955000000000013
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_540",
- "pcb_component_id": "pcb_component_31",
- "layer": "top",
- "route": [
- {
- "x": -64.23000000000002,
- "y": -19.585000000000008
- },
- {
- "x": -64.23000000000002,
- "y": -22.325000000000017
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_541",
- "pcb_component_id": "pcb_component_31",
- "layer": "top",
- "route": [
- {
- "x": -64.23000000000002,
- "y": -22.325000000000017
- },
- {
- "x": -57.690000000000026,
- "y": -22.325000000000017
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_542",
- "pcb_component_id": "pcb_component_31",
- "layer": "top",
- "route": [
- {
- "x": -57.690000000000026,
- "y": -19.585000000000008
- },
- {
- "x": -64.23000000000002,
- "y": -19.585000000000008
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_543",
- "pcb_component_id": "pcb_component_31",
- "layer": "top",
- "route": [
- {
- "x": -57.690000000000026,
- "y": -22.325000000000017
- },
- {
- "x": -57.690000000000026,
- "y": -19.585000000000008
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_544",
- "pcb_component_id": "pcb_component_31",
- "layer": "top",
- "route": [
- {
- "x": -56.920000000000016,
- "y": -20.955000000000013
- },
- {
- "x": -57.690000000000026,
- "y": -20.955000000000013
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_545",
- "pcb_component_id": "pcb_component_31",
- "layer": "top",
- "route": [
- {
- "x": -67.09000000000002,
- "y": -19.455000000000013
- },
- {
- "x": -67.09000000000002,
- "y": -22.455000000000013
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_546",
- "pcb_component_id": "pcb_component_31",
- "layer": "top",
- "route": [
- {
- "x": -67.09000000000002,
- "y": -22.455000000000013
- },
- {
- "x": -54.83000000000001,
- "y": -22.455000000000013
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_547",
- "pcb_component_id": "pcb_component_31",
- "layer": "top",
- "route": [
- {
- "x": -54.83000000000001,
- "y": -19.455000000000013
- },
- {
- "x": -67.09000000000002,
- "y": -19.455000000000013
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_548",
- "pcb_component_id": "pcb_component_31",
- "layer": "top",
- "route": [
- {
- "x": -54.83000000000001,
- "y": -22.455000000000013
- },
- {
- "x": -54.83000000000001,
- "y": -19.455000000000013
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_549",
- "pcb_component_id": "pcb_component_31",
- "layer": "top",
- "route": [
- {
- "x": -66.04000000000002,
- "y": -20.955000000000013
- },
- {
- "x": -64.11000000000001,
- "y": -20.955000000000013
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_550",
- "pcb_component_id": "pcb_component_31",
- "layer": "top",
- "route": [
- {
- "x": -64.11000000000001,
- "y": -19.705000000000013
- },
- {
- "x": -64.11000000000001,
- "y": -22.205000000000013
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_551",
- "pcb_component_id": "pcb_component_31",
- "layer": "top",
- "route": [
- {
- "x": -64.11000000000001,
- "y": -22.205000000000013
- },
- {
- "x": -57.81000000000002,
- "y": -22.205000000000013
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_552",
- "pcb_component_id": "pcb_component_31",
- "layer": "top",
- "route": [
- {
- "x": -57.81000000000002,
- "y": -19.705000000000013
- },
- {
- "x": -64.11000000000001,
- "y": -19.705000000000013
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_553",
- "pcb_component_id": "pcb_component_31",
- "layer": "top",
- "route": [
- {
- "x": -57.81000000000002,
- "y": -22.205000000000013
- },
- {
- "x": -57.81000000000002,
- "y": -19.705000000000013
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_554",
- "pcb_component_id": "pcb_component_31",
- "layer": "top",
- "route": [
- {
- "x": -55.880000000000024,
- "y": -20.955000000000013
- },
- {
- "x": -57.81000000000002,
- "y": -20.955000000000013
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_555",
- "pcb_component_id": "pcb_component_32",
- "layer": "top",
- "route": [
- {
- "x": -65.00000000000001,
- "y": -17.653000000000006
- },
- {
- "x": -64.23000000000002,
- "y": -17.653000000000006
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_556",
- "pcb_component_id": "pcb_component_32",
- "layer": "top",
- "route": [
- {
- "x": -64.23000000000002,
- "y": -16.283
- },
- {
- "x": -64.23000000000002,
- "y": -19.02300000000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_557",
- "pcb_component_id": "pcb_component_32",
- "layer": "top",
- "route": [
- {
- "x": -64.23000000000002,
- "y": -19.02300000000001
- },
- {
- "x": -57.690000000000026,
- "y": -19.02300000000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_558",
- "pcb_component_id": "pcb_component_32",
- "layer": "top",
- "route": [
- {
- "x": -57.690000000000026,
- "y": -16.283
- },
- {
- "x": -64.23000000000002,
- "y": -16.283
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_559",
- "pcb_component_id": "pcb_component_32",
- "layer": "top",
- "route": [
- {
- "x": -57.690000000000026,
- "y": -19.02300000000001
- },
- {
- "x": -57.690000000000026,
- "y": -16.283
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_560",
- "pcb_component_id": "pcb_component_32",
- "layer": "top",
- "route": [
- {
- "x": -56.920000000000016,
- "y": -17.653000000000006
- },
- {
- "x": -57.690000000000026,
- "y": -17.653000000000006
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_561",
- "pcb_component_id": "pcb_component_32",
- "layer": "top",
- "route": [
- {
- "x": -67.09000000000002,
- "y": -16.153000000000006
- },
- {
- "x": -67.09000000000002,
- "y": -19.153000000000006
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_562",
- "pcb_component_id": "pcb_component_32",
- "layer": "top",
- "route": [
- {
- "x": -67.09000000000002,
- "y": -19.153000000000006
- },
- {
- "x": -54.83000000000001,
- "y": -19.153000000000006
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_563",
- "pcb_component_id": "pcb_component_32",
- "layer": "top",
- "route": [
- {
- "x": -54.83000000000001,
- "y": -16.153000000000006
- },
- {
- "x": -67.09000000000002,
- "y": -16.153000000000006
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_564",
- "pcb_component_id": "pcb_component_32",
- "layer": "top",
- "route": [
- {
- "x": -54.83000000000001,
- "y": -19.153000000000006
- },
- {
- "x": -54.83000000000001,
- "y": -16.153000000000006
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_565",
- "pcb_component_id": "pcb_component_32",
- "layer": "top",
- "route": [
- {
- "x": -66.04000000000002,
- "y": -17.653000000000006
- },
- {
- "x": -64.11000000000001,
- "y": -17.653000000000006
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_566",
- "pcb_component_id": "pcb_component_32",
- "layer": "top",
- "route": [
- {
- "x": -64.11000000000001,
- "y": -16.403000000000006
- },
- {
- "x": -64.11000000000001,
- "y": -18.903000000000006
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_567",
- "pcb_component_id": "pcb_component_32",
- "layer": "top",
- "route": [
- {
- "x": -64.11000000000001,
- "y": -18.903000000000006
- },
- {
- "x": -57.81000000000002,
- "y": -18.903000000000006
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_568",
- "pcb_component_id": "pcb_component_32",
- "layer": "top",
- "route": [
- {
- "x": -57.81000000000002,
- "y": -16.403000000000006
- },
- {
- "x": -64.11000000000001,
- "y": -16.403000000000006
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_569",
- "pcb_component_id": "pcb_component_32",
- "layer": "top",
- "route": [
- {
- "x": -57.81000000000002,
- "y": -18.903000000000006
- },
- {
- "x": -57.81000000000002,
- "y": -16.403000000000006
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_570",
- "pcb_component_id": "pcb_component_32",
- "layer": "top",
- "route": [
- {
- "x": -55.880000000000024,
- "y": -17.653000000000006
- },
- {
- "x": -57.81000000000002,
- "y": -17.653000000000006
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_571",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": -64.873,
- "y": -35.30600000000001
- },
- {
- "x": -64.10300000000001,
- "y": -35.30600000000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_572",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": -64.10300000000001,
- "y": -33.93600000000001
- },
- {
- "x": -64.10300000000001,
- "y": -36.676000000000016
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_573",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": -64.10300000000001,
- "y": -36.676000000000016
- },
- {
- "x": -57.56300000000002,
- "y": -36.676000000000016
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_574",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": -57.56300000000002,
- "y": -33.93600000000001
- },
- {
- "x": -64.10300000000001,
- "y": -33.93600000000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_575",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": -57.56300000000002,
- "y": -36.676000000000016
- },
- {
- "x": -57.56300000000002,
- "y": -33.93600000000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_576",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": -56.793000000000006,
- "y": -35.30600000000001
- },
- {
- "x": -57.56300000000002,
- "y": -35.30600000000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_577",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": -66.96300000000001,
- "y": -33.80600000000001
- },
- {
- "x": -66.96300000000001,
- "y": -36.80600000000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_578",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": -66.96300000000001,
- "y": -36.80600000000001
- },
- {
- "x": -54.703,
- "y": -36.80600000000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_579",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": -54.703,
- "y": -33.80600000000001
- },
- {
- "x": -66.96300000000001,
- "y": -33.80600000000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_580",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": -54.703,
- "y": -36.80600000000001
- },
- {
- "x": -54.703,
- "y": -33.80600000000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_581",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": -65.91300000000001,
- "y": -35.30600000000001
- },
- {
- "x": -63.983000000000004,
- "y": -35.30600000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_582",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": -63.983000000000004,
- "y": -34.05600000000001
- },
- {
- "x": -63.983000000000004,
- "y": -36.55600000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_583",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": -63.983000000000004,
- "y": -36.55600000000001
- },
- {
- "x": -57.68300000000001,
- "y": -36.55600000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_584",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": -57.68300000000001,
- "y": -34.05600000000001
- },
- {
- "x": -63.983000000000004,
- "y": -34.05600000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_585",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": -57.68300000000001,
- "y": -36.55600000000001
- },
- {
- "x": -57.68300000000001,
- "y": -34.05600000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_586",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": -55.753000000000014,
- "y": -35.30600000000001
- },
- {
- "x": -57.68300000000001,
- "y": -35.30600000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_587",
- "pcb_component_id": "pcb_component_34",
- "layer": "top",
- "route": [
- {
- "x": -12.930000000000035,
- "y": 35.55999999999999
- },
- {
- "x": -12.160000000000025,
- "y": 35.55999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_588",
- "pcb_component_id": "pcb_component_34",
- "layer": "top",
- "route": [
- {
- "x": -12.160000000000025,
- "y": 36.929999999999986
- },
- {
- "x": -12.160000000000025,
- "y": 34.18999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_589",
- "pcb_component_id": "pcb_component_34",
- "layer": "top",
- "route": [
- {
- "x": -12.160000000000025,
- "y": 34.18999999999999
- },
- {
- "x": -5.620000000000033,
- "y": 34.18999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_590",
- "pcb_component_id": "pcb_component_34",
- "layer": "top",
- "route": [
- {
- "x": -5.620000000000033,
- "y": 36.929999999999986
- },
- {
- "x": -12.160000000000025,
- "y": 36.929999999999986
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_591",
- "pcb_component_id": "pcb_component_34",
- "layer": "top",
- "route": [
- {
- "x": -5.620000000000033,
- "y": 34.18999999999999
- },
- {
- "x": -5.620000000000033,
- "y": 36.929999999999986
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_592",
- "pcb_component_id": "pcb_component_34",
- "layer": "top",
- "route": [
- {
- "x": -4.850000000000023,
- "y": 35.55999999999999
- },
- {
- "x": -5.620000000000033,
- "y": 35.55999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_593",
- "pcb_component_id": "pcb_component_34",
- "layer": "top",
- "route": [
- {
- "x": -15.020000000000039,
- "y": 37.05999999999999
- },
- {
- "x": -15.020000000000039,
- "y": 34.05999999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_594",
- "pcb_component_id": "pcb_component_34",
- "layer": "top",
- "route": [
- {
- "x": -15.020000000000039,
- "y": 34.05999999999999
- },
- {
- "x": -2.7600000000000193,
- "y": 34.05999999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_595",
- "pcb_component_id": "pcb_component_34",
- "layer": "top",
- "route": [
- {
- "x": -2.7600000000000193,
- "y": 37.05999999999999
- },
- {
- "x": -15.020000000000039,
- "y": 37.05999999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_596",
- "pcb_component_id": "pcb_component_34",
- "layer": "top",
- "route": [
- {
- "x": -2.7600000000000193,
- "y": 34.05999999999999
- },
- {
- "x": -2.7600000000000193,
- "y": 37.05999999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_597",
- "pcb_component_id": "pcb_component_34",
- "layer": "top",
- "route": [
- {
- "x": -13.970000000000027,
- "y": 35.55999999999999
- },
- {
- "x": -12.04000000000002,
- "y": 35.55999999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_598",
- "pcb_component_id": "pcb_component_34",
- "layer": "top",
- "route": [
- {
- "x": -12.04000000000002,
- "y": 36.80999999999999
- },
- {
- "x": -12.04000000000002,
- "y": 34.30999999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_599",
- "pcb_component_id": "pcb_component_34",
- "layer": "top",
- "route": [
- {
- "x": -12.04000000000002,
- "y": 34.30999999999999
- },
- {
- "x": -5.7400000000000375,
- "y": 34.30999999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_600",
- "pcb_component_id": "pcb_component_34",
- "layer": "top",
- "route": [
- {
- "x": -5.7400000000000375,
- "y": 36.80999999999999
- },
- {
- "x": -12.04000000000002,
- "y": 36.80999999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_601",
- "pcb_component_id": "pcb_component_34",
- "layer": "top",
- "route": [
- {
- "x": -5.7400000000000375,
- "y": 34.30999999999999
- },
- {
- "x": -5.7400000000000375,
- "y": 36.80999999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_602",
- "pcb_component_id": "pcb_component_34",
- "layer": "top",
- "route": [
- {
- "x": -3.8100000000000307,
- "y": 35.55999999999999
- },
- {
- "x": -5.7400000000000375,
- "y": 35.55999999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_603",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": -64.873,
- "y": -31.750000000000014
- },
- {
- "x": -64.10300000000001,
- "y": -31.750000000000014
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_604",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": -64.10300000000001,
- "y": -30.38000000000001
- },
- {
- "x": -64.10300000000001,
- "y": -33.12000000000002
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_605",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": -64.10300000000001,
- "y": -33.12000000000002
- },
- {
- "x": -57.56300000000002,
- "y": -33.12000000000002
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_606",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": -57.56300000000002,
- "y": -30.38000000000001
- },
- {
- "x": -64.10300000000001,
- "y": -30.38000000000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_607",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": -57.56300000000002,
- "y": -33.12000000000002
- },
- {
- "x": -57.56300000000002,
- "y": -30.38000000000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_608",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": -56.793000000000006,
- "y": -31.750000000000014
- },
- {
- "x": -57.56300000000002,
- "y": -31.750000000000014
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_609",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": -66.96300000000001,
- "y": -30.250000000000014
- },
- {
- "x": -66.96300000000001,
- "y": -33.250000000000014
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_610",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": -66.96300000000001,
- "y": -33.250000000000014
- },
- {
- "x": -54.703,
- "y": -33.250000000000014
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_611",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": -54.703,
- "y": -30.250000000000014
- },
- {
- "x": -66.96300000000001,
- "y": -30.250000000000014
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_612",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": -54.703,
- "y": -33.250000000000014
- },
- {
- "x": -54.703,
- "y": -30.250000000000014
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_613",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": -65.91300000000001,
- "y": -31.750000000000014
- },
- {
- "x": -63.983000000000004,
- "y": -31.750000000000014
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_614",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": -63.983000000000004,
- "y": -30.500000000000014
- },
- {
- "x": -63.983000000000004,
- "y": -33.000000000000014
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_615",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": -63.983000000000004,
- "y": -33.000000000000014
- },
- {
- "x": -57.68300000000001,
- "y": -33.000000000000014
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_616",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": -57.68300000000001,
- "y": -30.500000000000014
- },
- {
- "x": -63.983000000000004,
- "y": -30.500000000000014
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_617",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": -57.68300000000001,
- "y": -33.000000000000014
- },
- {
- "x": -57.68300000000001,
- "y": -30.500000000000014
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_618",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": -55.753000000000014,
- "y": -31.750000000000014
- },
- {
- "x": -57.68300000000001,
- "y": -31.750000000000014
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_619",
- "pcb_component_id": "pcb_component_36",
- "layer": "top",
- "route": [
- {
- "x": -4.675000000000011,
- "y": -12.065000000000012
- },
- {
- "x": -3.905000000000001,
- "y": -12.065000000000012
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_620",
- "pcb_component_id": "pcb_component_36",
- "layer": "top",
- "route": [
- {
- "x": -3.905000000000001,
- "y": -10.695000000000007
- },
- {
- "x": -3.905000000000001,
- "y": -13.435000000000016
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_621",
- "pcb_component_id": "pcb_component_36",
- "layer": "top",
- "route": [
- {
- "x": -3.905000000000001,
- "y": -13.435000000000016
- },
- {
- "x": 2.634999999999991,
- "y": -13.435000000000016
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_622",
- "pcb_component_id": "pcb_component_36",
- "layer": "top",
- "route": [
- {
- "x": 2.634999999999991,
- "y": -10.695000000000007
- },
- {
- "x": -3.905000000000001,
- "y": -10.695000000000007
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_623",
- "pcb_component_id": "pcb_component_36",
- "layer": "top",
- "route": [
- {
- "x": 2.634999999999991,
- "y": -13.435000000000016
- },
- {
- "x": 2.634999999999991,
- "y": -10.695000000000007
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_624",
- "pcb_component_id": "pcb_component_36",
- "layer": "top",
- "route": [
- {
- "x": 3.405000000000001,
- "y": -12.065000000000012
- },
- {
- "x": 2.634999999999991,
- "y": -12.065000000000012
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_625",
- "pcb_component_id": "pcb_component_36",
- "layer": "top",
- "route": [
- {
- "x": -6.765000000000015,
- "y": -10.565000000000012
- },
- {
- "x": -6.765000000000015,
- "y": -13.565000000000012
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_626",
- "pcb_component_id": "pcb_component_36",
- "layer": "top",
- "route": [
- {
- "x": -6.765000000000015,
- "y": -13.565000000000012
- },
- {
- "x": 5.4950000000000045,
- "y": -13.565000000000012
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_627",
- "pcb_component_id": "pcb_component_36",
- "layer": "top",
- "route": [
- {
- "x": 5.4950000000000045,
- "y": -10.565000000000012
- },
- {
- "x": -6.765000000000015,
- "y": -10.565000000000012
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_628",
- "pcb_component_id": "pcb_component_36",
- "layer": "top",
- "route": [
- {
- "x": 5.4950000000000045,
- "y": -13.565000000000012
- },
- {
- "x": 5.4950000000000045,
- "y": -10.565000000000012
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_629",
- "pcb_component_id": "pcb_component_36",
- "layer": "top",
- "route": [
- {
- "x": -5.715000000000003,
- "y": -12.065000000000012
- },
- {
- "x": -3.7849999999999966,
- "y": -12.065000000000012
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_630",
- "pcb_component_id": "pcb_component_36",
- "layer": "top",
- "route": [
- {
- "x": -3.7849999999999966,
- "y": -10.815000000000012
- },
- {
- "x": -3.7849999999999966,
- "y": -13.315000000000012
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_631",
- "pcb_component_id": "pcb_component_36",
- "layer": "top",
- "route": [
- {
- "x": -3.7849999999999966,
- "y": -13.315000000000012
- },
- {
- "x": 2.5149999999999864,
- "y": -13.315000000000012
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_632",
- "pcb_component_id": "pcb_component_36",
- "layer": "top",
- "route": [
- {
- "x": 2.5149999999999864,
- "y": -10.815000000000012
- },
- {
- "x": -3.7849999999999966,
- "y": -10.815000000000012
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_633",
- "pcb_component_id": "pcb_component_36",
- "layer": "top",
- "route": [
- {
- "x": 2.5149999999999864,
- "y": -13.315000000000012
- },
- {
- "x": 2.5149999999999864,
- "y": -10.815000000000012
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_634",
- "pcb_component_id": "pcb_component_36",
- "layer": "top",
- "route": [
- {
- "x": 4.444999999999993,
- "y": -12.065000000000012
- },
- {
- "x": 2.5149999999999864,
- "y": -12.065000000000012
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_635",
- "pcb_component_id": "pcb_component_37",
- "layer": "top",
- "route": [
- {
- "x": -18.01000000000002,
- "y": -12.065000000000012
- },
- {
- "x": -17.24000000000001,
- "y": -12.065000000000012
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_636",
- "pcb_component_id": "pcb_component_37",
- "layer": "top",
- "route": [
- {
- "x": -17.24000000000001,
- "y": -10.695000000000007
- },
- {
- "x": -17.24000000000001,
- "y": -13.435000000000016
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_637",
- "pcb_component_id": "pcb_component_37",
- "layer": "top",
- "route": [
- {
- "x": -17.24000000000001,
- "y": -13.435000000000016
- },
- {
- "x": -10.700000000000017,
- "y": -13.435000000000016
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_638",
- "pcb_component_id": "pcb_component_37",
- "layer": "top",
- "route": [
- {
- "x": -10.700000000000017,
- "y": -10.695000000000007
- },
- {
- "x": -17.24000000000001,
- "y": -10.695000000000007
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_639",
- "pcb_component_id": "pcb_component_37",
- "layer": "top",
- "route": [
- {
- "x": -10.700000000000017,
- "y": -13.435000000000016
- },
- {
- "x": -10.700000000000017,
- "y": -10.695000000000007
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_640",
- "pcb_component_id": "pcb_component_37",
- "layer": "top",
- "route": [
- {
- "x": -9.930000000000007,
- "y": -12.065000000000012
- },
- {
- "x": -10.700000000000017,
- "y": -12.065000000000012
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_641",
- "pcb_component_id": "pcb_component_37",
- "layer": "top",
- "route": [
- {
- "x": -20.100000000000023,
- "y": -10.565000000000012
- },
- {
- "x": -20.100000000000023,
- "y": -13.565000000000012
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_642",
- "pcb_component_id": "pcb_component_37",
- "layer": "top",
- "route": [
- {
- "x": -20.100000000000023,
- "y": -13.565000000000012
- },
- {
- "x": -7.840000000000003,
- "y": -13.565000000000012
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_643",
- "pcb_component_id": "pcb_component_37",
- "layer": "top",
- "route": [
- {
- "x": -7.840000000000003,
- "y": -10.565000000000012
- },
- {
- "x": -20.100000000000023,
- "y": -10.565000000000012
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_644",
- "pcb_component_id": "pcb_component_37",
- "layer": "top",
- "route": [
- {
- "x": -7.840000000000003,
- "y": -13.565000000000012
- },
- {
- "x": -7.840000000000003,
- "y": -10.565000000000012
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_645",
- "pcb_component_id": "pcb_component_37",
- "layer": "top",
- "route": [
- {
- "x": -19.05000000000001,
- "y": -12.065000000000012
- },
- {
- "x": -17.120000000000005,
- "y": -12.065000000000012
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_646",
- "pcb_component_id": "pcb_component_37",
- "layer": "top",
- "route": [
- {
- "x": -17.120000000000005,
- "y": -10.815000000000012
- },
- {
- "x": -17.120000000000005,
- "y": -13.315000000000012
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_647",
- "pcb_component_id": "pcb_component_37",
- "layer": "top",
- "route": [
- {
- "x": -17.120000000000005,
- "y": -13.315000000000012
- },
- {
- "x": -10.820000000000022,
- "y": -13.315000000000012
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_648",
- "pcb_component_id": "pcb_component_37",
- "layer": "top",
- "route": [
- {
- "x": -10.820000000000022,
- "y": -10.815000000000012
- },
- {
- "x": -17.120000000000005,
- "y": -10.815000000000012
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_649",
- "pcb_component_id": "pcb_component_37",
- "layer": "top",
- "route": [
- {
- "x": -10.820000000000022,
- "y": -13.315000000000012
- },
- {
- "x": -10.820000000000022,
- "y": -10.815000000000012
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_650",
- "pcb_component_id": "pcb_component_37",
- "layer": "top",
- "route": [
- {
- "x": -8.890000000000015,
- "y": -12.065000000000012
- },
- {
- "x": -10.820000000000022,
- "y": -12.065000000000012
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_651",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": -13.565000000000026,
- "y": 6.349999999999994
- },
- {
- "x": -12.795000000000016,
- "y": 6.349999999999994
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_652",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": -12.795000000000016,
- "y": 7.719999999999999
- },
- {
- "x": -12.795000000000016,
- "y": 4.97999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_653",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": -12.795000000000016,
- "y": 4.97999999999999
- },
- {
- "x": -6.255000000000024,
- "y": 4.97999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_654",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": -6.255000000000024,
- "y": 7.719999999999999
- },
- {
- "x": -12.795000000000016,
- "y": 7.719999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_655",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": -6.255000000000024,
- "y": 4.97999999999999
- },
- {
- "x": -6.255000000000024,
- "y": 7.719999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_656",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": -5.485000000000014,
- "y": 6.349999999999994
- },
- {
- "x": -6.255000000000024,
- "y": 6.349999999999994
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_657",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": -15.65500000000003,
- "y": 7.849999999999994
- },
- {
- "x": -15.65500000000003,
- "y": 4.849999999999994
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_658",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": -15.65500000000003,
- "y": 4.849999999999994
- },
- {
- "x": -3.3950000000000102,
- "y": 4.849999999999994
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_659",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": -3.3950000000000102,
- "y": 7.849999999999994
- },
- {
- "x": -15.65500000000003,
- "y": 7.849999999999994
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_660",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": -3.3950000000000102,
- "y": 4.849999999999994
- },
- {
- "x": -3.3950000000000102,
- "y": 7.849999999999994
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_661",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": -14.605000000000018,
- "y": 6.349999999999994
- },
- {
- "x": -12.675000000000011,
- "y": 6.349999999999994
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_662",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": -12.675000000000011,
- "y": 7.599999999999994
- },
- {
- "x": -12.675000000000011,
- "y": 5.099999999999994
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_663",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": -12.675000000000011,
- "y": 5.099999999999994
- },
- {
- "x": -6.375000000000028,
- "y": 5.099999999999994
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_664",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": -6.375000000000028,
- "y": 7.599999999999994
- },
- {
- "x": -12.675000000000011,
- "y": 7.599999999999994
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_665",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": -6.375000000000028,
- "y": 5.099999999999994
- },
- {
- "x": -6.375000000000028,
- "y": 7.599999999999994
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_666",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": -4.445000000000022,
- "y": 6.349999999999994
- },
- {
- "x": -6.375000000000028,
- "y": 6.349999999999994
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_667",
- "pcb_component_id": "pcb_component_39",
- "layer": "top",
- "route": [
- {
- "x": 1.1699999999999875,
- "y": 29.93999999999999
- },
- {
- "x": 1.1699999999999875,
- "y": 23.39999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_668",
- "pcb_component_id": "pcb_component_39",
- "layer": "top",
- "route": [
- {
- "x": 1.1699999999999875,
- "y": 23.39999999999999
- },
- {
- "x": 3.9099999999999966,
- "y": 23.39999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_669",
- "pcb_component_id": "pcb_component_39",
- "layer": "top",
- "route": [
- {
- "x": 2.539999999999992,
- "y": 30.709999999999987
- },
- {
- "x": 2.539999999999992,
- "y": 29.93999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_670",
- "pcb_component_id": "pcb_component_39",
- "layer": "top",
- "route": [
- {
- "x": 2.539999999999992,
- "y": 22.629999999999995
- },
- {
- "x": 2.539999999999992,
- "y": 23.39999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_671",
- "pcb_component_id": "pcb_component_39",
- "layer": "top",
- "route": [
- {
- "x": 3.9099999999999966,
- "y": 29.93999999999999
- },
- {
- "x": 1.1699999999999875,
- "y": 29.93999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_672",
- "pcb_component_id": "pcb_component_39",
- "layer": "top",
- "route": [
- {
- "x": 3.9099999999999966,
- "y": 23.39999999999999
- },
- {
- "x": 3.9099999999999966,
- "y": 29.93999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_673",
- "pcb_component_id": "pcb_component_39",
- "layer": "top",
- "route": [
- {
- "x": 1.039999999999992,
- "y": 32.79999999999999
- },
- {
- "x": 1.039999999999992,
- "y": 20.539999999999992
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_674",
- "pcb_component_id": "pcb_component_39",
- "layer": "top",
- "route": [
- {
- "x": 1.039999999999992,
- "y": 20.539999999999992
- },
- {
- "x": 4.039999999999992,
- "y": 20.539999999999992
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_675",
- "pcb_component_id": "pcb_component_39",
- "layer": "top",
- "route": [
- {
- "x": 4.039999999999992,
- "y": 32.79999999999999
- },
- {
- "x": 1.039999999999992,
- "y": 32.79999999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_676",
- "pcb_component_id": "pcb_component_39",
- "layer": "top",
- "route": [
- {
- "x": 4.039999999999992,
- "y": 20.539999999999992
- },
- {
- "x": 4.039999999999992,
- "y": 32.79999999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_677",
- "pcb_component_id": "pcb_component_39",
- "layer": "top",
- "route": [
- {
- "x": 1.289999999999992,
- "y": 29.819999999999993
- },
- {
- "x": 1.289999999999992,
- "y": 23.519999999999996
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_678",
- "pcb_component_id": "pcb_component_39",
- "layer": "top",
- "route": [
- {
- "x": 1.289999999999992,
- "y": 23.519999999999996
- },
- {
- "x": 3.789999999999992,
- "y": 23.519999999999996
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_679",
- "pcb_component_id": "pcb_component_39",
- "layer": "top",
- "route": [
- {
- "x": 2.539999999999992,
- "y": 31.749999999999986
- },
- {
- "x": 2.539999999999992,
- "y": 29.819999999999993
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_680",
- "pcb_component_id": "pcb_component_39",
- "layer": "top",
- "route": [
- {
- "x": 2.539999999999992,
- "y": 21.58999999999999
- },
- {
- "x": 2.539999999999992,
- "y": 23.519999999999996
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_681",
- "pcb_component_id": "pcb_component_39",
- "layer": "top",
- "route": [
- {
- "x": 3.789999999999992,
- "y": 29.819999999999993
- },
- {
- "x": 1.289999999999992,
- "y": 29.819999999999993
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_682",
- "pcb_component_id": "pcb_component_39",
- "layer": "top",
- "route": [
- {
- "x": 3.789999999999992,
- "y": 23.519999999999996
- },
- {
- "x": 3.789999999999992,
- "y": 29.819999999999993
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_683",
- "pcb_component_id": "pcb_component_40",
- "layer": "top",
- "route": [
- {
- "x": -34.52000000000001,
- "y": 14.98599999999999
- },
- {
- "x": -33.750000000000014,
- "y": 14.98599999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_684",
- "pcb_component_id": "pcb_component_40",
- "layer": "top",
- "route": [
- {
- "x": -33.750000000000014,
- "y": 16.355999999999995
- },
- {
- "x": -33.750000000000014,
- "y": 13.615999999999985
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_685",
- "pcb_component_id": "pcb_component_40",
- "layer": "top",
- "route": [
- {
- "x": -33.750000000000014,
- "y": 13.615999999999985
- },
- {
- "x": -27.210000000000022,
- "y": 13.615999999999985
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_686",
- "pcb_component_id": "pcb_component_40",
- "layer": "top",
- "route": [
- {
- "x": -27.210000000000022,
- "y": 16.355999999999995
- },
- {
- "x": -33.750000000000014,
- "y": 16.355999999999995
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_687",
- "pcb_component_id": "pcb_component_40",
- "layer": "top",
- "route": [
- {
- "x": -27.210000000000022,
- "y": 13.615999999999985
- },
- {
- "x": -27.210000000000022,
- "y": 16.355999999999995
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_688",
- "pcb_component_id": "pcb_component_40",
- "layer": "top",
- "route": [
- {
- "x": -26.440000000000012,
- "y": 14.98599999999999
- },
- {
- "x": -27.210000000000022,
- "y": 14.98599999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_689",
- "pcb_component_id": "pcb_component_40",
- "layer": "top",
- "route": [
- {
- "x": -36.610000000000014,
- "y": 16.48599999999999
- },
- {
- "x": -36.610000000000014,
- "y": 13.48599999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_690",
- "pcb_component_id": "pcb_component_40",
- "layer": "top",
- "route": [
- {
- "x": -36.610000000000014,
- "y": 13.48599999999999
- },
- {
- "x": -24.350000000000023,
- "y": 13.48599999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_691",
- "pcb_component_id": "pcb_component_40",
- "layer": "top",
- "route": [
- {
- "x": -24.350000000000023,
- "y": 16.48599999999999
- },
- {
- "x": -36.610000000000014,
- "y": 16.48599999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_692",
- "pcb_component_id": "pcb_component_40",
- "layer": "top",
- "route": [
- {
- "x": -24.350000000000023,
- "y": 13.48599999999999
- },
- {
- "x": -24.350000000000023,
- "y": 16.48599999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_693",
- "pcb_component_id": "pcb_component_40",
- "layer": "top",
- "route": [
- {
- "x": -35.56000000000002,
- "y": 14.98599999999999
- },
- {
- "x": -33.63000000000001,
- "y": 14.98599999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_694",
- "pcb_component_id": "pcb_component_40",
- "layer": "top",
- "route": [
- {
- "x": -33.63000000000001,
- "y": 16.23599999999999
- },
- {
- "x": -33.63000000000001,
- "y": 13.73599999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_695",
- "pcb_component_id": "pcb_component_40",
- "layer": "top",
- "route": [
- {
- "x": -33.63000000000001,
- "y": 13.73599999999999
- },
- {
- "x": -27.330000000000013,
- "y": 13.73599999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_696",
- "pcb_component_id": "pcb_component_40",
- "layer": "top",
- "route": [
- {
- "x": -27.330000000000013,
- "y": 16.23599999999999
- },
- {
- "x": -33.63000000000001,
- "y": 16.23599999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_697",
- "pcb_component_id": "pcb_component_40",
- "layer": "top",
- "route": [
- {
- "x": -27.330000000000013,
- "y": 13.73599999999999
- },
- {
- "x": -27.330000000000013,
- "y": 16.23599999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_698",
- "pcb_component_id": "pcb_component_40",
- "layer": "top",
- "route": [
- {
- "x": -25.400000000000006,
- "y": 14.98599999999999
- },
- {
- "x": -27.330000000000013,
- "y": 14.98599999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_699",
- "pcb_component_id": "pcb_component_41",
- "layer": "top",
- "route": [
- {
- "x": -34.52000000000001,
- "y": 11.429999999999993
- },
- {
- "x": -33.750000000000014,
- "y": 11.429999999999993
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_700",
- "pcb_component_id": "pcb_component_41",
- "layer": "top",
- "route": [
- {
- "x": -33.750000000000014,
- "y": 12.799999999999997
- },
- {
- "x": -33.750000000000014,
- "y": 10.059999999999988
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_701",
- "pcb_component_id": "pcb_component_41",
- "layer": "top",
- "route": [
- {
- "x": -33.750000000000014,
- "y": 10.059999999999988
- },
- {
- "x": -27.210000000000022,
- "y": 10.059999999999988
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_702",
- "pcb_component_id": "pcb_component_41",
- "layer": "top",
- "route": [
- {
- "x": -27.210000000000022,
- "y": 12.799999999999997
- },
- {
- "x": -33.750000000000014,
- "y": 12.799999999999997
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_703",
- "pcb_component_id": "pcb_component_41",
- "layer": "top",
- "route": [
- {
- "x": -27.210000000000022,
- "y": 10.059999999999988
- },
- {
- "x": -27.210000000000022,
- "y": 12.799999999999997
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_704",
- "pcb_component_id": "pcb_component_41",
- "layer": "top",
- "route": [
- {
- "x": -26.440000000000012,
- "y": 11.429999999999993
- },
- {
- "x": -27.210000000000022,
- "y": 11.429999999999993
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_705",
- "pcb_component_id": "pcb_component_41",
- "layer": "top",
- "route": [
- {
- "x": -36.610000000000014,
- "y": 12.929999999999993
- },
- {
- "x": -36.610000000000014,
- "y": 9.929999999999993
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_706",
- "pcb_component_id": "pcb_component_41",
- "layer": "top",
- "route": [
- {
- "x": -36.610000000000014,
- "y": 9.929999999999993
- },
- {
- "x": -24.350000000000023,
- "y": 9.929999999999993
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_707",
- "pcb_component_id": "pcb_component_41",
- "layer": "top",
- "route": [
- {
- "x": -24.350000000000023,
- "y": 12.929999999999993
- },
- {
- "x": -36.610000000000014,
- "y": 12.929999999999993
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_708",
- "pcb_component_id": "pcb_component_41",
- "layer": "top",
- "route": [
- {
- "x": -24.350000000000023,
- "y": 9.929999999999993
- },
- {
- "x": -24.350000000000023,
- "y": 12.929999999999993
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_709",
- "pcb_component_id": "pcb_component_41",
- "layer": "top",
- "route": [
- {
- "x": -35.56000000000002,
- "y": 11.429999999999993
- },
- {
- "x": -33.63000000000001,
- "y": 11.429999999999993
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_710",
- "pcb_component_id": "pcb_component_41",
- "layer": "top",
- "route": [
- {
- "x": -33.63000000000001,
- "y": 12.679999999999993
- },
- {
- "x": -33.63000000000001,
- "y": 10.179999999999993
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_711",
- "pcb_component_id": "pcb_component_41",
- "layer": "top",
- "route": [
- {
- "x": -33.63000000000001,
- "y": 10.179999999999993
- },
- {
- "x": -27.330000000000013,
- "y": 10.179999999999993
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_712",
- "pcb_component_id": "pcb_component_41",
- "layer": "top",
- "route": [
- {
- "x": -27.330000000000013,
- "y": 12.679999999999993
- },
- {
- "x": -33.63000000000001,
- "y": 12.679999999999993
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_713",
- "pcb_component_id": "pcb_component_41",
- "layer": "top",
- "route": [
- {
- "x": -27.330000000000013,
- "y": 10.179999999999993
- },
- {
- "x": -27.330000000000013,
- "y": 12.679999999999993
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_714",
- "pcb_component_id": "pcb_component_41",
- "layer": "top",
- "route": [
- {
- "x": -25.400000000000006,
- "y": 11.429999999999993
- },
- {
- "x": -27.330000000000013,
- "y": 11.429999999999993
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_715",
- "pcb_component_id": "pcb_component_42",
- "layer": "top",
- "route": [
- {
- "x": -13.565000000000026,
- "y": 2.539999999999992
- },
- {
- "x": -12.795000000000016,
- "y": 2.539999999999992
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_716",
- "pcb_component_id": "pcb_component_42",
- "layer": "top",
- "route": [
- {
- "x": -12.795000000000016,
- "y": 3.9099999999999966
- },
- {
- "x": -12.795000000000016,
- "y": 1.1699999999999875
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_717",
- "pcb_component_id": "pcb_component_42",
- "layer": "top",
- "route": [
- {
- "x": -12.795000000000016,
- "y": 1.1699999999999875
- },
- {
- "x": -6.255000000000024,
- "y": 1.1699999999999875
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_718",
- "pcb_component_id": "pcb_component_42",
- "layer": "top",
- "route": [
- {
- "x": -6.255000000000024,
- "y": 3.9099999999999966
- },
- {
- "x": -12.795000000000016,
- "y": 3.9099999999999966
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_719",
- "pcb_component_id": "pcb_component_42",
- "layer": "top",
- "route": [
- {
- "x": -6.255000000000024,
- "y": 1.1699999999999875
- },
- {
- "x": -6.255000000000024,
- "y": 3.9099999999999966
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_720",
- "pcb_component_id": "pcb_component_42",
- "layer": "top",
- "route": [
- {
- "x": -5.485000000000014,
- "y": 2.539999999999992
- },
- {
- "x": -6.255000000000024,
- "y": 2.539999999999992
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_721",
- "pcb_component_id": "pcb_component_42",
- "layer": "top",
- "route": [
- {
- "x": -15.65500000000003,
- "y": 4.039999999999992
- },
- {
- "x": -15.65500000000003,
- "y": 1.039999999999992
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_722",
- "pcb_component_id": "pcb_component_42",
- "layer": "top",
- "route": [
- {
- "x": -15.65500000000003,
- "y": 1.039999999999992
- },
- {
- "x": -3.3950000000000102,
- "y": 1.039999999999992
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_723",
- "pcb_component_id": "pcb_component_42",
- "layer": "top",
- "route": [
- {
- "x": -3.3950000000000102,
- "y": 4.039999999999992
- },
- {
- "x": -15.65500000000003,
- "y": 4.039999999999992
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_724",
- "pcb_component_id": "pcb_component_42",
- "layer": "top",
- "route": [
- {
- "x": -3.3950000000000102,
- "y": 1.039999999999992
- },
- {
- "x": -3.3950000000000102,
- "y": 4.039999999999992
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_725",
- "pcb_component_id": "pcb_component_42",
- "layer": "top",
- "route": [
- {
- "x": -14.605000000000018,
- "y": 2.539999999999992
- },
- {
- "x": -12.675000000000011,
- "y": 2.539999999999992
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_726",
- "pcb_component_id": "pcb_component_42",
- "layer": "top",
- "route": [
- {
- "x": -12.675000000000011,
- "y": 3.789999999999992
- },
- {
- "x": -12.675000000000011,
- "y": 1.289999999999992
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_727",
- "pcb_component_id": "pcb_component_42",
- "layer": "top",
- "route": [
- {
- "x": -12.675000000000011,
- "y": 1.289999999999992
- },
- {
- "x": -6.375000000000028,
- "y": 1.289999999999992
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_728",
- "pcb_component_id": "pcb_component_42",
- "layer": "top",
- "route": [
- {
- "x": -6.375000000000028,
- "y": 3.789999999999992
- },
- {
- "x": -12.675000000000011,
- "y": 3.789999999999992
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_729",
- "pcb_component_id": "pcb_component_42",
- "layer": "top",
- "route": [
- {
- "x": -6.375000000000028,
- "y": 1.289999999999992
- },
- {
- "x": -6.375000000000028,
- "y": 3.789999999999992
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_730",
- "pcb_component_id": "pcb_component_42",
- "layer": "top",
- "route": [
- {
- "x": -4.445000000000022,
- "y": 2.539999999999992
- },
- {
- "x": -6.375000000000028,
- "y": 2.539999999999992
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_731",
- "pcb_component_id": "pcb_component_43",
- "layer": "top",
- "route": [
- {
- "x": -14.705000000000013,
- "y": -23.40000000000002
- },
- {
- "x": -14.705000000000013,
- "y": -29.940000000000012
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_732",
- "pcb_component_id": "pcb_component_43",
- "layer": "top",
- "route": [
- {
- "x": -14.705000000000013,
- "y": -29.940000000000012
- },
- {
- "x": -11.965000000000003,
- "y": -29.940000000000012
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_733",
- "pcb_component_id": "pcb_component_43",
- "layer": "top",
- "route": [
- {
- "x": -13.335000000000008,
- "y": -22.630000000000024
- },
- {
- "x": -13.335000000000008,
- "y": -23.40000000000002
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_734",
- "pcb_component_id": "pcb_component_43",
- "layer": "top",
- "route": [
- {
- "x": -13.335000000000008,
- "y": -30.710000000000022
- },
- {
- "x": -13.335000000000008,
- "y": -29.940000000000012
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_735",
- "pcb_component_id": "pcb_component_43",
- "layer": "top",
- "route": [
- {
- "x": -11.965000000000003,
- "y": -23.40000000000002
- },
- {
- "x": -14.705000000000013,
- "y": -23.40000000000002
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_736",
- "pcb_component_id": "pcb_component_43",
- "layer": "top",
- "route": [
- {
- "x": -11.965000000000003,
- "y": -29.940000000000012
- },
- {
- "x": -11.965000000000003,
- "y": -23.40000000000002
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_737",
- "pcb_component_id": "pcb_component_43",
- "layer": "top",
- "route": [
- {
- "x": -14.835000000000008,
- "y": -20.54000000000002
- },
- {
- "x": -14.835000000000008,
- "y": -32.80000000000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_738",
- "pcb_component_id": "pcb_component_43",
- "layer": "top",
- "route": [
- {
- "x": -14.835000000000008,
- "y": -32.80000000000001
- },
- {
- "x": -11.835000000000008,
- "y": -32.80000000000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_739",
- "pcb_component_id": "pcb_component_43",
- "layer": "top",
- "route": [
- {
- "x": -11.835000000000008,
- "y": -20.54000000000002
- },
- {
- "x": -14.835000000000008,
- "y": -20.54000000000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_740",
- "pcb_component_id": "pcb_component_43",
- "layer": "top",
- "route": [
- {
- "x": -11.835000000000008,
- "y": -32.80000000000001
- },
- {
- "x": -11.835000000000008,
- "y": -20.54000000000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_741",
- "pcb_component_id": "pcb_component_43",
- "layer": "top",
- "route": [
- {
- "x": -14.585000000000008,
- "y": -23.520000000000024
- },
- {
- "x": -14.585000000000008,
- "y": -29.82000000000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_742",
- "pcb_component_id": "pcb_component_43",
- "layer": "top",
- "route": [
- {
- "x": -14.585000000000008,
- "y": -29.82000000000002
- },
- {
- "x": -12.085000000000008,
- "y": -29.82000000000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_743",
- "pcb_component_id": "pcb_component_43",
- "layer": "top",
- "route": [
- {
- "x": -13.335000000000008,
- "y": -21.590000000000018
- },
- {
- "x": -13.335000000000008,
- "y": -23.520000000000024
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_744",
- "pcb_component_id": "pcb_component_43",
- "layer": "top",
- "route": [
- {
- "x": -13.335000000000008,
- "y": -31.750000000000014
- },
- {
- "x": -13.335000000000008,
- "y": -29.82000000000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_745",
- "pcb_component_id": "pcb_component_43",
- "layer": "top",
- "route": [
- {
- "x": -12.085000000000008,
- "y": -23.520000000000024
- },
- {
- "x": -14.585000000000008,
- "y": -23.520000000000024
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_746",
- "pcb_component_id": "pcb_component_43",
- "layer": "top",
- "route": [
- {
- "x": -12.085000000000008,
- "y": -29.82000000000002
- },
- {
- "x": -12.085000000000008,
- "y": -23.520000000000024
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_747",
- "pcb_component_id": "pcb_component_44",
- "layer": "top",
- "route": [
- {
- "x": -13.565000000000026,
- "y": -0.88900000000001
- },
- {
- "x": -12.795000000000016,
- "y": -0.88900000000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_748",
- "pcb_component_id": "pcb_component_44",
- "layer": "top",
- "route": [
- {
- "x": -12.795000000000016,
- "y": 0.48099999999999454
- },
- {
- "x": -12.795000000000016,
- "y": -2.2590000000000146
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_749",
- "pcb_component_id": "pcb_component_44",
- "layer": "top",
- "route": [
- {
- "x": -12.795000000000016,
- "y": -2.2590000000000146
- },
- {
- "x": -6.255000000000024,
- "y": -2.2590000000000146
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_750",
- "pcb_component_id": "pcb_component_44",
- "layer": "top",
- "route": [
- {
- "x": -6.255000000000024,
- "y": 0.48099999999999454
- },
- {
- "x": -12.795000000000016,
- "y": 0.48099999999999454
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_751",
- "pcb_component_id": "pcb_component_44",
- "layer": "top",
- "route": [
- {
- "x": -6.255000000000024,
- "y": -2.2590000000000146
- },
- {
- "x": -6.255000000000024,
- "y": 0.48099999999999454
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_752",
- "pcb_component_id": "pcb_component_44",
- "layer": "top",
- "route": [
- {
- "x": -5.485000000000014,
- "y": -0.88900000000001
- },
- {
- "x": -6.255000000000024,
- "y": -0.88900000000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_753",
- "pcb_component_id": "pcb_component_44",
- "layer": "top",
- "route": [
- {
- "x": -15.65500000000003,
- "y": 0.61099999999999
- },
- {
- "x": -15.65500000000003,
- "y": -2.38900000000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_754",
- "pcb_component_id": "pcb_component_44",
- "layer": "top",
- "route": [
- {
- "x": -15.65500000000003,
- "y": -2.38900000000001
- },
- {
- "x": -3.3950000000000102,
- "y": -2.38900000000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_755",
- "pcb_component_id": "pcb_component_44",
- "layer": "top",
- "route": [
- {
- "x": -3.3950000000000102,
- "y": 0.61099999999999
- },
- {
- "x": -15.65500000000003,
- "y": 0.61099999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_756",
- "pcb_component_id": "pcb_component_44",
- "layer": "top",
- "route": [
- {
- "x": -3.3950000000000102,
- "y": -2.38900000000001
- },
- {
- "x": -3.3950000000000102,
- "y": 0.61099999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_757",
- "pcb_component_id": "pcb_component_44",
- "layer": "top",
- "route": [
- {
- "x": -14.605000000000018,
- "y": -0.88900000000001
- },
- {
- "x": -12.675000000000011,
- "y": -0.88900000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_758",
- "pcb_component_id": "pcb_component_44",
- "layer": "top",
- "route": [
- {
- "x": -12.675000000000011,
- "y": 0.36099999999999
- },
- {
- "x": -12.675000000000011,
- "y": -2.13900000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_759",
- "pcb_component_id": "pcb_component_44",
- "layer": "top",
- "route": [
- {
- "x": -12.675000000000011,
- "y": -2.13900000000001
- },
- {
- "x": -6.375000000000028,
- "y": -2.13900000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_760",
- "pcb_component_id": "pcb_component_44",
- "layer": "top",
- "route": [
- {
- "x": -6.375000000000028,
- "y": 0.36099999999999
- },
- {
- "x": -12.675000000000011,
- "y": 0.36099999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_761",
- "pcb_component_id": "pcb_component_44",
- "layer": "top",
- "route": [
- {
- "x": -6.375000000000028,
- "y": -2.13900000000001
- },
- {
- "x": -6.375000000000028,
- "y": 0.36099999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_762",
- "pcb_component_id": "pcb_component_44",
- "layer": "top",
- "route": [
- {
- "x": -4.445000000000022,
- "y": -0.88900000000001
- },
- {
- "x": -6.375000000000028,
- "y": -0.88900000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_763",
- "pcb_component_id": "pcb_component_45",
- "layer": "top",
- "route": [
- {
- "x": -19.785000000000025,
- "y": -23.40000000000002
- },
- {
- "x": -19.785000000000025,
- "y": -29.940000000000012
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_764",
- "pcb_component_id": "pcb_component_45",
- "layer": "top",
- "route": [
- {
- "x": -19.785000000000025,
- "y": -29.940000000000012
- },
- {
- "x": -17.045000000000016,
- "y": -29.940000000000012
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_765",
- "pcb_component_id": "pcb_component_45",
- "layer": "top",
- "route": [
- {
- "x": -18.41500000000002,
- "y": -22.63000000000001
- },
- {
- "x": -18.41500000000002,
- "y": -23.40000000000002
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_766",
- "pcb_component_id": "pcb_component_45",
- "layer": "top",
- "route": [
- {
- "x": -18.41500000000002,
- "y": -30.710000000000008
- },
- {
- "x": -18.41500000000002,
- "y": -29.940000000000012
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_767",
- "pcb_component_id": "pcb_component_45",
- "layer": "top",
- "route": [
- {
- "x": -17.045000000000016,
- "y": -23.40000000000002
- },
- {
- "x": -19.785000000000025,
- "y": -23.40000000000002
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_768",
- "pcb_component_id": "pcb_component_45",
- "layer": "top",
- "route": [
- {
- "x": -17.045000000000016,
- "y": -29.940000000000012
- },
- {
- "x": -17.045000000000016,
- "y": -23.40000000000002
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_769",
- "pcb_component_id": "pcb_component_45",
- "layer": "top",
- "route": [
- {
- "x": -19.91500000000002,
- "y": -20.54000000000002
- },
- {
- "x": -19.91500000000002,
- "y": -32.80000000000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_770",
- "pcb_component_id": "pcb_component_45",
- "layer": "top",
- "route": [
- {
- "x": -19.91500000000002,
- "y": -32.80000000000001
- },
- {
- "x": -16.91500000000002,
- "y": -32.80000000000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_771",
- "pcb_component_id": "pcb_component_45",
- "layer": "top",
- "route": [
- {
- "x": -16.91500000000002,
- "y": -20.54000000000002
- },
- {
- "x": -19.91500000000002,
- "y": -20.54000000000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_772",
- "pcb_component_id": "pcb_component_45",
- "layer": "top",
- "route": [
- {
- "x": -16.91500000000002,
- "y": -32.80000000000001
- },
- {
- "x": -16.91500000000002,
- "y": -20.54000000000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_773",
- "pcb_component_id": "pcb_component_45",
- "layer": "top",
- "route": [
- {
- "x": -19.66500000000002,
- "y": -23.52000000000001
- },
- {
- "x": -19.66500000000002,
- "y": -29.820000000000007
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_774",
- "pcb_component_id": "pcb_component_45",
- "layer": "top",
- "route": [
- {
- "x": -19.66500000000002,
- "y": -29.820000000000007
- },
- {
- "x": -17.16500000000002,
- "y": -29.820000000000007
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_775",
- "pcb_component_id": "pcb_component_45",
- "layer": "top",
- "route": [
- {
- "x": -18.41500000000002,
- "y": -21.590000000000018
- },
- {
- "x": -18.41500000000002,
- "y": -23.52000000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_776",
- "pcb_component_id": "pcb_component_45",
- "layer": "top",
- "route": [
- {
- "x": -18.41500000000002,
- "y": -31.750000000000014
- },
- {
- "x": -18.41500000000002,
- "y": -29.820000000000007
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_777",
- "pcb_component_id": "pcb_component_45",
- "layer": "top",
- "route": [
- {
- "x": -17.16500000000002,
- "y": -23.52000000000001
- },
- {
- "x": -19.66500000000002,
- "y": -23.52000000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_778",
- "pcb_component_id": "pcb_component_45",
- "layer": "top",
- "route": [
- {
- "x": -17.16500000000002,
- "y": -29.820000000000007
- },
- {
- "x": -17.16500000000002,
- "y": -23.52000000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_779",
- "pcb_component_id": "pcb_component_46",
- "layer": "top",
- "route": [
- {
- "x": 3.829999999999984,
- "y": 11.154999999999987
- },
- {
- "x": 3.829999999999984,
- "y": 14.24499999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_780",
- "pcb_component_id": "pcb_component_46",
- "layer": "top",
- "route": [
- {
- "x": -1.950000000000017,
- "y": 15.909999999999982
- },
- {
- "x": -1.950000000000017,
- "y": 9.489999999999995
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_781",
- "pcb_component_id": "pcb_component_46",
- "layer": "top",
- "route": [
- {
- "x": -1.950000000000017,
- "y": 9.489999999999995
- },
- {
- "x": 4.47999999999999,
- "y": 9.489999999999995
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_782",
- "pcb_component_id": "pcb_component_46",
- "layer": "top",
- "route": [
- {
- "x": 4.47999999999999,
- "y": 15.909999999999982
- },
- {
- "x": -1.950000000000017,
- "y": 15.909999999999982
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_783",
- "pcb_component_id": "pcb_component_46",
- "layer": "top",
- "route": [
- {
- "x": 4.47999999999999,
- "y": 9.489999999999995
- },
- {
- "x": 4.47999999999999,
- "y": 15.909999999999982
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_784",
- "pcb_component_id": "pcb_component_46",
- "layer": "top",
- "route": [
- {
- "x": 3.769999999999982,
- "y": 11.230305999999985
- },
- {
- "x": 3.769999999999982,
- "y": 14.169693999999993
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_785",
- "pcb_component_id": "pcb_component_46",
- "layer": "top",
- "route": [
- {
- "x": 3.769999999999982,
- "y": 12.699999999999989
- },
- {
- "x": 3.5796988312781988,
- "y": 13.656708580912714
- },
- {
- "x": 3.0377669529663507,
- "y": 14.467766952966358
- },
- {
- "x": 2.2267085809127063,
- "y": 15.009698831278206
- },
- {
- "x": 1.269999999999982,
- "y": 15.199999999999989
- },
- {
- "x": 0.31329141908725755,
- "y": 15.009698831278206
- },
- {
- "x": -0.49776695296638684,
- "y": 14.467766952966358
- },
- {
- "x": -1.0396988312782351,
- "y": 13.656708580912714
- },
- {
- "x": -1.2300000000000182,
- "y": 12.699999999999989
- },
- {
- "x": -1.0396988312782351,
- "y": 11.743291419087264
- },
- {
- "x": -0.4977669529663875,
- "y": 10.93223304703362
- },
- {
- "x": 0.313291419087256,
- "y": 10.390301168721773
- },
- {
- "x": 1.2699999999999814,
- "y": 10.199999999999989
- },
- {
- "x": 2.2267085809127067,
- "y": 10.390301168721772
- },
- {
- "x": 3.0377669529663502,
- "y": 10.93223304703362
- },
- {
- "x": 3.579698831278198,
- "y": 11.743291419087262
- },
- {
- "x": 3.769999999999982,
- "y": 12.699999999999989
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_786",
- "pcb_component_id": "pcb_component_46",
- "layer": "top",
- "route": [
- {
- "x": 3.769999999999982,
- "y": 12.699999999999989
- },
- {
- "x": 3.5796988312781988,
- "y": 13.656708580912714
- },
- {
- "x": 3.0377669529663507,
- "y": 14.467766952966358
- },
- {
- "x": 2.2267085809127063,
- "y": 15.009698831278206
- },
- {
- "x": 1.269999999999982,
- "y": 15.199999999999989
- },
- {
- "x": 0.31329141908725755,
- "y": 15.009698831278206
- },
- {
- "x": -0.49776695296638684,
- "y": 14.467766952966358
- },
- {
- "x": -1.0396988312782351,
- "y": 13.656708580912714
- },
- {
- "x": -1.2300000000000182,
- "y": 12.699999999999989
- },
- {
- "x": -1.0396988312782351,
- "y": 11.743291419087264
- },
- {
- "x": -0.4977669529663875,
- "y": 10.93223304703362
- },
- {
- "x": 0.313291419087256,
- "y": 10.390301168721773
- },
- {
- "x": 1.2699999999999814,
- "y": 10.199999999999989
- },
- {
- "x": 2.2267085809127067,
- "y": 10.390301168721772
- },
- {
- "x": 3.0377669529663502,
- "y": 10.93223304703362
- },
- {
- "x": 3.579698831278198,
- "y": 11.743291419087262
- },
- {
- "x": 3.769999999999982,
- "y": 12.699999999999989
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_787",
- "pcb_component_id": "pcb_component_46",
- "layer": "top",
- "route": [
- {
- "x": -1.7199999999999989,
- "y": 12.700047999999995
- },
- {
- "x": -1.7183391916767334,
- "y": 12.799643491201607
- },
- {
- "x": -1.713361825240213,
- "y": 12.89912839445499
- },
- {
- "x": -1.705073424736952,
- "y": 12.998392298111227
- },
- {
- "x": -1.693483188909056,
- "y": 13.097325035794114
- },
- {
- "x": -1.6786039809850593,
- "y": 13.195816808666422
- },
- {
- "x": -1.660452314403983,
- "y": 13.293758307288343
- },
- {
- "x": -1.6390483344880806,
- "y": 13.39104083293266
- },
- {
- "x": -1.6144157960849554,
- "y": 13.487556418222269
- },
- {
- "x": -1.5865820372036694,
- "y": 13.583197946955949
- },
- {
- "x": -1.5555779486739425,
- "y": 13.677859272989437
- },
- {
- "x": -1.52143793986275,
- "y": 13.771435338040007
- },
- {
- "x": -1.484199900485379,
- "y": 13.863822288283572
- },
- {
- "x": -1.4439051585544291,
- "y": 13.954917589615178
- },
- {
- "x": -1.400598434512375,
- "y": 14.044620141444682
- },
- {
- "x": -1.3543277915995589,
- "y": 14.132830388901596
- },
- {
- "x": -1.305144582511815,
- "y": 14.219450433324411
- },
- {
- "x": -1.2531033924076667,
- "y": 14.30438414091168
- },
- {
- "x": -1.1982619783278494,
- "y": 14.387537249414635
- },
- {
- "x": -1.1406812050946655,
- "y": 14.468817472752448
- },
- {
- "x": -1.080424977762135,
- "y": 14.548134603434448
- },
- {
- "x": -1.0175601706920645,
- "y": 14.625400612675392
- },
- {
- "x": -0.952156553334703,
- "y": 14.700529748092691
- },
- {
- "x": -0.8842867127962677,
- "y": 14.773438628877287
- },
- {
- "x": -0.8140259732792856,
- "y": 14.844046338332447
- },
- {
- "x": -0.7414523124853929,
- "y": 14.912274513677772
- },
- {
- "x": -0.6666462750730773,
- "y": 14.97804743301883
- },
- {
- "x": -0.5896908832664849,
- "y": 15.041292099385814
- },
- {
- "x": -0.5106715447146826,
- "y": 15.101938321748065
- },
- {
- "x": -0.4296759577032958,
- "y": 15.159918792914283
- },
- {
- "x": -0.34679401382416586,
- "y": 15.215169164232435
- },
- {
- "x": -0.26211769821057374,
- "y": 15.267628117005884
- },
- {
- "x": -0.17574098744918842,
- "y": 15.317237430547024
- },
- {
- "x": -0.08775974528165875,
- "y": 15.36394204679246
- },
- {
- "x": 0.0017283837881905129,
- "y": 15.40769013140833
- },
- {
- "x": 0.09262408286332402,
- "y": 15.448433131317714
- },
- {
- "x": 0.1848264728789104,
- "y": 15.486125828586495
- },
- {
- "x": 0.27823322456094957,
- "y": 15.520726390607692
- },
- {
- "x": 0.37274067199504657,
- "y": 15.55219641652873
- },
- {
- "x": 0.46824392767800305,
- "y": 15.58050097986991
- },
- {
- "x": 0.5646369989255788,
- "y": 15.605608667287001
- },
- {
- "x": 0.6618129055067357,
- "y": 15.62749161343487
- },
- {
- "x": 0.7596637983737082,
- "y": 15.646125531893247
- },
- {
- "x": 0.8580810793565661,
- "y": 15.66148974212075
- },
- {
- "x": 0.9569555216891104,
- "y": 15.673567192406693
- },
- {
- "x": 1.0561773912321826,
- "y": 15.682344478795741
- },
- {
- "x": 1.1556365682604337,
- "y": 15.687811859964015
- },
- {
- "x": 1.2552226696767832,
- "y": 15.689963268030368
- },
- {
- "x": 1.354825171519252,
- "y": 15.688796315290674
- },
- {
- "x": 1.454333531624144,
- "y": 15.684312296867859
- },
- {
- "x": 1.55363731230932,
- "y": 15.676516189274423
- },
- {
- "x": 1.6526263029417123,
- "y": 15.665416644889461
- },
- {
- "x": 1.7511906422527659,
- "y": 15.651025982355861
- },
- {
- "x": 1.8492209402659512,
- "y": 15.633360172908738
- },
- {
- "x": 1.9466083997015744,
- "y": 15.612438822649978
- },
- {
- "x": 2.0432449367235677,
- "y": 15.588285150788764
- },
- {
- "x": 2.1390233008943653,
- "y": 15.560925963872123
- },
- {
- "x": 2.233837194205279,
- "y": 15.530391626034131
- },
- {
- "x": 2.3275813890493,
- "y": 15.496716025296777
- },
- {
- "x": 2.420151845006359,
- "y": 15.459936535959898
- },
- {
- "x": 2.5114458243107265,
- "y": 15.420093977121994
- },
- {
- "x": 2.6013620058728577,
- "y": 15.377232567377774
- },
- {
- "x": 2.6898005977289188,
- "y": 15.331399875742932
- },
- {
- "x": 2.776663447793169,
- "y": 15.282646768860474
- },
- {
- "x": 2.8618541527904426,
- "y": 15.231027354547209
- },
- {
- "x": 2.945278165247686,
- "y": 15.176598921743079
- },
- {
- "x": 3.026842898425855,
- "y": 15.119421876930048
- },
- {
- "x": 3.106457829075822,
- "y": 15.059559677090931
- },
- {
- "x": 3.184034597904059,
- "y": 14.997078759282786
- },
- {
- "x": 3.2594871076366587,
- "y": 14.932048466902785
- },
- {
- "x": 3.332731618573007,
- "y": 14.864540972728648
- },
- {
- "x": 3.403686841522898,
- "y": 14.794631198818934
- },
- {
- "x": 3.472274028023918,
- "y": 14.722396733361975
- },
- {
- "x": 3.5384170577391387,
- "y": 14.647917744566001
- },
- {
- "x": 3.60204252293795,
- "y": 14.57127689168577
- },
- {
- "x": 3.6630798099665185,
- "y": 14.492559233284553
- },
- {
- "x": 3.7214611776169875,
- "y": 14.41185213283336
- },
- {
- "x": 3.777121832309092,
- "y": 14.329245161752084
- },
- {
- "x": 3.8300000000000978,
- "y": 14.244830000000064
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_788",
- "pcb_component_id": "pcb_component_46",
- "layer": "top",
- "route": [
- {
- "x": 3.829999999999984,
- "y": 11.155169999999984
- },
- {
- "x": 3.7771218323089784,
- "y": 11.070754838247964
- },
- {
- "x": 3.721461177616874,
- "y": 10.988147867166674
- },
- {
- "x": 3.663079809966405,
- "y": 10.907440766715496
- },
- {
- "x": 3.602042522937836,
- "y": 10.828723108314264
- },
- {
- "x": 3.538417057739025,
- "y": 10.752082255434019
- },
- {
- "x": 3.4722740280238327,
- "y": 10.677603266638044
- },
- {
- "x": 3.4036868415228128,
- "y": 10.605368801181086
- },
- {
- "x": 3.3327316185729217,
- "y": 10.535459027271358
- },
- {
- "x": 3.259487107636545,
- "y": 10.46795153309722
- },
- {
- "x": 3.1840345979039455,
- "y": 10.40292124071722
- },
- {
- "x": 3.1064578290757368,
- "y": 10.34044032290906
- },
- {
- "x": 3.026842898425741,
- "y": 10.280578123069958
- },
- {
- "x": 2.945278165247572,
- "y": 10.223401078256913
- },
- {
- "x": 2.8618541527903574,
- "y": 10.168972645452783
- },
- {
- "x": 2.7766634477930836,
- "y": 10.117353231139504
- },
- {
- "x": 2.6898005977288335,
- "y": 10.068600124257046
- },
- {
- "x": 2.6013620058727724,
- "y": 10.022767432622203
- },
- {
- "x": 2.5114458243106412,
- "y": 9.979906022877984
- },
- {
- "x": 2.4201518450062736,
- "y": 9.940063464040065
- },
- {
- "x": 2.3275813890492145,
- "y": 9.903283974703186
- },
- {
- "x": 2.2338371942051936,
- "y": 9.869608373965818
- },
- {
- "x": 2.13902330089428,
- "y": 9.839074036127826
- },
- {
- "x": 2.043244936723454,
- "y": 9.811714849211185
- },
- {
- "x": 1.9466083997014891,
- "y": 9.787561177349971
- },
- {
- "x": 1.8492209402658375,
- "y": 9.766639827091211
- },
- {
- "x": 1.7511906422526522,
- "y": 9.748974017644073
- },
- {
- "x": 1.652626302941627,
- "y": 9.734583355110473
- },
- {
- "x": 1.5536373123092062,
- "y": 9.723483810725511
- },
- {
- "x": 1.4543335316240302,
- "y": 9.715687703132076
- },
- {
- "x": 1.3548251715191668,
- "y": 9.711203684709247
- },
- {
- "x": 1.2552226696766695,
- "y": 9.710036731969566
- },
- {
- "x": 1.15563656826032,
- "y": 9.71218814003592
- },
- {
- "x": 1.0561773912320689,
- "y": 9.717655521204193
- },
- {
- "x": 0.9569555216889967,
- "y": 9.726432807593227
- },
- {
- "x": 0.8580810793564524,
- "y": 9.73851025787917
- },
- {
- "x": 0.7596637983735661,
- "y": 9.753874468106673
- },
- {
- "x": 0.6618129055065936,
- "y": 9.77250838656505
- },
- {
- "x": 0.5646369989254652,
- "y": 9.79439133271292
- },
- {
- "x": 0.46824392767786094,
- "y": 9.81949902013001
- },
- {
- "x": 0.37274067199490446,
- "y": 9.84780358347119
- },
- {
- "x": 0.2782332245608359,
- "y": 9.879273609392229
- },
- {
- "x": 0.1848264728787683,
- "y": 9.913874171413426
- },
- {
- "x": 0.09262408286321033,
- "y": 9.951566868682207
- },
- {
- "x": 0.0017283837880484043,
- "y": 9.99230986859159
- },
- {
- "x": -0.08775974528180086,
- "y": 10.036057953207461
- },
- {
- "x": -0.17574098744933053,
- "y": 10.082762569452896
- },
- {
- "x": -0.26211769821071584,
- "y": 10.132371882994036
- },
- {
- "x": -0.34679401382430797,
- "y": 10.184830835767485
- },
- {
- "x": -0.4296759577034379,
- "y": 10.240081207085638
- },
- {
- "x": -0.5106715447148247,
- "y": 10.29806167825187
- },
- {
- "x": -0.5896908832666554,
- "y": 10.358707900614107
- },
- {
- "x": -0.6666462750732194,
- "y": 10.421952566981105
- },
- {
- "x": -0.741452312485535,
- "y": 10.487725486322162
- },
- {
- "x": -0.8140259732794277,
- "y": 10.555953661667488
- },
- {
- "x": -0.8842867127964098,
- "y": 10.626561371122648
- },
- {
- "x": -0.9521565533348735,
- "y": 10.699470251907243
- },
- {
- "x": -1.0175601706922066,
- "y": 10.774599387324542
- },
- {
- "x": -1.0804249777622772,
- "y": 10.851865396565486
- },
- {
- "x": -1.140681205094836,
- "y": 10.931182527247486
- },
- {
- "x": -1.19826197832802,
- "y": 11.012462750585314
- },
- {
- "x": -1.2531033924078372,
- "y": 11.095615859088255
- },
- {
- "x": -1.3051445825119856,
- "y": 11.180549566675538
- },
- {
- "x": -1.3543277915997294,
- "y": 11.267169611098353
- },
- {
- "x": -1.4005984345125455,
- "y": 11.355379858555281
- },
- {
- "x": -1.4439051585545712,
- "y": 11.445082410384785
- },
- {
- "x": -1.484199900485521,
- "y": 11.536177711716377
- },
- {
- "x": -1.521437939862892,
- "y": 11.628564661959956
- },
- {
- "x": -1.555577948674113,
- "y": 11.722140727010526
- },
- {
- "x": -1.5865820372038115,
- "y": 11.816802053044015
- },
- {
- "x": -1.6144157960850976,
- "y": 11.912443581777694
- },
- {
- "x": -1.6390483344882227,
- "y": 12.008959167067317
- },
- {
- "x": -1.6604523144040968,
- "y": 12.106241692711635
- },
- {
- "x": -1.6786039809852014,
- "y": 12.204183191333556
- },
- {
- "x": -1.6934831889091697,
- "y": 12.302674964205877
- },
- {
- "x": -1.705073424737094,
- "y": 12.401607701888764
- },
- {
- "x": -1.713361825240355,
- "y": 12.500871605545
- },
- {
- "x": -1.7183391916768755,
- "y": 12.600356508798384
- },
- {
- "x": -1.7200000000001125,
- "y": 12.699951999999996
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_789",
- "pcb_component_id": "pcb_component_46",
- "layer": "top",
- "route": [
- {
- "x": 3.769999999999982,
- "y": 11.230305999999985
- },
- {
- "x": 3.7180610289510128,
- "y": 11.145330365613177
- },
- {
- "x": 3.663234884277955,
- "y": 11.062188264284472
- },
- {
- "x": 3.6055862263783354,
- "y": 10.980977751446304
- },
- {
- "x": 3.545183044441643,
- "y": 10.90179460447051
- },
- {
- "x": 3.4820965762647234,
- "y": 10.824732209711271
- },
- {
- "x": 3.4164012242360684,
- "y": 10.749881452367774
- },
- {
- "x": 3.348174467587569,
- "y": 10.677330609296916
- },
- {
- "x": 3.2774967710178657,
- "y": 10.607165244902035
- },
- {
- "x": 3.204451489794508,
- "y": 10.539468110220668
- },
- {
- "x": 3.1291247714471524,
- "y": 10.474319045330333
- },
- {
- "x": 3.0516054541675715,
- "y": 10.411794885187447
- },
- {
- "x": 2.97198496203643,
- "y": 10.35196936901032
- },
- {
- "x": 2.890357197200302,
- "y": 10.294913053313252
- },
- {
- "x": 2.8068184291261957,
- "y": 10.240693228694127
- },
- {
- "x": 2.721467181064071,
- "y": 10.189373840473849
- },
- {
- "x": 2.634404113851275,
- "y": 10.141015413281039
- },
- {
- "x": 2.5457319071959716,
- "y": 10.095674979670974
- },
- {
- "x": 2.455555138579797,
- "y": 10.05340601286305
- },
- {
- "x": 2.3639801599219368,
- "y": 10.014258363675964
- },
- {
- "x": 2.2711149721507695,
- "y": 9.978278201735066
- },
- {
- "x": 2.1770690978307243,
- "y": 9.94550796102125
- },
- {
- "x": 2.081953451994309,
- "y": 9.915986289825483
- },
- {
- "x": 1.9858802113322724,
- "y": 9.889748005168144
- },
- {
- "x": 1.8889626818954355,
- "y": 9.866824051736799
- },
- {
- "x": 1.7913151654647947,
- "y": 9.847241465390894
- },
- {
- "x": 1.6930528247473262,
- "y": 9.831023341276477
- },
- {
- "x": 1.5942915475562813,
- "y": 9.818188806588424
- },
- {
- "x": 1.4951478101363875,
- "y": 9.808752998012338
- },
- {
- "x": 1.3957385397951896,
- "y": 9.802727043872807
- },
- {
- "x": 1.2961809770020807,
- "y": 9.800118051008965
- },
- {
- "x": 1.1965925371184767,
- "y": 9.800929096392878
- },
- {
- "x": 1.0970906719212792,
- "y": 9.805159223500652
- },
- {
- "x": 0.9977927310837345,
- "y": 9.812803443440544
- },
- {
- "x": 0.8988158237764594,
- "y": 9.823852740836728
- },
- {
- "x": 0.8002766805522015,
- "y": 9.838294084461722
- },
- {
- "x": 0.7022915156772456,
- "y": 9.8561104426051
- },
- {
- "x": 0.604975890071529,
- "y": 9.87728080316019
- },
- {
- "x": 0.5084445750193822,
- "y": 9.901780198405149
- },
- {
- "x": 0.4128114168115644,
- "y": 9.929579734449192
- },
- {
- "x": 0.31818920247815186,
- "y": 9.960646625309238
- },
- {
- "x": 0.22468952677076004,
- "y": 9.994944231576724
- },
- {
- "x": 0.13242266055084428,
- "y": 10.032432103629134
- },
- {
- "x": 0.04149742073929019,
- "y": 10.073066029335124
- },
- {
- "x": -0.04797895801900154,
- "y": 10.116798086196994
- },
- {
- "x": -0.1359009498247019,
- "y": 10.163576697869232
- },
- {
- "x": -0.2221648619783707,
- "y": 10.213346694986086
- },
- {
- "x": -0.3066689572725352,
- "y": 10.26604938022679
- },
- {
- "x": -0.3893135739777449,
- "y": 10.321622597541548
- },
- {
- "x": -0.47000124338080695,
- "y": 10.380000805456532
- },
- {
- "x": -0.5486368047365886,
- "y": 10.44111515437173
- },
- {
- "x": -0.6251275174978446,
- "y": 10.504893567760135
- },
- {
- "x": -0.6993831706908509,
- "y": 10.571260827172779
- },
- {
- "x": -0.7713161893076688,
- "y": 10.640138660949248
- },
- {
- "x": -0.8408417375895851,
- "y": 10.711445836529023
- },
- {
- "x": -0.907877819079971,
- "y": 10.785098256254912
- },
- {
- "x": -0.9723453733286931,
- "y": 10.861009056555346
- },
- {
- "x": -1.0341683691336243,
- "y": 10.939088710388916
- },
- {
- "x": -1.0932738942097444,
- "y": 11.019245132829937
- },
- {
- "x": -1.1495922411798176,
- "y": 11.10138378967082
- },
- {
- "x": -1.2030569897852956,
- "y": 11.185407808913041
- },
- {
- "x": -1.253605085220471,
- "y": 11.271218095015243
- },
- {
- "x": -1.3011769124975672,
- "y": 11.358713445763641
- },
- {
- "x": -1.345716366754857,
- "y": 11.44779067162709
- },
- {
- "x": -1.3871709194252446,
- "y": 11.538344717455885
- },
- {
- "x": -1.4254916801869797,
- "y": 11.630268786380782
- },
- {
- "x": -1.4606334546233484,
- "y": 11.723454465766238
- },
- {
- "x": -1.4925547975239226,
- "y": 11.817791855069146
- },
- {
- "x": -1.5212180617636761,
- "y": 11.913169695452481
- },
- {
- "x": -1.5465894427030378,
- "y": 12.009475501000722
- },
- {
- "x": -1.5686390180560181,
- "y": 12.106595691382623
- },
- {
- "x": -1.587340783179883,
- "y": 12.204415725804608
- },
- {
- "x": -1.6026726817440533,
- "y": 12.3028202380969
- },
- {
- "x": -1.6146166317429618,
- "y": 12.401693172773122
- },
- {
- "x": -1.6231585468212302,
- "y": 12.500917921902868
- },
- {
- "x": -1.6282883528869263,
- "y": 12.600377462635748
- },
- {
- "x": -1.6299999999924353,
- "y": 12.699954495214811
- },
- {
- "x": -1.628291469469815,
- "y": 12.799531581316586
- },
- {
- "x": -1.6231647763114552,
- "y": 12.898991282554448
- },
- {
- "x": -1.614625966793568,
- "y": 12.998216298982186
- },
- {
- "x": -1.6026851113456075,
- "y": 13.097089607434128
- },
- {
- "x": -1.5873562926732063,
- "y": 13.195494599539089
- },
- {
- "x": -1.5686575891496943,
- "y": 13.293315219244775
- },
- {
- "x": -1.5466110534948427,
- "y": 13.390436099691172
- },
- {
- "x": -1.521242686766442,
- "y": 13.486742699270849
- },
- {
- "x": -1.492582407695636,
- "y": 13.582121436716093
- },
- {
- "x": -1.460664017401342,
- "y": 13.676459825053442
- },
- {
- "x": -1.4255251595263871,
- "y": 13.769646604267606
- },
- {
- "x": -1.3872072758415186,
- "y": 13.861571872518383
- },
- {
- "x": -1.345755557370211,
- "y": 13.95212721575578
- },
- {
- "x": -1.301218891091736,
- "y": 14.041205835580428
- },
- {
- "x": -1.2536498022851106,
- "y": 14.128702675198625
- },
- {
- "x": -1.2031043925823326,
- "y": 14.21451454332329
- },
- {
- "x": -1.1496422738037495,
- "y": 14.298540235874867
- },
- {
- "x": -1.0933264976535213,
- "y": 14.380680655338509
- },
- {
- "x": -1.0342234813582536,
- "y": 14.460838927636914
- },
- {
- "x": -0.9724029293363685,
- "y": 14.538920516380841
- },
- {
- "x": -0.9079377509907829,
- "y": 14.614833334362629
- },
- {
- "x": -0.8409039747215274,
- "y": 14.68848785216126
- },
- {
- "x": -0.7713806582600284,
- "y": 14.759797203730756
- },
- {
- "x": -0.6994497954308088,
- "y": 14.82867728884763
- },
- {
- "x": -0.6251962194500322,
- "y": 14.895046872296192
- },
- {
- "x": -0.5487075028759136,
- "y": 14.95882767967511
- },
- {
- "x": -0.47007385432789306,
- "y": 15.01994448971206
- },
- {
- "x": -0.38938801209727103,
- "y": 15.078325222977412
- },
- {
- "x": -0.3067451347743031,
- "y": 15.133901026892843
- },
- {
- "x": -0.2222426890208169,
- "y": 15.186606356933979
- },
- {
- "x": -0.13598033462082526,
- "y": 15.236379053931785
- },
- {
- "x": -0.04805980694459322,
- "y": 15.283160417381353
- },
- {
- "x": 0.0414152030351147,
- "y": 15.326895274671585
- },
- {
- "x": 0.1323391710333226,
- "y": 15.367532046154167
- },
- {
- "x": 0.2246048639050855,
- "y": 15.405022805975221
- },
- {
- "x": 0.3181034661132571,
- "y": 15.439323338597646
- },
- {
- "x": 0.41272470806248407,
- "y": 15.470393190947632
- },
- {
- "x": 0.5083569961479668,
- "y": 15.49819572012396
- },
- {
- "x": 0.6048875443658233,
- "y": 15.5226981366135
- },
- {
- "x": 0.7022025073296732,
- "y": 15.543871542962322
- },
- {
- "x": 0.8001871145366692,
- "y": 15.56169096785645
- },
- {
- "x": 0.8987258057245526,
- "y": 15.576135395572365
- },
- {
- "x": 0.9977023671602296,
- "y": 15.587187790762357
- },
- {
- "x": 1.0970000686988044,
- "y": 15.594835118545504
- },
- {
- "x": 1.1965018014518876,
- "y": 15.599068359880675
- },
- {
- "x": 1.2960902159024386,
- "y": 15.599882522203274
- },
- {
- "x": 1.3956478603035691,
- "y": 15.5972766453134
- },
- {
- "x": 1.4950573191976275,
- "y": 15.591253802508234
- },
- {
- "x": 1.5942013518927922,
- "y": 15.581821096957484
- },
- {
- "x": 1.692963030733324,
- "y": 15.5689896533261
- },
- {
- "x": 1.791225879000791,
- "y": 15.552774604654203
- },
- {
- "x": 1.8888740082833237,
- "y": 15.533195074509578
- },
- {
- "x": 1.9857922551512388,
- "y": 15.510274154433858
- },
- {
- "x": 2.08186631697734,
- "y": 15.48403887670905
- },
- {
- "x": 2.176982886742394,
- "y": 15.454520182476443
- },
- {
- "x": 2.2710297866659914,
- "y": 15.421752885245425
- },
- {
- "x": 2.3638961005060253,
- "y": 15.38577562983555
- },
- {
- "x": 2.4554723043700903,
- "y": 15.346630846799798
- },
- {
- "x": 2.5456503958847634,
- "y": 15.304364702383282
- },
- {
- "x": 2.6343240215706487,
- "y": 15.25902704407605
- },
- {
- "x": 2.72138860227264,
- "y": 15.21067134182438
- },
- {
- "x": 2.806741456497548,
- "y": 15.159354624969836
- },
- {
- "x": 2.8902819215137185,
- "y": 15.105137414990494
- },
- {
- "x": 2.971911472069962,
- "y": 15.04808365412363
- },
- {
- "x": 3.051533836593194,
- "y": 14.988260629954041
- },
- {
- "x": 3.1290551107285864,
- "y": 14.925738896057027
- },
- {
- "x": 3.204383868087632,
- "y": 14.86059218878944
- },
- {
- "x": 3.277431268073798,
- "y": 14.792897340327173
- },
- {
- "x": 3.3481111606586182,
- "y": 14.722734188051476
- },
- {
- "x": 3.4163401879846447,
- "y": 14.65018548039096
- },
- {
- "x": 3.4820378826752574,
- "y": 14.575336779230511
- },
- {
- "x": 3.5451267627356344,
- "y": 14.49827635900202
- },
- {
- "x": 3.6055324229328676,
- "y": 14.419095102576009
- },
- {
- "x": 3.6631836225472796,
- "y": 14.337886394076946
- },
- {
- "x": 3.7180123693917437,
- "y": 14.254746008748697
- },
- {
- "x": 3.769953999999842,
- "y": 14.16977199999991
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_790",
- "pcb_component_id": "pcb_component_47",
- "layer": "top",
- "route": [
- {
- "x": 3.829999999999984,
- "y": 0.9949999999999903
- },
- {
- "x": 3.829999999999984,
- "y": 4.084999999999994
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_791",
- "pcb_component_id": "pcb_component_47",
- "layer": "top",
- "route": [
- {
- "x": -1.950000000000017,
- "y": 5.749999999999986
- },
- {
- "x": -1.950000000000017,
- "y": -0.6700000000000017
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_792",
- "pcb_component_id": "pcb_component_47",
- "layer": "top",
- "route": [
- {
- "x": -1.950000000000017,
- "y": -0.6700000000000017
- },
- {
- "x": 4.47999999999999,
- "y": -0.6700000000000017
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_793",
- "pcb_component_id": "pcb_component_47",
- "layer": "top",
- "route": [
- {
- "x": 4.47999999999999,
- "y": 5.749999999999986
- },
- {
- "x": -1.950000000000017,
- "y": 5.749999999999986
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_794",
- "pcb_component_id": "pcb_component_47",
- "layer": "top",
- "route": [
- {
- "x": 4.47999999999999,
- "y": -0.6700000000000017
- },
- {
- "x": 4.47999999999999,
- "y": 5.749999999999986
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_795",
- "pcb_component_id": "pcb_component_47",
- "layer": "top",
- "route": [
- {
- "x": 3.769999999999982,
- "y": 1.070305999999988
- },
- {
- "x": 3.769999999999982,
- "y": 4.009693999999996
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_796",
- "pcb_component_id": "pcb_component_47",
- "layer": "top",
- "route": [
- {
- "x": 3.769999999999982,
- "y": 2.539999999999992
- },
- {
- "x": 3.5796988312781988,
- "y": 3.4967085809127165
- },
- {
- "x": 3.0377669529663507,
- "y": 4.307766952966361
- },
- {
- "x": 2.2267085809127063,
- "y": 4.849698831278209
- },
- {
- "x": 1.269999999999982,
- "y": 5.039999999999992
- },
- {
- "x": 0.31329141908725755,
- "y": 4.849698831278209
- },
- {
- "x": -0.49776695296638684,
- "y": 4.307766952966361
- },
- {
- "x": -1.0396988312782351,
- "y": 3.496708580912717
- },
- {
- "x": -1.2300000000000182,
- "y": 2.5399999999999925
- },
- {
- "x": -1.0396988312782351,
- "y": 1.583291419087268
- },
- {
- "x": -0.4977669529663875,
- "y": 0.7722330470336234
- },
- {
- "x": 0.313291419087256,
- "y": 0.23030116872177597
- },
- {
- "x": 1.2699999999999814,
- "y": 0.03999999999999204
- },
- {
- "x": 2.2267085809127067,
- "y": 0.23030116872177553
- },
- {
- "x": 3.0377669529663502,
- "y": 0.7722330470336227
- },
- {
- "x": 3.579698831278198,
- "y": 1.583291419087266
- },
- {
- "x": 3.769999999999982,
- "y": 2.5399999999999916
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_797",
- "pcb_component_id": "pcb_component_47",
- "layer": "top",
- "route": [
- {
- "x": 3.769999999999982,
- "y": 2.539999999999992
- },
- {
- "x": 3.5796988312781988,
- "y": 3.4967085809127165
- },
- {
- "x": 3.0377669529663507,
- "y": 4.307766952966361
- },
- {
- "x": 2.2267085809127063,
- "y": 4.849698831278209
- },
- {
- "x": 1.269999999999982,
- "y": 5.039999999999992
- },
- {
- "x": 0.31329141908725755,
- "y": 4.849698831278209
- },
- {
- "x": -0.49776695296638684,
- "y": 4.307766952966361
- },
- {
- "x": -1.0396988312782351,
- "y": 3.496708580912717
- },
- {
- "x": -1.2300000000000182,
- "y": 2.5399999999999925
- },
- {
- "x": -1.0396988312782351,
- "y": 1.583291419087268
- },
- {
- "x": -0.4977669529663875,
- "y": 0.7722330470336234
- },
- {
- "x": 0.313291419087256,
- "y": 0.23030116872177597
- },
- {
- "x": 1.2699999999999814,
- "y": 0.03999999999999204
- },
- {
- "x": 2.2267085809127067,
- "y": 0.23030116872177553
- },
- {
- "x": 3.0377669529663502,
- "y": 0.7722330470336227
- },
- {
- "x": 3.579698831278198,
- "y": 1.583291419087266
- },
- {
- "x": 3.769999999999982,
- "y": 2.5399999999999916
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_798",
- "pcb_component_id": "pcb_component_47",
- "layer": "top",
- "route": [
- {
- "x": -1.7199999999999989,
- "y": 2.5400479999999988
- },
- {
- "x": -1.7183391916767334,
- "y": 2.6396434912015962
- },
- {
- "x": -1.7133618252401845,
- "y": 2.7391283944549656
- },
- {
- "x": -1.7050734247369235,
- "y": 2.838392298111188
- },
- {
- "x": -1.6934831889089992,
- "y": 2.9373250357940606
- },
- {
- "x": -1.6786039809850024,
- "y": 3.035816808666368
- },
- {
- "x": -1.6604523144039263,
- "y": 3.133758307288261
- },
- {
- "x": -1.6390483344880238,
- "y": 3.231040832932564
- },
- {
- "x": -1.6144157960848986,
- "y": 3.327556418222173
- },
- {
- "x": -1.5865820372035842,
- "y": 3.4231979469558382
- },
- {
- "x": -1.5555779486738857,
- "y": 3.5178592729893126
- },
- {
- "x": -1.5214379398626647,
- "y": 3.6114353380398683
- },
- {
- "x": -1.4841999004852937,
- "y": 3.703822288283419
- },
- {
- "x": -1.4439051585543439,
- "y": 3.7949175896149967
- },
- {
- "x": -1.4005984345122897,
- "y": 3.8846201414444863
- },
- {
- "x": -1.3543277915994736,
- "y": 3.9728303889014
- },
- {
- "x": -1.3051445825117298,
- "y": 4.059450433324187
- },
- {
- "x": -1.2531033924075814,
- "y": 4.1443841409114555
- },
- {
- "x": -1.1982619783277642,
- "y": 4.227537249414382
- },
- {
- "x": -1.1406812050945803,
- "y": 4.308817472752182
- },
- {
- "x": -1.0804249777620498,
- "y": 4.388134603434182
- },
- {
- "x": -1.0175601706919792,
- "y": 4.465400612675111
- },
- {
- "x": -0.9521565533346461,
- "y": 4.540529748092396
- },
- {
- "x": -0.8842867127961824,
- "y": 4.6134386288769775
- },
- {
- "x": -0.8140259732792003,
- "y": 4.684046338332124
- },
- {
- "x": -0.741452312485336,
- "y": 4.752274513677435
- },
- {
- "x": -0.6666462750730204,
- "y": 4.818047433018464
- },
- {
- "x": -0.5896908832664565,
- "y": 4.881292099385448
- },
- {
- "x": -0.5106715447146257,
- "y": 4.941938321747685
- },
- {
- "x": -0.42967595770323896,
- "y": 4.999918792913903
- },
- {
- "x": -0.34679401382413744,
- "y": 5.055169164232041
- },
- {
- "x": -0.2621176982105453,
- "y": 5.107628117005476
- },
- {
- "x": -0.17574098744918842,
- "y": 5.157237430546601
- },
- {
- "x": -0.08775974528165875,
- "y": 5.2039420467920365
- },
- {
- "x": 0.0017283837881620912,
- "y": 5.247690131407893
- },
- {
- "x": 0.09262408286332402,
- "y": 5.288433131317262
- },
- {
- "x": 0.184826472878882,
- "y": 5.3261258285860436
- },
- {
- "x": 0.27823322456092114,
- "y": 5.36072639060724
- },
- {
- "x": 0.3727406719949897,
- "y": 5.3921964165282645
- },
- {
- "x": 0.4682439276779462,
- "y": 5.420500979869431
- },
- {
- "x": 0.564636998925522,
- "y": 5.445608667286535
- },
- {
- "x": 0.6618129055066504,
- "y": 5.46749161343439
- },
- {
- "x": 0.7596637983735945,
- "y": 5.4861255318927675
- },
- {
- "x": 0.8580810793564808,
- "y": 5.501489742120256
- },
- {
- "x": 0.9569555216889967,
- "y": 5.5135671924061995
- },
- {
- "x": 1.0561773912320405,
- "y": 5.522344478795247
- },
- {
- "x": 1.1556365682602916,
- "y": 5.527811859963521
- },
- {
- "x": 1.255222669676641,
- "y": 5.529963268029874
- },
- {
- "x": 1.35482517151911,
- "y": 5.52879631529018
- },
- {
- "x": 1.454333531623945,
- "y": 5.524312296867365
- },
- {
- "x": 1.553637312309121,
- "y": 5.516516189273929
- },
- {
- "x": 1.6526263029415134,
- "y": 5.505416644888967
- },
- {
- "x": 1.7511906422525385,
- "y": 5.491025982355367
- },
- {
- "x": 1.8492209402657238,
- "y": 5.473360172908244
- },
- {
- "x": 1.946608399701347,
- "y": 5.4524388226494835
- },
- {
- "x": 2.043244936723312,
- "y": 5.428285150788284
- },
- {
- "x": 2.1390233008941095,
- "y": 5.400925963871657
- },
- {
- "x": 2.233837194205023,
- "y": 5.3703916260336655
- },
- {
- "x": 2.3275813890490156,
- "y": 5.336716025296312
- },
- {
- "x": 2.4201518450060746,
- "y": 5.299936535959446
- },
- {
- "x": 2.511445824310414,
- "y": 5.260093977121542
- },
- {
- "x": 2.601362005872545,
- "y": 5.217232567377323
- },
- {
- "x": 2.689800597728606,
- "y": 5.171399875742509
- },
- {
- "x": 2.7766634477928562,
- "y": 5.122646768860051
- },
- {
- "x": 2.8618541527901016,
- "y": 5.071027354546786
- },
- {
- "x": 2.9452781652473163,
- "y": 5.01659892174267
- },
- {
- "x": 3.0268428984254854,
- "y": 4.959421876929639
- },
- {
- "x": 3.1064578290754525,
- "y": 4.899559677090551
- },
- {
- "x": 3.1840345979036897,
- "y": 4.83707875928242
- },
- {
- "x": 3.259487107636261,
- "y": 4.772048466902419
- },
- {
- "x": 3.3327316185726374,
- "y": 4.704540972728296
- },
- {
- "x": 3.4036868415225285,
- "y": 4.634631198818596
- },
- {
- "x": 3.47227402802352,
- "y": 4.562396733361652
- },
- {
- "x": 3.538417057738741,
- "y": 4.487917744565692
- },
- {
- "x": 3.602042522937552,
- "y": 4.4112768916854606
- },
- {
- "x": 3.6630798099661206,
- "y": 4.3325592332842575
- },
- {
- "x": 3.7214611776165896,
- "y": 4.251852132833093
- },
- {
- "x": 3.777121832308694,
- "y": 4.169245161751817
- },
- {
- "x": 3.8299999999997,
- "y": 4.084829999999826
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_799",
- "pcb_component_id": "pcb_component_47",
- "layer": "top",
- "route": [
- {
- "x": 3.829999999999984,
- "y": 0.9951699999999875
- },
- {
- "x": 3.7771218323089784,
- "y": 0.910754838247982
- },
- {
- "x": 3.721461177616874,
- "y": 0.828147867166706
- },
- {
- "x": 3.663079809966405,
- "y": 0.7474407667155276
- },
- {
- "x": 3.602042522937836,
- "y": 0.6687231083143246
- },
- {
- "x": 3.538417057739025,
- "y": 0.592082255434093
- },
- {
- "x": 3.4722740280238042,
- "y": 0.5176032666381332
- },
- {
- "x": 3.4036868415228128,
- "y": 0.44536880118117494
- },
- {
- "x": 3.3327316185728932,
- "y": 0.37545902727147507
- },
- {
- "x": 3.259487107636545,
- "y": 0.3079515330973521
- },
- {
- "x": 3.1840345979039455,
- "y": 0.24292124071735088
- },
- {
- "x": 3.1064578290757083,
- "y": 0.18044032290920597
- },
- {
- "x": 3.026842898425741,
- "y": 0.12057812307010352
- },
- {
- "x": 2.945278165247572,
- "y": 0.06340107825708685
- },
- {
- "x": 2.8618541527903574,
- "y": 0.00897264545295684
- },
- {
- "x": 2.776663447793112,
- "y": -0.04264676886030827
- },
- {
- "x": 2.689800597728862,
- "y": -0.09139987574276631
- },
- {
- "x": 2.601362005872801,
- "y": -0.1372325673775947
- },
- {
- "x": 2.5114458243106697,
- "y": -0.18009397712179975
- },
- {
- "x": 2.420151845006302,
- "y": -0.21993653595970386
- },
- {
- "x": 2.3275813890492714,
- "y": -0.25671602529656923
- },
- {
- "x": 2.2338371942052504,
- "y": -0.2903916260339372
- },
- {
- "x": 2.139023300894337,
- "y": -0.32092596387191463
- },
- {
- "x": 2.043244936723511,
- "y": -0.3482851507885556
- },
- {
- "x": 1.946608399701546,
- "y": -0.37243882264975525
- },
- {
- "x": 1.8492209402659228,
- "y": -0.39336017290851544
- },
- {
- "x": 1.7511906422527375,
- "y": -0.41102598235563903
- },
- {
- "x": 1.6526263029417123,
- "y": -0.42541664488923914
- },
- {
- "x": 1.55363731230932,
- "y": -0.4365161892742009
- },
- {
- "x": 1.454333531624144,
- "y": -0.4443122968676221
- },
- {
- "x": 1.3548251715192805,
- "y": -0.4487963152904513
- },
- {
- "x": 1.2552226696768116,
- "y": -0.44996326803013176
- },
- {
- "x": 1.1556365682604621,
- "y": -0.44781185996377815
- },
- {
- "x": 1.056177391232211,
- "y": -0.44234447879550487
- },
- {
- "x": 0.9569555216891388,
- "y": -0.433567192406457
- },
- {
- "x": 0.8580810793566229,
- "y": -0.4214897421205137
- },
- {
- "x": 0.7596637983737651,
- "y": -0.406125531893025
- },
- {
- "x": 0.6618129055067925,
- "y": -0.38749161343463356
- },
- {
- "x": 0.5646369989256641,
- "y": -0.36560866728677865
- },
- {
- "x": 0.4682439276780883,
- "y": -0.34050097986967387
- },
- {
- "x": 0.37274067199513183,
- "y": -0.3121964165285078
- },
- {
- "x": 0.27823322456106325,
- "y": -0.2807263906074695
- },
- {
- "x": 0.18482647287899567,
- "y": -0.24612582858627263
- },
- {
- "x": 0.0926240828634377,
- "y": -0.20843313131749142
- },
- {
- "x": 0.0017283837883041997,
- "y": -0.16769013140810785
- },
- {
- "x": -0.08775974528154507,
- "y": -0.1239420467922514
- },
- {
- "x": -0.17574098744907474,
- "y": -0.0772374305468162
- },
- {
- "x": -0.2621176982104316,
- "y": -0.027628117005676245
- },
- {
- "x": -0.34679401382402375,
- "y": 0.024830835767772896
- },
- {
- "x": -0.4296759577031537,
- "y": 0.08008120708591093
- },
- {
- "x": -0.5106715447145405,
- "y": 0.13806167825212867
- },
- {
- "x": -0.5896908832663428,
- "y": 0.19870790061436594
- },
- {
- "x": -0.6666462750729067,
- "y": 0.26195256698136404
- },
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_291",
+ "pcb_component_id": "pcb_component_44",
+ "layer": "top",
+ "route": [
{
- "x": -0.7414523124852224,
- "y": 0.3277254863224073
+ "x": -13.565000000000026,
+ "y": -0.88900000000001
},
{
- "x": -0.8140259732791151,
- "y": 0.3959536616677184
- },
+ "x": -12.795000000000016,
+ "y": -0.88900000000001
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_292",
+ "pcb_component_id": "pcb_component_44",
+ "layer": "top",
+ "route": [
{
- "x": -0.8842867127960972,
- "y": 0.46656137112287865
+ "x": -12.795000000000016,
+ "y": 0.48099999999999454
},
{
- "x": -0.9521565533345324,
- "y": 0.5394702519074599
- },
+ "x": -12.795000000000016,
+ "y": -2.2590000000000146
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_293",
+ "pcb_component_id": "pcb_component_44",
+ "layer": "top",
+ "route": [
{
- "x": -1.0175601706918656,
- "y": 0.614599387324759
+ "x": -12.795000000000016,
+ "y": -2.2590000000000146
},
{
- "x": -1.0804249777619361,
- "y": 0.6918653965656887
- },
+ "x": -6.255000000000024,
+ "y": -2.2590000000000146
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_294",
+ "pcb_component_id": "pcb_component_44",
+ "layer": "top",
+ "route": [
{
- "x": -1.1406812050944666,
- "y": 0.7711825272476887
+ "x": -6.255000000000024,
+ "y": 0.48099999999999454
},
{
- "x": -1.198261978327679,
- "y": 0.852462750585488
- },
+ "x": -12.795000000000016,
+ "y": 0.48099999999999454
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_295",
+ "pcb_component_id": "pcb_component_44",
+ "layer": "top",
+ "route": [
{
- "x": -1.2531033924074677,
- "y": 0.9356158590884434
+ "x": -6.255000000000024,
+ "y": -2.2590000000000146
},
{
- "x": -1.3051445825116161,
- "y": 1.0205495666757116
- },
+ "x": -6.255000000000024,
+ "y": 0.48099999999999454
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_296",
+ "pcb_component_id": "pcb_component_44",
+ "layer": "top",
+ "route": [
{
- "x": -1.35432779159936,
- "y": 1.107169611098513
+ "x": -5.485000000000014,
+ "y": -0.88900000000001
},
{
- "x": -1.400598434512176,
- "y": 1.1953798585554267
- },
+ "x": -6.255000000000024,
+ "y": -0.88900000000001
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_297",
+ "pcb_component_id": "pcb_component_45",
+ "layer": "top",
+ "route": [
{
- "x": -1.4439051585542018,
- "y": 1.2850824103849163
+ "x": -19.785000000000025,
+ "y": -23.40000000000002
},
{
- "x": -1.48419990048518,
- "y": 1.3761777117165082
- },
+ "x": -19.785000000000025,
+ "y": -29.940000000000012
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_298",
+ "pcb_component_id": "pcb_component_45",
+ "layer": "top",
+ "route": [
{
- "x": -1.5214379398625226,
- "y": 1.4685646619600732
+ "x": -19.785000000000025,
+ "y": -29.940000000000012
},
{
- "x": -1.5555779486737435,
- "y": 1.562140727010629
- },
+ "x": -17.045000000000016,
+ "y": -29.940000000000012
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_299",
+ "pcb_component_id": "pcb_component_45",
+ "layer": "top",
+ "route": [
{
- "x": -1.586582037203442,
- "y": 1.6568020530441174
+ "x": -18.41500000000002,
+ "y": -22.63000000000001
},
{
- "x": -1.6144157960847565,
- "y": 1.7524435817777828
- },
+ "x": -18.41500000000002,
+ "y": -23.40000000000002
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_300",
+ "pcb_component_id": "pcb_component_45",
+ "layer": "top",
+ "route": [
{
- "x": -1.6390483344878533,
- "y": 1.8489591670673917
+ "x": -18.41500000000002,
+ "y": -30.710000000000008
},
{
- "x": -1.6604523144037557,
- "y": 1.9462416927116948
- },
+ "x": -18.41500000000002,
+ "y": -29.940000000000012
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_301",
+ "pcb_component_id": "pcb_component_45",
+ "layer": "top",
+ "route": [
{
- "x": -1.6786039809848603,
- "y": 2.0441831913336017
+ "x": -17.045000000000016,
+ "y": -23.40000000000002
},
{
- "x": -1.693483188908857,
- "y": 2.1426749642059093
- },
+ "x": -19.785000000000025,
+ "y": -23.40000000000002
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_302",
+ "pcb_component_id": "pcb_component_45",
+ "layer": "top",
+ "route": [
{
- "x": -1.705073424736753,
- "y": 2.241607701888796
+ "x": -17.045000000000016,
+ "y": -29.940000000000012
},
{
- "x": -1.713361825240014,
- "y": 2.3408716055450185
- },
+ "x": -17.045000000000016,
+ "y": -23.40000000000002
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_303",
+ "pcb_component_id": "pcb_component_46",
+ "layer": "top",
+ "route": [
{
- "x": -1.718339191676563,
- "y": 2.440356508798388
+ "x": 3.829999999999984,
+ "y": 11.154999999999987
},
{
- "x": -1.7199999999998,
- "y": 2.5399519999999995
+ "x": 3.829999999999984,
+ "y": 14.24499999999999
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_800",
- "pcb_component_id": "pcb_component_47",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_304",
+ "pcb_component_id": "pcb_component_46",
"layer": "top",
"route": [
{
"x": 3.769999999999982,
- "y": 1.070305999999988
+ "y": 12.699999999999989
},
{
- "x": 3.7180610289510128,
- "y": 0.9853303656131942
+ "x": 3.5796988312781988,
+ "y": 13.656708580912714
},
{
- "x": 3.6632348842779265,
- "y": 0.9021882642844901
+ "x": 3.0377669529663507,
+ "y": 14.467766952966358
},
{
- "x": 3.605586226378307,
- "y": 0.8209777514463212
+ "x": 2.2267085809127063,
+ "y": 15.009698831278206
},
{
- "x": 3.5451830444416146,
- "y": 0.7417946044705417
+ "x": 1.269999999999982,
+ "y": 15.199999999999989
},
{
- "x": 3.482096576264695,
- "y": 0.6647322097113033
+ "x": 0.31329141908725755,
+ "y": 15.009698831278206
},
{
- "x": 3.41640122423604,
- "y": 0.5898814523678197
+ "x": -0.49776695296638684,
+ "y": 14.467766952966358
},
{
- "x": 3.348174467587512,
- "y": 0.5173306092969767
+ "x": -1.0396988312782351,
+ "y": 13.656708580912714
},
{
- "x": 3.277496771017809,
- "y": 0.4471652449020951
+ "x": -1.2300000000000182,
+ "y": 12.699999999999989
},
{
- "x": 3.204451489794451,
- "y": 0.3794681102207278
+ "x": -1.0396988312782351,
+ "y": 11.743291419087264
},
{
- "x": 3.129124771447124,
- "y": 0.3143190453304072
+ "x": -0.4977669529663875,
+ "y": 10.93223304703362
},
{
- "x": 3.0516054541675146,
- "y": 0.251794885187536
+ "x": 0.313291419087256,
+ "y": 10.390301168721773
},
{
- "x": 2.971984962036373,
- "y": 0.1919693690104225
+ "x": 1.2699999999999814,
+ "y": 10.199999999999989
},
{
- "x": 2.8903571972002453,
- "y": 0.13491305331335468
+ "x": 2.2267085809127067,
+ "y": 10.390301168721772
},
{
- "x": 2.806818429126139,
- "y": 0.0806932286942299
+ "x": 3.0377669529663502,
+ "y": 10.93223304703362
},
{
- "x": 2.721467181064014,
- "y": 0.02937384047396563
+ "x": 3.579698831278198,
+ "y": 11.743291419087262
},
{
- "x": 2.6344041138511898,
- "y": -0.018984586718829632
+ "x": 3.769999999999982,
+ "y": 12.699999999999989
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_305",
+ "pcb_component_id": "pcb_component_46",
+ "layer": "top",
+ "route": [
+ {
+ "x": -1.7199999999999989,
+ "y": 12.700047999999995
},
{
- "x": 2.545731907195915,
- "y": -0.0643250203288801
+ "x": -1.7183391916767334,
+ "y": 12.799643491201607
},
{
- "x": 2.45555513857974,
- "y": -0.10659398713680446
+ "x": -1.713361825240213,
+ "y": 12.89912839445499
},
{
- "x": 2.3639801599218515,
- "y": -0.1457416363238906
+ "x": -1.705073424736952,
+ "y": 12.998392298111227
},
{
- "x": 2.2711149721507127,
- "y": -0.18172179826477475
+ "x": -1.693483188909056,
+ "y": 13.097325035794114
},
{
- "x": 2.177069097830639,
- "y": -0.21449203897859093
+ "x": -1.6786039809850593,
+ "y": 13.195816808666422
},
{
- "x": 2.081953451994252,
- "y": -0.24401371017434315
+ "x": -1.660452314403983,
+ "y": 13.293758307288343
},
{
- "x": 1.9858802113322156,
- "y": -0.27025199483166773
+ "x": -1.6390483344880806,
+ "y": 13.39104083293266
},
{
- "x": 1.8889626818953502,
- "y": -0.29317594826301274
+ "x": -1.6144157960849554,
+ "y": 13.487556418222269
},
{
- "x": 1.7913151654647095,
- "y": -0.31275853460890346
+ "x": -1.5865820372036694,
+ "y": 13.583197946955949
},
{
- "x": 1.6930528247472694,
- "y": -0.32897665872330606
+ "x": -1.5555779486739425,
+ "y": 13.677859272989437
},
{
- "x": 1.5942915475562245,
- "y": -0.34181119341134547
+ "x": -1.52143793986275,
+ "y": 13.771435338040007
},
{
- "x": 1.4951478101363307,
- "y": -0.3512470019874314
+ "x": -1.484199900485379,
+ "y": 13.863822288283572
},
{
- "x": 1.3957385397951327,
- "y": -0.3572729561269483
+ "x": -1.4439051585544291,
+ "y": 13.954917589615178
},
{
- "x": 1.2961809770020238,
- "y": -0.3598819489907896
+ "x": -1.400598434512375,
+ "y": 14.044620141444682
},
{
- "x": 1.1965925371184198,
- "y": -0.3590709036068773
+ "x": -1.3543277915995589,
+ "y": 14.132830388901596
},
{
- "x": 1.0970906719212508,
- "y": -0.3548407764990884
+ "x": -1.305144582511815,
+ "y": 14.219450433324411
},
{
- "x": 0.997792731083706,
- "y": -0.347196556559183
+ "x": -1.2531033924076667,
+ "y": 14.30438414091168
},
{
- "x": 0.8988158237764026,
- "y": -0.33614725916299903
+ "x": -1.1982619783278494,
+ "y": 14.387537249414635
},
{
- "x": 0.800276680552173,
- "y": -0.3217059155380042
+ "x": -1.1406812050946655,
+ "y": 14.468817472752448
},
{
- "x": 0.7022915156772171,
- "y": -0.3038895573946121
+ "x": -1.080424977762135,
+ "y": 14.548134603434448
},
{
- "x": 0.6049758900715005,
- "y": -0.2827191968395226
+ "x": -1.0175601706920645,
+ "y": 14.625400612675392
},
{
- "x": 0.5084445750193538,
- "y": -0.2582198015945494
+ "x": -0.952156553334703,
+ "y": 14.700529748092691
},
{
- "x": 0.412811416811536,
- "y": -0.23042026555049233
+ "x": -0.8842867127962677,
+ "y": 14.773438628877287
},
{
- "x": 0.31818920247812343,
- "y": -0.19935337469044612
+ "x": -0.8140259732792856,
+ "y": 14.844046338332447
},
{
- "x": 0.22468952677076004,
- "y": -0.16505576842294545
+ "x": -0.7414523124853929,
+ "y": 14.912274513677772
},
{
- "x": 0.13242266055081586,
- "y": -0.127567896370536
+ "x": -0.6666462750730773,
+ "y": 14.97804743301883
},
{
- "x": 0.04149742073929019,
- "y": -0.08693397066454622
+ "x": -0.5896908832664849,
+ "y": 15.041292099385814
},
{
- "x": -0.04797895801897312,
- "y": -0.04320191380266181
+ "x": -0.5106715447146826,
+ "y": 15.101938321748065
},
{
- "x": -0.1359009498247019,
- "y": 0.003576697869576151
+ "x": -0.4296759577032958,
+ "y": 15.159918792914283
},
{
- "x": -0.2221648619783423,
- "y": 0.05334669498643052
+ "x": -0.34679401382416586,
+ "y": 15.215169164232435
},
{
- "x": -0.30666895727250676,
- "y": 0.10604938022714805
+ "x": -0.26211769821057374,
+ "y": 15.267628117005884
},
{
- "x": -0.3893135739777165,
- "y": 0.161622597541907
+ "x": -0.17574098744918842,
+ "y": 15.317237430547024
},
{
- "x": -0.47000124338077853,
- "y": 0.22000080545690537
+ "x": -0.08775974528165875,
+ "y": 15.36394204679246
},
{
- "x": -0.5486368047365602,
- "y": 0.28111515437210244
+ "x": 0.0017283837881905129,
+ "y": 15.40769013140833
},
{
- "x": -0.6251275174977877,
- "y": 0.34489356776050784
+ "x": 0.09262408286332402,
+ "y": 15.448433131317714
},
{
- "x": -0.699383170690794,
- "y": 0.4112608271731517
+ "x": 0.1848264728789104,
+ "y": 15.486125828586495
},
{
- "x": -0.7713161893076119,
- "y": 0.48013866094962054
+ "x": 0.27823322456094957,
+ "y": 15.520726390607692
},
{
- "x": -0.8408417375894999,
- "y": 0.5514458365294104
+ "x": 0.37274067199504657,
+ "y": 15.55219641652873
},
{
- "x": -0.9078778190799142,
- "y": 0.6250982562552849
+ "x": 0.46824392767800305,
+ "y": 15.58050097986991
},
{
- "x": -0.9723453733286078,
- "y": 0.7010090565557334
+ "x": 0.5646369989255788,
+ "y": 15.605608667287001
},
{
- "x": -1.034168369133539,
- "y": 0.7790887103893027
+ "x": 0.6618129055067357,
+ "y": 15.62749161343487
},
{
- "x": -1.0932738942096591,
- "y": 0.8592451328303241
+ "x": 0.7596637983737082,
+ "y": 15.646125531893247
},
{
- "x": -1.149592241179704,
- "y": 0.9413837896712067
+ "x": 0.8580810793565661,
+ "y": 15.66148974212075
},
{
- "x": -1.203056989785182,
- "y": 1.0254078089134282
+ "x": 0.9569555216891104,
+ "y": 15.673567192406693
},
{
- "x": -1.2536050852203573,
- "y": 1.11121809501563
+ "x": 1.0561773912321826,
+ "y": 15.682344478795741
},
{
- "x": -1.3011769124974535,
- "y": 1.198713445764028
+ "x": 1.1556365682604337,
+ "y": 15.687811859964015
},
{
- "x": -1.345716366754715,
- "y": 1.2877906716274765
+ "x": 1.2552226696767832,
+ "y": 15.689963268030368
},
{
- "x": -1.387170919425131,
- "y": 1.3783447174562724
+ "x": 1.354825171519252,
+ "y": 15.688796315290674
},
{
- "x": -1.4254916801868376,
- "y": 1.470268786381169
+ "x": 1.454333531624144,
+ "y": 15.684312296867859
},
{
- "x": -1.4606334546232063,
- "y": 1.5634544657666254
+ "x": 1.55363731230932,
+ "y": 15.676516189274423
},
{
- "x": -1.4925547975237805,
- "y": 1.657791855069533
+ "x": 1.6526263029417123,
+ "y": 15.665416644889461
},
{
- "x": -1.5212180617635056,
- "y": 1.7531696954528684
+ "x": 1.7511906422527659,
+ "y": 15.651025982355861
},
{
- "x": -1.5465894427028672,
- "y": 1.849475501001109
+ "x": 1.8492209402659512,
+ "y": 15.633360172908738
},
{
- "x": -1.5686390180558476,
- "y": 1.9465956913830098
+ "x": 1.9466083997015744,
+ "y": 15.612438822649978
},
{
- "x": -1.587340783179684,
- "y": 2.0444157258049955
+ "x": 2.0432449367235677,
+ "y": 15.588285150788764
},
{
- "x": -1.6026726817438828,
- "y": 2.1428202380972863
+ "x": 2.1390233008943653,
+ "y": 15.560925963872123
},
{
- "x": -1.6146166317427628,
- "y": 2.241693172773509
+ "x": 2.233837194205279,
+ "y": 15.530391626034131
},
{
- "x": -1.6231585468210312,
- "y": 2.340917921903255
+ "x": 2.3275813890493,
+ "y": 15.496716025296777
},
{
- "x": -1.628288352886699,
- "y": 2.440377462636121
+ "x": 2.420151845006359,
+ "y": 15.459936535959898
},
{
- "x": -1.629999999992208,
- "y": 2.5399544952151842
+ "x": 2.5114458243107265,
+ "y": 15.420093977121994
},
{
- "x": -1.6282914694695876,
- "y": 2.639531581316959
+ "x": 2.6013620058728577,
+ "y": 15.377232567377774
},
{
- "x": -1.6231647763112278,
- "y": 2.738991282554821
+ "x": 2.6898005977289188,
+ "y": 15.331399875742932
},
{
- "x": -1.6146259667933407,
- "y": 2.8382162989825446
+ "x": 2.776663447793169,
+ "y": 15.282646768860474
},
{
- "x": -1.6026851113453517,
- "y": 2.937089607434501
+ "x": 2.8618541527904426,
+ "y": 15.231027354547209
},
{
- "x": -1.587356292672979,
- "y": 3.0354945995394473
+ "x": 2.945278165247686,
+ "y": 15.176598921743079
},
{
- "x": -1.568657589149467,
- "y": 3.1333152192451337
+ "x": 3.026842898425855,
+ "y": 15.119421876930048
},
{
- "x": -1.546611053494587,
- "y": 3.2304360996915307
+ "x": 3.106457829075822,
+ "y": 15.059559677090931
},
{
- "x": -1.5212426867661861,
- "y": 3.3267426992712075
+ "x": 3.184034597904059,
+ "y": 14.997078759282786
},
{
- "x": -1.4925824076953802,
- "y": 3.422121436716438
+ "x": 3.2594871076366587,
+ "y": 14.932048466902785
},
{
- "x": -1.4606640174010863,
- "y": 3.5164598250537864
+ "x": 3.332731618573007,
+ "y": 14.864540972728648
},
{
- "x": -1.425525159526103,
- "y": 3.6096466042679367
+ "x": 3.403686841522898,
+ "y": 14.794631198818934
},
{
- "x": -1.3872072758412344,
- "y": 3.701571872518713
+ "x": 3.472274028023918,
+ "y": 14.722396733361975
},
{
- "x": -1.3457555573699267,
- "y": 3.7921272157560963
+ "x": 3.5384170577391387,
+ "y": 14.647917744566001
},
{
- "x": -1.3012188910914517,
- "y": 3.881205835580758
+ "x": 3.60204252293795,
+ "y": 14.57127689168577
},
{
- "x": -1.2536498022848264,
- "y": 3.9687026751989407
+ "x": 3.6630798099665185,
+ "y": 14.492559233284553
},
{
- "x": -1.2031043925820484,
- "y": 4.054514543323606
+ "x": 3.7214611776169875,
+ "y": 14.41185213283336
},
{
- "x": -1.1496422738034653,
- "y": 4.138540235875169
+ "x": 3.777121832309092,
+ "y": 14.329245161752084
},
{
- "x": -1.093326497653237,
- "y": 4.2206806553388105
+ "x": 3.8300000000000978,
+ "y": 14.244830000000064
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_306",
+ "pcb_component_id": "pcb_component_46",
+ "layer": "top",
+ "route": [
+ {
+ "x": 3.829999999999984,
+ "y": 11.155169999999984
},
{
- "x": -1.0342234813579694,
- "y": 4.300838927637216
+ "x": 3.7771218323089784,
+ "y": 11.070754838247964
},
{
- "x": -0.9724029293360843,
- "y": 4.378920516381129
+ "x": 3.721461177616874,
+ "y": 10.988147867166674
},
{
- "x": -0.9079377509904702,
- "y": 4.454833334362917
+ "x": 3.663079809966405,
+ "y": 10.907440766715496
},
{
- "x": -0.8409039747212148,
- "y": 4.528487852161533
+ "x": 3.602042522937836,
+ "y": 10.828723108314264
},
{
- "x": -0.7713806582597158,
- "y": 4.599797203731029
+ "x": 3.538417057739025,
+ "y": 10.752082255434019
},
{
- "x": -0.6994497954304961,
- "y": 4.6686772888478885
+ "x": 3.4722740280238327,
+ "y": 10.677603266638044
},
{
- "x": -0.6251962194497196,
- "y": 4.735046872296451
+ "x": 3.4036868415228128,
+ "y": 10.605368801181086
},
{
- "x": -0.548707502875601,
- "y": 4.7988276796753695
+ "x": 3.3327316185729217,
+ "y": 10.535459027271358
},
{
- "x": -0.4700738543275804,
- "y": 4.859944489712305
+ "x": 3.259487107636545,
+ "y": 10.46795153309722
},
{
- "x": -0.3893880120969584,
- "y": 4.918325222977657
+ "x": 3.1840345979039455,
+ "y": 10.40292124071722
},
{
- "x": -0.30674513477399046,
- "y": 4.973901026893088
+ "x": 3.1064578290757368,
+ "y": 10.34044032290906
},
{
- "x": -0.22224268902050426,
- "y": 5.026606356934209
+ "x": 3.026842898425741,
+ "y": 10.280578123069958
},
{
- "x": -0.13598033462051262,
- "y": 5.0763790539320155
+ "x": 2.945278165247572,
+ "y": 10.223401078256913
},
{
- "x": -0.04805980694428058,
- "y": 5.123160417381584
+ "x": 2.8618541527903574,
+ "y": 10.168972645452783
},
{
- "x": 0.04141520303542734,
- "y": 5.166895274671802
+ "x": 2.7766634477930836,
+ "y": 10.117353231139504
},
{
- "x": 0.13233917103363524,
- "y": 5.207532046154384
+ "x": 2.6898005977288335,
+ "y": 10.068600124257046
},
{
- "x": 0.22460486390539813,
- "y": 5.245022805975438
+ "x": 2.6013620058727724,
+ "y": 10.022767432622203
},
{
- "x": 0.31810346611356977,
- "y": 5.279323338597848
+ "x": 2.5114458243106412,
+ "y": 9.979906022877984
},
{
- "x": 0.4127247080627967,
- "y": 5.310393190947835
+ "x": 2.4201518450062736,
+ "y": 9.940063464040065
},
{
- "x": 0.5083569961482794,
- "y": 5.338195720124148
+ "x": 2.3275813890492145,
+ "y": 9.903283974703186
},
{
- "x": 0.6048875443661359,
- "y": 5.362698136613687
+ "x": 2.2338371942051936,
+ "y": 9.869608373965818
},
{
- "x": 0.7022025073299858,
- "y": 5.38387154296251
+ "x": 2.13902330089428,
+ "y": 9.839074036127826
},
{
- "x": 0.8001871145369535,
- "y": 5.401690967856624
+ "x": 2.043244936723454,
+ "y": 9.811714849211185
},
{
- "x": 0.8987258057248653,
- "y": 5.416135395572539
+ "x": 1.9466083997014891,
+ "y": 9.787561177349971
},
{
- "x": 0.9977023671605423,
- "y": 5.427187790762517
+ "x": 1.8492209402658375,
+ "y": 9.766639827091211
},
{
- "x": 1.097000068699117,
- "y": 5.434835118545664
+ "x": 1.7511906422526522,
+ "y": 9.748974017644073
},
{
- "x": 1.1965018014521718,
- "y": 5.439068359880835
+ "x": 1.652626302941627,
+ "y": 9.734583355110473
},
{
- "x": 1.2960902159027512,
- "y": 5.439882522203433
+ "x": 1.5536373123092062,
+ "y": 9.723483810725511
},
{
- "x": 1.3956478603038533,
- "y": 5.43727664531356
+ "x": 1.4543335316240302,
+ "y": 9.715687703132076
},
{
- "x": 1.4950573191979117,
- "y": 5.43125380250838
+ "x": 1.3548251715191668,
+ "y": 9.711203684709247
},
{
- "x": 1.5942013518930764,
- "y": 5.421821096957629
+ "x": 1.2552226696766695,
+ "y": 9.710036731969566
},
{
- "x": 1.6929630307336083,
- "y": 5.408989653326245
+ "x": 1.15563656826032,
+ "y": 9.71218814003592
},
{
- "x": 1.791225879001047,
- "y": 5.392774604654349
+ "x": 1.0561773912320689,
+ "y": 9.717655521204193
},
{
- "x": 1.888874008283608,
- "y": 5.3731950745097095
+ "x": 0.9569555216889967,
+ "y": 9.726432807593227
},
{
- "x": 1.9857922551514946,
- "y": 5.35027415443399
+ "x": 0.8580810793564524,
+ "y": 9.73851025787917
},
{
- "x": 2.0818663169776244,
- "y": 5.3240388767091815
+ "x": 0.7596637983735661,
+ "y": 9.753874468106673
},
{
- "x": 2.1769828867426497,
- "y": 5.29452018247656
+ "x": 0.6618129055065936,
+ "y": 9.77250838656505
},
{
- "x": 2.271029786666247,
- "y": 5.261752885245556
+ "x": 0.5646369989254652,
+ "y": 9.79439133271292
},
{
- "x": 2.363896100506281,
- "y": 5.225775629835667
+ "x": 0.46824392767786094,
+ "y": 9.81949902013001
},
{
- "x": 2.455472304370346,
- "y": 5.186630846799915
+ "x": 0.37274067199490446,
+ "y": 9.84780358347119
},
{
- "x": 2.5456503958849908,
- "y": 5.144364702383399
+ "x": 0.2782332245608359,
+ "y": 9.879273609392229
},
{
- "x": 2.6343240215709045,
- "y": 5.099027044076166
+ "x": 0.1848264728787683,
+ "y": 9.913874171413426
},
{
- "x": 2.7213886022728673,
- "y": 5.050671341824497
+ "x": 0.09262408286321033,
+ "y": 9.951566868682207
},
{
- "x": 2.8067414564977753,
- "y": 4.999354624969939
+ "x": 0.0017283837880484043,
+ "y": 9.99230986859159
},
{
- "x": 2.890281921513946,
- "y": 4.945137414990597
+ "x": -0.08775974528180086,
+ "y": 10.036057953207461
},
{
- "x": 2.9719114720701896,
- "y": 4.888083654123733
+ "x": -0.17574098744933053,
+ "y": 10.082762569452896
},
{
- "x": 3.0515338365934213,
- "y": 4.828260629954144
+ "x": -0.26211769821071584,
+ "y": 10.132371882994036
},
{
- "x": 3.129055110728814,
- "y": 4.76573889605713
+ "x": -0.34679401382430797,
+ "y": 10.184830835767485
},
{
- "x": 3.2043838680878594,
- "y": 4.7005921887895425
+ "x": -0.4296759577034379,
+ "y": 10.240081207085638
},
{
- "x": 3.2774312680739968,
- "y": 4.6328973403272755
+ "x": -0.5106715447148247,
+ "y": 10.29806167825187
},
{
- "x": 3.348111160658817,
- "y": 4.562734188051579
+ "x": -0.5896908832666554,
+ "y": 10.358707900614107
},
{
- "x": 3.4163401879848436,
- "y": 4.490185480391062
+ "x": -0.6666462750732194,
+ "y": 10.421952566981105
},
{
- "x": 3.482037882675428,
- "y": 4.415336779230614
+ "x": -0.741452312485535,
+ "y": 10.487725486322162
},
{
- "x": 3.5451267627358334,
- "y": 4.338276359002123
+ "x": -0.8140259732794277,
+ "y": 10.555953661667488
},
{
- "x": 3.605532422933038,
- "y": 4.2590951025761115
+ "x": -0.8842867127964098,
+ "y": 10.626561371122648
},
{
- "x": 3.66318362254745,
- "y": 4.177886394077049
+ "x": -0.9521565533348735,
+ "y": 10.699470251907243
},
{
- "x": 3.7180123693919427,
- "y": 4.0947460087488
+ "x": -1.0175601706922066,
+ "y": 10.774599387324542
},
{
- "x": 3.7699540000000127,
- "y": 4.009772000000012
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_801",
- "pcb_component_id": "pcb_component_48",
- "layer": "top",
- "route": [
- {
- "x": 3.829999999999984,
- "y": -8.530000000000015
+ "x": -1.0804249777622772,
+ "y": 10.851865396565486
},
{
- "x": 3.829999999999984,
- "y": -5.440000000000012
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_802",
- "pcb_component_id": "pcb_component_48",
- "layer": "top",
- "route": [
- {
- "x": -1.950000000000017,
- "y": -3.77500000000002
+ "x": -1.140681205094836,
+ "y": 10.931182527247486
},
{
- "x": -1.950000000000017,
- "y": -10.195000000000007
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_803",
- "pcb_component_id": "pcb_component_48",
- "layer": "top",
- "route": [
- {
- "x": -1.950000000000017,
- "y": -10.195000000000007
+ "x": -1.19826197832802,
+ "y": 11.012462750585314
},
{
- "x": 4.47999999999999,
- "y": -10.195000000000007
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_804",
- "pcb_component_id": "pcb_component_48",
- "layer": "top",
- "route": [
- {
- "x": 4.47999999999999,
- "y": -3.77500000000002
+ "x": -1.2531033924078372,
+ "y": 11.095615859088255
},
{
- "x": -1.950000000000017,
- "y": -3.77500000000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_805",
- "pcb_component_id": "pcb_component_48",
- "layer": "top",
- "route": [
- {
- "x": 4.47999999999999,
- "y": -10.195000000000007
+ "x": -1.3051445825119856,
+ "y": 11.180549566675538
},
{
- "x": 4.47999999999999,
- "y": -3.77500000000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_806",
- "pcb_component_id": "pcb_component_48",
- "layer": "top",
- "route": [
- {
- "x": 3.769999999999982,
- "y": -8.454694000000018
+ "x": -1.3543277915997294,
+ "y": 11.267169611098353
},
{
- "x": 3.769999999999982,
- "y": -5.51530600000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_807",
- "pcb_component_id": "pcb_component_48",
- "layer": "top",
- "route": [
- {
- "x": 3.769999999999982,
- "y": -6.985000000000014
+ "x": -1.4005984345125455,
+ "y": 11.355379858555281
},
{
- "x": 3.5796988312781988,
- "y": -6.028291419087289
+ "x": -1.4439051585545712,
+ "y": 11.445082410384785
},
{
- "x": 3.0377669529663507,
- "y": -5.217233047033645
+ "x": -1.484199900485521,
+ "y": 11.536177711716377
},
{
- "x": 2.2267085809127063,
- "y": -4.675301168721797
+ "x": -1.521437939862892,
+ "y": 11.628564661959956
},
{
- "x": 1.269999999999982,
- "y": -4.485000000000014
+ "x": -1.555577948674113,
+ "y": 11.722140727010526
},
{
- "x": 0.31329141908725755,
- "y": -4.675301168721797
+ "x": -1.5865820372038115,
+ "y": 11.816802053044015
},
{
- "x": -0.49776695296638684,
- "y": -5.217233047033645
+ "x": -1.6144157960850976,
+ "y": 11.912443581777694
},
{
- "x": -1.0396988312782351,
- "y": -6.028291419087289
+ "x": -1.6390483344882227,
+ "y": 12.008959167067317
},
{
- "x": -1.2300000000000182,
- "y": -6.985000000000014
+ "x": -1.6604523144040968,
+ "y": 12.106241692711635
},
{
- "x": -1.0396988312782351,
- "y": -7.941708580912738
+ "x": -1.6786039809852014,
+ "y": 12.204183191333556
},
{
- "x": -0.4977669529663875,
- "y": -8.752766952966383
+ "x": -1.6934831889091697,
+ "y": 12.302674964205877
},
{
- "x": 0.313291419087256,
- "y": -9.294698831278229
+ "x": -1.705073424737094,
+ "y": 12.401607701888764
},
{
- "x": 1.2699999999999814,
- "y": -9.485000000000014
+ "x": -1.713361825240355,
+ "y": 12.500871605545
},
{
- "x": 2.2267085809127067,
- "y": -9.29469883127823
+ "x": -1.7183391916768755,
+ "y": 12.600356508798384
},
{
- "x": 3.0377669529663502,
- "y": -8.752766952966383
- },
+ "x": -1.7200000000001125,
+ "y": 12.699951999999996
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_307",
+ "pcb_component_id": "pcb_component_47",
+ "layer": "top",
+ "route": [
{
- "x": 3.579698831278198,
- "y": -7.9417085809127395
+ "x": 3.829999999999984,
+ "y": 0.9949999999999903
},
{
- "x": 3.769999999999982,
- "y": -6.9850000000000145
+ "x": 3.829999999999984,
+ "y": 4.084999999999994
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_808",
- "pcb_component_id": "pcb_component_48",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_308",
+ "pcb_component_id": "pcb_component_47",
"layer": "top",
"route": [
{
"x": 3.769999999999982,
- "y": -6.985000000000014
+ "y": 2.539999999999992
},
{
"x": 3.5796988312781988,
- "y": -6.028291419087289
+ "y": 3.4967085809127165
},
{
"x": 3.0377669529663507,
- "y": -5.217233047033645
+ "y": 4.307766952966361
},
{
"x": 2.2267085809127063,
- "y": -4.675301168721797
+ "y": 4.849698831278209
},
{
"x": 1.269999999999982,
- "y": -4.485000000000014
+ "y": 5.039999999999992
},
{
"x": 0.31329141908725755,
- "y": -4.675301168721797
+ "y": 4.849698831278209
},
{
"x": -0.49776695296638684,
- "y": -5.217233047033645
+ "y": 4.307766952966361
},
{
"x": -1.0396988312782351,
- "y": -6.028291419087289
+ "y": 3.496708580912717
},
{
"x": -1.2300000000000182,
- "y": -6.985000000000014
+ "y": 2.5399999999999925
},
{
"x": -1.0396988312782351,
- "y": -7.941708580912738
+ "y": 1.583291419087268
},
{
"x": -0.4977669529663875,
- "y": -8.752766952966383
+ "y": 0.7722330470336234
},
{
"x": 0.313291419087256,
- "y": -9.294698831278229
+ "y": 0.23030116872177597
},
{
"x": 1.2699999999999814,
- "y": -9.485000000000014
+ "y": 0.03999999999999204
},
{
"x": 2.2267085809127067,
- "y": -9.29469883127823
+ "y": 0.23030116872177553
},
{
"x": 3.0377669529663502,
- "y": -8.752766952966383
+ "y": 0.7722330470336227
},
{
"x": 3.579698831278198,
- "y": -7.9417085809127395
+ "y": 1.583291419087266
},
{
"x": 3.769999999999982,
- "y": -6.9850000000000145
+ "y": 2.5399999999999916
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_809",
- "pcb_component_id": "pcb_component_48",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_309",
+ "pcb_component_id": "pcb_component_47",
"layer": "top",
"route": [
{
"x": -1.7199999999999989,
- "y": -6.984952000000007
+ "y": 2.5400479999999988
},
{
- "x": -1.7183391916767619,
- "y": -6.885356508798381
+ "x": -1.7183391916767334,
+ "y": 2.6396434912015962
},
{
- "x": -1.7133618252402414,
- "y": -6.7858716055449975
+ "x": -1.7133618252401845,
+ "y": 2.7391283944549656
},
{
- "x": -1.7050734247369803,
- "y": -6.686607701888747
+ "x": -1.7050734247369235,
+ "y": 2.838392298111188
},
{
- "x": -1.6934831889090844,
- "y": -6.58767496420586
+ "x": -1.6934831889089992,
+ "y": 2.9373250357940606
},
{
- "x": -1.6786039809850877,
- "y": -6.489183191333538
+ "x": -1.6786039809850024,
+ "y": 3.035816808666368
},
{
- "x": -1.6604523144040115,
- "y": -6.391241692711603
+ "x": -1.6604523144039263,
+ "y": 3.133758307288261
},
{
- "x": -1.639048334488109,
- "y": -6.293959167067285
+ "x": -1.6390483344880238,
+ "y": 3.231040832932564
},
{
- "x": -1.6144157960850123,
- "y": -6.197443581777662
+ "x": -1.6144157960848986,
+ "y": 3.327556418222173
},
{
- "x": -1.5865820372037263,
- "y": -6.1018020530439685
+ "x": -1.5865820372035842,
+ "y": 3.4231979469558382
},
{
- "x": -1.5555779486739993,
- "y": -6.007140727010466
+ "x": -1.5555779486738857,
+ "y": 3.5178592729893126
},
{
- "x": -1.5214379398628068,
- "y": -5.913564661959896
+ "x": -1.5214379398626647,
+ "y": 3.6114353380398683
},
{
- "x": -1.4841999004854358,
- "y": -5.821177711716317
+ "x": -1.4841999004852937,
+ "y": 3.703822288283419
},
{
- "x": -1.443905158554486,
- "y": -5.730082410384711
+ "x": -1.4439051585543439,
+ "y": 3.7949175896149967
},
{
- "x": -1.4005984345124602,
- "y": -5.6403798585551925
+ "x": -1.4005984345122897,
+ "y": 3.8846201414444863
},
{
- "x": -1.3543277915996441,
- "y": -5.552169611098265
+ "x": -1.3543277915994736,
+ "y": 3.9728303889014
},
{
- "x": -1.3051445825119004,
- "y": -5.465549566675449
+ "x": -1.3051445825117298,
+ "y": 4.059450433324187
},
{
- "x": -1.253103392407752,
- "y": -5.3806158590881665
+ "x": -1.2531033924075814,
+ "y": 4.1443841409114555
},
{
- "x": -1.1982619783279347,
- "y": -5.297462750585197
+ "x": -1.1982619783277642,
+ "y": 4.227537249414382
},
{
- "x": -1.1406812050947224,
- "y": -5.216182527247369
+ "x": -1.1406812050945803,
+ "y": 4.308817472752182
},
{
- "x": -1.080424977762192,
- "y": -5.136865396565355
+ "x": -1.0804249777620498,
+ "y": 4.388134603434182
},
{
- "x": -1.0175601706921213,
- "y": -5.059599387324411
+ "x": -1.0175601706919792,
+ "y": 4.465400612675111
},
{
- "x": -0.9521565533347882,
- "y": -4.984470251907112
+ "x": -0.9521565533346461,
+ "y": 4.540529748092396
},
{
- "x": -0.8842867127963245,
- "y": -4.911561371122502
+ "x": -0.8842867127961824,
+ "y": 4.6134386288769775
},
{
- "x": -0.8140259732793425,
- "y": -4.840953661667328
+ "x": -0.8140259732792003,
+ "y": 4.684046338332124
},
{
- "x": -0.7414523124854497,
- "y": -4.7727254863220026
+ "x": -0.741452312485336,
+ "y": 4.752274513677435
},
{
- "x": -0.6666462750731341,
- "y": -4.706952566980945
+ "x": -0.6666462750730204,
+ "y": 4.818047433018464
},
{
- "x": -0.5896908832665417,
- "y": -4.643707900613933
+ "x": -0.5896908832664565,
+ "y": 4.881292099385448
},
{
- "x": -0.510671544714711,
- "y": -4.5830616782516955
+ "x": -0.5106715447146257,
+ "y": 4.941938321747685
},
{
- "x": -0.42967595770332423,
- "y": -4.525081207085449
+ "x": -0.42967595770323896,
+ "y": 4.999918792913903
},
{
- "x": -0.3467940138241943,
- "y": -4.469830835767297
+ "x": -0.34679401382413744,
+ "y": 5.055169164232041
},
{
- "x": -0.26211769821060216,
- "y": -4.417371882993848
+ "x": -0.2621176982105453,
+ "y": 5.107628117005476
},
{
- "x": -0.17574098744921685,
- "y": -4.367762569452694
+ "x": -0.17574098744918842,
+ "y": 5.157237430546601
},
{
- "x": -0.08775974528168717,
- "y": -4.321057953207259
+ "x": -0.08775974528165875,
+ "y": 5.2039420467920365
},
{
"x": 0.0017283837881620912,
- "y": -4.277309868591388
+ "y": 5.247690131407893
},
{
"x": 0.09262408286332402,
- "y": -4.23656686868199
+ "y": 5.288433131317262
},
{
- "x": 0.1848264728789104,
- "y": -4.198874171413209
+ "x": 0.184826472878882,
+ "y": 5.3261258285860436
},
{
- "x": 0.278233224560978,
- "y": -4.164273609391998
+ "x": 0.27823322456092114,
+ "y": 5.36072639060724
},
{
- "x": 0.372740671995075,
- "y": -4.1328035834709596
+ "x": 0.3727406719949897,
+ "y": 5.3921964165282645
},
{
- "x": 0.46824392767803147,
- "y": -4.104499020129779
+ "x": 0.4682439276779462,
+ "y": 5.420500979869431
},
{
- "x": 0.5646369989256073,
- "y": -4.079391332712689
+ "x": 0.564636998925522,
+ "y": 5.445608667286535
},
{
- "x": 0.6618129055067641,
- "y": -4.05750838656482
+ "x": 0.6618129055066504,
+ "y": 5.46749161343439
},
{
- "x": 0.7596637983737367,
- "y": -4.038874468106428
+ "x": 0.7596637983735945,
+ "y": 5.4861255318927675
},
{
- "x": 0.8580810793566229,
- "y": -4.0235102578789395
+ "x": 0.8580810793564808,
+ "y": 5.501489742120256
},
{
- "x": 0.9569555216891672,
- "y": -4.011432807592982
+ "x": 0.9569555216889967,
+ "y": 5.5135671924061995
},
{
- "x": 1.0561773912322394,
- "y": -4.002655521203934
+ "x": 1.0561773912320405,
+ "y": 5.522344478795247
},
{
- "x": 1.155636568260519,
- "y": -3.997188140035661
+ "x": 1.1556365682602916,
+ "y": 5.527811859963521
},
{
- "x": 1.2552226696768685,
- "y": -3.995036731969307
+ "x": 1.255222669676641,
+ "y": 5.529963268029874
},
{
- "x": 1.3548251715193658,
- "y": -3.996203684709002
+ "x": 1.35482517151911,
+ "y": 5.52879631529018
},
{
- "x": 1.4543335316242292,
- "y": -4.000687703131817
+ "x": 1.454333531623945,
+ "y": 5.524312296867365
},
{
- "x": 1.5536373123094336,
- "y": -4.008483810725252
+ "x": 1.553637312309121,
+ "y": 5.516516189273929
},
{
- "x": 1.6526263029418544,
- "y": -4.019583355110214
+ "x": 1.6526263029415134,
+ "y": 5.505416644888967
},
{
- "x": 1.7511906422528796,
- "y": -4.033974017643814
+ "x": 1.7511906422525385,
+ "y": 5.491025982355367
},
{
- "x": 1.8492209402660933,
- "y": -4.051639827090952
+ "x": 1.8492209402657238,
+ "y": 5.473360172908244
},
{
- "x": 1.9466083997017165,
- "y": -4.072561177349712
+ "x": 1.946608399701347,
+ "y": 5.4524388226494835
},
{
- "x": 2.0432449367237098,
- "y": -4.096714849210926
+ "x": 2.043244936723312,
+ "y": 5.428285150788284
},
{
- "x": 2.139023300894536,
- "y": -4.124074036127567
+ "x": 2.1390233008941095,
+ "y": 5.400925963871657
},
{
- "x": 2.2338371942054494,
- "y": -4.154608373965559
+ "x": 2.233837194205023,
+ "y": 5.3703916260336655
},
{
- "x": 2.3275813890494703,
- "y": -4.188283974702927
+ "x": 2.3275813890490156,
+ "y": 5.336716025296312
},
{
- "x": 2.4201518450065294,
- "y": -4.225063464039806
+ "x": 2.4201518450060746,
+ "y": 5.299936535959446
},
{
- "x": 2.511445824310897,
- "y": -4.2649060228777245
+ "x": 2.511445824310414,
+ "y": 5.260093977121542
},
{
- "x": 2.6013620058730567,
- "y": -4.307767432621944
+ "x": 2.601362005872545,
+ "y": 5.217232567377323
},
{
- "x": 2.6898005977291177,
- "y": -4.353600124256786
+ "x": 2.689800597728606,
+ "y": 5.171399875742509
},
{
- "x": 2.7766634477933962,
- "y": -4.402353231139244
+ "x": 2.7766634477928562,
+ "y": 5.122646768860051
},
{
- "x": 2.86185415279067,
- "y": -4.453972645452538
+ "x": 2.8618541527901016,
+ "y": 5.071027354546786
},
{
- "x": 2.9452781652478848,
- "y": -4.508401078256668
+ "x": 2.9452781652473163,
+ "y": 5.01659892174267
},
{
- "x": 3.026842898426054,
- "y": -4.565578123069713
+ "x": 3.0268428984254854,
+ "y": 4.959421876929639
},
{
- "x": 3.1064578290760494,
- "y": -4.6254403229088155
+ "x": 3.1064578290754525,
+ "y": 4.899559677090551
},
{
- "x": 3.1840345979042866,
- "y": -4.687921240716975
+ "x": 3.1840345979036897,
+ "y": 4.83707875928242
},
{
- "x": 3.259487107636886,
- "y": -4.75295153309699
+ "x": 3.259487107636261,
+ "y": 4.772048466902419
},
{
- "x": 3.3327316185732627,
- "y": -4.820459027271127
+ "x": 3.3327316185726374,
+ "y": 4.704540972728296
},
{
- "x": 3.403686841523154,
- "y": -4.8903688011808555
+ "x": 3.4036868415225285,
+ "y": 4.634631198818596
},
{
- "x": 3.4722740280241737,
- "y": -4.962603266637828
+ "x": 3.47227402802352,
+ "y": 4.562396733361652
},
{
- "x": 3.538417057739366,
- "y": -5.037082255433802
+ "x": 3.538417057738741,
+ "y": 4.487917744565692
},
{
- "x": 3.6020425229382056,
- "y": -5.113723108314048
+ "x": 3.602042522937552,
+ "y": 4.4112768916854606
},
{
- "x": 3.663079809966746,
- "y": -5.192440766715279
+ "x": 3.6630798099661206,
+ "y": 4.3325592332842575
},
{
- "x": 3.7214611776172433,
- "y": -5.273147867166472
+ "x": 3.7214611776165896,
+ "y": 4.251852132833093
},
{
- "x": 3.777121832309348,
- "y": -5.355754838247762
+ "x": 3.777121832308694,
+ "y": 4.169245161751817
},
{
- "x": 3.8300000000003536,
- "y": -5.440169999999782
+ "x": 3.8299999999997,
+ "y": 4.084829999999826
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_810",
- "pcb_component_id": "pcb_component_48",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_310",
+ "pcb_component_id": "pcb_component_47",
"layer": "top",
"route": [
{
"x": 3.829999999999984,
- "y": -8.529830000000018
+ "y": 0.9951699999999875
},
{
"x": 3.7771218323089784,
- "y": -8.614245161752038
+ "y": 0.910754838247982
},
{
"x": 3.721461177616874,
- "y": -8.696852132833328
+ "y": 0.828147867166706
},
{
- "x": 3.6630798099663764,
- "y": -8.777559233284506
+ "x": 3.663079809966405,
+ "y": 0.7474407667155276
},
{
"x": 3.602042522937836,
- "y": -8.856276891685724
+ "y": 0.6687231083143246
},
{
- "x": 3.5384170577389966,
- "y": -8.93291774456597
+ "x": 3.538417057739025,
+ "y": 0.592082255434093
},
{
- "x": 3.472274028023776,
- "y": -9.007396733361944
+ "x": 3.4722740280238042,
+ "y": 0.5176032666381332
},
{
- "x": 3.403686841522756,
- "y": -9.079631198818902
+ "x": 3.4036868415228128,
+ "y": 0.44536880118117494
},
{
- "x": 3.332731618572865,
- "y": -9.149540972728616
+ "x": 3.3327316185728932,
+ "y": 0.37545902727147507
},
{
- "x": 3.2594871076365166,
- "y": -9.217048466902753
+ "x": 3.259487107636545,
+ "y": 0.3079515330973521
},
{
- "x": 3.1840345979038887,
- "y": -9.282078759282768
+ "x": 3.1840345979039455,
+ "y": 0.24292124071735088
},
{
- "x": 3.1064578290756515,
- "y": -9.344559677090913
+ "x": 3.1064578290757083,
+ "y": 0.18044032290920597
},
{
- "x": 3.0268428984256843,
- "y": -9.404421876930016
+ "x": 3.026842898425741,
+ "y": 0.12057812307010352
},
{
- "x": 2.9452781652475153,
- "y": -9.461598921743061
+ "x": 2.945278165247572,
+ "y": 0.06340107825708685
},
{
- "x": 2.861854152790272,
- "y": -9.516027354547191
+ "x": 2.8618541527903574,
+ "y": 0.00897264545295684
},
{
- "x": 2.7766634477929983,
- "y": -9.56764676886047
+ "x": 2.776663447793112,
+ "y": -0.04264676886030827
},
{
- "x": 2.6898005977287482,
- "y": -9.616399875742928
+ "x": 2.689800597728862,
+ "y": -0.09139987574276631
},
{
- "x": 2.601362005872687,
- "y": -9.662232567377757
+ "x": 2.601362005872801,
+ "y": -0.1372325673775947
},
{
- "x": 2.511445824310556,
- "y": -9.705093977121976
+ "x": 2.5114458243106697,
+ "y": -0.18009397712179975
},
{
- "x": 2.4201518450061883,
- "y": -9.744936535959894
+ "x": 2.420151845006302,
+ "y": -0.21993653595970386
},
{
- "x": 2.3275813890491293,
- "y": -9.781716025296774
+ "x": 2.3275813890492714,
+ "y": -0.25671602529656923
},
{
- "x": 2.23383719420508,
- "y": -9.815391626034128
+ "x": 2.2338371942052504,
+ "y": -0.2903916260339372
},
{
- "x": 2.1390233008941664,
- "y": -9.845925963872133
+ "x": 2.139023300894337,
+ "y": -0.32092596387191463
},
{
- "x": 2.0432449367233687,
- "y": -9.87328515078876
+ "x": 2.043244936723511,
+ "y": -0.3482851507885556
},
{
- "x": 1.9466083997013754,
- "y": -9.897438822649974
+ "x": 1.946608399701546,
+ "y": -0.37243882264975525
},
{
- "x": 1.8492209402657522,
- "y": -9.918360172908734
+ "x": 1.8492209402659228,
+ "y": -0.39336017290851544
},
{
- "x": 1.7511906422525385,
- "y": -9.936025982355872
+ "x": 1.7511906422527375,
+ "y": -0.41102598235563903
},
{
- "x": 1.6526263029415134,
- "y": -9.950416644889472
+ "x": 1.6526263029417123,
+ "y": -0.42541664488923914
},
{
- "x": 1.5536373123090925,
- "y": -9.961516189274434
+ "x": 1.55363731230932,
+ "y": -0.4365161892742009
},
{
- "x": 1.4543335316239165,
- "y": -9.96931229686787
+ "x": 1.454333531624144,
+ "y": -0.4443122968676221
},
{
- "x": 1.3548251715190531,
- "y": -9.973796315290699
+ "x": 1.3548251715192805,
+ "y": -0.4487963152904513
},
{
- "x": 1.2552226696765558,
- "y": -9.974963268030379
+ "x": 1.2552226696768116,
+ "y": -0.44996326803013176
},
{
- "x": 1.1556365682602063,
- "y": -9.97281185996404
+ "x": 1.1556365682604621,
+ "y": -0.44781185996377815
},
{
- "x": 1.0561773912319268,
- "y": -9.967344478795766
+ "x": 1.056177391232211,
+ "y": -0.44234447879550487
},
{
- "x": 0.9569555216888546,
- "y": -9.958567192406719
+ "x": 0.9569555216891388,
+ "y": -0.433567192406457
},
{
- "x": 0.8580810793563387,
- "y": -9.946489742120775
+ "x": 0.8580810793566229,
+ "y": -0.4214897421205137
},
{
- "x": 0.7596637983734524,
- "y": -9.931125531893287
+ "x": 0.7596637983737651,
+ "y": -0.406125531893025
},
{
- "x": 0.6618129055064799,
- "y": -9.912491613434895
+ "x": 0.6618129055067925,
+ "y": -0.38749161343463356
},
{
- "x": 0.564636998925323,
- "y": -9.89060866728704
+ "x": 0.5646369989256641,
+ "y": -0.36560866728677865
},
{
- "x": 0.46824392767771883,
- "y": -9.865500979869935
+ "x": 0.4682439276780883,
+ "y": -0.34050097986967387
},
{
- "x": 0.3727406719947908,
- "y": -9.83719641652877
+ "x": 0.37274067199513183,
+ "y": -0.3121964165285078
},
{
- "x": 0.27823322456069377,
- "y": -9.805726390607731
+ "x": 0.27823322456106325,
+ "y": -0.2807263906074695
},
{
- "x": 0.1848264728786262,
- "y": -9.77112582858652
+ "x": 0.18482647287899567,
+ "y": -0.24612582858627263
},
{
- "x": 0.09262408286306822,
- "y": -9.733433131317753
+ "x": 0.0926240828634377,
+ "y": -0.20843313131749142
},
{
- "x": 0.0017283837879062958,
- "y": -9.69269013140837
+ "x": 0.0017283837883041997,
+ "y": -0.16769013140810785
},
{
- "x": -0.08775974528194297,
- "y": -9.648942046792513
+ "x": -0.08775974528154507,
+ "y": -0.1239420467922514
},
{
- "x": -0.17574098744950106,
- "y": -9.602237430547063
+ "x": -0.17574098744907474,
+ "y": -0.0772374305468162
},
{
- "x": -0.2621176982108864,
- "y": -9.552628117005938
+ "x": -0.2621176982104316,
+ "y": -0.027628117005676245
},
{
- "x": -0.3467940138244501,
- "y": -9.500169164232474
+ "x": -0.34679401382402375,
+ "y": 0.024830835767772896
},
{
- "x": -0.42967595770360845,
- "y": -9.444918792914336
+ "x": -0.4296759577031537,
+ "y": 0.08008120708591093
},
{
- "x": -0.5106715447149952,
- "y": -9.386938321748104
+ "x": -0.5106715447145405,
+ "y": 0.13806167825212867
},
{
- "x": -0.589690883266826,
- "y": -9.326292099385867
+ "x": -0.5896908832663428,
+ "y": 0.19870790061436594
},
{
- "x": -0.6666462750734183,
- "y": -9.263047433018869
+ "x": -0.6666462750729067,
+ "y": 0.26195256698136404
},
{
- "x": -0.741452312485734,
- "y": -9.197274513677826
+ "x": -0.7414523124852224,
+ "y": 0.3277254863224073
},
{
- "x": -0.8140259732796267,
- "y": -9.1290463383325
+ "x": -0.8140259732791151,
+ "y": 0.3959536616677184
},
{
- "x": -0.8842867127966088,
- "y": -9.05843862887734
+ "x": -0.8842867127960972,
+ "y": 0.46656137112287865
},
{
- "x": -0.9521565533350724,
- "y": -8.985529748092745
+ "x": -0.9521565533345324,
+ "y": 0.5394702519074599
},
{
- "x": -1.0175601706924056,
- "y": -8.910400612675446
+ "x": -1.0175601706918656,
+ "y": 0.614599387324759
},
{
- "x": -1.0804249777624761,
- "y": -8.833134603434502
+ "x": -1.0804249777619361,
+ "y": 0.6918653965656887
},
{
- "x": -1.140681205095035,
- "y": -8.753817472752502
+ "x": -1.1406812050944666,
+ "y": 0.7711825272476887
},
{
- "x": -1.1982619783282473,
- "y": -8.672537249414688
+ "x": -1.198261978327679,
+ "y": 0.852462750585488
},
{
- "x": -1.2531033924080646,
- "y": -8.589384140911733
+ "x": -1.2531033924074677,
+ "y": 0.9356158590884434
},
{
- "x": -1.305144582512213,
- "y": -8.50445043332445
+ "x": -1.3051445825116161,
+ "y": 1.0205495666757116
},
{
- "x": -1.3543277915999568,
- "y": -8.417830388901649
+ "x": -1.35432779159936,
+ "y": 1.107169611098513
},
{
- "x": -1.4005984345127729,
- "y": -8.329620141444721
+ "x": -1.400598434512176,
+ "y": 1.1953798585554267
},
{
- "x": -1.443905158554827,
- "y": -8.239917589615217
+ "x": -1.4439051585542018,
+ "y": 1.2850824103849163
},
{
- "x": -1.4841999004858053,
- "y": -8.148822288283625
+ "x": -1.48419990048518,
+ "y": 1.3761777117165082
},
{
- "x": -1.521437939863148,
- "y": -8.056435338040046
+ "x": -1.5214379398625226,
+ "y": 1.4685646619600732
},
{
- "x": -1.5555779486743688,
- "y": -7.962859272989476
+ "x": -1.5555779486737435,
+ "y": 1.562140727010629
},
{
- "x": -1.5865820372040957,
- "y": -7.868197946955988
+ "x": -1.586582037203442,
+ "y": 1.6568020530441174
},
{
- "x": -1.6144157960854102,
- "y": -7.772556418222308
+ "x": -1.6144157960847565,
+ "y": 1.7524435817777828
},
{
- "x": -1.639048334488507,
- "y": -7.676040832932685
+ "x": -1.6390483344878533,
+ "y": 1.8489591670673917
},
{
- "x": -1.6604523144044094,
- "y": -7.578758307288368
+ "x": -1.6604523144037557,
+ "y": 1.9462416927116948
},
{
- "x": -1.678603980985514,
- "y": -7.480816808666447
+ "x": -1.6786039809848603,
+ "y": 2.0441831913336017
},
{
- "x": -1.6934831889095108,
- "y": -7.382325035794139
+ "x": -1.693483188908857,
+ "y": 2.1426749642059093
},
{
- "x": -1.705073424737435,
- "y": -7.283392298111252
+ "x": -1.705073424736753,
+ "y": 2.241607701888796
},
{
- "x": -1.7133618252406961,
- "y": -7.184128394455001
+ "x": -1.713361825240014,
+ "y": 2.3408716055450185
},
{
- "x": -1.7183391916772166,
- "y": -7.084643491201618
+ "x": -1.718339191676563,
+ "y": 2.440356508798388
},
{
- "x": -1.720000000000482,
- "y": -6.985048000000006
+ "x": -1.7199999999998,
+ "y": 2.5399519999999995
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_811",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_311",
"pcb_component_id": "pcb_component_48",
"layer": "top",
"route": [
{
- "x": 3.769999999999982,
- "y": -8.454694000000018
+ "x": 3.829999999999984,
+ "y": -8.530000000000015
},
{
- "x": 3.718061028951041,
- "y": -8.539669634386826
- },
+ "x": 3.829999999999984,
+ "y": -5.440000000000012
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_312",
+ "pcb_component_id": "pcb_component_48",
+ "layer": "top",
+ "route": [
{
- "x": 3.6632348842779834,
- "y": -8.62281173571553
+ "x": 3.769999999999982,
+ "y": -6.985000000000014
},
{
- "x": 3.6055862263784206,
- "y": -8.704022248553699
+ "x": 3.5796988312781988,
+ "y": -6.028291419087289
},
{
- "x": 3.5451830444417283,
- "y": -8.783205395529492
+ "x": 3.0377669529663507,
+ "y": -5.217233047033645
},
{
- "x": 3.4820965762648655,
- "y": -8.860267790288745
+ "x": 2.2267085809127063,
+ "y": -4.675301168721797
},
{
- "x": 3.4164012242362105,
- "y": -8.935118547632243
+ "x": 1.269999999999982,
+ "y": -4.485000000000014
},
{
- "x": 3.3481744675877394,
- "y": -9.0076693907031
+ "x": 0.31329141908725755,
+ "y": -4.675301168721797
},
{
- "x": 3.2774967710180647,
- "y": -9.077834755097982
+ "x": -0.49776695296638684,
+ "y": -5.217233047033645
},
{
- "x": 3.2044514897947636,
- "y": -9.145531889779363
+ "x": -1.0396988312782351,
+ "y": -6.028291419087289
},
{
- "x": 3.1291247714474366,
- "y": -9.210680954669712
+ "x": -1.2300000000000182,
+ "y": -6.985000000000014
},
{
- "x": 3.0516054541678557,
- "y": -9.273205114812598
+ "x": -1.0396988312782351,
+ "y": -7.941708580912738
},
{
- "x": 2.9719849620367427,
- "y": -9.333030630989725
+ "x": -0.4977669529663875,
+ "y": -8.752766952966383
},
{
- "x": 2.890357197200643,
- "y": -9.390086946686822
+ "x": 0.313291419087256,
+ "y": -9.294698831278229
},
{
- "x": 2.806818429126565,
- "y": -9.444306771305946
+ "x": 1.2699999999999814,
+ "y": -9.485000000000014
},
{
- "x": 2.721467181064469,
- "y": -9.495626159526239
+ "x": 2.2267085809127067,
+ "y": -9.29469883127823
},
{
- "x": 2.634404113851673,
- "y": -9.543984586719063
+ "x": 3.0377669529663502,
+ "y": -8.752766952966383
},
{
- "x": 2.5457319071964264,
- "y": -9.589325020329142
+ "x": 3.579698831278198,
+ "y": -7.9417085809127395
},
{
- "x": 2.4555551385802517,
- "y": -9.63159398713708
- },
+ "x": 3.769999999999982,
+ "y": -6.9850000000000145
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_313",
+ "pcb_component_id": "pcb_component_48",
+ "layer": "top",
+ "route": [
{
- "x": 2.36398015992242,
- "y": -9.67074163632418
+ "x": -1.7199999999999989,
+ "y": -6.984952000000007
},
{
- "x": 2.271114972151281,
- "y": -9.706721798265093
+ "x": -1.7183391916767619,
+ "y": -6.885356508798381
},
{
- "x": 2.177069097831236,
- "y": -9.739492038978938
+ "x": -1.7133618252402414,
+ "y": -6.7858716055449975
},
{
- "x": 2.081953451994849,
- "y": -9.769013710174718
+ "x": -1.7050734247369803,
+ "y": -6.686607701888747
},
{
- "x": 1.9858802113328409,
- "y": -9.795251994832071
+ "x": -1.6934831889090844,
+ "y": -6.58767496420586
},
{
- "x": 1.888962681896004,
- "y": -9.81817594826343
+ "x": -1.6786039809850877,
+ "y": -6.489183191333538
},
{
- "x": 1.7913151654653916,
- "y": -9.837758534609364
+ "x": -1.6604523144040115,
+ "y": -6.391241692711603
},
{
- "x": 1.6930528247479515,
- "y": -9.85397665872378
+ "x": -1.639048334488109,
+ "y": -6.293959167067285
},
{
- "x": 1.5942915475569066,
- "y": -9.866811193411863
+ "x": -1.6144157960850123,
+ "y": -6.197443581777662
},
{
- "x": 1.4951478101370697,
- "y": -9.876247001987963
+ "x": -1.5865820372037263,
+ "y": -6.1018020530439685
},
{
- "x": 1.3957385397958433,
- "y": -9.882272956127522
+ "x": -1.5555779486739993,
+ "y": -6.007140727010466
},
{
- "x": 1.2961809770027628,
- "y": -9.884881948991392
+ "x": -1.5214379398628068,
+ "y": -5.913564661959896
},
{
- "x": 1.1965925371191872,
- "y": -9.884070903607508
+ "x": -1.4841999004854358,
+ "y": -5.821177711716317
},
{
- "x": 1.0970906719220181,
- "y": -9.879840776499762
+ "x": -1.443905158554486,
+ "y": -5.730082410384711
},
{
- "x": 0.9977927310844734,
- "y": -9.872196556559885
+ "x": -1.4005984345124602,
+ "y": -5.6403798585551925
},
{
- "x": 0.8988158237771984,
- "y": -9.86114725916373
+ "x": -1.3543277915996441,
+ "y": -5.552169611098265
},
{
- "x": 0.8002766805529404,
- "y": -9.846705915538763
+ "x": -1.3051445825119004,
+ "y": -5.465549566675449
},
{
- "x": 0.702291515678013,
- "y": -9.8288895573954
+ "x": -1.253103392407752,
+ "y": -5.3806158590881665
},
{
- "x": 0.6049758900722964,
- "y": -9.807719196840338
+ "x": -1.1982619783279347,
+ "y": -5.297462750585197
},
{
- "x": 0.5084445750201496,
- "y": -9.783219801595408
+ "x": -1.1406812050947224,
+ "y": -5.216182527247369
},
{
- "x": 0.4128114168123318,
- "y": -9.755420265551379
+ "x": -1.080424977762192,
+ "y": -5.136865396565355
},
{
- "x": 0.31818920247894766,
- "y": -9.724353374691361
+ "x": -1.0175601706921213,
+ "y": -5.059599387324411
},
{
- "x": 0.22468952677158427,
- "y": -9.690055768423903
+ "x": -0.9521565533347882,
+ "y": -4.984470251907112
},
{
- "x": 0.1324226605516401,
- "y": -9.652567896371522
+ "x": -0.8842867127963245,
+ "y": -4.911561371122502
},
{
- "x": 0.04149742074011442,
- "y": -9.61193397066556
+ "x": -0.8140259732793425,
+ "y": -4.840953661667328
},
{
- "x": -0.04797895801817731,
- "y": -9.568201913803719
+ "x": -0.7414523124854497,
+ "y": -4.7727254863220026
},
{
- "x": -0.13590094982387768,
- "y": -9.52142330213151
+ "x": -0.6666462750731341,
+ "y": -4.706952566980945
},
{
- "x": -0.22216486197754648,
- "y": -9.471653305014684
+ "x": -0.5896908832665417,
+ "y": -4.643707900613933
},
{
- "x": -0.30666895727171095,
- "y": -9.418950619773995
+ "x": -0.510671544714711,
+ "y": -4.5830616782516955
},
{
- "x": -0.3893135739769207,
- "y": -9.363377402459278
+ "x": -0.42967595770332423,
+ "y": -4.525081207085449
},
{
- "x": -0.47000124338001115,
- "y": -9.304999194544308
+ "x": -0.3467940138241943,
+ "y": -4.469830835767297
},
{
- "x": -0.5486368047357644,
- "y": -9.24388484562914
+ "x": -0.26211769821060216,
+ "y": -4.417371882993848
},
{
- "x": -0.6251275174970203,
- "y": -9.180106432240763
+ "x": -0.17574098744921685,
+ "y": -4.367762569452694
},
{
- "x": -0.6993831706900551,
- "y": -9.113739172828147
+ "x": -0.08775974528168717,
+ "y": -4.321057953207259
},
{
- "x": -0.771316189306873,
- "y": -9.044861339051707
+ "x": 0.0017283837881620912,
+ "y": -4.277309868591388
},
{
- "x": -0.8408417375887893,
- "y": -8.97355416347196
+ "x": 0.09262408286332402,
+ "y": -4.23656686868199
},
{
- "x": -0.9078778190792036,
- "y": -8.8999017437461
+ "x": 0.1848264728789104,
+ "y": -4.198874171413209
},
{
- "x": -0.9723453733279257,
- "y": -8.82399094344568
+ "x": 0.278233224560978,
+ "y": -4.164273609391998
},
{
- "x": -1.034168369132857,
- "y": -8.745911289612138
+ "x": 0.372740671995075,
+ "y": -4.1328035834709596
},
{
- "x": -1.093273894208977,
- "y": -8.665754867171145
+ "x": 0.46824392767803147,
+ "y": -4.104499020129779
},
{
- "x": -1.1495922411790787,
- "y": -8.583616210330291
+ "x": 0.5646369989256073,
+ "y": -4.079391332712689
},
{
- "x": -1.2030569897845567,
- "y": -8.499592191088098
+ "x": 0.6618129055067641,
+ "y": -4.05750838656482
},
{
- "x": -1.2536050852197604,
- "y": -8.41378190498591
+ "x": 0.7596637983737367,
+ "y": -4.038874468106428
},
{
- "x": -1.3011769124968566,
- "y": -8.32628655423754
+ "x": 0.8580810793566229,
+ "y": -4.0235102578789395
},
{
- "x": -1.3457163667541465,
- "y": -8.237209328374107
+ "x": 0.9569555216891672,
+ "y": -4.011432807592982
},
{
- "x": -1.3871709194245625,
- "y": -8.146655282545353
+ "x": 1.0561773912322394,
+ "y": -4.002655521203934
},
{
- "x": -1.4254916801862976,
- "y": -8.054731213620471
+ "x": 1.155636568260519,
+ "y": -3.997188140035661
},
{
- "x": -1.4606334546226947,
- "y": -7.961545534235043
+ "x": 1.2552226696768685,
+ "y": -3.995036731969307
},
{
- "x": -1.4925547975232973,
- "y": -7.86720814493215
+ "x": 1.3548251715193658,
+ "y": -3.996203684709002
},
{
- "x": -1.5212180617630793,
- "y": -7.771830304548843
+ "x": 1.4543335316242292,
+ "y": -4.000687703131817
},
{
- "x": -1.546589442702441,
- "y": -7.675524499000616
+ "x": 1.5536373123094336,
+ "y": -4.008483810725252
},
{
- "x": -1.5686390180554497,
- "y": -7.57840430861873
+ "x": 1.6526263029418544,
+ "y": -4.019583355110214
},
{
- "x": -1.5873407831793145,
- "y": -7.480584274196758
+ "x": 1.7511906422528796,
+ "y": -4.033974017643814
},
{
- "x": -1.6026726817435133,
- "y": -7.382179761904496
+ "x": 1.8492209402660933,
+ "y": -4.051639827090952
},
{
- "x": -1.6146166317424502,
- "y": -7.283306827228287
+ "x": 1.9466083997017165,
+ "y": -4.072561177349712
},
{
- "x": -1.623158546820747,
- "y": -7.184082078098555
+ "x": 2.0432449367237098,
+ "y": -4.096714849210926
},
{
- "x": -1.6282883528864431,
- "y": -7.084622537365689
+ "x": 2.139023300894536,
+ "y": -4.124074036127567
},
{
- "x": -1.6299999999919805,
- "y": -6.98504550478664
+ "x": 2.2338371942054494,
+ "y": -4.154608373965559
},
{
- "x": -1.6282914694693886,
- "y": -6.885468418684894
+ "x": 2.3275813890494703,
+ "y": -4.188283974702927
},
{
- "x": -1.6231647763110288,
- "y": -6.786008717447032
+ "x": 2.4201518450065294,
+ "y": -4.225063464039806
},
{
- "x": -1.6146259667931986,
- "y": -6.686783701019323
+ "x": 2.511445824310897,
+ "y": -4.2649060228777245
},
{
- "x": -1.602685111345238,
- "y": -6.587910392567366
+ "x": 2.6013620058730567,
+ "y": -4.307767432621944
},
{
- "x": -1.5873562926728937,
- "y": -6.489505400462434
+ "x": 2.6898005977291177,
+ "y": -4.353600124256786
},
{
- "x": -1.5686575891494101,
- "y": -6.391684780756748
+ "x": 2.7766634477933962,
+ "y": -4.402353231139244
},
{
- "x": -1.5466110534945585,
- "y": -6.294563900310365
+ "x": 2.86185415279067,
+ "y": -4.453972645452538
},
{
- "x": -1.5212426867662145,
- "y": -6.198257300730688
+ "x": 2.9452781652478848,
+ "y": -4.508401078256668
},
{
- "x": -1.4925824076954086,
- "y": -6.102878563285458
+ "x": 3.026842898426054,
+ "y": -4.565578123069713
},
{
- "x": -1.4606640174011432,
- "y": -6.0085401749481235
+ "x": 3.1064578290760494,
+ "y": -4.6254403229088155
},
{
- "x": -1.4255251595262166,
- "y": -5.915353395733959
+ "x": 3.1840345979042866,
+ "y": -4.687921240716975
},
{
- "x": -1.3872072758413765,
- "y": -5.823428127483183
+ "x": 3.259487107636886,
+ "y": -4.75295153309699
},
{
- "x": -1.3457555573700972,
- "y": -5.732872784245799
+ "x": 3.3327316185732627,
+ "y": -4.820459027271127
},
{
- "x": -1.3012188910916507,
- "y": -5.643794164421138
+ "x": 3.403686841523154,
+ "y": -4.8903688011808555
},
{
- "x": -1.2536498022850537,
- "y": -5.556297324802955
+ "x": 3.4722740280241737,
+ "y": -4.962603266637828
},
{
- "x": -1.2031043925823042,
- "y": -5.47048545667829
+ "x": 3.538417057739366,
+ "y": -5.037082255433802
},
{
- "x": -1.1496422738037495,
- "y": -5.3864597641267125
+ "x": 3.6020425229382056,
+ "y": -5.113723108314048
},
{
- "x": -1.0933264976535497,
- "y": -5.304319344663071
+ "x": 3.663079809966746,
+ "y": -5.192440766715279
},
{
- "x": -1.0342234813583104,
- "y": -5.224161072364666
+ "x": 3.7214611776172433,
+ "y": -5.273147867166472
},
{
- "x": -0.9724029293364538,
- "y": -5.146079483620724
+ "x": 3.777121832309348,
+ "y": -5.355754838247762
},
{
- "x": -0.9079377509908966,
- "y": -5.070166665638936
- },
+ "x": 3.8300000000003536,
+ "y": -5.440169999999782
+ }
+ ],
+ "stroke_width": 0.12
+ },
+ {
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_314",
+ "pcb_component_id": "pcb_component_48",
+ "layer": "top",
+ "route": [
{
- "x": -0.8409039747216411,
- "y": -4.996512147840306
+ "x": 3.829999999999984,
+ "y": -8.529830000000018
},
{
- "x": -0.771380658260199,
- "y": -4.92520279627081
+ "x": 3.7771218323089784,
+ "y": -8.614245161752038
},
{
- "x": -0.6994497954309793,
- "y": -4.856322711153936
+ "x": 3.721461177616874,
+ "y": -8.696852132833328
},
{
- "x": -0.6251962194502596,
- "y": -4.78995312770536
+ "x": 3.6630798099663764,
+ "y": -8.777559233284506
},
{
- "x": -0.548707502876141,
- "y": -4.726172320326427
+ "x": 3.602042522937836,
+ "y": -8.856276891685724
},
{
- "x": -0.47007385432814885,
- "y": -4.665055510289477
+ "x": 3.5384170577389966,
+ "y": -8.93291774456597
},
{
- "x": -0.38938801209755525,
- "y": -4.606674777024097
+ "x": 3.472274028023776,
+ "y": -9.007396733361944
},
{
- "x": -0.30674513477461574,
- "y": -4.551098973108665
+ "x": 3.403686841522756,
+ "y": -9.079631198818902
},
{
- "x": -0.22224268902112954,
- "y": -4.498393643067516
+ "x": 3.332731618572865,
+ "y": -9.149540972728616
},
{
- "x": -0.13598033462116632,
- "y": -4.4486209460696955
+ "x": 3.2594871076365166,
+ "y": -9.217048466902753
},
{
- "x": -0.048059806944991124,
- "y": -4.401839582620113
+ "x": 3.1840345979038887,
+ "y": -9.282078759282768
},
{
- "x": 0.0414152030347168,
- "y": -4.358104725329866
+ "x": 3.1064578290756515,
+ "y": -9.344559677090913
},
{
- "x": 0.13233917103289627,
- "y": -4.31746795384727
+ "x": 3.0268428984256843,
+ "y": -9.404421876930016
},
{
- "x": 0.22460486390463075,
- "y": -4.279977194026188
+ "x": 2.9452781652475153,
+ "y": -9.461598921743061
},
{
- "x": 0.31810346611277396,
- "y": -4.245676661403763
+ "x": 2.861854152790272,
+ "y": -9.516027354547191
},
{
- "x": 0.4127247080620009,
- "y": -4.214606809053748
+ "x": 2.7766634477929983,
+ "y": -9.56764676886047
},
{
- "x": 0.5083569961474552,
- "y": -4.186804279877407
+ "x": 2.6898005977287482,
+ "y": -9.616399875742928
},
{
- "x": 0.6048875443652832,
- "y": -4.162301863387839
+ "x": 2.601362005872687,
+ "y": -9.662232567377757
},
{
- "x": 0.7022025073291047,
- "y": -4.141128457039002
+ "x": 2.511445824310556,
+ "y": -9.705093977121976
},
{
- "x": 0.8001871145360724,
- "y": -4.12330903214486
+ "x": 2.4201518450061883,
+ "y": -9.744936535959894
},
{
- "x": 0.8987258057239842,
- "y": -4.1088646044289305
+ "x": 2.3275813890491293,
+ "y": -9.781716025296774
},
{
- "x": 0.9977023671596328,
- "y": -4.09781220923891
+ "x": 2.23383719420508,
+ "y": -9.815391626034128
},
{
- "x": 1.0970000686981791,
- "y": -4.090164881455735
+ "x": 2.1390233008941664,
+ "y": -9.845925963872133
},
{
- "x": 1.1965018014512339,
- "y": -4.085931640120549
+ "x": 2.0432449367233687,
+ "y": -9.87328515078876
},
{
- "x": 1.2960902159017849,
- "y": -4.0851174777979224
+ "x": 1.9466083997013754,
+ "y": -9.897438822649974
},
{
- "x": 1.3956478603029154,
- "y": -4.087723354687768
+ "x": 1.8492209402657522,
+ "y": -9.918360172908734
},
{
- "x": 1.4950573191969454,
- "y": -4.093746197492919
+ "x": 1.7511906422525385,
+ "y": -9.936025982355872
},
{
- "x": 1.5942013518920817,
- "y": -4.103178903043641
+ "x": 1.6526263029415134,
+ "y": -9.950416644889472
},
{
- "x": 1.6929630307326136,
- "y": -4.116010346674997
+ "x": 1.5536373123090925,
+ "y": -9.961516189274434
},
{
- "x": 1.7912258790000521,
- "y": -4.132225395346865
+ "x": 1.4543335316239165,
+ "y": -9.96931229686787
},
{
- "x": 1.8888740082826132,
- "y": -4.1518049254914615
+ "x": 1.3548251715190531,
+ "y": -9.973796315290699
},
{
- "x": 1.9857922551504998,
- "y": -4.174725845567167
+ "x": 1.2552226696765558,
+ "y": -9.974963268030379
},
{
- "x": 2.081866316976601,
- "y": -4.200961123291947
+ "x": 1.1556365682602063,
+ "y": -9.97281185996404
},
{
- "x": 2.1769828867416265,
- "y": -4.230479817524525
+ "x": 1.0561773912319268,
+ "y": -9.967344478795766
},
{
- "x": 2.271029786665224,
- "y": -4.263247114755515
+ "x": 0.9569555216888546,
+ "y": -9.958567192406719
},
{
- "x": 2.3638961005052863,
- "y": -4.299224370165362
+ "x": 0.8580810793563387,
+ "y": -9.946489742120775
},
{
- "x": 2.455472304369323,
- "y": -4.338369153201086
+ "x": 0.7596637983734524,
+ "y": -9.931125531893287
},
{
- "x": 2.545650395883996,
- "y": -4.380635297617573
+ "x": 0.6618129055064799,
+ "y": -9.912491613434895
},
{
- "x": 2.6343240215698813,
- "y": -4.425972955924777
+ "x": 0.564636998925323,
+ "y": -9.89060866728704
},
{
- "x": 2.7213886022718725,
- "y": -4.474328658176432
+ "x": 0.46824392767771883,
+ "y": -9.865500979869935
},
{
- "x": 2.806741456496752,
- "y": -4.5256453750309475
+ "x": 0.3727406719947908,
+ "y": -9.83719641652877
},
{
- "x": 2.890281921512951,
- "y": -4.579862585010261
+ "x": 0.27823322456069377,
+ "y": -9.805726390607731
},
{
- "x": 2.971911472069195,
- "y": -4.636916345877097
+ "x": 0.1848264728786262,
+ "y": -9.77112582858652
},
{
- "x": 3.0515338365924265,
- "y": -4.696739370046657
+ "x": 0.09262408286306822,
+ "y": -9.733433131317753
},
{
- "x": 3.129055110727819,
- "y": -4.759261103943643
+ "x": 0.0017283837879062958,
+ "y": -9.69269013140837
},
{
- "x": 3.2043838680868646,
- "y": -4.824407811211202
+ "x": -0.08775974528194297,
+ "y": -9.648942046792513
},
{
- "x": 3.2774312680730304,
- "y": -4.892102659673441
+ "x": -0.17574098744950106,
+ "y": -9.602237430547063
},
{
- "x": 3.348111160657851,
- "y": -4.962265811949109
+ "x": -0.2621176982108864,
+ "y": -9.552628117005938
},
{
- "x": 3.4163401879839057,
- "y": -5.034814519609597
+ "x": -0.3467940138244501,
+ "y": -9.500169164232474
},
{
- "x": 3.4820378826745184,
- "y": -5.109663220770017
+ "x": -0.42967595770360845,
+ "y": -9.444918792914336
},
{
- "x": 3.5451267627348955,
- "y": -5.18672364099848
+ "x": -0.5106715447149952,
+ "y": -9.386938321748104
},
{
- "x": 3.605532422932157,
- "y": -5.265904897424477
+ "x": -0.589690883266826,
+ "y": -9.326292099385867
},
{
- "x": 3.663183622546569,
- "y": -5.347113605923511
+ "x": -0.6666462750734183,
+ "y": -9.263047433018869
},
{
- "x": 3.7180123693910616,
- "y": -5.430253991251732
+ "x": -0.741452312485734,
+ "y": -9.197274513677826
},
{
- "x": 3.76995399999916,
- "y": -5.515228000000491
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_812",
- "pcb_component_id": "pcb_component_49",
- "layer": "top",
- "route": [
- {
- "x": -39.54000000000002,
- "y": 39.820999999999984
+ "x": -0.8140259732796267,
+ "y": -9.1290463383325
},
{
- "x": -39.54000000000002,
- "y": 39.15499999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_813",
- "pcb_component_id": "pcb_component_49",
- "layer": "top",
- "route": [
- {
- "x": -39.54000000000002,
- "y": 39.820999999999984
+ "x": -0.8842867127966088,
+ "y": -9.05843862887734
},
{
- "x": -34.20000000000002,
- "y": 39.820999999999984
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_814",
- "pcb_component_id": "pcb_component_49",
- "layer": "top",
- "route": [
- {
- "x": -39.54000000000002,
- "y": 37.04499999999999
+ "x": -0.9521565533350724,
+ "y": -8.985529748092745
},
{
- "x": -39.54000000000002,
- "y": 36.37899999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_815",
- "pcb_component_id": "pcb_component_49",
- "layer": "top",
- "route": [
- {
- "x": -39.54000000000002,
- "y": 36.37899999999999
+ "x": -1.0175601706924056,
+ "y": -8.910400612675446
},
{
- "x": -34.20000000000002,
- "y": 36.37899999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_816",
- "pcb_component_id": "pcb_component_49",
- "layer": "top",
- "route": [
- {
- "x": -34.20000000000002,
- "y": 39.820999999999984
+ "x": -1.0804249777624761,
+ "y": -8.833134603434502
},
{
- "x": -34.20000000000002,
- "y": 39.15499999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_817",
- "pcb_component_id": "pcb_component_49",
- "layer": "top",
- "route": [
- {
- "x": -34.20000000000002,
- "y": 37.04499999999999
+ "x": -1.140681205095035,
+ "y": -8.753817472752502
},
{
- "x": -34.20000000000002,
- "y": 36.37899999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_818",
- "pcb_component_id": "pcb_component_49",
- "layer": "top",
- "route": [
- {
- "x": -40.420000000000016,
- "y": 39.94999999999999
+ "x": -1.1982619783282473,
+ "y": -8.672537249414688
},
{
- "x": -40.420000000000016,
- "y": 36.249999999999986
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_819",
- "pcb_component_id": "pcb_component_49",
- "layer": "top",
- "route": [
- {
- "x": -40.420000000000016,
- "y": 36.249999999999986
+ "x": -1.2531033924080646,
+ "y": -8.589384140911733
},
{
- "x": -33.32000000000002,
- "y": 36.249999999999986
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_820",
- "pcb_component_id": "pcb_component_49",
- "layer": "top",
- "route": [
- {
- "x": -33.32000000000002,
- "y": 39.94999999999999
+ "x": -1.305144582512213,
+ "y": -8.50445043332445
},
{
- "x": -40.420000000000016,
- "y": 39.94999999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_821",
- "pcb_component_id": "pcb_component_49",
- "layer": "top",
- "route": [
- {
- "x": -33.32000000000002,
- "y": 36.249999999999986
+ "x": -1.3543277915999568,
+ "y": -8.417830388901649
},
{
- "x": -33.32000000000002,
- "y": 39.94999999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_822",
- "pcb_component_id": "pcb_component_49",
- "layer": "top",
- "route": [
- {
- "x": -39.420000000000016,
- "y": 39.69999999999999
+ "x": -1.4005984345127729,
+ "y": -8.329620141444721
},
{
- "x": -39.420000000000016,
- "y": 36.499999999999986
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_823",
- "pcb_component_id": "pcb_component_49",
- "layer": "top",
- "route": [
- {
- "x": -39.420000000000016,
- "y": 36.499999999999986
+ "x": -1.443905158554827,
+ "y": -8.239917589615217
},
{
- "x": -34.32000000000002,
- "y": 36.499999999999986
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_824",
- "pcb_component_id": "pcb_component_49",
- "layer": "top",
- "route": [
- {
- "x": -34.32000000000002,
- "y": 39.69999999999999
+ "x": -1.4841999004858053,
+ "y": -8.148822288283625
},
{
- "x": -39.420000000000016,
- "y": 39.69999999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_825",
- "pcb_component_id": "pcb_component_49",
- "layer": "top",
- "route": [
- {
- "x": -34.32000000000002,
- "y": 36.499999999999986
+ "x": -1.521437939863148,
+ "y": -8.056435338040046
},
{
- "x": -34.32000000000002,
- "y": 39.69999999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_826",
- "pcb_component_id": "pcb_component_50",
- "layer": "top",
- "route": [
- {
- "x": -24.30000000000001,
- "y": 42.36099999999999
+ "x": -1.5555779486743688,
+ "y": -7.962859272989476
},
{
- "x": -24.30000000000001,
- "y": 41.694999999999986
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_827",
- "pcb_component_id": "pcb_component_50",
- "layer": "top",
- "route": [
- {
- "x": -24.30000000000001,
- "y": 42.36099999999999
+ "x": -1.5865820372040957,
+ "y": -7.868197946955988
},
{
- "x": -18.960000000000036,
- "y": 42.36099999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_828",
- "pcb_component_id": "pcb_component_50",
- "layer": "top",
- "route": [
- {
- "x": -24.30000000000001,
- "y": 39.58499999999999
+ "x": -1.6144157960854102,
+ "y": -7.772556418222308
},
{
- "x": -24.30000000000001,
- "y": 38.91899999999998
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_829",
- "pcb_component_id": "pcb_component_50",
- "layer": "top",
- "route": [
- {
- "x": -24.30000000000001,
- "y": 38.91899999999998
+ "x": -1.639048334488507,
+ "y": -7.676040832932685
},
{
- "x": -18.960000000000036,
- "y": 38.91899999999998
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_830",
- "pcb_component_id": "pcb_component_50",
- "layer": "top",
- "route": [
- {
- "x": -18.960000000000036,
- "y": 42.36099999999999
+ "x": -1.6604523144044094,
+ "y": -7.578758307288368
},
{
- "x": -18.960000000000036,
- "y": 41.694999999999986
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_831",
- "pcb_component_id": "pcb_component_50",
- "layer": "top",
- "route": [
- {
- "x": -18.960000000000036,
- "y": 39.58499999999999
+ "x": -1.678603980985514,
+ "y": -7.480816808666447
},
{
- "x": -18.960000000000036,
- "y": 38.91899999999998
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_832",
- "pcb_component_id": "pcb_component_50",
- "layer": "top",
- "route": [
- {
- "x": -25.180000000000035,
- "y": 42.48999999999999
+ "x": -1.6934831889095108,
+ "y": -7.382325035794139
},
{
- "x": -25.180000000000035,
- "y": 38.789999999999985
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_833",
- "pcb_component_id": "pcb_component_50",
- "layer": "top",
- "route": [
- {
- "x": -25.180000000000035,
- "y": 38.789999999999985
+ "x": -1.705073424737435,
+ "y": -7.283392298111252
},
{
- "x": -18.080000000000013,
- "y": 38.789999999999985
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_834",
- "pcb_component_id": "pcb_component_50",
- "layer": "top",
- "route": [
- {
- "x": -18.080000000000013,
- "y": 42.48999999999999
+ "x": -1.7133618252406961,
+ "y": -7.184128394455001
},
{
- "x": -25.180000000000035,
- "y": 42.48999999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_835",
- "pcb_component_id": "pcb_component_50",
- "layer": "top",
- "route": [
- {
- "x": -18.080000000000013,
- "y": 38.789999999999985
+ "x": -1.7183391916772166,
+ "y": -7.084643491201618
},
{
- "x": -18.080000000000013,
- "y": 42.48999999999999
+ "x": -1.720000000000482,
+ "y": -6.985048000000006
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_836",
- "pcb_component_id": "pcb_component_50",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_315",
+ "pcb_component_id": "pcb_component_49",
"layer": "top",
"route": [
{
- "x": -24.180000000000035,
- "y": 42.23999999999999
+ "x": -39.54000000000002,
+ "y": 39.820999999999984
},
{
- "x": -24.180000000000035,
- "y": 39.039999999999985
+ "x": -39.54000000000002,
+ "y": 39.15499999999999
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_837",
- "pcb_component_id": "pcb_component_50",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_316",
+ "pcb_component_id": "pcb_component_49",
"layer": "top",
"route": [
{
- "x": -24.180000000000035,
- "y": 39.039999999999985
+ "x": -39.54000000000002,
+ "y": 39.820999999999984
},
{
- "x": -19.080000000000013,
- "y": 39.039999999999985
+ "x": -34.20000000000002,
+ "y": 39.820999999999984
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_838",
- "pcb_component_id": "pcb_component_50",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_317",
+ "pcb_component_id": "pcb_component_49",
"layer": "top",
"route": [
{
- "x": -19.080000000000013,
- "y": 42.23999999999999
+ "x": -39.54000000000002,
+ "y": 37.04499999999999
},
{
- "x": -24.180000000000035,
- "y": 42.23999999999999
+ "x": -39.54000000000002,
+ "y": 36.37899999999999
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_839",
- "pcb_component_id": "pcb_component_50",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_318",
+ "pcb_component_id": "pcb_component_49",
"layer": "top",
"route": [
{
- "x": -19.080000000000013,
- "y": 39.039999999999985
+ "x": -39.54000000000002,
+ "y": 36.37899999999999
},
{
- "x": -19.080000000000013,
- "y": 42.23999999999999
+ "x": -34.20000000000002,
+ "y": 36.37899999999999
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_840",
- "pcb_component_id": "pcb_component_51",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_319",
+ "pcb_component_id": "pcb_component_49",
"layer": "top",
"route": [
{
- "x": 43.363999999999976,
- "y": 19.219999999999985
+ "x": -34.20000000000002,
+ "y": 39.820999999999984
},
{
- "x": 43.363999999999976,
- "y": 13.879999999999981
+ "x": -34.20000000000002,
+ "y": 39.15499999999999
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_841",
- "pcb_component_id": "pcb_component_51",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_320",
+ "pcb_component_id": "pcb_component_49",
"layer": "top",
"route": [
{
- "x": 44.02999999999997,
- "y": 19.219999999999985
+ "x": -34.20000000000002,
+ "y": 37.04499999999999
},
{
- "x": 43.363999999999976,
- "y": 19.219999999999985
+ "x": -34.20000000000002,
+ "y": 36.37899999999999
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_842",
- "pcb_component_id": "pcb_component_51",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_321",
+ "pcb_component_id": "pcb_component_50",
"layer": "top",
"route": [
{
- "x": 44.02999999999997,
- "y": 13.879999999999981
+ "x": -24.30000000000001,
+ "y": 42.36099999999999
},
{
- "x": 43.363999999999976,
- "y": 13.879999999999981
+ "x": -24.30000000000001,
+ "y": 41.694999999999986
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_843",
- "pcb_component_id": "pcb_component_51",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_322",
+ "pcb_component_id": "pcb_component_50",
"layer": "top",
"route": [
{
- "x": 46.80599999999998,
- "y": 19.219999999999985
+ "x": -24.30000000000001,
+ "y": 42.36099999999999
},
{
- "x": 46.139999999999986,
- "y": 19.219999999999985
+ "x": -18.960000000000036,
+ "y": 42.36099999999999
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_844",
- "pcb_component_id": "pcb_component_51",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_323",
+ "pcb_component_id": "pcb_component_50",
"layer": "top",
"route": [
{
- "x": 46.80599999999998,
- "y": 19.219999999999985
+ "x": -24.30000000000001,
+ "y": 39.58499999999999
},
{
- "x": 46.80599999999998,
- "y": 13.879999999999981
+ "x": -24.30000000000001,
+ "y": 38.91899999999998
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_845",
- "pcb_component_id": "pcb_component_51",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_324",
+ "pcb_component_id": "pcb_component_50",
"layer": "top",
"route": [
{
- "x": 46.80599999999998,
- "y": 13.879999999999981
+ "x": -24.30000000000001,
+ "y": 38.91899999999998
},
{
- "x": 46.139999999999986,
- "y": 13.879999999999981
+ "x": -18.960000000000036,
+ "y": 38.91899999999998
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_846",
- "pcb_component_id": "pcb_component_51",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_325",
+ "pcb_component_id": "pcb_component_50",
"layer": "top",
"route": [
{
- "x": 43.234999999999985,
- "y": 20.09999999999998
+ "x": -18.960000000000036,
+ "y": 42.36099999999999
},
{
- "x": 43.234999999999985,
- "y": 12.999999999999986
+ "x": -18.960000000000036,
+ "y": 41.694999999999986
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_847",
- "pcb_component_id": "pcb_component_51",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_326",
+ "pcb_component_id": "pcb_component_50",
"layer": "top",
"route": [
{
- "x": 43.234999999999985,
- "y": 12.999999999999986
+ "x": -18.960000000000036,
+ "y": 39.58499999999999
},
{
- "x": 46.934999999999974,
- "y": 12.999999999999986
+ "x": -18.960000000000036,
+ "y": 38.91899999999998
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_848",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_327",
"pcb_component_id": "pcb_component_51",
"layer": "top",
"route": [
{
- "x": 46.934999999999974,
- "y": 20.09999999999998
+ "x": 43.363999999999976,
+ "y": 19.219999999999985
},
{
- "x": 43.234999999999985,
- "y": 20.09999999999998
+ "x": 43.363999999999976,
+ "y": 13.879999999999981
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_849",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_328",
"pcb_component_id": "pcb_component_51",
"layer": "top",
"route": [
{
- "x": 46.934999999999974,
- "y": 12.999999999999986
+ "x": 44.02999999999997,
+ "y": 19.219999999999985
},
{
- "x": 46.934999999999974,
- "y": 20.09999999999998
+ "x": 43.363999999999976,
+ "y": 19.219999999999985
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_850",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_329",
"pcb_component_id": "pcb_component_51",
"layer": "top",
"route": [
{
- "x": 43.484999999999985,
- "y": 19.09999999999998
+ "x": 44.02999999999997,
+ "y": 13.879999999999981
},
{
- "x": 43.484999999999985,
- "y": 13.999999999999986
+ "x": 43.363999999999976,
+ "y": 13.879999999999981
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_851",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_330",
"pcb_component_id": "pcb_component_51",
"layer": "top",
"route": [
{
- "x": 43.484999999999985,
- "y": 13.999999999999986
+ "x": 46.80599999999998,
+ "y": 19.219999999999985
},
{
- "x": 46.684999999999974,
- "y": 13.999999999999986
+ "x": 46.139999999999986,
+ "y": 19.219999999999985
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_852",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_331",
"pcb_component_id": "pcb_component_51",
"layer": "top",
"route": [
{
- "x": 46.684999999999974,
- "y": 19.09999999999998
+ "x": 46.80599999999998,
+ "y": 19.219999999999985
},
{
- "x": 43.484999999999985,
- "y": 19.09999999999998
+ "x": 46.80599999999998,
+ "y": 13.879999999999981
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_853",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_332",
"pcb_component_id": "pcb_component_51",
"layer": "top",
"route": [
{
- "x": 46.684999999999974,
- "y": 13.999999999999986
+ "x": 46.80599999999998,
+ "y": 13.879999999999981
},
{
- "x": 46.684999999999974,
- "y": 19.09999999999998
+ "x": 46.139999999999986,
+ "y": 13.879999999999981
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_854",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_333",
"pcb_component_id": "pcb_component_52",
"layer": "top",
"route": [
@@ -86648,7 +73027,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_855",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_334",
"pcb_component_id": "pcb_component_52",
"layer": "top",
"route": [
@@ -86665,7 +73044,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_856",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_335",
"pcb_component_id": "pcb_component_52",
"layer": "top",
"route": [
@@ -86682,7 +73061,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_857",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_336",
"pcb_component_id": "pcb_component_52",
"layer": "top",
"route": [
@@ -86699,7 +73078,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_858",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_337",
"pcb_component_id": "pcb_component_52",
"layer": "top",
"route": [
@@ -86716,7 +73095,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_859",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_338",
"pcb_component_id": "pcb_component_52",
"layer": "top",
"route": [
@@ -86733,143 +73112,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_860",
- "pcb_component_id": "pcb_component_52",
- "layer": "top",
- "route": [
- {
- "x": -11.718000000000018,
- "y": 42.23599999999999
- },
- {
- "x": -11.718000000000018,
- "y": 38.53599999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_861",
- "pcb_component_id": "pcb_component_52",
- "layer": "top",
- "route": [
- {
- "x": -11.718000000000018,
- "y": 38.53599999999999
- },
- {
- "x": -4.617999999999995,
- "y": 38.53599999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_862",
- "pcb_component_id": "pcb_component_52",
- "layer": "top",
- "route": [
- {
- "x": -4.617999999999995,
- "y": 42.23599999999999
- },
- {
- "x": -11.718000000000018,
- "y": 42.23599999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_863",
- "pcb_component_id": "pcb_component_52",
- "layer": "top",
- "route": [
- {
- "x": -4.617999999999995,
- "y": 38.53599999999999
- },
- {
- "x": -4.617999999999995,
- "y": 42.23599999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_864",
- "pcb_component_id": "pcb_component_52",
- "layer": "top",
- "route": [
- {
- "x": -10.718000000000018,
- "y": 41.98599999999999
- },
- {
- "x": -10.718000000000018,
- "y": 38.78599999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_865",
- "pcb_component_id": "pcb_component_52",
- "layer": "top",
- "route": [
- {
- "x": -10.718000000000018,
- "y": 38.78599999999999
- },
- {
- "x": -5.617999999999995,
- "y": 38.78599999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_866",
- "pcb_component_id": "pcb_component_52",
- "layer": "top",
- "route": [
- {
- "x": -5.617999999999995,
- "y": 41.98599999999999
- },
- {
- "x": -10.718000000000018,
- "y": 41.98599999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_867",
- "pcb_component_id": "pcb_component_52",
- "layer": "top",
- "route": [
- {
- "x": -5.617999999999995,
- "y": 38.78599999999999
- },
- {
- "x": -5.617999999999995,
- "y": 41.98599999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_868",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_339",
"pcb_component_id": "pcb_component_53",
"layer": "top",
"route": [
@@ -86886,7 +73129,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_869",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_340",
"pcb_component_id": "pcb_component_53",
"layer": "top",
"route": [
@@ -86903,7 +73146,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_870",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_341",
"pcb_component_id": "pcb_component_53",
"layer": "top",
"route": [
@@ -86920,7 +73163,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_871",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_342",
"pcb_component_id": "pcb_component_53",
"layer": "top",
"route": [
@@ -86937,7 +73180,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_872",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_343",
"pcb_component_id": "pcb_component_53",
"layer": "top",
"route": [
@@ -86954,7 +73197,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_873",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_344",
"pcb_component_id": "pcb_component_53",
"layer": "top",
"route": [
@@ -86971,143 +73214,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_874",
- "pcb_component_id": "pcb_component_53",
- "layer": "top",
- "route": [
- {
- "x": 41.329999999999984,
- "y": -21.17500000000001
- },
- {
- "x": 41.329999999999984,
- "y": -28.275000000000006
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_875",
- "pcb_component_id": "pcb_component_53",
- "layer": "top",
- "route": [
- {
- "x": 41.329999999999984,
- "y": -28.275000000000006
- },
- {
- "x": 45.02999999999997,
- "y": -28.275000000000006
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_876",
- "pcb_component_id": "pcb_component_53",
- "layer": "top",
- "route": [
- {
- "x": 45.02999999999997,
- "y": -21.17500000000001
- },
- {
- "x": 41.329999999999984,
- "y": -21.17500000000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_877",
- "pcb_component_id": "pcb_component_53",
- "layer": "top",
- "route": [
- {
- "x": 45.02999999999997,
- "y": -28.275000000000006
- },
- {
- "x": 45.02999999999997,
- "y": -21.17500000000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_878",
- "pcb_component_id": "pcb_component_53",
- "layer": "top",
- "route": [
- {
- "x": 41.579999999999984,
- "y": -22.17500000000001
- },
- {
- "x": 41.579999999999984,
- "y": -27.275000000000006
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_879",
- "pcb_component_id": "pcb_component_53",
- "layer": "top",
- "route": [
- {
- "x": 41.579999999999984,
- "y": -27.275000000000006
- },
- {
- "x": 44.77999999999997,
- "y": -27.275000000000006
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_880",
- "pcb_component_id": "pcb_component_53",
- "layer": "top",
- "route": [
- {
- "x": 44.77999999999997,
- "y": -22.17500000000001
- },
- {
- "x": 41.579999999999984,
- "y": -22.17500000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_881",
- "pcb_component_id": "pcb_component_53",
- "layer": "top",
- "route": [
- {
- "x": 44.77999999999997,
- "y": -27.275000000000006
- },
- {
- "x": 44.77999999999997,
- "y": -22.17500000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_882",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_345",
"pcb_component_id": "pcb_component_54",
"layer": "top",
"route": [
@@ -87124,7 +73231,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_883",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_346",
"pcb_component_id": "pcb_component_54",
"layer": "top",
"route": [
@@ -87141,7 +73248,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_884",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_347",
"pcb_component_id": "pcb_component_54",
"layer": "top",
"route": [
@@ -87158,7 +73265,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_885",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_348",
"pcb_component_id": "pcb_component_54",
"layer": "top",
"route": [
@@ -87175,7 +73282,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_886",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_349",
"pcb_component_id": "pcb_component_54",
"layer": "top",
"route": [
@@ -87192,7 +73299,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_887",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_350",
"pcb_component_id": "pcb_component_54",
"layer": "top",
"route": [
@@ -87209,7 +73316,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_888",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_351",
"pcb_component_id": "pcb_component_54",
"layer": "top",
"route": [
@@ -87226,7 +73333,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_889",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_352",
"pcb_component_id": "pcb_component_54",
"layer": "top",
"route": [
@@ -87243,7 +73350,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_890",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_353",
"pcb_component_id": "pcb_component_54",
"layer": "top",
"route": [
@@ -87260,228 +73367,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_891",
- "pcb_component_id": "pcb_component_54",
- "layer": "top",
- "route": [
- {
- "x": -30.26000000000002,
- "y": 34.26999999999999
- },
- {
- "x": -30.26000000000002,
- "y": 31.76999999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_892",
- "pcb_component_id": "pcb_component_54",
- "layer": "top",
- "route": [
- {
- "x": -30.26000000000002,
- "y": 31.76999999999999
- },
- {
- "x": -15.460000000000008,
- "y": 31.76999999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_893",
- "pcb_component_id": "pcb_component_54",
- "layer": "top",
- "route": [
- {
- "x": -15.460000000000008,
- "y": 34.26999999999999
- },
- {
- "x": -30.26000000000002,
- "y": 34.26999999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_894",
- "pcb_component_id": "pcb_component_54",
- "layer": "top",
- "route": [
- {
- "x": -15.460000000000008,
- "y": 31.76999999999999
- },
- {
- "x": -15.460000000000008,
- "y": 34.26999999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_895",
- "pcb_component_id": "pcb_component_54",
- "layer": "top",
- "route": [
- {
- "x": -29.210000000000022,
- "y": 33.01999999999999
- },
- {
- "x": -24.860000000000014,
- "y": 33.01999999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_896",
- "pcb_component_id": "pcb_component_54",
- "layer": "top",
- "route": [
- {
- "x": -24.860000000000014,
- "y": 34.01999999999999
- },
- {
- "x": -24.860000000000014,
- "y": 32.01999999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_897",
- "pcb_component_id": "pcb_component_54",
- "layer": "top",
- "route": [
- {
- "x": -24.860000000000014,
- "y": 32.01999999999999
- },
- {
- "x": -20.860000000000014,
- "y": 32.01999999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_898",
- "pcb_component_id": "pcb_component_54",
- "layer": "top",
- "route": [
- {
- "x": -21.56000000000003,
- "y": 32.01999999999999
- },
- {
- "x": -21.56000000000003,
- "y": 34.01999999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_899",
- "pcb_component_id": "pcb_component_54",
- "layer": "top",
- "route": [
- {
- "x": -21.460000000000008,
- "y": 32.01999999999999
- },
- {
- "x": -21.460000000000008,
- "y": 34.01999999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_900",
- "pcb_component_id": "pcb_component_54",
- "layer": "top",
- "route": [
- {
- "x": -21.360000000000014,
- "y": 32.01999999999999
- },
- {
- "x": -21.360000000000014,
- "y": 34.01999999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_901",
- "pcb_component_id": "pcb_component_54",
- "layer": "top",
- "route": [
- {
- "x": -20.860000000000014,
- "y": 34.01999999999999
- },
- {
- "x": -24.860000000000014,
- "y": 34.01999999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_902",
- "pcb_component_id": "pcb_component_54",
- "layer": "top",
- "route": [
- {
- "x": -20.860000000000014,
- "y": 32.01999999999999
- },
- {
- "x": -20.860000000000014,
- "y": 34.01999999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_903",
- "pcb_component_id": "pcb_component_54",
- "layer": "top",
- "route": [
- {
- "x": -16.51000000000002,
- "y": 33.01999999999999
- },
- {
- "x": -20.860000000000014,
- "y": 33.01999999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_904",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_354",
"pcb_component_id": "pcb_component_55",
"layer": "top",
"route": [
@@ -87498,7 +73384,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_905",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_355",
"pcb_component_id": "pcb_component_55",
"layer": "top",
"route": [
@@ -87515,7 +73401,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_906",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_356",
"pcb_component_id": "pcb_component_55",
"layer": "top",
"route": [
@@ -87532,7 +73418,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_907",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_357",
"pcb_component_id": "pcb_component_55",
"layer": "top",
"route": [
@@ -87549,7 +73435,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_908",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_358",
"pcb_component_id": "pcb_component_55",
"layer": "top",
"route": [
@@ -87566,7 +73452,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_909",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_359",
"pcb_component_id": "pcb_component_55",
"layer": "top",
"route": [
@@ -87583,7 +73469,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_910",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_360",
"pcb_component_id": "pcb_component_55",
"layer": "top",
"route": [
@@ -87600,7 +73486,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_911",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_361",
"pcb_component_id": "pcb_component_55",
"layer": "top",
"route": [
@@ -87617,7 +73503,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_912",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_362",
"pcb_component_id": "pcb_component_55",
"layer": "top",
"route": [
@@ -87634,7 +73520,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_913",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_363",
"pcb_component_id": "pcb_component_55",
"layer": "top",
"route": [
@@ -87651,109 +73537,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_914",
- "pcb_component_id": "pcb_component_55",
- "layer": "top",
- "route": [
- {
- "x": -38.11500000000001,
- "y": 3.404999999999987
- },
- {
- "x": -35.36500000000001,
- "y": 6.154999999999987
- }
- ],
- "stroke_width": 0.15
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_915",
- "pcb_component_id": "pcb_component_55",
- "layer": "top",
- "route": [
- {
- "x": -38.11500000000001,
- "y": 0.4049999999999869
- },
- {
- "x": -38.11500000000001,
- "y": 3.404999999999987
- }
- ],
- "stroke_width": 0.15
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_916",
- "pcb_component_id": "pcb_component_55",
- "layer": "top",
- "route": [
- {
- "x": -35.36500000000001,
- "y": 6.154999999999987
- },
- {
- "x": -23.11500000000001,
- "y": 6.154999999999987
- }
- ],
- "stroke_width": 0.15
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_917",
- "pcb_component_id": "pcb_component_55",
- "layer": "top",
- "route": [
- {
- "x": -35.36500000000001,
- "y": -2.345000000000013
- },
- {
- "x": -38.11500000000001,
- "y": 0.4049999999999869
- }
- ],
- "stroke_width": 0.15
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_918",
- "pcb_component_id": "pcb_component_55",
- "layer": "top",
- "route": [
- {
- "x": -23.11500000000001,
- "y": 6.154999999999987
- },
- {
- "x": -23.11500000000001,
- "y": -2.345000000000013
- }
- ],
- "stroke_width": 0.15
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_919",
- "pcb_component_id": "pcb_component_55",
- "layer": "top",
- "route": [
- {
- "x": -23.11500000000001,
- "y": -2.345000000000013
- },
- {
- "x": -35.36500000000001,
- "y": -2.345000000000013
- }
- ],
- "stroke_width": 0.15
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_920",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_364",
"pcb_component_id": "pcb_component_55",
"layer": "top",
"route": [
@@ -87934,2167 +73718,1188 @@
"y": 5.72506026224427
},
{
- "x": -32.65075336858149,
- "y": 5.733292520284863
- },
- {
- "x": -32.551054094780326,
- "y": 5.738925814038325
- },
- {
- "x": -32.45124179446401,
- "y": 5.741956309139795
- },
- {
- "x": -32.35138440599957,
- "y": 5.742381942848596
- },
- {
- "x": -32.25154989844374,
- "y": 5.740202425452381
- },
- {
- "x": -32.15180622527916,
- "y": 5.735419240464211
- },
- {
- "x": -32.052221278160985,
- "y": 5.728035643612856
- },
- {
- "x": -31.952862840705706,
- "y": 5.718056660626715
- },
- {
- "x": -31.853798542353445,
- "y": 5.705489083813021
- },
- {
- "x": -31.755095812335256,
- "y": 5.69034146743455
- },
- {
- "x": -31.656821833776604,
- "y": 5.6726241218870825
- },
- {
- "x": -31.559043497968474,
- "y": 5.652349106681527
- },
- {
- "x": -31.461827358837,
- "y": 5.629530222235488
- },
- {
- "x": -31.365239587642805,
- "y": 5.604183000479779
- },
- {
- "x": -31.269345927940833,
- "y": 5.576324694286555
- },
- {
- "x": -31.174211650831197,
- "y": 5.545974265725846
- },
- {
- "x": -31.07990151053167,
- "y": 5.5131523731588885
- },
- {
- "x": -30.98647970030204,
- "y": 5.477881357176713
- },
- {
- "x": -30.89400980875024,
- "y": 5.440185225393847
- },
- {
- "x": -30.80255477655001,
- "y": 5.400089636107168
- },
- {
- "x": -30.7121768535996,
- "y": 5.357621880831374
- },
- {
- "x": -30.622937556650783,
- "y": 5.312810865722668
- },
- {
- "x": -30.53489762743665,
- "y": 5.265687091903459
- },
- {
- "x": -30.448116991327154,
- "y": 5.216282634701443
- },
- {
- "x": -30.36265471654022,
- "y": 5.164631121817166
- },
- {
- "x": -30.278568973936245,
- "y": 5.110767710434928
- },
- {
- "x": -30.19591699742351,
- "y": 5.054729063292683
- },
- {
- "x": -30.11475504500126,
- "y": 4.996553323727113
- },
- {
- "x": -30.035138360467016,
- "y": 4.936280089710948
- },
- {
- "x": -29.957121135814305,
- "y": 4.873950386900148
- },
- {
- "x": -29.8807564743463,
- "y": 4.809606640709319
- },
- {
- "x": -29.806096354530382,
- "y": 4.7432926474344015
- },
- {
- "x": -29.733191594618432,
- "y": 4.675053544442235
- },
- {
- "x": -29.662091818056894,
- "y": 4.60493577944726
- },
- {
- "x": -29.59284541970989,
- "y": 4.532987078896369
- },
- {
- "x": -29.5254995329188,
- "y": 4.459256415483409
- },
- {
- "x": -29.460099997420414,
- "y": 4.3837939748152905
- },
- {
- "x": -29.39669132814555,
- "y": 4.306651121252671
- },
- {
- "x": -29.335316684919505,
- "y": 4.227880362948142
- },
- {
- "x": -29.276017843084844,
- "y": 4.14753531610603
- },
- {
- "x": -29.218835165066494,
- "y": 4.065670668487897
- },
- {
- "x": -29.163807572898648,
- "y": 3.9823421421886565
- },
- {
- "x": -29.110972521732023,
- "y": 3.8976064557087824
- },
- {
- "x": -29.060365974339618,
- "y": 3.811521285348192
- },
- {
- "x": -29.0120223766382,
- "y": 3.7241452259481633
- },
- {
- "x": -28.965974634242315,
- "y": 3.6355377510082008
- },
- {
- "x": -28.922254090066758,
- "y": 3.5457591722046544
- },
- {
- "x": -28.8808905029926,
- "y": 3.4548705983388857
- },
- {
- "x": -28.841912027611542,
- "y": 3.362933893742948
- },
- {
- "x": -28.805345195062074,
- "y": 3.2700116361708638
- },
- {
- "x": -28.771214894970868,
- "y": 3.1761670742044004
- },
- {
- "x": -28.73954435851128,
- "y": 3.081464084202196
- },
- {
- "x": -28.71035514259087,
- "y": 2.9859671268216346
- },
- {
- "x": -28.68366711517838,
- "y": 2.8897412031429184
- },
- {
- "x": -28.659498441780414,
- "y": 2.7928518104253612
- },
- {
- "x": -28.63786557307688,
- "y": 2.695364897525991
- },
- {
- "x": -28.61878323372366,
- "y": 2.5973468200106566
- },
- {
- "x": -28.602264412330058,
- "y": 2.498864294988408
- },
- {
- "x": -28.588320352618027,
- "y": 2.3999843556996865
- },
- {
- "x": -28.576960545768927,
- "y": 2.300774305889476
- },
- {
- "x": -28.56819272396332,
- "y": 2.201301673996184
- },
- {
- "x": -28.562022855117903,
- "y": 2.101634167187683
- },
- {
- "x": -28.55845513882346,
- "y": 2.001839625275622
- },
- {
- "x": -28.557492003486274,
- "y": 1.9019859745395848
- },
- {
- "x": -28.559134104675266,
- "y": 1.802141181492189
- },
- {
- "x": -28.563380324675776,
- "y": 1.7023732066169686
- },
- {
- "x": -28.570227773250295,
- "y": 1.6027499581103513
- },
- {
- "x": -28.579671789605783,
- "y": 1.5033392456590633
- },
- {
- "x": -28.591705945566076,
- "y": 1.4042087342848362
- },
- {
- "x": -28.606322049947323,
- "y": 1.3054258982873392
- },
- {
- "x": -28.62351015413337,
- "y": 1.2070579753170705
- },
- {
- "x": -28.64325855884738,
- "y": 1.1091719206093416
- },
- {
- "x": -28.66555382211517,
- "y": 1.011834361410365
- },
- {
- "x": -28.690380768414528,
- "y": 0.9151115516267225
- },
- {
- "x": -28.71772249900468,
- "y": 0.8190693267288793
- },
- {
- "x": -28.74756040342858,
- "y": 0.7237730589395142
- },
- {
- "x": -28.779874172180357,
- "y": 0.6292876127372011
- },
- {
- "x": -28.81464181052914,
- "y": 0.5356773007056574
- },
- {
- "x": -28.85183965349009,
- "y": 0.44300583975869756
- },
- {
- "x": -28.891442381932222,
- "y": 0.3513363077705094
- },
- {
- "x": -28.933423039812112,
- "y": 0.2607311006410953
- },
- {
- "x": -28.97775305252192,
- "y": 0.1712518898257116
- },
- {
- "x": -29.024402246338894,
- "y": 0.08295958035758133
- },
- {
- "x": -29.073338868963617,
- "y": -0.0040857306079260525
- },
- {
- "x": -29.124529611132388,
- "y": -0.08982479469894145
- },
- {
- "x": -29.177939629289696,
- "y": -0.17419925265529912
- },
- {
- "x": -29.2335325693048,
- "y": -0.2571516740513715
- },
- {
- "x": -29.291270591216573,
- "y": -0.3386255963867342
- },
- {
- "x": -29.351114394989764,
- "y": -0.4185655635180012
- },
- {
- "x": -29.413023247264945,
- "y": -0.4969171634056977
- },
- {
- "x": -29.476955009084165,
- "y": -0.5736270651504185
- },
- {
- "x": -29.542866164573283,
- "y": -0.6486430552930784
- },
- {
- "x": -29.610711850561543,
- "y": -0.7219140733546254
- },
- {
- "x": -29.680445887118225,
- "y": -0.7933902465909171
- },
- {
- "x": -29.752020808985506,
- "y": -0.8630229239391696
- },
- {
- "x": -29.825387897886245,
- "y": -0.9307647091328448
- },
- {
- "x": -29.900497215684567,
- "y": -0.9965694929624647
- },
- {
- "x": -29.97729763837694,
- "y": -1.0603924846603405
- },
- {
- "x": -30.055736890890145,
- "y": -1.1221902423879584
- },
- {
- "x": -30.13576158266305,
- "y": -1.1819207028051153
- },
- {
- "x": -30.21731724398738,
- "y": -1.2395432097008126
- },
- {
- "x": -30.300348363083188,
- "y": -1.29501854166638
- },
- {
- "x": -30.384798423883595,
- "y": -1.3483089387919591
- },
- {
- "x": -30.47060994450301,
- "y": -1.3993781283682267
- },
- {
- "x": -30.55772451636294,
- "y": -1.448191349575751
- },
- {
- "x": -30.64608284394832,
- "y": -1.4947153771454822
- },
- {
- "x": -30.735624785167758,
- "y": -1.5389185439737503
- },
- {
- "x": -30.826289392289922,
- "y": -1.5807707626769059
- },
- {
- "x": -30.918014953428255,
- "y": -1.6202435460706823
- },
- {
- "x": -31.010739034545892,
- "y": -1.657310026560225
+ "x": -32.65075336858149,
+ "y": 5.733292520284863
},
{
- "x": -31.104398521952135,
- "y": -1.6919449744278836
+ "x": -32.551054094780326,
+ "y": 5.738925814038325
},
{
- "x": -31.19892966526139,
- "y": -1.7241248150060926
+ "x": -32.45124179446401,
+ "y": 5.741956309139795
},
{
- "x": -31.294268120785688,
- "y": -1.7538276447237138
+ "x": -32.35138440599957,
+ "y": 5.742381942848596
},
{
- "x": -31.39034899533091,
- "y": -1.781033246014971
+ "x": -32.25154989844374,
+ "y": 5.740202425452381
},
{
- "x": -31.48710689036703,
- "y": -1.8057231010807868
+ "x": -32.15180622527916,
+ "y": 5.735419240464211
},
{
- "x": -31.58447594654244,
- "y": -1.827880404493058
+ "x": -32.052221278160985,
+ "y": 5.728035643612856
},
{
- "x": -31.68238988851178,
- "y": -1.8474900746335265
+ "x": -31.952862840705706,
+ "y": 5.718056660626715
},
{
- "x": -31.780782070047053,
- "y": -1.8645387639592315
+ "x": -31.853798542353445,
+ "y": 5.705489083813021
},
{
- "x": -31.87958551940109,
- "y": -1.8790148680876513
+ "x": -31.755095812335256,
+ "y": 5.69034146743455
},
{
- "x": -31.978732984892673,
- "y": -1.890908533695395
+ "x": -31.656821833776604,
+ "y": 5.6726241218870825
},
{
- "x": -32.07815698068211,
- "y": -1.90021166522493
+ "x": -31.559043497968474,
+ "y": 5.652349106681527
},
{
- "x": -32.17778983270624,
- "y": -1.9069179303949255
+ "x": -31.461827358837,
+ "y": 5.629530222235488
},
{
- "x": -32.27756372474157,
- "y": -1.9110227645104487
+ "x": -31.365239587642805,
+ "y": 5.604183000479779
},
{
- "x": -32.377410744564116,
- "y": -1.9125233735698828
+ "x": -31.269345927940833,
+ "y": 5.576324694286555
},
{
- "x": -32.47726293017466,
- "y": -1.9114187361667518
+ "x": -31.174211650831197,
+ "y": 5.545974265725846
},
{
- "x": -32.5770523160578,
- "y": -1.9077096041849728
+ "x": -31.07990151053167,
+ "y": 5.5131523731588885
},
{
- "x": -32.67671097944351,
- "y": -1.901398502287023
+ "x": -30.98647970030204,
+ "y": 5.477881357176713
},
{
- "x": -32.77617108653949,
- "y": -1.892489726195521
+ "x": -30.89400980875024,
+ "y": 5.440185225393847
},
{
- "x": -32.87536493870303,
- "y": -1.8809893397693145
+ "x": -30.80255477655001,
+ "y": 5.400089636107168
},
{
- "x": -32.97422501852081,
- "y": -1.8669051708760236
+ "x": -30.7121768535996,
+ "y": 5.357621880831374
},
{
- "x": -33.07268403576545,
- "y": -1.8502468060639217
+ "x": -30.622937556650783,
+ "y": 5.312810865722668
},
{
- "x": -33.17067497319732,
- "y": -1.8310255840367375
+ "x": -30.53489762743665,
+ "y": 5.265687091903459
},
{
- "x": -33.26813113218057,
- "y": -1.809254587935854
+ "x": -30.448116991327154,
+ "y": 5.216282634701443
},
{
- "x": -33.36498617808235,
- "y": -1.7849486364351037
+ "x": -30.36265471654022,
+ "y": 5.164631121817166
},
{
- "x": -33.4611741854242,
- "y": -1.758124273654289
+ "x": -30.278568973936245,
+ "y": 5.110767710434928
},
{
- "x": -33.55662968275497,
- "y": -1.7287997578982157
+ "x": -30.19591699742351,
+ "y": 5.054729063292683
},
{
- "x": -33.65128769721471,
- "y": -1.6969950492289883
+ "x": -30.11475504500126,
+ "y": 4.996553323727113
},
{
- "x": -33.74508379875917,
- "y": -1.662731795879992
+ "x": -30.035138360467016,
+ "y": 4.936280089710948
},
{
- "x": -33.8379541440148,
- "y": -1.6260333195207295
+ "x": -29.957121135814305,
+ "y": 4.873950386900148
},
{
- "x": -33.92983551973457,
- "y": -1.586924599382698
+ "x": -29.8807564743463,
+ "y": 4.809606640709319
},
{
- "x": -34.02066538582467,
- "y": -1.545432255256955
+ "x": -29.806096354530382,
+ "y": 4.7432926474344015
},
{
- "x": -34.11038191791317,
- "y": -1.5015845293751369
+ "x": -29.733191594618432,
+ "y": 4.675053544442235
},
{
- "x": -34.19892404943147,
- "y": -1.4554112671859798
+ "x": -29.662091818056894,
+ "y": 4.60493577944726
},
{
- "x": -34.28623151317997,
- "y": -1.4069438970407333
+ "x": -29.59284541970989,
+ "y": 4.532987078896369
},
{
- "x": -34.372244882349605,
- "y": -1.3562154088010487
+ "x": -29.5254995329188,
+ "y": 4.459256415483409
},
{
- "x": -34.45690561097133,
- "y": -1.3032603313841378
+ "x": -29.460099997420414,
+ "y": 4.3837939748152905
},
{
- "x": -34.54015607376617,
- "y": -1.2481147092601788
+ "x": -29.39669132814555,
+ "y": 4.306651121252671
},
{
- "x": -34.62193960536847,
- "y": -1.1908160779183277
+ "x": -29.335316684919505,
+ "y": 4.227880362948142
},
{
- "x": -34.70220053889581,
- "y": -1.1314034383177187
+ "x": -29.276017843084844,
+ "y": 4.14753531610603
},
{
- "x": -34.780884243839324,
- "y": -1.069917230340991
+ "x": -29.218835165066494,
+ "y": 4.065670668487897
},
{
- "x": -34.857937163248536,
- "y": -1.0063993052685305
+ "x": -29.163807572898648,
+ "y": 3.9823421421886565
},
{
- "x": -34.93330685018553,
- "y": -0.9408928972918176
+ "x": -29.110972521732023,
+ "y": 3.8976064557087824
},
{
- "x": -35.00694200342356,
- "y": -0.8734425940856454
+ "x": -29.060365974339618,
+ "y": 3.811521285348192
},
{
- "x": -35.07879250236576,
- "y": -0.8040943064589783
+ "x": -29.0120223766382,
+ "y": 3.7241452259481633
},
{
- "x": -35.14880944116034,
- "y": -0.7328952371052964
+ "x": -28.965974634242315,
+ "y": 3.6355377510082008
},
{
- "x": -35.216945161988875,
- "y": -0.6598938484735157
+ "x": -28.922254090066758,
+ "y": 3.5457591722046544
},
{
- "x": -35.28315328750516,
- "y": -0.5851398297814399
+ "x": -28.8808905029926,
+ "y": 3.4548705983388857
},
{
- "x": -35.34738875240244,
- "y": -0.5086840631943375
+ "x": -28.841912027611542,
+ "y": 3.362933893742948
},
{
- "x": -35.40960783408768,
- "y": -0.430578589191299
+ "x": -28.805345195062074,
+ "y": 3.2700116361708638
},
{
- "x": -35.46976818244177,
- "y": -0.3508765711433881
+ "x": -28.771214894970868,
+ "y": 3.1761670742044004
},
{
- "x": -35.527828848645626,
- "y": -0.269632259127377
+ "x": -28.73954435851128,
+ "y": 3.081464084202196
},
{
- "x": -35.58375031305253,
- "y": -0.18690095299976406
+ "x": -28.71035514259087,
+ "y": 2.9859671268216346
},
{
- "x": -35.63749451208756,
- "y": -0.10273896475638367
+ "x": -28.68366711517838,
+ "y": 2.8897412031429184
},
{
- "x": -35.689024864155954,
- "y": -0.017203580202973967
+ "x": -28.659498441780414,
+ "y": 2.7928518104253612
},
{
- "x": -35.73830629454291,
- "y": 0.0696469800370636
+ "x": -28.63786557307688,
+ "y": 2.695364897525991
},
{
- "x": -35.78530525928747,
- "y": 0.15775360015118167
+ "x": -28.61878323372366,
+ "y": 2.5973468200106566
},
{
- "x": -35.82998976801461,
- "y": 0.24705630937552314
+ "x": -28.602264412330058,
+ "y": 2.498864294988408
},
{
- "x": -35.87232940570996,
- "y": 0.3374943228146776
+ "x": -28.588320352618027,
+ "y": 2.3999843556996865
},
{
- "x": -35.91229535342198,
- "y": 0.4290060828156328
+ "x": -28.576960545768927,
+ "y": 2.300774305889476
},
{
- "x": -35.94986040787795,
- "y": 0.5215293008677122
+ "x": -28.56819272396332,
+ "y": 2.201301673996184
},
{
- "x": -35.98499900000027,
- "y": 0.6150009999998929
- }
- ],
- "stroke_width": 0.3
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_921",
- "pcb_component_id": "pcb_component_56",
- "layer": "top",
- "route": [
- {
- "x": -78.49000000000002,
- "y": 32.789999999999985
+ "x": -28.562022855117903,
+ "y": 2.101634167187683
},
{
- "x": -78.49000000000002,
- "y": 22.549999999999983
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_922",
- "pcb_component_id": "pcb_component_56",
- "layer": "top",
- "route": [
+ "x": -28.55845513882346,
+ "y": 2.001839625275622
+ },
{
- "x": -78.49000000000002,
- "y": 32.789999999999985
+ "x": -28.557492003486274,
+ "y": 1.9019859745395848
},
{
- "x": -78.49000000000002,
- "y": 22.549999999999983
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_923",
- "pcb_component_id": "pcb_component_56",
- "layer": "top",
- "route": [
+ "x": -28.559134104675266,
+ "y": 1.802141181492189
+ },
{
- "x": -68.37000000000002,
- "y": 33.16999999999999
+ "x": -28.563380324675776,
+ "y": 1.7023732066169686
},
{
- "x": -65.37000000000002,
- "y": 33.16999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_924",
- "pcb_component_id": "pcb_component_56",
- "layer": "top",
- "route": [
+ "x": -28.570227773250295,
+ "y": 1.6027499581103513
+ },
{
- "x": -65.75000000000001,
- "y": 32.789999999999985
+ "x": -28.579671789605783,
+ "y": 1.5033392456590633
},
{
- "x": -78.49000000000002,
- "y": 32.789999999999985
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_925",
- "pcb_component_id": "pcb_component_56",
- "layer": "top",
- "route": [
+ "x": -28.591705945566076,
+ "y": 1.4042087342848362
+ },
{
- "x": -65.75000000000001,
- "y": 32.789999999999985
+ "x": -28.606322049947323,
+ "y": 1.3054258982873392
},
{
- "x": -78.49000000000002,
- "y": 32.789999999999985
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_926",
- "pcb_component_id": "pcb_component_56",
- "layer": "top",
- "route": [
+ "x": -28.62351015413337,
+ "y": 1.2070579753170705
+ },
{
- "x": -65.75000000000001,
- "y": 32.789999999999985
+ "x": -28.64325855884738,
+ "y": 1.1091719206093416
},
{
- "x": -65.75000000000001,
- "y": 22.549999999999983
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_927",
- "pcb_component_id": "pcb_component_56",
- "layer": "top",
- "route": [
+ "x": -28.66555382211517,
+ "y": 1.011834361410365
+ },
{
- "x": -65.75000000000001,
- "y": 32.789999999999985
+ "x": -28.690380768414528,
+ "y": 0.9151115516267225
},
{
- "x": -65.75000000000001,
- "y": 22.549999999999983
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_928",
- "pcb_component_id": "pcb_component_56",
- "layer": "top",
- "route": [
+ "x": -28.71772249900468,
+ "y": 0.8190693267288793
+ },
{
- "x": -65.75000000000001,
- "y": 22.549999999999983
+ "x": -28.74756040342858,
+ "y": 0.7237730589395142
},
{
- "x": -78.49000000000002,
- "y": 22.549999999999983
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_929",
- "pcb_component_id": "pcb_component_56",
- "layer": "top",
- "route": [
+ "x": -28.779874172180357,
+ "y": 0.6292876127372011
+ },
{
- "x": -65.75000000000001,
- "y": 22.549999999999983
+ "x": -28.81464181052914,
+ "y": 0.5356773007056574
},
{
- "x": -78.49000000000002,
- "y": 22.549999999999983
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_930",
- "pcb_component_id": "pcb_component_56",
- "layer": "top",
- "route": [
+ "x": -28.85183965349009,
+ "y": 0.44300583975869756
+ },
{
- "x": -65.37000000000002,
- "y": 33.16999999999999
+ "x": -28.891442381932222,
+ "y": 0.3513363077705094
},
{
- "x": -65.37000000000002,
- "y": 30.169999999999987
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_931",
- "pcb_component_id": "pcb_component_56",
- "layer": "top",
- "route": [
+ "x": -28.933423039812112,
+ "y": 0.2607311006410953
+ },
{
- "x": -78.62000000000002,
- "y": 32.91999999999999
+ "x": -28.97775305252192,
+ "y": 0.1712518898257116
},
{
- "x": -78.62000000000002,
- "y": 22.419999999999987
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_932",
- "pcb_component_id": "pcb_component_56",
- "layer": "top",
- "route": [
+ "x": -29.024402246338894,
+ "y": 0.08295958035758133
+ },
{
- "x": -65.62000000000002,
- "y": 32.91999999999999
+ "x": -29.073338868963617,
+ "y": -0.0040857306079260525
},
{
- "x": -78.62000000000002,
- "y": 32.91999999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_933",
- "pcb_component_id": "pcb_component_56",
- "layer": "top",
- "route": [
+ "x": -29.124529611132388,
+ "y": -0.08982479469894145
+ },
{
- "x": -65.62000000000002,
- "y": 32.91999999999999
+ "x": -29.177939629289696,
+ "y": -0.17419925265529912
},
{
- "x": -65.62000000000002,
- "y": 22.419999999999987
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_934",
- "pcb_component_id": "pcb_component_56",
- "layer": "top",
- "route": [
+ "x": -29.2335325693048,
+ "y": -0.2571516740513715
+ },
{
- "x": -65.62000000000002,
- "y": 22.419999999999987
+ "x": -29.291270591216573,
+ "y": -0.3386255963867342
},
{
- "x": -78.62000000000002,
- "y": 22.419999999999987
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_935",
- "pcb_component_id": "pcb_component_56",
- "layer": "top",
- "route": [
+ "x": -29.351114394989764,
+ "y": -0.4185655635180012
+ },
{
- "x": -78.37000000000002,
- "y": 32.66999999999999
+ "x": -29.413023247264945,
+ "y": -0.4969171634056977
},
{
- "x": -66.37000000000002,
- "y": 32.66999999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_936",
- "pcb_component_id": "pcb_component_56",
- "layer": "top",
- "route": [
+ "x": -29.476955009084165,
+ "y": -0.5736270651504185
+ },
{
- "x": -78.37000000000002,
- "y": 22.669999999999987
+ "x": -29.542866164573283,
+ "y": -0.6486430552930784
},
{
- "x": -78.37000000000002,
- "y": 32.66999999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_937",
- "pcb_component_id": "pcb_component_56",
- "layer": "top",
- "route": [
+ "x": -29.610711850561543,
+ "y": -0.7219140733546254
+ },
{
- "x": -66.37000000000002,
- "y": 32.66999999999999
+ "x": -29.680445887118225,
+ "y": -0.7933902465909171
},
{
- "x": -65.87000000000002,
- "y": 32.16999999999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_938",
- "pcb_component_id": "pcb_component_56",
- "layer": "top",
- "route": [
+ "x": -29.752020808985506,
+ "y": -0.8630229239391696
+ },
{
- "x": -65.87000000000002,
- "y": 32.16999999999999
+ "x": -29.825387897886245,
+ "y": -0.9307647091328448
},
{
- "x": -65.87000000000002,
- "y": 22.669999999999987
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_939",
- "pcb_component_id": "pcb_component_56",
- "layer": "top",
- "route": [
+ "x": -29.900497215684567,
+ "y": -0.9965694929624505
+ },
{
- "x": -65.87000000000002,
- "y": 22.669999999999987
+ "x": -29.97729763837694,
+ "y": -1.0603924846603405
},
{
- "x": -78.37000000000002,
- "y": 22.669999999999987
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_940",
- "pcb_component_id": "pcb_component_57",
- "layer": "top",
- "route": [
+ "x": -30.055736890890145,
+ "y": -1.1221902423879584
+ },
{
- "x": -59.73000000000002,
- "y": 38.62999999999998
+ "x": -30.13576158266305,
+ "y": -1.1819207028051153
},
{
- "x": -59.73000000000002,
- "y": 22.73999999999998
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_941",
- "pcb_component_id": "pcb_component_57",
- "layer": "top",
- "route": [
+ "x": -30.21731724398738,
+ "y": -1.2395432097008126
+ },
{
- "x": -59.73000000000002,
- "y": 38.62999999999998
+ "x": -30.300348363083188,
+ "y": -1.29501854166638
},
{
- "x": -49.49000000000002,
- "y": 38.62999999999998
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_942",
- "pcb_component_id": "pcb_component_57",
- "layer": "top",
- "route": [
+ "x": -30.384798423883595,
+ "y": -1.3483089387919591
+ },
{
- "x": -59.73000000000002,
- "y": 22.73999999999998
+ "x": -30.47060994450301,
+ "y": -1.3993781283682267
},
{
- "x": -49.49000000000002,
- "y": 22.73999999999998
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_943",
- "pcb_component_id": "pcb_component_57",
- "layer": "top",
- "route": [
+ "x": -30.55772451636294,
+ "y": -1.448191349575751
+ },
{
- "x": -57.15000000000002,
- "y": 22.73999999999998
+ "x": -30.64608284394832,
+ "y": -1.4947153771454822
},
{
- "x": -57.15000000000002,
- "y": 20.19999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_944",
- "pcb_component_id": "pcb_component_57",
- "layer": "top",
- "route": [
+ "x": -30.735624785167758,
+ "y": -1.5389185439737503
+ },
{
- "x": -54.610000000000014,
- "y": 22.73999999999998
+ "x": -30.826289392289922,
+ "y": -1.5807707626769059
},
{
- "x": -54.610000000000014,
- "y": 20.19999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_945",
- "pcb_component_id": "pcb_component_57",
- "layer": "top",
- "route": [
+ "x": -30.918014953428255,
+ "y": -1.6202435460706823
+ },
{
- "x": -52.07000000000002,
- "y": 22.73999999999998
+ "x": -31.010739034545892,
+ "y": -1.657310026560225
},
{
- "x": -52.07000000000002,
- "y": 20.19999999999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_946",
- "pcb_component_id": "pcb_component_57",
- "layer": "top",
- "route": [
+ "x": -31.104398521952135,
+ "y": -1.6919449744278836
+ },
{
- "x": -49.49000000000002,
- "y": 38.62999999999998
+ "x": -31.19892966526139,
+ "y": -1.7241248150060926
},
{
- "x": -49.49000000000002,
- "y": 22.73999999999998
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_947",
- "pcb_component_id": "pcb_component_57",
- "layer": "top",
- "route": [
+ "x": -31.294268120785688,
+ "y": -1.7538276447237138
+ },
{
- "x": -59.860000000000014,
- "y": 38.759999999999984
+ "x": -31.39034899533091,
+ "y": -1.781033246014971
},
{
- "x": -59.860000000000014,
- "y": 17.799999999999983
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_948",
- "pcb_component_id": "pcb_component_57",
- "layer": "top",
- "route": [
+ "x": -31.48710689036703,
+ "y": -1.8057231010807868
+ },
{
- "x": -59.860000000000014,
- "y": 17.799999999999983
+ "x": -31.58447594654244,
+ "y": -1.827880404493058
},
{
- "x": -49.360000000000014,
- "y": 17.799999999999983
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_949",
- "pcb_component_id": "pcb_component_57",
- "layer": "top",
- "route": [
+ "x": -31.68238988851178,
+ "y": -1.8474900746335265
+ },
{
- "x": -49.360000000000014,
- "y": 38.759999999999984
+ "x": -31.780782070047053,
+ "y": -1.8645387639592315
},
{
- "x": -59.860000000000014,
- "y": 38.759999999999984
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_950",
- "pcb_component_id": "pcb_component_57",
- "layer": "top",
- "route": [
+ "x": -31.87958551940109,
+ "y": -1.8790148680876513
+ },
{
- "x": -49.360000000000014,
- "y": 17.799999999999983
+ "x": -31.978732984892673,
+ "y": -1.890908533695395
},
{
- "x": -49.360000000000014,
- "y": 38.759999999999984
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_951",
- "pcb_component_id": "pcb_component_57",
- "layer": "top",
- "route": [
+ "x": -32.07815698068211,
+ "y": -1.90021166522493
+ },
{
- "x": -59.610000000000014,
- "y": 38.509999999999984
+ "x": -32.17778983270624,
+ "y": -1.9069179303949255
},
{
- "x": -49.610000000000014,
- "y": 38.509999999999984
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_952",
- "pcb_component_id": "pcb_component_57",
- "layer": "top",
- "route": [
+ "x": -32.27756372474157,
+ "y": -1.9110227645104487
+ },
{
- "x": -59.610000000000014,
- "y": 32.109999999999985
+ "x": -32.377410744564116,
+ "y": -1.9125233735698828
},
{
- "x": -59.610000000000014,
- "y": 38.509999999999984
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_953",
- "pcb_component_id": "pcb_component_57",
- "layer": "top",
- "route": [
+ "x": -32.47726293017466,
+ "y": -1.9114187361667518
+ },
{
- "x": -59.610000000000014,
- "y": 32.109999999999985
+ "x": -32.5770523160578,
+ "y": -1.9077096041849728
},
{
- "x": -49.610000000000014,
- "y": 32.109999999999985
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_954",
- "pcb_component_id": "pcb_component_57",
- "layer": "top",
- "route": [
+ "x": -32.67671097944351,
+ "y": -1.901398502287023
+ },
{
- "x": -59.610000000000014,
- "y": 22.859999999999985
+ "x": -32.77617108653949,
+ "y": -1.892489726195521
},
{
- "x": -59.610000000000014,
- "y": 32.109999999999985
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_955",
- "pcb_component_id": "pcb_component_57",
- "layer": "top",
- "route": [
+ "x": -32.87536493870303,
+ "y": -1.8809893397693145
+ },
{
- "x": -57.15000000000002,
- "y": 22.859999999999985
+ "x": -32.97422501852081,
+ "y": -1.8669051708760236
},
{
- "x": -57.15000000000002,
- "y": 19.049999999999983
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_956",
- "pcb_component_id": "pcb_component_57",
- "layer": "top",
- "route": [
+ "x": -33.07268403576545,
+ "y": -1.8502468060639217
+ },
{
- "x": -54.610000000000014,
- "y": 22.859999999999985
+ "x": -33.17067497319732,
+ "y": -1.8310255840367375
},
{
- "x": -54.610000000000014,
- "y": 19.049999999999983
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_957",
- "pcb_component_id": "pcb_component_57",
- "layer": "top",
- "route": [
+ "x": -33.26813113218057,
+ "y": -1.809254587935854
+ },
{
- "x": -52.07000000000002,
- "y": 22.859999999999985
+ "x": -33.36498617808235,
+ "y": -1.7849486364351037
},
{
- "x": -52.07000000000002,
- "y": 19.049999999999983
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_958",
- "pcb_component_id": "pcb_component_57",
- "layer": "top",
- "route": [
+ "x": -33.4611741854242,
+ "y": -1.758124273654289
+ },
{
- "x": -49.610000000000014,
- "y": 38.509999999999984
+ "x": -33.55662968275497,
+ "y": -1.7287997578982157
},
{
- "x": -49.610000000000014,
- "y": 32.109999999999985
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_959",
- "pcb_component_id": "pcb_component_57",
- "layer": "top",
- "route": [
+ "x": -33.65128769721471,
+ "y": -1.6969950492289883
+ },
{
- "x": -49.610000000000014,
- "y": 32.109999999999985
+ "x": -33.74508379875917,
+ "y": -1.662731795879992
},
{
- "x": -59.610000000000014,
- "y": 32.109999999999985
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_960",
- "pcb_component_id": "pcb_component_57",
- "layer": "top",
- "route": [
+ "x": -33.8379541440148,
+ "y": -1.6260333195207295
+ },
{
- "x": -49.610000000000014,
- "y": 32.109999999999985
+ "x": -33.92983551973457,
+ "y": -1.586924599382698
},
{
- "x": -49.610000000000014,
- "y": 22.859999999999985
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_961",
- "pcb_component_id": "pcb_component_57",
- "layer": "top",
- "route": [
+ "x": -34.02066538582467,
+ "y": -1.545432255256955
+ },
{
- "x": -49.610000000000014,
- "y": 22.859999999999985
+ "x": -34.11038191791317,
+ "y": -1.5015845293751369
},
{
- "x": -59.610000000000014,
- "y": 22.859999999999985
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_962",
- "pcb_component_id": "pcb_component_57",
- "layer": "top",
- "route": [
+ "x": -34.19892404943147,
+ "y": -1.4554112671859798
+ },
+ {
+ "x": -34.28623151317997,
+ "y": -1.4069438970407333
+ },
{
- "x": -52.76000000000001,
- "y": 35.70999999999998
+ "x": -34.372244882349605,
+ "y": -1.3562154088010487
},
{
- "x": -52.900822864854135,
- "y": 36.4179643498754
+ "x": -34.45690561097133,
+ "y": -1.3032603313841378
},
{
- "x": -53.3018524548049,
- "y": 37.01814754519509
+ "x": -34.54015607376617,
+ "y": -1.2481147092601788
},
{
- "x": -53.902035650124596,
- "y": 37.41917713514586
+ "x": -34.62193960536847,
+ "y": -1.1908160779183277
},
{
- "x": -54.610000000000014,
- "y": 37.55999999999998
+ "x": -34.70220053889581,
+ "y": -1.1314034383177187
},
{
- "x": -55.31796434987543,
- "y": 37.41917713514586
+ "x": -34.780884243839324,
+ "y": -1.069917230340991
},
{
- "x": -55.918147545195126,
- "y": 37.01814754519509
+ "x": -34.857937163248536,
+ "y": -1.0063993052685305
},
{
- "x": -56.31917713514589,
- "y": 36.4179643498754
+ "x": -34.93330685018553,
+ "y": -0.9408928972918176
},
{
- "x": -56.460000000000015,
- "y": 35.70999999999998
+ "x": -35.00694200342356,
+ "y": -0.8734425940856454
},
{
- "x": -56.31917713514589,
- "y": 35.00203565012456
+ "x": -35.07879250236576,
+ "y": -0.8040943064589783
},
{
- "x": -55.918147545195126,
- "y": 34.40185245480487
+ "x": -35.14880944116034,
+ "y": -0.7328952371052964
},
{
- "x": -55.31796434987543,
- "y": 34.0008228648541
+ "x": -35.216945161988875,
+ "y": -0.6598938484735157
},
{
- "x": -54.610000000000014,
- "y": 33.85999999999998
+ "x": -35.28315328750516,
+ "y": -0.5851398297814399
},
{
- "x": -53.902035650124596,
- "y": 34.0008228648541
+ "x": -35.34738875240244,
+ "y": -0.5086840631943375
},
{
- "x": -53.3018524548049,
- "y": 34.40185245480487
+ "x": -35.40960783408768,
+ "y": -0.430578589191299
},
{
- "x": -52.900822864854135,
- "y": 35.00203565012456
+ "x": -35.46976818244177,
+ "y": -0.3508765711433881
},
{
- "x": -52.76000000000001,
- "y": 35.70999999999998
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_963",
- "pcb_component_id": "pcb_component_58",
- "layer": "top",
- "route": [
+ "x": -35.527828848645626,
+ "y": -0.269632259127377
+ },
{
- "x": -14.959000000000032,
- "y": 27.526999999999994
+ "x": -35.58375031305253,
+ "y": -0.18690095299976406
},
{
- "x": -14.959000000000032,
- "y": 20.986999999999995
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_964",
- "pcb_component_id": "pcb_component_58",
- "layer": "top",
- "route": [
+ "x": -35.63749451208756,
+ "y": -0.10273896475638367
+ },
{
- "x": -14.959000000000032,
- "y": 20.986999999999995
+ "x": -35.689024864155954,
+ "y": -0.017203580202973967
},
{
- "x": -12.219000000000023,
- "y": 20.986999999999995
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_965",
- "pcb_component_id": "pcb_component_58",
- "layer": "top",
- "route": [
+ "x": -35.73830629454291,
+ "y": 0.0696469800370636
+ },
{
- "x": -13.589000000000027,
- "y": 28.29699999999999
+ "x": -35.78530525928747,
+ "y": 0.15775360015118167
},
{
- "x": -13.589000000000027,
- "y": 27.526999999999994
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_966",
- "pcb_component_id": "pcb_component_58",
- "layer": "top",
- "route": [
+ "x": -35.82998976801461,
+ "y": 0.24705630937552314
+ },
{
- "x": -13.589000000000027,
- "y": 20.217
+ "x": -35.87232940570996,
+ "y": 0.3374943228146776
},
{
- "x": -13.589000000000027,
- "y": 20.986999999999995
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_967",
- "pcb_component_id": "pcb_component_58",
- "layer": "top",
- "route": [
+ "x": -35.91229535342198,
+ "y": 0.4290060828156328
+ },
{
- "x": -12.219000000000023,
- "y": 27.526999999999994
+ "x": -35.94986040787795,
+ "y": 0.5215293008677122
},
{
- "x": -14.959000000000032,
- "y": 27.526999999999994
+ "x": -35.98499900000027,
+ "y": 0.6150009999998929
}
],
- "stroke_width": 0.12
+ "stroke_width": 0.3
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_968",
- "pcb_component_id": "pcb_component_58",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_365",
+ "pcb_component_id": "pcb_component_56",
"layer": "top",
"route": [
{
- "x": -12.219000000000023,
- "y": 20.986999999999995
+ "x": -78.49000000000002,
+ "y": 32.789999999999985
},
{
- "x": -12.219000000000023,
- "y": 27.526999999999994
+ "x": -78.49000000000002,
+ "y": 22.549999999999983
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_969",
- "pcb_component_id": "pcb_component_58",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_366",
+ "pcb_component_id": "pcb_component_56",
"layer": "top",
"route": [
{
- "x": -15.089000000000027,
- "y": 30.386999999999993
+ "x": -78.49000000000002,
+ "y": 32.789999999999985
},
{
- "x": -15.089000000000027,
- "y": 18.126999999999995
+ "x": -78.49000000000002,
+ "y": 22.549999999999983
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_970",
- "pcb_component_id": "pcb_component_58",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_367",
+ "pcb_component_id": "pcb_component_56",
"layer": "top",
"route": [
{
- "x": -15.089000000000027,
- "y": 18.126999999999995
+ "x": -68.37000000000002,
+ "y": 33.16999999999999
},
{
- "x": -12.089000000000027,
- "y": 18.126999999999995
+ "x": -65.37000000000002,
+ "y": 33.16999999999999
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_971",
- "pcb_component_id": "pcb_component_58",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_368",
+ "pcb_component_id": "pcb_component_56",
"layer": "top",
"route": [
{
- "x": -12.089000000000027,
- "y": 30.386999999999993
+ "x": -65.75000000000001,
+ "y": 32.789999999999985
},
{
- "x": -15.089000000000027,
- "y": 30.386999999999993
+ "x": -78.49000000000002,
+ "y": 32.789999999999985
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_972",
- "pcb_component_id": "pcb_component_58",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_369",
+ "pcb_component_id": "pcb_component_56",
"layer": "top",
"route": [
{
- "x": -12.089000000000027,
- "y": 18.126999999999995
+ "x": -65.75000000000001,
+ "y": 32.789999999999985
},
{
- "x": -12.089000000000027,
- "y": 30.386999999999993
+ "x": -78.49000000000002,
+ "y": 32.789999999999985
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_973",
- "pcb_component_id": "pcb_component_58",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_370",
+ "pcb_component_id": "pcb_component_56",
"layer": "top",
"route": [
{
- "x": -14.839000000000027,
- "y": 27.406999999999996
+ "x": -65.75000000000001,
+ "y": 32.789999999999985
},
{
- "x": -14.839000000000027,
- "y": 21.107
+ "x": -65.75000000000001,
+ "y": 22.549999999999983
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_974",
- "pcb_component_id": "pcb_component_58",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_371",
+ "pcb_component_id": "pcb_component_56",
"layer": "top",
"route": [
{
- "x": -14.839000000000027,
- "y": 21.107
+ "x": -65.75000000000001,
+ "y": 32.789999999999985
},
{
- "x": -12.339000000000027,
- "y": 21.107
+ "x": -65.75000000000001,
+ "y": 22.549999999999983
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_975",
- "pcb_component_id": "pcb_component_58",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_372",
+ "pcb_component_id": "pcb_component_56",
"layer": "top",
"route": [
{
- "x": -13.589000000000027,
- "y": 29.33699999999999
+ "x": -65.75000000000001,
+ "y": 22.549999999999983
},
{
- "x": -13.589000000000027,
- "y": 27.406999999999996
+ "x": -78.49000000000002,
+ "y": 22.549999999999983
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_976",
- "pcb_component_id": "pcb_component_58",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_373",
+ "pcb_component_id": "pcb_component_56",
"layer": "top",
"route": [
{
- "x": -13.589000000000027,
- "y": 19.176999999999992
+ "x": -65.75000000000001,
+ "y": 22.549999999999983
},
{
- "x": -13.589000000000027,
- "y": 21.107
+ "x": -78.49000000000002,
+ "y": 22.549999999999983
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_977",
- "pcb_component_id": "pcb_component_58",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_374",
+ "pcb_component_id": "pcb_component_56",
"layer": "top",
"route": [
{
- "x": -12.339000000000027,
- "y": 27.406999999999996
+ "x": -65.37000000000002,
+ "y": 33.16999999999999
},
{
- "x": -14.839000000000027,
- "y": 27.406999999999996
+ "x": -65.37000000000002,
+ "y": 30.169999999999987
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_978",
- "pcb_component_id": "pcb_component_58",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_375",
+ "pcb_component_id": "pcb_component_57",
"layer": "top",
"route": [
{
- "x": -12.339000000000027,
- "y": 21.107
+ "x": -59.73000000000002,
+ "y": 38.62999999999998
},
{
- "x": -12.339000000000027,
- "y": 27.406999999999996
+ "x": -59.73000000000002,
+ "y": 22.73999999999998
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_979",
- "pcb_component_id": "pcb_component_59",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_376",
+ "pcb_component_id": "pcb_component_57",
"layer": "top",
"route": [
{
- "x": -22.928000000000026,
- "y": 24.059999999999988
+ "x": -59.73000000000002,
+ "y": 38.62999999999998
},
{
- "x": -22.928000000000026,
- "y": 11.819999999999993
+ "x": -49.49000000000002,
+ "y": 38.62999999999998
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_980",
- "pcb_component_id": "pcb_component_59",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_377",
+ "pcb_component_id": "pcb_component_57",
"layer": "top",
"route": [
{
- "x": -22.928000000000026,
- "y": 11.819999999999993
+ "x": -59.73000000000002,
+ "y": 22.73999999999998
},
{
- "x": -16.188000000000017,
- "y": 11.819999999999993
+ "x": -49.49000000000002,
+ "y": 22.73999999999998
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_981",
- "pcb_component_id": "pcb_component_59",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_378",
+ "pcb_component_id": "pcb_component_57",
"layer": "top",
"route": [
{
- "x": -19.55800000000002,
- "y": 26.89999999999999
+ "x": -57.15000000000002,
+ "y": 22.73999999999998
},
{
- "x": -19.55800000000002,
- "y": 24.059999999999988
+ "x": -57.15000000000002,
+ "y": 20.19999999999999
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_982",
- "pcb_component_id": "pcb_component_59",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_379",
+ "pcb_component_id": "pcb_component_57",
"layer": "top",
"route": [
{
- "x": -19.55800000000002,
- "y": 8.97999999999999
+ "x": -54.610000000000014,
+ "y": 22.73999999999998
},
{
- "x": -19.55800000000002,
- "y": 11.819999999999993
+ "x": -54.610000000000014,
+ "y": 20.19999999999999
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_983",
- "pcb_component_id": "pcb_component_59",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_380",
+ "pcb_component_id": "pcb_component_57",
"layer": "top",
"route": [
{
- "x": -16.188000000000017,
- "y": 24.059999999999988
+ "x": -52.07000000000002,
+ "y": 22.73999999999998
},
{
- "x": -22.928000000000026,
- "y": 24.059999999999988
+ "x": -52.07000000000002,
+ "y": 20.19999999999999
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_984",
- "pcb_component_id": "pcb_component_59",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_381",
+ "pcb_component_id": "pcb_component_57",
"layer": "top",
"route": [
{
- "x": -16.188000000000017,
- "y": 11.819999999999993
+ "x": -49.49000000000002,
+ "y": 38.62999999999998
},
{
- "x": -16.188000000000017,
- "y": 24.059999999999988
+ "x": -49.49000000000002,
+ "y": 22.73999999999998
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_985",
- "pcb_component_id": "pcb_component_59",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_382",
+ "pcb_component_id": "pcb_component_58",
"layer": "top",
"route": [
{
- "x": -23.05800000000002,
- "y": 28.989999999999988
+ "x": -14.959000000000032,
+ "y": 27.526999999999994
},
{
- "x": -23.05800000000002,
- "y": 6.889999999999986
+ "x": -14.959000000000032,
+ "y": 20.986999999999995
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_986",
- "pcb_component_id": "pcb_component_59",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_383",
+ "pcb_component_id": "pcb_component_58",
"layer": "top",
"route": [
{
- "x": -23.05800000000002,
- "y": 6.889999999999986
+ "x": -14.959000000000032,
+ "y": 20.986999999999995
},
{
- "x": -16.05800000000002,
- "y": 6.889999999999986
+ "x": -12.219000000000023,
+ "y": 20.986999999999995
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_987",
- "pcb_component_id": "pcb_component_59",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_384",
+ "pcb_component_id": "pcb_component_58",
"layer": "top",
"route": [
{
- "x": -16.05800000000002,
- "y": 28.989999999999988
+ "x": -13.589000000000027,
+ "y": 28.29699999999999
},
{
- "x": -23.05800000000002,
- "y": 28.989999999999988
+ "x": -13.589000000000027,
+ "y": 27.526999999999994
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_988",
- "pcb_component_id": "pcb_component_59",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_385",
+ "pcb_component_id": "pcb_component_58",
"layer": "top",
"route": [
{
- "x": -16.05800000000002,
- "y": 6.889999999999986
+ "x": -13.589000000000027,
+ "y": 20.217
},
{
- "x": -16.05800000000002,
- "y": 28.989999999999988
+ "x": -13.589000000000027,
+ "y": 20.986999999999995
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_989",
- "pcb_component_id": "pcb_component_59",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_386",
+ "pcb_component_id": "pcb_component_58",
"layer": "top",
"route": [
{
- "x": -22.80800000000002,
- "y": 23.939999999999998
+ "x": -12.219000000000023,
+ "y": 27.526999999999994
},
{
- "x": -22.80800000000002,
- "y": 11.939999999999998
+ "x": -14.959000000000032,
+ "y": 27.526999999999994
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_990",
- "pcb_component_id": "pcb_component_59",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_387",
+ "pcb_component_id": "pcb_component_58",
"layer": "top",
"route": [
{
- "x": -22.80800000000002,
- "y": 11.939999999999998
+ "x": -12.219000000000023,
+ "y": 20.986999999999995
},
{
- "x": -16.30800000000002,
- "y": 11.939999999999998
+ "x": -12.219000000000023,
+ "y": 27.526999999999994
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_991",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_388",
"pcb_component_id": "pcb_component_59",
"layer": "top",
"route": [
{
- "x": -19.55800000000002,
- "y": 27.93999999999999
+ "x": -22.928000000000026,
+ "y": 24.059999999999988
},
{
- "x": -19.55800000000002,
- "y": 23.939999999999998
+ "x": -22.928000000000026,
+ "y": 11.819999999999993
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_992",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_389",
"pcb_component_id": "pcb_component_59",
"layer": "top",
"route": [
{
- "x": -19.55800000000002,
- "y": 7.939999999999998
+ "x": -22.928000000000026,
+ "y": 11.819999999999993
},
{
- "x": -19.55800000000002,
- "y": 11.939999999999998
+ "x": -16.188000000000017,
+ "y": 11.819999999999993
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_993",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_390",
"pcb_component_id": "pcb_component_59",
"layer": "top",
"route": [
{
- "x": -16.30800000000002,
- "y": 23.939999999999998
+ "x": -19.55800000000002,
+ "y": 26.89999999999999
},
{
- "x": -22.80800000000002,
- "y": 23.939999999999998
+ "x": -19.55800000000002,
+ "y": 24.059999999999988
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_994",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_391",
"pcb_component_id": "pcb_component_59",
"layer": "top",
"route": [
{
- "x": -16.30800000000002,
- "y": 11.939999999999998
+ "x": -19.55800000000002,
+ "y": 8.97999999999999
},
{
- "x": -16.30800000000002,
- "y": 23.939999999999998
+ "x": -19.55800000000002,
+ "y": 11.819999999999993
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_995",
- "pcb_component_id": "pcb_component_60",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_392",
+ "pcb_component_id": "pcb_component_59",
"layer": "top",
"route": [
{
- "x": -23.59000000000001,
- "y": 25.439999999999998
- },
- {
- "x": -23.921124033575914,
- "y": 27.104672930788137
- },
- {
- "x": -24.86408550183853,
- "y": 28.51591449816148
- },
- {
- "x": -26.275327069211873,
- "y": 29.458875966424095
- },
- {
- "x": -27.940000000000012,
- "y": 29.79
- },
- {
- "x": -29.60467293078815,
- "y": 29.458875966424095
- },
- {
- "x": -31.015914498161493,
- "y": 28.51591449816148
- },
- {
- "x": -31.95887596642411,
- "y": 27.104672930788137
- },
- {
- "x": -32.29000000000001,
- "y": 25.439999999999998
- },
- {
- "x": -31.95887596642411,
- "y": 23.77532706921186
- },
- {
- "x": -31.015914498161493,
- "y": 22.364085501838517
- },
- {
- "x": -29.604672930788155,
- "y": 21.4211240335759
- },
- {
- "x": -27.940000000000012,
- "y": 21.089999999999996
- },
- {
- "x": -26.27532706921187,
- "y": 21.4211240335759
- },
- {
- "x": -24.86408550183853,
- "y": 22.364085501838517
- },
- {
- "x": -23.921124033575914,
- "y": 23.775327069211855
+ "x": -16.188000000000017,
+ "y": 24.059999999999988
},
{
- "x": -23.59000000000001,
- "y": 25.439999999999998
+ "x": -22.928000000000026,
+ "y": 24.059999999999988
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_996",
- "pcb_component_id": "pcb_component_60",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_393",
+ "pcb_component_id": "pcb_component_59",
"layer": "top",
"route": [
{
- "x": -24.040000000000013,
- "y": 25.439999999999998
- },
- {
- "x": -24.336869823205994,
- "y": 26.932465386223846
- },
- {
- "x": -25.182283553372475,
- "y": 28.19771644662753
- },
- {
- "x": -26.44753461377616,
- "y": 29.043130176794016
- },
- {
- "x": -27.940000000000012,
- "y": 29.339999999999996
- },
- {
- "x": -29.43246538622386,
- "y": 29.043130176794016
- },
- {
- "x": -30.697716446627545,
- "y": 28.197716446627535
- },
- {
- "x": -31.54313017679403,
- "y": 26.93246538622385
- },
- {
- "x": -31.84000000000001,
- "y": 25.439999999999998
- },
- {
- "x": -31.54313017679403,
- "y": 23.94753461377615
- },
- {
- "x": -30.69771644662755,
- "y": 22.682283553372464
- },
- {
- "x": -29.432465386223864,
- "y": 21.83686982320598
- },
- {
- "x": -27.940000000000012,
- "y": 21.54
- },
- {
- "x": -26.44753461377616,
- "y": 21.83686982320598
- },
- {
- "x": -25.18228355337248,
- "y": 22.68228355337246
- },
- {
- "x": -24.336869823205994,
- "y": 23.947534613776146
+ "x": -16.188000000000017,
+ "y": 11.819999999999993
},
{
- "x": -24.040000000000013,
- "y": 25.439999999999998
+ "x": -16.188000000000017,
+ "y": 24.059999999999988
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_997",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_394",
"pcb_component_id": "pcb_component_60",
"layer": "top",
"route": [
@@ -90355,7 +75160,7 @@
"y": 26.94054261715352
},
{
- "x": -31.6312822253483,
+ "x": -31.631282225348315,
"y": 27.032116796511758
},
{
@@ -90487,7 +75292,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_998",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_395",
"pcb_component_id": "pcb_component_60",
"layer": "top",
"route": [
@@ -90624,7 +75429,7 @@
"y": 26.940542617153618
},
{
- "x": -24.174660350451376,
+ "x": -24.174660350451347,
"y": 26.848054545511417
},
{
@@ -90880,7 +75685,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_999",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_396",
"pcb_component_id": "pcb_component_61",
"layer": "top",
"route": [
@@ -90897,7 +75702,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1000",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_397",
"pcb_component_id": "pcb_component_61",
"layer": "top",
"route": [
@@ -90914,7 +75719,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1001",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_398",
"pcb_component_id": "pcb_component_61",
"layer": "top",
"route": [
@@ -90931,7 +75736,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1002",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_399",
"pcb_component_id": "pcb_component_61",
"layer": "top",
"route": [
@@ -90948,7 +75753,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1003",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_400",
"pcb_component_id": "pcb_component_61",
"layer": "top",
"route": [
@@ -90965,7 +75770,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1004",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_401",
"pcb_component_id": "pcb_component_61",
"layer": "top",
"route": [
@@ -90982,7 +75787,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1005",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_402",
"pcb_component_id": "pcb_component_61",
"layer": "top",
"route": [
@@ -90999,7 +75804,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1006",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_403",
"pcb_component_id": "pcb_component_61",
"layer": "top",
"route": [
@@ -91016,7 +75821,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1007",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_404",
"pcb_component_id": "pcb_component_61",
"layer": "top",
"route": [
@@ -91033,228 +75838,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1008",
- "pcb_component_id": "pcb_component_61",
- "layer": "top",
- "route": [
- {
- "x": -76.62000000000002,
- "y": 14.219999999999985
- },
- {
- "x": -76.62000000000002,
- "y": -0.5800000000000125
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1009",
- "pcb_component_id": "pcb_component_61",
- "layer": "top",
- "route": [
- {
- "x": -76.62000000000002,
- "y": -0.5800000000000125
- },
- {
- "x": -74.12000000000002,
- "y": -0.5800000000000125
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1010",
- "pcb_component_id": "pcb_component_61",
- "layer": "top",
- "route": [
- {
- "x": -74.12000000000002,
- "y": 14.219999999999985
- },
- {
- "x": -76.62000000000002,
- "y": 14.219999999999985
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1011",
- "pcb_component_id": "pcb_component_61",
- "layer": "top",
- "route": [
- {
- "x": -74.12000000000002,
- "y": -0.5800000000000125
- },
- {
- "x": -74.12000000000002,
- "y": 14.219999999999985
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1012",
- "pcb_component_id": "pcb_component_61",
- "layer": "top",
- "route": [
- {
- "x": -76.37000000000002,
- "y": 8.819999999999979
- },
- {
- "x": -76.37000000000002,
- "y": 4.819999999999979
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1013",
- "pcb_component_id": "pcb_component_61",
- "layer": "top",
- "route": [
- {
- "x": -76.37000000000002,
- "y": 5.519999999999982
- },
- {
- "x": -74.37000000000002,
- "y": 5.519999999999982
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1014",
- "pcb_component_id": "pcb_component_61",
- "layer": "top",
- "route": [
- {
- "x": -76.37000000000002,
- "y": 5.4199999999999875
- },
- {
- "x": -74.37000000000002,
- "y": 5.4199999999999875
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1015",
- "pcb_component_id": "pcb_component_61",
- "layer": "top",
- "route": [
- {
- "x": -76.37000000000002,
- "y": 5.319999999999979
- },
- {
- "x": -74.37000000000002,
- "y": 5.319999999999979
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1016",
- "pcb_component_id": "pcb_component_61",
- "layer": "top",
- "route": [
- {
- "x": -76.37000000000002,
- "y": 4.819999999999979
- },
- {
- "x": -74.37000000000002,
- "y": 4.819999999999979
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1017",
- "pcb_component_id": "pcb_component_61",
- "layer": "top",
- "route": [
- {
- "x": -75.37000000000002,
- "y": 13.169999999999987
- },
- {
- "x": -75.37000000000002,
- "y": 8.819999999999979
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1018",
- "pcb_component_id": "pcb_component_61",
- "layer": "top",
- "route": [
- {
- "x": -75.37000000000002,
- "y": 0.46999999999998465
- },
- {
- "x": -75.37000000000002,
- "y": 4.819999999999979
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1019",
- "pcb_component_id": "pcb_component_61",
- "layer": "top",
- "route": [
- {
- "x": -74.37000000000002,
- "y": 8.819999999999979
- },
- {
- "x": -76.37000000000002,
- "y": 8.819999999999979
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1020",
- "pcb_component_id": "pcb_component_61",
- "layer": "top",
- "route": [
- {
- "x": -74.37000000000002,
- "y": 4.819999999999979
- },
- {
- "x": -74.37000000000002,
- "y": 8.819999999999979
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1021",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_405",
"pcb_component_id": "pcb_component_62",
"layer": "bottom",
"route": [
@@ -91271,7 +75855,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1022",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_406",
"pcb_component_id": "pcb_component_62",
"layer": "bottom",
"route": [
@@ -91288,7 +75872,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1023",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_407",
"pcb_component_id": "pcb_component_62",
"layer": "bottom",
"route": [
@@ -91305,7 +75889,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1024",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_408",
"pcb_component_id": "pcb_component_62",
"layer": "bottom",
"route": [
@@ -91319,73 +75903,5 @@
}
],
"stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1025",
- "pcb_component_id": "pcb_component_62",
- "layer": "bottom",
- "route": [
- {
- "x": -7.238000000000028,
- "y": -6.370000000000019
- },
- {
- "x": -7.238000000000028,
- "y": -8.870000000000019
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1026",
- "pcb_component_id": "pcb_component_62",
- "layer": "bottom",
- "route": [
- {
- "x": -7.238000000000028,
- "y": -6.370000000000019
- },
- {
- "x": -3.9380000000000166,
- "y": -6.370000000000019
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1027",
- "pcb_component_id": "pcb_component_62",
- "layer": "bottom",
- "route": [
- {
- "x": -3.9380000000000166,
- "y": -8.870000000000019
- },
- {
- "x": -7.238000000000028,
- "y": -8.870000000000019
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1028",
- "pcb_component_id": "pcb_component_62",
- "layer": "bottom",
- "route": [
- {
- "x": -3.9380000000000166,
- "y": -8.870000000000019
- },
- {
- "x": -3.9380000000000166,
- "y": -6.370000000000019
- }
- ],
- "stroke_width": 0.05
}
]
\ No newline at end of file
diff --git a/tests/__snapshots__/pic_programmer-circuit-json.svg b/tests/__snapshots__/pic_programmer-circuit-json.svg
index 01fc249a..a8f1bf0a 100644
--- a/tests/__snapshots__/pic_programmer-circuit-json.svg
+++ b/tests/__snapshots__/pic_programmer-circuit-json.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/tests/__snapshots__/via_grid_template-circuit-json.json b/tests/__snapshots__/via_grid_template-circuit-json.json
index 0cc9e058..a97b9049 100644
--- a/tests/__snapshots__/via_grid_template-circuit-json.json
+++ b/tests/__snapshots__/via_grid_template-circuit-json.json
@@ -109,7 +109,7 @@
},
{
"x": 6.998204807517174,
- "y": 3.4843556665840825
+ "y": 3.484355666584083
},
{
"x": 7.5,
@@ -325,7 +325,7 @@
},
{
"x": 96.51564343415002,
- "y": 6.998203761750931
+ "y": 6.998203761750932
},
{
"x": 95.199998,
@@ -433,7 +433,7 @@
},
{
"x": 6.998204807517174,
- "y": 3.4843556665840825
+ "y": 3.484355666584083
},
{
"x": 7.5,
@@ -1428,57 +1428,5 @@
}
],
"shape": "polygon"
- },
- {
- "type": "pcb_silkscreen_text",
- "pcb_silkscreen_text_id": "pcb_silkscreen_text_0",
- "pcb_component_id": "",
- "text": "VIAGRID TOP",
- "anchor_position": {
- "x": 43.6,
- "y": 1.7
- },
- "layer": "top",
- "font_size": 2.25,
- "font": "tscircuit2024"
- },
- {
- "type": "pcb_silkscreen_text",
- "pcb_silkscreen_text_id": "pcb_silkscreen_text_1",
- "pcb_component_id": "",
- "text": "Opulo Inc.",
- "anchor_position": {
- "x": 0.5,
- "y": 0.5
- },
- "layer": "top",
- "font_size": 1.125,
- "font": "tscircuit2024"
- },
- {
- "type": "pcb_silkscreen_text",
- "pcb_silkscreen_text_id": "pcb_silkscreen_text_2",
- "pcb_component_id": "",
- "text": "Opulo Inc.",
- "anchor_position": {
- "x": 99.5,
- "y": 0.5
- },
- "layer": "bottom",
- "font_size": 1.125,
- "font": "tscircuit2024"
- },
- {
- "type": "pcb_silkscreen_text",
- "pcb_silkscreen_text_id": "pcb_silkscreen_text_3",
- "pcb_component_id": "",
- "text": "VIAGRID BOTTOM",
- "anchor_position": {
- "x": 58.6,
- "y": 1.7
- },
- "layer": "bottom",
- "font_size": 2.25,
- "font": "tscircuit2024"
}
]
\ No newline at end of file
diff --git a/tests/__snapshots__/via_grid_template-circuit-json.svg b/tests/__snapshots__/via_grid_template-circuit-json.svg
index d8736fc5..43463a9e 100644
--- a/tests/__snapshots__/via_grid_template-circuit-json.svg
+++ b/tests/__snapshots__/via_grid_template-circuit-json.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/tests/pcb/__snapshots__/kicad_laser_prefab_example-circuit-json.json b/tests/pcb/__snapshots__/kicad_laser_prefab_example-circuit-json.json
index 3e39e873..274b8762 100644
--- a/tests/pcb/__snapshots__/kicad_laser_prefab_example-circuit-json.json
+++ b/tests/pcb/__snapshots__/kicad_laser_prefab_example-circuit-json.json
@@ -149,7 +149,6 @@
"height": 0.64,
"layer": "top",
"pcb_port_id": "pcb_port_0",
- "source_port_id": "pcb_component_0_port_1",
"port_hints": [
"1"
],
@@ -166,7 +165,6 @@
"height": 0.64,
"layer": "top",
"pcb_port_id": "pcb_port_1",
- "source_port_id": "pcb_component_0_port_2",
"port_hints": [
"2"
],
@@ -183,7 +181,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_2",
- "source_port_id": "pcb_component_1_port_1",
"port_hints": [
"1"
],
@@ -200,7 +197,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_3",
- "source_port_id": "pcb_component_1_port_2",
"port_hints": [
"2"
],
@@ -254,7 +250,8 @@
"x": -2.260000000000005,
"y": -0.8299999999999983
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -267,7 +264,8 @@
"x": 2.75,
"y": 2.6700000000000017
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_path",
@@ -306,142 +304,6 @@
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_2",
- "pcb_component_id": "pcb_component_0",
- "layer": "top",
- "route": [
- {
- "x": -3.190000000000012,
- "y": -1.5300000000000011
- },
- {
- "x": -1.3299999999999983,
- "y": -1.5300000000000011
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_3",
- "pcb_component_id": "pcb_component_0",
- "layer": "top",
- "route": [
- {
- "x": -3.190000000000012,
- "y": -2.469999999999999
- },
- {
- "x": -3.190000000000012,
- "y": -1.5300000000000011
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_4",
- "pcb_component_id": "pcb_component_0",
- "layer": "top",
- "route": [
- {
- "x": -1.3299999999999983,
- "y": -1.5300000000000011
- },
- {
- "x": -1.3299999999999983,
- "y": -2.469999999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_5",
- "pcb_component_id": "pcb_component_0",
- "layer": "top",
- "route": [
- {
- "x": -1.3299999999999983,
- "y": -2.469999999999999
- },
- {
- "x": -3.190000000000012,
- "y": -2.469999999999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_6",
- "pcb_component_id": "pcb_component_0",
- "layer": "top",
- "route": [
- {
- "x": -2.785000000000011,
- "y": -1.730000000000004
- },
- {
- "x": -1.7349999999999994,
- "y": -1.730000000000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_7",
- "pcb_component_id": "pcb_component_0",
- "layer": "top",
- "route": [
- {
- "x": -2.785000000000011,
- "y": -2.269999999999996
- },
- {
- "x": -2.785000000000011,
- "y": -1.730000000000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_8",
- "pcb_component_id": "pcb_component_0",
- "layer": "top",
- "route": [
- {
- "x": -1.7349999999999994,
- "y": -1.730000000000004
- },
- {
- "x": -1.7349999999999994,
- "y": -2.269999999999996
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_9",
- "pcb_component_id": "pcb_component_0",
- "layer": "top",
- "route": [
- {
- "x": -1.7349999999999994,
- "y": -2.269999999999996
- },
- {
- "x": -2.785000000000011,
- "y": -2.269999999999996
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_10",
"pcb_component_id": "pcb_component_1",
"layer": "bottom",
"route": [
@@ -458,7 +320,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_11",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_3",
"pcb_component_id": "pcb_component_1",
"layer": "bottom",
"route": [
@@ -472,141 +334,5 @@
}
],
"stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_12",
- "pcb_component_id": "pcb_component_1",
- "layer": "bottom",
- "route": [
- {
- "x": 1.8199999999999932,
- "y": 1.9699999999999989
- },
- {
- "x": 1.8199999999999932,
- "y": 1.0300000000000011
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_13",
- "pcb_component_id": "pcb_component_1",
- "layer": "bottom",
- "route": [
- {
- "x": 1.8199999999999932,
- "y": 1.0300000000000011
- },
- {
- "x": 3.680000000000007,
- "y": 1.0300000000000011
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_14",
- "pcb_component_id": "pcb_component_1",
- "layer": "bottom",
- "route": [
- {
- "x": 3.680000000000007,
- "y": 1.9699999999999989
- },
- {
- "x": 1.8199999999999932,
- "y": 1.9699999999999989
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_15",
- "pcb_component_id": "pcb_component_1",
- "layer": "bottom",
- "route": [
- {
- "x": 3.680000000000007,
- "y": 1.0300000000000011
- },
- {
- "x": 3.680000000000007,
- "y": 1.9699999999999989
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_16",
- "pcb_component_id": "pcb_component_1",
- "layer": "bottom",
- "route": [
- {
- "x": 2.2249999999999943,
- "y": 1.769999999999996
- },
- {
- "x": 2.2249999999999943,
- "y": 1.230000000000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_17",
- "pcb_component_id": "pcb_component_1",
- "layer": "bottom",
- "route": [
- {
- "x": 2.2249999999999943,
- "y": 1.230000000000004
- },
- {
- "x": 3.2750000000000057,
- "y": 1.230000000000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_18",
- "pcb_component_id": "pcb_component_1",
- "layer": "bottom",
- "route": [
- {
- "x": 3.2750000000000057,
- "y": 1.769999999999996
- },
- {
- "x": 2.2249999999999943,
- "y": 1.769999999999996
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_19",
- "pcb_component_id": "pcb_component_1",
- "layer": "bottom",
- "route": [
- {
- "x": 3.2750000000000057,
- "y": 1.230000000000004
- },
- {
- "x": 3.2750000000000057,
- "y": 1.769999999999996
- }
- ],
- "stroke_width": 0.1
}
]
\ No newline at end of file
diff --git a/tests/pcb/__snapshots__/kicad_laser_prefab_example-circuit-json.svg b/tests/pcb/__snapshots__/kicad_laser_prefab_example-circuit-json.svg
index 20a95ef6..2291c54d 100644
--- a/tests/pcb/__snapshots__/kicad_laser_prefab_example-circuit-json.svg
+++ b/tests/pcb/__snapshots__/kicad_laser_prefab_example-circuit-json.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/tests/pcb/corne-keyboard/__snapshots__/corne-keyboard-circuit-json.json b/tests/pcb/corne-keyboard/__snapshots__/corne-keyboard-circuit-json.json
index a64ee686..84baaad8 100644
--- a/tests/pcb/corne-keyboard/__snapshots__/corne-keyboard-circuit-json.json
+++ b/tests/pcb/corne-keyboard/__snapshots__/corne-keyboard-circuit-json.json
@@ -16866,7 +16866,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_8",
- "source_port_id": "pcb_component_12_port_1",
"port_hints": [
"1"
],
@@ -16883,7 +16882,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_9",
- "source_port_id": "pcb_component_12_port_2",
"port_hints": [
"2"
],
@@ -16900,7 +16898,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_13",
- "source_port_id": "pcb_component_14_port_1",
"port_hints": [
"1"
],
@@ -16917,7 +16914,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_14",
- "source_port_id": "pcb_component_14_port_2",
"port_hints": [
"2"
],
@@ -16934,7 +16930,6 @@
"height": 0.7,
"layer": "bottom",
"pcb_port_id": "pcb_port_15",
- "source_port_id": "pcb_component_15_port_1",
"port_hints": [
"1"
],
@@ -16951,7 +16946,6 @@
"height": 0.7,
"layer": "bottom",
"pcb_port_id": "pcb_port_16",
- "source_port_id": "pcb_component_15_port_2",
"port_hints": [
"2"
],
@@ -16968,7 +16962,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_17",
- "source_port_id": "pcb_component_16_port_1",
"port_hints": [
"1"
],
@@ -16984,7 +16977,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_18",
- "source_port_id": "pcb_component_16_port_2",
"port_hints": [
"2"
],
@@ -17000,7 +16992,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_23",
- "source_port_id": "pcb_component_17_port_S1",
"port_hints": [
"S1"
],
@@ -17016,7 +17007,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_24",
- "source_port_id": "pcb_component_17_port_S2",
"port_hints": [
"S2"
],
@@ -17032,7 +17022,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_26",
- "source_port_id": "pcb_component_18_port_1",
"port_hints": [
"1"
],
@@ -17049,7 +17038,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_27",
- "source_port_id": "pcb_component_18_port_2",
"port_hints": [
"2"
],
@@ -17066,7 +17054,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_28",
- "source_port_id": "pcb_component_19_port_1",
"port_hints": [
"1"
],
@@ -17082,7 +17069,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_29",
- "source_port_id": "pcb_component_19_port_2",
"port_hints": [
"2"
],
@@ -17098,7 +17084,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_30",
- "source_port_id": "pcb_component_19_port_3",
"port_hints": [
"3"
],
@@ -17114,7 +17099,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_31",
- "source_port_id": "pcb_component_19_port_4",
"port_hints": [
"4"
],
@@ -17130,7 +17114,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_32",
- "source_port_id": "pcb_component_20_port_1",
"port_hints": [
"1"
],
@@ -17146,7 +17129,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_33",
- "source_port_id": "pcb_component_20_port_2",
"port_hints": [
"2"
],
@@ -17162,7 +17144,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_34",
- "source_port_id": "pcb_component_21_port_1",
"port_hints": [
"1"
],
@@ -17178,7 +17159,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_35",
- "source_port_id": "pcb_component_21_port_2",
"port_hints": [
"2"
],
@@ -17194,7 +17174,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_36",
- "source_port_id": "pcb_component_21_port_3",
"port_hints": [
"3"
],
@@ -17210,7 +17189,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_37",
- "source_port_id": "pcb_component_21_port_4",
"port_hints": [
"4"
],
@@ -17226,7 +17204,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_38",
- "source_port_id": "pcb_component_22_port_1",
"port_hints": [
"1"
],
@@ -17242,7 +17219,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_39",
- "source_port_id": "pcb_component_22_port_2",
"port_hints": [
"2"
],
@@ -17258,7 +17234,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_40",
- "source_port_id": "pcb_component_22_port_3",
"port_hints": [
"3"
],
@@ -17274,7 +17249,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_41",
- "source_port_id": "pcb_component_22_port_4",
"port_hints": [
"4"
],
@@ -17290,7 +17264,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_42",
- "source_port_id": "pcb_component_23_port_1",
"port_hints": [
"1"
],
@@ -17307,7 +17280,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_43",
- "source_port_id": "pcb_component_23_port_2",
"port_hints": [
"2"
],
@@ -17324,7 +17296,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_44",
- "source_port_id": "pcb_component_24_port_1",
"port_hints": [
"1"
],
@@ -17341,7 +17312,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_45",
- "source_port_id": "pcb_component_24_port_2",
"port_hints": [
"2"
],
@@ -17358,7 +17328,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_46",
- "source_port_id": "pcb_component_25_port_1",
"port_hints": [
"1"
],
@@ -17375,7 +17344,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_47",
- "source_port_id": "pcb_component_25_port_2",
"port_hints": [
"2"
],
@@ -17392,7 +17360,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_48",
- "source_port_id": "pcb_component_26_port_1",
"port_hints": [
"1"
],
@@ -17409,7 +17376,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_49",
- "source_port_id": "pcb_component_26_port_2",
"port_hints": [
"2"
],
@@ -17426,7 +17392,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_50",
- "source_port_id": "pcb_component_27_port_1",
"port_hints": [
"1"
],
@@ -17443,7 +17408,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_51",
- "source_port_id": "pcb_component_27_port_2",
"port_hints": [
"2"
],
@@ -17460,7 +17424,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_52",
- "source_port_id": "pcb_component_28_port_1",
"port_hints": [
"1"
],
@@ -17476,7 +17439,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_53",
- "source_port_id": "pcb_component_28_port_2",
"port_hints": [
"2"
],
@@ -17492,7 +17454,6 @@
"height": 1.8,
"layer": "bottom",
"pcb_port_id": "pcb_port_58",
- "source_port_id": "pcb_component_29_port_T",
"port_hints": [
"T"
],
@@ -17508,7 +17469,6 @@
"height": 1.8,
"layer": "bottom",
"pcb_port_id": "pcb_port_59",
- "source_port_id": "pcb_component_29_port_T",
"port_hints": [
"T"
],
@@ -17524,7 +17484,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_60",
- "source_port_id": "pcb_component_30_port_1",
"port_hints": [
"1"
],
@@ -17541,7 +17500,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_61",
- "source_port_id": "pcb_component_30_port_2",
"port_hints": [
"2"
],
@@ -17558,7 +17516,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_62",
- "source_port_id": "pcb_component_31_port_1",
"port_hints": [
"1"
],
@@ -17575,7 +17532,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_63",
- "source_port_id": "pcb_component_31_port_2",
"port_hints": [
"2"
],
@@ -17592,7 +17548,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_64",
- "source_port_id": "pcb_component_32_port_1",
"port_hints": [
"1"
],
@@ -17608,7 +17563,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_65",
- "source_port_id": "pcb_component_32_port_2",
"port_hints": [
"2"
],
@@ -17624,7 +17578,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_70",
- "source_port_id": "pcb_component_33_port_S1",
"port_hints": [
"S1"
],
@@ -17640,7 +17593,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_71",
- "source_port_id": "pcb_component_33_port_S2",
"port_hints": [
"S2"
],
@@ -17656,7 +17608,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_73",
- "source_port_id": "pcb_component_34_port_1",
"port_hints": [
"1"
],
@@ -17673,7 +17624,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_74",
- "source_port_id": "pcb_component_34_port_2",
"port_hints": [
"2"
],
@@ -17690,7 +17640,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_75",
- "source_port_id": "pcb_component_35_port_1",
"port_hints": [
"1"
],
@@ -17706,7 +17655,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_76",
- "source_port_id": "pcb_component_35_port_2",
"port_hints": [
"2"
],
@@ -17782,7 +17730,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_77",
- "source_port_id": "pcb_component_36_port_1",
"port_hints": [
"1"
],
@@ -17799,7 +17746,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_78",
- "source_port_id": "pcb_component_36_port_2",
"port_hints": [
"2"
],
@@ -17816,7 +17762,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_79",
- "source_port_id": "pcb_component_36_port_3",
"port_hints": [
"3"
],
@@ -17833,7 +17778,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_80",
- "source_port_id": "pcb_component_36_port_4",
"port_hints": [
"4"
],
@@ -17850,7 +17794,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_81",
- "source_port_id": "pcb_component_36_port_5",
"port_hints": [
"5"
],
@@ -17867,7 +17810,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_82",
- "source_port_id": "pcb_component_36_port_6",
"port_hints": [
"6"
],
@@ -17884,7 +17826,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_83",
- "source_port_id": "pcb_component_36_port_7",
"port_hints": [
"7"
],
@@ -17901,7 +17842,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_84",
- "source_port_id": "pcb_component_36_port_8",
"port_hints": [
"8"
],
@@ -17918,7 +17858,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_85",
- "source_port_id": "pcb_component_36_port_9",
"port_hints": [
"9"
],
@@ -17935,7 +17874,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_86",
- "source_port_id": "pcb_component_36_port_10",
"port_hints": [
"10"
],
@@ -17952,7 +17890,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_87",
- "source_port_id": "pcb_component_36_port_11",
"port_hints": [
"11"
],
@@ -17969,7 +17906,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_88",
- "source_port_id": "pcb_component_36_port_12",
"port_hints": [
"12"
],
@@ -17986,7 +17922,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_89",
- "source_port_id": "pcb_component_36_port_13",
"port_hints": [
"13"
],
@@ -18003,7 +17938,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_90",
- "source_port_id": "pcb_component_36_port_14",
"port_hints": [
"14"
],
@@ -18020,7 +17954,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_91",
- "source_port_id": "pcb_component_36_port_15",
"port_hints": [
"15"
],
@@ -18037,7 +17970,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_92",
- "source_port_id": "pcb_component_36_port_16",
"port_hints": [
"16"
],
@@ -18054,7 +17986,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_93",
- "source_port_id": "pcb_component_36_port_17",
"port_hints": [
"17"
],
@@ -18071,7 +18002,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_94",
- "source_port_id": "pcb_component_36_port_18",
"port_hints": [
"18"
],
@@ -18088,7 +18018,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_95",
- "source_port_id": "pcb_component_36_port_19",
"port_hints": [
"19"
],
@@ -18105,7 +18034,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_96",
- "source_port_id": "pcb_component_36_port_20",
"port_hints": [
"20"
],
@@ -18122,7 +18050,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_97",
- "source_port_id": "pcb_component_36_port_21",
"port_hints": [
"21"
],
@@ -18139,7 +18066,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_98",
- "source_port_id": "pcb_component_36_port_22",
"port_hints": [
"22"
],
@@ -18156,7 +18082,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_99",
- "source_port_id": "pcb_component_36_port_23",
"port_hints": [
"23"
],
@@ -18173,7 +18098,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_100",
- "source_port_id": "pcb_component_36_port_24",
"port_hints": [
"24"
],
@@ -18190,7 +18114,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_101",
- "source_port_id": "pcb_component_36_port_25",
"port_hints": [
"25"
],
@@ -18207,7 +18130,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_102",
- "source_port_id": "pcb_component_36_port_26",
"port_hints": [
"26"
],
@@ -18224,7 +18146,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_103",
- "source_port_id": "pcb_component_36_port_27",
"port_hints": [
"27"
],
@@ -18241,7 +18162,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_104",
- "source_port_id": "pcb_component_36_port_28",
"port_hints": [
"28"
],
@@ -18258,7 +18178,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_105",
- "source_port_id": "pcb_component_36_port_29",
"port_hints": [
"29"
],
@@ -18275,7 +18194,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_106",
- "source_port_id": "pcb_component_36_port_30",
"port_hints": [
"30"
],
@@ -18292,7 +18210,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_107",
- "source_port_id": "pcb_component_36_port_31",
"port_hints": [
"31"
],
@@ -18309,7 +18226,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_108",
- "source_port_id": "pcb_component_36_port_32",
"port_hints": [
"32"
],
@@ -18326,7 +18242,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_109",
- "source_port_id": "pcb_component_36_port_33",
"port_hints": [
"33"
],
@@ -18343,7 +18258,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_110",
- "source_port_id": "pcb_component_36_port_34",
"port_hints": [
"34"
],
@@ -18360,7 +18274,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_111",
- "source_port_id": "pcb_component_36_port_35",
"port_hints": [
"35"
],
@@ -18377,7 +18290,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_112",
- "source_port_id": "pcb_component_36_port_36",
"port_hints": [
"36"
],
@@ -18394,7 +18306,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_113",
- "source_port_id": "pcb_component_36_port_37",
"port_hints": [
"37"
],
@@ -18411,7 +18322,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_114",
- "source_port_id": "pcb_component_36_port_38",
"port_hints": [
"38"
],
@@ -18428,7 +18338,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_115",
- "source_port_id": "pcb_component_36_port_39",
"port_hints": [
"39"
],
@@ -18445,7 +18354,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_116",
- "source_port_id": "pcb_component_36_port_40",
"port_hints": [
"40"
],
@@ -18462,7 +18370,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_117",
- "source_port_id": "pcb_component_36_port_41",
"port_hints": [
"41"
],
@@ -18479,7 +18386,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_118",
- "source_port_id": "pcb_component_36_port_42",
"port_hints": [
"42"
],
@@ -18496,7 +18402,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_119",
- "source_port_id": "pcb_component_36_port_43",
"port_hints": [
"43"
],
@@ -18513,7 +18418,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_120",
- "source_port_id": "pcb_component_36_port_44",
"port_hints": [
"44"
],
@@ -18530,7 +18434,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_121",
- "source_port_id": "pcb_component_36_port_45",
"port_hints": [
"45"
],
@@ -18547,7 +18450,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_122",
- "source_port_id": "pcb_component_36_port_46",
"port_hints": [
"46"
],
@@ -18564,7 +18466,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_123",
- "source_port_id": "pcb_component_36_port_47",
"port_hints": [
"47"
],
@@ -18581,7 +18482,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_124",
- "source_port_id": "pcb_component_36_port_48",
"port_hints": [
"48"
],
@@ -18598,7 +18498,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_125",
- "source_port_id": "pcb_component_36_port_49",
"port_hints": [
"49"
],
@@ -18615,7 +18514,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_126",
- "source_port_id": "pcb_component_36_port_50",
"port_hints": [
"50"
],
@@ -18632,7 +18530,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_127",
- "source_port_id": "pcb_component_36_port_51",
"port_hints": [
"51"
],
@@ -18649,7 +18546,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_128",
- "source_port_id": "pcb_component_36_port_52",
"port_hints": [
"52"
],
@@ -18666,7 +18562,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_129",
- "source_port_id": "pcb_component_36_port_53",
"port_hints": [
"53"
],
@@ -18683,7 +18578,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_130",
- "source_port_id": "pcb_component_36_port_54",
"port_hints": [
"54"
],
@@ -18700,7 +18594,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_131",
- "source_port_id": "pcb_component_36_port_55",
"port_hints": [
"55"
],
@@ -18717,7 +18610,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_132",
- "source_port_id": "pcb_component_36_port_56",
"port_hints": [
"56"
],
@@ -18734,7 +18626,6 @@
"height": 3.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_133",
- "source_port_id": "pcb_component_36_port_57",
"port_hints": [
"57"
],
@@ -18750,7 +18641,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_134",
- "source_port_id": "pcb_component_37_port_1",
"port_hints": [
"1"
],
@@ -18766,7 +18656,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_135",
- "source_port_id": "pcb_component_37_port_2",
"port_hints": [
"2"
],
@@ -18782,7 +18671,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_136",
- "source_port_id": "pcb_component_38_port_1",
"port_hints": [
"1"
],
@@ -18798,7 +18686,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_137",
- "source_port_id": "pcb_component_38_port_2",
"port_hints": [
"2"
],
@@ -18814,7 +18701,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_138",
- "source_port_id": "pcb_component_39_port_1",
"port_hints": [
"1"
],
@@ -18830,7 +18716,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_139",
- "source_port_id": "pcb_component_39_port_2",
"port_hints": [
"2"
],
@@ -18846,7 +18731,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_140",
- "source_port_id": "pcb_component_39_port_3",
"port_hints": [
"3"
],
@@ -18862,7 +18746,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_141",
- "source_port_id": "pcb_component_39_port_4",
"port_hints": [
"4"
],
@@ -18878,7 +18761,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_142",
- "source_port_id": "pcb_component_40_port_1",
"port_hints": [
"1"
],
@@ -18895,7 +18777,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_143",
- "source_port_id": "pcb_component_40_port_2",
"port_hints": [
"2"
],
@@ -18912,7 +18793,6 @@
"height": 2,
"layer": "bottom",
"pcb_port_id": "pcb_port_144",
- "source_port_id": "pcb_component_41_port_1",
"port_hints": [
"1"
],
@@ -18928,7 +18808,6 @@
"height": 2,
"layer": "bottom",
"pcb_port_id": "pcb_port_145",
- "source_port_id": "pcb_component_41_port_2",
"port_hints": [
"2"
],
@@ -18944,7 +18823,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_146",
- "source_port_id": "pcb_component_42_port_1",
"port_hints": [
"1"
],
@@ -18960,7 +18838,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_147",
- "source_port_id": "pcb_component_42_port_2",
"port_hints": [
"2"
],
@@ -18976,7 +18853,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_148",
- "source_port_id": "pcb_component_42_port_3",
"port_hints": [
"3"
],
@@ -18992,7 +18868,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_149",
- "source_port_id": "pcb_component_42_port_4",
"port_hints": [
"4"
],
@@ -19008,7 +18883,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_150",
- "source_port_id": "pcb_component_43_port_1",
"port_hints": [
"1"
],
@@ -19025,7 +18899,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_151",
- "source_port_id": "pcb_component_43_port_2",
"port_hints": [
"2"
],
@@ -19042,7 +18915,6 @@
"height": 1.3,
"layer": "bottom",
"pcb_port_id": "pcb_port_152",
- "source_port_id": "pcb_component_44_port_A1",
"port_hints": [
"A1"
],
@@ -19058,7 +18930,6 @@
"height": 1.3,
"layer": "bottom",
"pcb_port_id": "pcb_port_153",
- "source_port_id": "pcb_component_44_port_A4",
"port_hints": [
"A4"
],
@@ -19074,7 +18945,6 @@
"height": 1.3,
"layer": "bottom",
"pcb_port_id": "pcb_port_154",
- "source_port_id": "pcb_component_44_port_A5",
"port_hints": [
"A5"
],
@@ -19090,7 +18960,6 @@
"height": 1.3,
"layer": "bottom",
"pcb_port_id": "pcb_port_155",
- "source_port_id": "pcb_component_44_port_A6",
"port_hints": [
"A6"
],
@@ -19106,7 +18975,6 @@
"height": 1.3,
"layer": "bottom",
"pcb_port_id": "pcb_port_156",
- "source_port_id": "pcb_component_44_port_A7",
"port_hints": [
"A7"
],
@@ -19122,7 +18990,6 @@
"height": 1.3,
"layer": "bottom",
"pcb_port_id": "pcb_port_157",
- "source_port_id": "pcb_component_44_port_A8",
"port_hints": [
"A8"
],
@@ -19138,7 +19005,6 @@
"height": 1.3,
"layer": "bottom",
"pcb_port_id": "pcb_port_158",
- "source_port_id": "pcb_component_44_port_A9",
"port_hints": [
"A9"
],
@@ -19154,7 +19020,6 @@
"height": 1.3,
"layer": "bottom",
"pcb_port_id": "pcb_port_159",
- "source_port_id": "pcb_component_44_port_A12",
"port_hints": [
"A12"
],
@@ -19170,7 +19035,6 @@
"height": 1.3,
"layer": "bottom",
"pcb_port_id": "pcb_port_160",
- "source_port_id": "pcb_component_44_port_B1",
"port_hints": [
"B1"
],
@@ -19186,7 +19050,6 @@
"height": 1.3,
"layer": "bottom",
"pcb_port_id": "pcb_port_161",
- "source_port_id": "pcb_component_44_port_B4",
"port_hints": [
"B4"
],
@@ -19202,7 +19065,6 @@
"height": 1.3,
"layer": "bottom",
"pcb_port_id": "pcb_port_162",
- "source_port_id": "pcb_component_44_port_B5",
"port_hints": [
"B5"
],
@@ -19218,7 +19080,6 @@
"height": 1.3,
"layer": "bottom",
"pcb_port_id": "pcb_port_163",
- "source_port_id": "pcb_component_44_port_B6",
"port_hints": [
"B6"
],
@@ -19234,7 +19095,6 @@
"height": 1.3,
"layer": "bottom",
"pcb_port_id": "pcb_port_164",
- "source_port_id": "pcb_component_44_port_B7",
"port_hints": [
"B7"
],
@@ -19250,7 +19110,6 @@
"height": 1.3,
"layer": "bottom",
"pcb_port_id": "pcb_port_165",
- "source_port_id": "pcb_component_44_port_B8",
"port_hints": [
"B8"
],
@@ -19266,7 +19125,6 @@
"height": 1.3,
"layer": "bottom",
"pcb_port_id": "pcb_port_166",
- "source_port_id": "pcb_component_44_port_B9",
"port_hints": [
"B9"
],
@@ -19282,7 +19140,6 @@
"height": 1.3,
"layer": "bottom",
"pcb_port_id": "pcb_port_167",
- "source_port_id": "pcb_component_44_port_B12",
"port_hints": [
"B12"
],
@@ -19298,7 +19155,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_172",
- "source_port_id": "pcb_component_45_port_1",
"port_hints": [
"1"
],
@@ -19314,7 +19170,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_173",
- "source_port_id": "pcb_component_45_port_2",
"port_hints": [
"2"
],
@@ -19330,7 +19185,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_174",
- "source_port_id": "pcb_component_45_port_3",
"port_hints": [
"3"
],
@@ -19346,7 +19200,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_175",
- "source_port_id": "pcb_component_45_port_4",
"port_hints": [
"4"
],
@@ -19362,7 +19215,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_176",
- "source_port_id": "pcb_component_46_port_1",
"port_hints": [
"1"
],
@@ -19378,7 +19230,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_177",
- "source_port_id": "pcb_component_46_port_2",
"port_hints": [
"2"
],
@@ -19394,7 +19245,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_178",
- "source_port_id": "pcb_component_46_port_3",
"port_hints": [
"3"
],
@@ -19410,7 +19260,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_179",
- "source_port_id": "pcb_component_46_port_4",
"port_hints": [
"4"
],
@@ -19426,7 +19275,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_180",
- "source_port_id": "pcb_component_47_port_1",
"port_hints": [
"1"
],
@@ -19443,7 +19291,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_181",
- "source_port_id": "pcb_component_47_port_2",
"port_hints": [
"2"
],
@@ -19460,7 +19307,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_182",
- "source_port_id": "pcb_component_48_port_1",
"port_hints": [
"1"
],
@@ -19477,7 +19323,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_183",
- "source_port_id": "pcb_component_48_port_2",
"port_hints": [
"2"
],
@@ -19494,7 +19339,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_184",
- "source_port_id": "pcb_component_49_port_1",
"port_hints": [
"1"
],
@@ -19510,7 +19354,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_185",
- "source_port_id": "pcb_component_49_port_2",
"port_hints": [
"2"
],
@@ -19526,7 +19369,6 @@
"height": 0.55,
"layer": "bottom",
"pcb_port_id": "pcb_port_186",
- "source_port_id": "pcb_component_50_port_1",
"port_hints": [
"1"
],
@@ -19542,7 +19384,6 @@
"height": 0.55,
"layer": "bottom",
"pcb_port_id": "pcb_port_187",
- "source_port_id": "pcb_component_50_port_2",
"port_hints": [
"2"
],
@@ -19558,7 +19399,6 @@
"height": 0.55,
"layer": "bottom",
"pcb_port_id": "pcb_port_188",
- "source_port_id": "pcb_component_50_port_3",
"port_hints": [
"3"
],
@@ -19574,7 +19414,6 @@
"height": 0.55,
"layer": "bottom",
"pcb_port_id": "pcb_port_189",
- "source_port_id": "pcb_component_50_port_4",
"port_hints": [
"4"
],
@@ -19590,7 +19429,6 @@
"height": 0.55,
"layer": "bottom",
"pcb_port_id": "pcb_port_190",
- "source_port_id": "pcb_component_50_port_5",
"port_hints": [
"5"
],
@@ -19606,7 +19444,6 @@
"height": 0.55,
"layer": "bottom",
"pcb_port_id": "pcb_port_191",
- "source_port_id": "pcb_component_50_port_6",
"port_hints": [
"6"
],
@@ -19622,7 +19459,6 @@
"height": 0.55,
"layer": "bottom",
"pcb_port_id": "pcb_port_192",
- "source_port_id": "pcb_component_50_port_7",
"port_hints": [
"7"
],
@@ -19638,7 +19474,6 @@
"height": 0.55,
"layer": "bottom",
"pcb_port_id": "pcb_port_193",
- "source_port_id": "pcb_component_50_port_8",
"port_hints": [
"8"
],
@@ -19654,7 +19489,6 @@
"height": 0.55,
"layer": "bottom",
"pcb_port_id": "pcb_port_194",
- "source_port_id": "pcb_component_50_port_9",
"port_hints": [
"9"
],
@@ -19670,7 +19504,6 @@
"height": 0.55,
"layer": "bottom",
"pcb_port_id": "pcb_port_195",
- "source_port_id": "pcb_component_50_port_10",
"port_hints": [
"10"
],
@@ -19686,7 +19519,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_196",
- "source_port_id": "pcb_component_51_port_1",
"port_hints": [
"1"
],
@@ -19702,7 +19534,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_197",
- "source_port_id": "pcb_component_51_port_2",
"port_hints": [
"2"
],
@@ -19718,7 +19549,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_198",
- "source_port_id": "pcb_component_51_port_3",
"port_hints": [
"3"
],
@@ -19734,7 +19564,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_199",
- "source_port_id": "pcb_component_51_port_4",
"port_hints": [
"4"
],
@@ -19750,7 +19579,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_200",
- "source_port_id": "pcb_component_52_port_1",
"port_hints": [
"1"
],
@@ -19766,7 +19594,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_201",
- "source_port_id": "pcb_component_52_port_2",
"port_hints": [
"2"
],
@@ -19782,7 +19609,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_202",
- "source_port_id": "pcb_component_52_port_3",
"port_hints": [
"3"
],
@@ -19798,7 +19624,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_203",
- "source_port_id": "pcb_component_52_port_4",
"port_hints": [
"4"
],
@@ -19814,7 +19639,6 @@
"height": 1.5,
"layer": "bottom",
"pcb_port_id": "pcb_port_204",
- "source_port_id": "pcb_component_53_port_1",
"port_hints": [
"1"
],
@@ -19830,7 +19654,6 @@
"height": 1.5,
"layer": "bottom",
"pcb_port_id": "pcb_port_205",
- "source_port_id": "pcb_component_53_port_2",
"port_hints": [
"2"
],
@@ -19846,7 +19669,6 @@
"height": 3.8,
"layer": "bottom",
"pcb_port_id": "pcb_port_206",
- "source_port_id": "pcb_component_53_port_2",
"port_hints": [
"2"
],
@@ -19862,7 +19684,6 @@
"height": 1.5,
"layer": "bottom",
"pcb_port_id": "pcb_port_207",
- "source_port_id": "pcb_component_53_port_3",
"port_hints": [
"3"
],
@@ -19878,7 +19699,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_208",
- "source_port_id": "pcb_component_54_port_1",
"port_hints": [
"1"
],
@@ -19894,7 +19714,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_209",
- "source_port_id": "pcb_component_54_port_2",
"port_hints": [
"2"
],
@@ -19910,7 +19729,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_210",
- "source_port_id": "pcb_component_55_port_1",
"port_hints": [
"1"
],
@@ -19926,7 +19744,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_211",
- "source_port_id": "pcb_component_55_port_2",
"port_hints": [
"2"
],
@@ -19942,7 +19759,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_212",
- "source_port_id": "pcb_component_56_port_1",
"port_hints": [
"1"
],
@@ -19958,7 +19774,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_213",
- "source_port_id": "pcb_component_56_port_2",
"port_hints": [
"2"
],
@@ -19974,7 +19789,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_214",
- "source_port_id": "pcb_component_57_port_1",
"port_hints": [
"1"
],
@@ -19990,7 +19804,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_215",
- "source_port_id": "pcb_component_57_port_2",
"port_hints": [
"2"
],
@@ -20006,7 +19819,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_216",
- "source_port_id": "pcb_component_57_port_3",
"port_hints": [
"3"
],
@@ -20022,7 +19834,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_217",
- "source_port_id": "pcb_component_57_port_4",
"port_hints": [
"4"
],
@@ -20038,7 +19849,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_218",
- "source_port_id": "pcb_component_58_port_1",
"port_hints": [
"1"
],
@@ -20054,7 +19864,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_219",
- "source_port_id": "pcb_component_58_port_2",
"port_hints": [
"2"
],
@@ -20070,7 +19879,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_220",
- "source_port_id": "pcb_component_59_port_1",
"port_hints": [
"1"
],
@@ -20086,7 +19894,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_221",
- "source_port_id": "pcb_component_59_port_2",
"port_hints": [
"2"
],
@@ -20102,7 +19909,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_222",
- "source_port_id": "pcb_component_60_port_1",
"port_hints": [
"1"
],
@@ -20119,7 +19925,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_223",
- "source_port_id": "pcb_component_60_port_2",
"port_hints": [
"2"
],
@@ -20136,7 +19941,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_224",
- "source_port_id": "pcb_component_61_port_1",
"port_hints": [
"1"
],
@@ -20152,7 +19956,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_225",
- "source_port_id": "pcb_component_61_port_2",
"port_hints": [
"2"
],
@@ -20168,7 +19971,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_226",
- "source_port_id": "pcb_component_62_port_1",
"port_hints": [
"1"
],
@@ -20184,7 +19986,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_227",
- "source_port_id": "pcb_component_62_port_2",
"port_hints": [
"2"
],
@@ -20200,7 +20001,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_228",
- "source_port_id": "pcb_component_63_port_1",
"port_hints": [
"1"
],
@@ -20216,7 +20016,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_229",
- "source_port_id": "pcb_component_63_port_2",
"port_hints": [
"2"
],
@@ -20232,7 +20031,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_230",
- "source_port_id": "pcb_component_63_port_3",
"port_hints": [
"3"
],
@@ -20248,7 +20046,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_231",
- "source_port_id": "pcb_component_63_port_4",
"port_hints": [
"4"
],
@@ -20264,7 +20061,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_232",
- "source_port_id": "pcb_component_64_port_1",
"port_hints": [
"1"
],
@@ -20280,7 +20076,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_233",
- "source_port_id": "pcb_component_64_port_2",
"port_hints": [
"2"
],
@@ -20296,7 +20091,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_234",
- "source_port_id": "pcb_component_64_port_3",
"port_hints": [
"3"
],
@@ -20312,7 +20106,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_235",
- "source_port_id": "pcb_component_64_port_4",
"port_hints": [
"4"
],
@@ -20328,7 +20121,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_236",
- "source_port_id": "pcb_component_65_port_1",
"port_hints": [
"1"
],
@@ -20344,7 +20136,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_237",
- "source_port_id": "pcb_component_65_port_2",
"port_hints": [
"2"
],
@@ -20360,7 +20151,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_238",
- "source_port_id": "pcb_component_65_port_3",
"port_hints": [
"3"
],
@@ -20376,7 +20166,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_239",
- "source_port_id": "pcb_component_65_port_4",
"port_hints": [
"4"
],
@@ -20392,7 +20181,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_240",
- "source_port_id": "pcb_component_66_port_1",
"port_hints": [
"1"
],
@@ -20409,7 +20197,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_241",
- "source_port_id": "pcb_component_66_port_2",
"port_hints": [
"2"
],
@@ -20426,7 +20213,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_242",
- "source_port_id": "pcb_component_67_port_1",
"port_hints": [
"1"
],
@@ -20442,7 +20228,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_243",
- "source_port_id": "pcb_component_67_port_2",
"port_hints": [
"2"
],
@@ -20458,7 +20243,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_244",
- "source_port_id": "pcb_component_68_port_1",
"port_hints": [
"1"
],
@@ -20475,7 +20259,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_245",
- "source_port_id": "pcb_component_68_port_2",
"port_hints": [
"2"
],
@@ -20492,7 +20275,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_246",
- "source_port_id": "pcb_component_69_port_1",
"port_hints": [
"1"
],
@@ -20508,7 +20290,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_247",
- "source_port_id": "pcb_component_69_port_2",
"port_hints": [
"2"
],
@@ -20524,7 +20305,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_248",
- "source_port_id": "pcb_component_70_port_1",
"port_hints": [
"1"
],
@@ -20540,7 +20320,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_249",
- "source_port_id": "pcb_component_70_port_2",
"port_hints": [
"2"
],
@@ -20556,7 +20335,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_250",
- "source_port_id": "pcb_component_70_port_3",
"port_hints": [
"3"
],
@@ -20572,7 +20350,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_251",
- "source_port_id": "pcb_component_70_port_4",
"port_hints": [
"4"
],
@@ -20588,7 +20365,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_252",
- "source_port_id": "pcb_component_71_port_1",
"port_hints": [
"1"
],
@@ -20605,7 +20381,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_253",
- "source_port_id": "pcb_component_71_port_2",
"port_hints": [
"2"
],
@@ -20622,7 +20397,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_254",
- "source_port_id": "pcb_component_72_port_1",
"port_hints": [
"1"
],
@@ -20638,7 +20412,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_255",
- "source_port_id": "pcb_component_72_port_2",
"port_hints": [
"2"
],
@@ -20654,7 +20427,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_256",
- "source_port_id": "pcb_component_72_port_3",
"port_hints": [
"3"
],
@@ -20670,7 +20442,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_257",
- "source_port_id": "pcb_component_72_port_4",
"port_hints": [
"4"
],
@@ -20686,7 +20457,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_258",
- "source_port_id": "pcb_component_73_port_1",
"port_hints": [
"1"
],
@@ -20702,7 +20472,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_259",
- "source_port_id": "pcb_component_73_port_2",
"port_hints": [
"2"
],
@@ -20718,7 +20487,6 @@
"height": 2,
"layer": "bottom",
"pcb_port_id": "pcb_port_260",
- "source_port_id": "pcb_component_74_port_1",
"port_hints": [
"1"
],
@@ -20734,7 +20502,6 @@
"height": 2,
"layer": "bottom",
"pcb_port_id": "pcb_port_261",
- "source_port_id": "pcb_component_74_port_2",
"port_hints": [
"2"
],
@@ -20750,7 +20517,6 @@
"height": 0.7,
"layer": "bottom",
"pcb_port_id": "pcb_port_262",
- "source_port_id": "pcb_component_75_port_1",
"port_hints": [
"1"
],
@@ -20767,7 +20533,6 @@
"height": 0.7,
"layer": "bottom",
"pcb_port_id": "pcb_port_263",
- "source_port_id": "pcb_component_75_port_2",
"port_hints": [
"2"
],
@@ -20784,7 +20549,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_264",
- "source_port_id": "pcb_component_76_port_1",
"port_hints": [
"1"
],
@@ -20800,7 +20564,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_265",
- "source_port_id": "pcb_component_76_port_2",
"port_hints": [
"2"
],
@@ -20816,7 +20579,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_266",
- "source_port_id": "pcb_component_76_port_3",
"port_hints": [
"3"
],
@@ -20832,7 +20594,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_267",
- "source_port_id": "pcb_component_76_port_4",
"port_hints": [
"4"
],
@@ -20848,7 +20609,6 @@
"height": 0.55,
"layer": "bottom",
"pcb_port_id": "pcb_port_268",
- "source_port_id": "pcb_component_77_port_1",
"port_hints": [
"1"
],
@@ -20864,7 +20624,6 @@
"height": 0.55,
"layer": "bottom",
"pcb_port_id": "pcb_port_269",
- "source_port_id": "pcb_component_77_port_2",
"port_hints": [
"2"
],
@@ -20880,7 +20639,6 @@
"height": 0.55,
"layer": "bottom",
"pcb_port_id": "pcb_port_270",
- "source_port_id": "pcb_component_77_port_3",
"port_hints": [
"3"
],
@@ -20896,7 +20654,6 @@
"height": 0.55,
"layer": "bottom",
"pcb_port_id": "pcb_port_271",
- "source_port_id": "pcb_component_77_port_4",
"port_hints": [
"4"
],
@@ -20912,7 +20669,6 @@
"height": 0.55,
"layer": "bottom",
"pcb_port_id": "pcb_port_272",
- "source_port_id": "pcb_component_77_port_5",
"port_hints": [
"5"
],
@@ -20928,7 +20684,6 @@
"height": 0.55,
"layer": "bottom",
"pcb_port_id": "pcb_port_273",
- "source_port_id": "pcb_component_77_port_6",
"port_hints": [
"6"
],
@@ -20944,7 +20699,6 @@
"height": 0.55,
"layer": "bottom",
"pcb_port_id": "pcb_port_274",
- "source_port_id": "pcb_component_77_port_7",
"port_hints": [
"7"
],
@@ -20960,7 +20714,6 @@
"height": 0.55,
"layer": "bottom",
"pcb_port_id": "pcb_port_275",
- "source_port_id": "pcb_component_77_port_8",
"port_hints": [
"8"
],
@@ -20976,7 +20729,6 @@
"height": 0.55,
"layer": "bottom",
"pcb_port_id": "pcb_port_276",
- "source_port_id": "pcb_component_77_port_9",
"port_hints": [
"9"
],
@@ -20992,7 +20744,6 @@
"height": 0.55,
"layer": "bottom",
"pcb_port_id": "pcb_port_277",
- "source_port_id": "pcb_component_77_port_10",
"port_hints": [
"10"
],
@@ -21008,7 +20759,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_278",
- "source_port_id": "pcb_component_78_port_1",
"port_hints": [
"1"
],
@@ -21025,7 +20775,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_279",
- "source_port_id": "pcb_component_78_port_2",
"port_hints": [
"2"
],
@@ -21042,7 +20791,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_280",
- "source_port_id": "pcb_component_79_port_1",
"port_hints": [
"1"
],
@@ -21058,7 +20806,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_281",
- "source_port_id": "pcb_component_79_port_2",
"port_hints": [
"2"
],
@@ -21074,7 +20821,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_282",
- "source_port_id": "pcb_component_79_port_3",
"port_hints": [
"3"
],
@@ -21090,7 +20836,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_283",
- "source_port_id": "pcb_component_79_port_4",
"port_hints": [
"4"
],
@@ -21106,7 +20851,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_284",
- "source_port_id": "pcb_component_80_port_1",
"port_hints": [
"1"
],
@@ -21122,7 +20866,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_285",
- "source_port_id": "pcb_component_80_port_2",
"port_hints": [
"2"
],
@@ -21138,7 +20881,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_286",
- "source_port_id": "pcb_component_81_port_1",
"port_hints": [
"1"
],
@@ -21155,7 +20897,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_287",
- "source_port_id": "pcb_component_81_port_2",
"port_hints": [
"2"
],
@@ -21172,7 +20913,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_288",
- "source_port_id": "pcb_component_82_port_1",
"port_hints": [
"1"
],
@@ -21188,7 +20928,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_289",
- "source_port_id": "pcb_component_82_port_2",
"port_hints": [
"2"
],
@@ -21204,7 +20943,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_290",
- "source_port_id": "pcb_component_82_port_3",
"port_hints": [
"3"
],
@@ -21220,7 +20958,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_291",
- "source_port_id": "pcb_component_82_port_4",
"port_hints": [
"4"
],
@@ -21236,7 +20973,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_292",
- "source_port_id": "pcb_component_83_port_1",
"port_hints": [
"1"
],
@@ -21252,7 +20988,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_293",
- "source_port_id": "pcb_component_83_port_2",
"port_hints": [
"2"
],
@@ -21268,7 +21003,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_294",
- "source_port_id": "pcb_component_83_port_3",
"port_hints": [
"3"
],
@@ -21284,7 +21018,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_295",
- "source_port_id": "pcb_component_83_port_4",
"port_hints": [
"4"
],
@@ -21300,7 +21033,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_296",
- "source_port_id": "pcb_component_84_port_1",
"port_hints": [
"1"
],
@@ -21317,7 +21049,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_297",
- "source_port_id": "pcb_component_84_port_2",
"port_hints": [
"2"
],
@@ -21334,7 +21065,6 @@
"height": 1.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_298",
- "source_port_id": "pcb_component_85_port_1",
"port_hints": [
"1"
],
@@ -21350,7 +21080,6 @@
"height": 1.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_299",
- "source_port_id": "pcb_component_85_port_2",
"port_hints": [
"2"
],
@@ -21366,7 +21095,6 @@
"height": 1.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_300",
- "source_port_id": "pcb_component_85_port_3",
"port_hints": [
"3"
],
@@ -21382,7 +21110,6 @@
"height": 1.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_301",
- "source_port_id": "pcb_component_85_port_4",
"port_hints": [
"4"
],
@@ -21398,7 +21125,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_302",
- "source_port_id": "pcb_component_86_port_1",
"port_hints": [
"1"
],
@@ -21414,7 +21140,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_303",
- "source_port_id": "pcb_component_86_port_2",
"port_hints": [
"2"
],
@@ -21430,7 +21155,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_304",
- "source_port_id": "pcb_component_86_port_3",
"port_hints": [
"3"
],
@@ -21446,7 +21170,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_305",
- "source_port_id": "pcb_component_86_port_4",
"port_hints": [
"4"
],
@@ -21462,7 +21185,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_306",
- "source_port_id": "pcb_component_87_port_1",
"port_hints": [
"1"
],
@@ -21478,7 +21200,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_307",
- "source_port_id": "pcb_component_87_port_2",
"port_hints": [
"2"
],
@@ -21494,7 +21215,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_308",
- "source_port_id": "pcb_component_88_port_1",
"port_hints": [
"1"
],
@@ -21511,7 +21231,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_309",
- "source_port_id": "pcb_component_88_port_2",
"port_hints": [
"2"
],
@@ -21528,7 +21247,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_310",
- "source_port_id": "pcb_component_89_port_1",
"port_hints": [
"1"
],
@@ -21544,7 +21262,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_311",
- "source_port_id": "pcb_component_89_port_2",
"port_hints": [
"2"
],
@@ -21560,7 +21277,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_312",
- "source_port_id": "pcb_component_90_port_1",
"port_hints": [
"1"
],
@@ -21576,7 +21292,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_313",
- "source_port_id": "pcb_component_90_port_2",
"port_hints": [
"2"
],
@@ -21592,7 +21307,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_314",
- "source_port_id": "pcb_component_91_port_1",
"port_hints": [
"1"
],
@@ -21608,7 +21322,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_315",
- "source_port_id": "pcb_component_91_port_2",
"port_hints": [
"2"
],
@@ -21624,7 +21337,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_316",
- "source_port_id": "pcb_component_91_port_3",
"port_hints": [
"3"
],
@@ -21640,7 +21352,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_317",
- "source_port_id": "pcb_component_91_port_4",
"port_hints": [
"4"
],
@@ -21656,7 +21367,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_318",
- "source_port_id": "pcb_component_92_port_1",
"port_hints": [
"1"
],
@@ -21672,7 +21382,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_319",
- "source_port_id": "pcb_component_92_port_2",
"port_hints": [
"2"
],
@@ -21688,7 +21397,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_320",
- "source_port_id": "pcb_component_92_port_3",
"port_hints": [
"3"
],
@@ -21704,7 +21412,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_321",
- "source_port_id": "pcb_component_92_port_4",
"port_hints": [
"4"
],
@@ -21720,7 +21427,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_326",
- "source_port_id": "pcb_component_93_port_S1",
"port_hints": [
"S1"
],
@@ -21736,7 +21442,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_327",
- "source_port_id": "pcb_component_93_port_S2",
"port_hints": [
"S2"
],
@@ -21752,7 +21457,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_329",
- "source_port_id": "pcb_component_94_port_1",
"port_hints": [
"1"
],
@@ -21768,7 +21472,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_330",
- "source_port_id": "pcb_component_94_port_2",
"port_hints": [
"2"
],
@@ -21784,7 +21487,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_331",
- "source_port_id": "pcb_component_95_port_1",
"port_hints": [
"1"
],
@@ -21801,7 +21503,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_332",
- "source_port_id": "pcb_component_95_port_2",
"port_hints": [
"2"
],
@@ -21818,7 +21519,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_333",
- "source_port_id": "pcb_component_96_port_1",
"port_hints": [
"1"
],
@@ -21835,7 +21535,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_334",
- "source_port_id": "pcb_component_96_port_2",
"port_hints": [
"2"
],
@@ -21852,7 +21551,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_335",
- "source_port_id": "pcb_component_97_port_1",
"port_hints": [
"1"
],
@@ -21868,7 +21566,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_336",
- "source_port_id": "pcb_component_97_port_2",
"port_hints": [
"2"
],
@@ -21884,7 +21581,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_337",
- "source_port_id": "pcb_component_97_port_3",
"port_hints": [
"3"
],
@@ -21900,7 +21596,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_338",
- "source_port_id": "pcb_component_97_port_4",
"port_hints": [
"4"
],
@@ -21916,7 +21611,6 @@
"height": 2,
"layer": "bottom",
"pcb_port_id": "pcb_port_339",
- "source_port_id": "pcb_component_98_port_1",
"port_hints": [
"1"
],
@@ -21932,7 +21626,6 @@
"height": 2,
"layer": "bottom",
"pcb_port_id": "pcb_port_340",
- "source_port_id": "pcb_component_98_port_2",
"port_hints": [
"2"
],
@@ -21948,7 +21641,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_341",
- "source_port_id": "pcb_component_99_port_1",
"port_hints": [
"1"
],
@@ -21964,7 +21656,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_342",
- "source_port_id": "pcb_component_99_port_2",
"port_hints": [
"2"
],
@@ -21980,7 +21671,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_343",
- "source_port_id": "pcb_component_99_port_3",
"port_hints": [
"3"
],
@@ -21996,7 +21686,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_344",
- "source_port_id": "pcb_component_99_port_4",
"port_hints": [
"4"
],
@@ -22012,7 +21701,6 @@
"height": 0.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_345",
- "source_port_id": "pcb_component_100_port_1",
"port_hints": [
"1"
],
@@ -22029,7 +21717,6 @@
"height": 0.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_346",
- "source_port_id": "pcb_component_100_port_2",
"port_hints": [
"2"
],
@@ -22046,7 +21733,6 @@
"height": 0.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_347",
- "source_port_id": "pcb_component_100_port_3",
"port_hints": [
"3"
],
@@ -22063,7 +21749,6 @@
"height": 0.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_348",
- "source_port_id": "pcb_component_100_port_4",
"port_hints": [
"4"
],
@@ -22080,7 +21765,6 @@
"height": 0.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_349",
- "source_port_id": "pcb_component_100_port_5",
"port_hints": [
"5"
],
@@ -22097,7 +21781,6 @@
"height": 0.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_350",
- "source_port_id": "pcb_component_100_port_6",
"port_hints": [
"6"
],
@@ -22114,7 +21797,6 @@
"height": 0.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_351",
- "source_port_id": "pcb_component_100_port_7",
"port_hints": [
"7"
],
@@ -22131,7 +21813,6 @@
"height": 0.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_352",
- "source_port_id": "pcb_component_100_port_8",
"port_hints": [
"8"
],
@@ -22148,7 +21829,6 @@
"height": 0.7,
"layer": "bottom",
"pcb_port_id": "pcb_port_353",
- "source_port_id": "pcb_component_101_port_1",
"port_hints": [
"1"
],
@@ -22165,7 +21845,6 @@
"height": 0.7,
"layer": "bottom",
"pcb_port_id": "pcb_port_354",
- "source_port_id": "pcb_component_101_port_2",
"port_hints": [
"2"
],
@@ -22182,7 +21861,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_355",
- "source_port_id": "pcb_component_102_port_1",
"port_hints": [
"1"
],
@@ -22198,7 +21876,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_356",
- "source_port_id": "pcb_component_102_port_2",
"port_hints": [
"2"
],
@@ -22214,7 +21891,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_357",
- "source_port_id": "pcb_component_102_port_3",
"port_hints": [
"3"
],
@@ -22230,7 +21906,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_358",
- "source_port_id": "pcb_component_102_port_4",
"port_hints": [
"4"
],
@@ -22246,7 +21921,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_359",
- "source_port_id": "pcb_component_103_port_1",
"port_hints": [
"1"
],
@@ -22262,7 +21936,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_360",
- "source_port_id": "pcb_component_103_port_2",
"port_hints": [
"2"
],
@@ -22278,7 +21951,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_361",
- "source_port_id": "pcb_component_104_port_1",
"port_hints": [
"1"
],
@@ -22294,7 +21966,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_362",
- "source_port_id": "pcb_component_104_port_2",
"port_hints": [
"2"
],
@@ -22310,7 +21981,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_363",
- "source_port_id": "pcb_component_104_port_3",
"port_hints": [
"3"
],
@@ -22326,7 +21996,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_364",
- "source_port_id": "pcb_component_104_port_4",
"port_hints": [
"4"
],
@@ -22342,7 +22011,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_365",
- "source_port_id": "pcb_component_105_port_1",
"port_hints": [
"1"
],
@@ -22359,7 +22027,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_366",
- "source_port_id": "pcb_component_105_port_2",
"port_hints": [
"2"
],
@@ -22376,7 +22043,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_367",
- "source_port_id": "pcb_component_106_port_1",
"port_hints": [
"1"
],
@@ -22393,7 +22059,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_368",
- "source_port_id": "pcb_component_106_port_2",
"port_hints": [
"2"
],
@@ -22410,7 +22075,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_369",
- "source_port_id": "pcb_component_107_port_1",
"port_hints": [
"1"
],
@@ -22427,7 +22091,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_370",
- "source_port_id": "pcb_component_107_port_2",
"port_hints": [
"2"
],
@@ -22444,7 +22107,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_371",
- "source_port_id": "pcb_component_108_port_1",
"port_hints": [
"1"
],
@@ -22461,7 +22123,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_372",
- "source_port_id": "pcb_component_108_port_2",
"port_hints": [
"2"
],
@@ -22478,7 +22139,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_373",
- "source_port_id": "pcb_component_109_port_1",
"port_hints": [
"1"
],
@@ -22494,7 +22154,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_374",
- "source_port_id": "pcb_component_109_port_2",
"port_hints": [
"2"
],
@@ -22510,7 +22169,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_375",
- "source_port_id": "pcb_component_109_port_3",
"port_hints": [
"3"
],
@@ -22526,7 +22184,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_376",
- "source_port_id": "pcb_component_109_port_4",
"port_hints": [
"4"
],
@@ -22542,7 +22199,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_377",
- "source_port_id": "pcb_component_110_port_1",
"port_hints": [
"1"
],
@@ -22558,7 +22214,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_378",
- "source_port_id": "pcb_component_110_port_2",
"port_hints": [
"2"
],
@@ -22574,7 +22229,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_379",
- "source_port_id": "pcb_component_110_port_3",
"port_hints": [
"3"
],
@@ -22590,7 +22244,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_380",
- "source_port_id": "pcb_component_110_port_4",
"port_hints": [
"4"
],
@@ -22606,7 +22259,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_381",
- "source_port_id": "pcb_component_111_port_1",
"port_hints": [
"1"
],
@@ -22622,7 +22274,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_382",
- "source_port_id": "pcb_component_111_port_2",
"port_hints": [
"2"
],
@@ -22638,7 +22289,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_383",
- "source_port_id": "pcb_component_111_port_3",
"port_hints": [
"3"
],
@@ -22654,7 +22304,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_384",
- "source_port_id": "pcb_component_111_port_4",
"port_hints": [
"4"
],
@@ -22670,7 +22319,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_385",
- "source_port_id": "pcb_component_112_port_1",
"port_hints": [
"1"
],
@@ -22687,7 +22335,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_386",
- "source_port_id": "pcb_component_112_port_2",
"port_hints": [
"2"
],
@@ -22704,7 +22351,6 @@
"height": 1.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_387",
- "source_port_id": "pcb_component_113_port_1",
"port_hints": [
"1"
],
@@ -22720,7 +22366,6 @@
"height": 1.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_388",
- "source_port_id": "pcb_component_113_port_2",
"port_hints": [
"2"
],
@@ -22736,7 +22381,6 @@
"height": 1.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_389",
- "source_port_id": "pcb_component_113_port_3",
"port_hints": [
"3"
],
@@ -22752,7 +22396,6 @@
"height": 1.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_390",
- "source_port_id": "pcb_component_113_port_4",
"port_hints": [
"4"
],
@@ -22768,7 +22411,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_391",
- "source_port_id": "pcb_component_114_port_1",
"port_hints": [
"1"
],
@@ -22784,7 +22426,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_392",
- "source_port_id": "pcb_component_114_port_2",
"port_hints": [
"2"
],
@@ -22800,7 +22441,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_393",
- "source_port_id": "pcb_component_114_port_3",
"port_hints": [
"3"
],
@@ -22816,7 +22456,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_394",
- "source_port_id": "pcb_component_114_port_4",
"port_hints": [
"4"
],
@@ -22832,7 +22471,6 @@
"height": 0.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_398",
- "source_port_id": "pcb_component_116_port_1",
"port_hints": [
"1"
],
@@ -22849,7 +22487,6 @@
"height": 0.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_399",
- "source_port_id": "pcb_component_116_port_2",
"port_hints": [
"2"
],
@@ -22866,7 +22503,6 @@
"height": 0.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_400",
- "source_port_id": "pcb_component_116_port_3",
"port_hints": [
"3"
],
@@ -22883,7 +22519,6 @@
"height": 0.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_401",
- "source_port_id": "pcb_component_116_port_4",
"port_hints": [
"4"
],
@@ -22900,7 +22535,6 @@
"height": 0.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_402",
- "source_port_id": "pcb_component_116_port_5",
"port_hints": [
"5"
],
@@ -22917,7 +22551,6 @@
"height": 0.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_403",
- "source_port_id": "pcb_component_116_port_6",
"port_hints": [
"6"
],
@@ -22934,7 +22567,6 @@
"height": 0.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_404",
- "source_port_id": "pcb_component_116_port_7",
"port_hints": [
"7"
],
@@ -22951,7 +22583,6 @@
"height": 0.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_405",
- "source_port_id": "pcb_component_116_port_8",
"port_hints": [
"8"
],
@@ -22968,7 +22599,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_406",
- "source_port_id": "pcb_component_117_port_1",
"port_hints": [
"1"
],
@@ -22985,7 +22615,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_407",
- "source_port_id": "pcb_component_117_port_2",
"port_hints": [
"2"
],
@@ -23002,7 +22631,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_408",
- "source_port_id": "pcb_component_118_port_1",
"port_hints": [
"1"
],
@@ -23018,7 +22646,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_409",
- "source_port_id": "pcb_component_118_port_2",
"port_hints": [
"2"
],
@@ -23034,7 +22661,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_410",
- "source_port_id": "pcb_component_119_port_1",
"port_hints": [
"1"
],
@@ -23051,7 +22677,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_411",
- "source_port_id": "pcb_component_119_port_2",
"port_hints": [
"2"
],
@@ -23068,7 +22693,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_412",
- "source_port_id": "pcb_component_120_port_1",
"port_hints": [
"1"
],
@@ -23084,7 +22708,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_413",
- "source_port_id": "pcb_component_120_port_2",
"port_hints": [
"2"
],
@@ -23100,7 +22723,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_414",
- "source_port_id": "pcb_component_120_port_3",
"port_hints": [
"3"
],
@@ -23116,7 +22738,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_415",
- "source_port_id": "pcb_component_120_port_4",
"port_hints": [
"4"
],
@@ -23132,7 +22753,6 @@
"height": 0.7,
"layer": "bottom",
"pcb_port_id": "pcb_port_416",
- "source_port_id": "pcb_component_121_port_1",
"port_hints": [
"1"
],
@@ -23149,7 +22769,6 @@
"height": 0.7,
"layer": "bottom",
"pcb_port_id": "pcb_port_417",
- "source_port_id": "pcb_component_121_port_2",
"port_hints": [
"2"
],
@@ -23166,7 +22785,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_418",
- "source_port_id": "pcb_component_122_port_1",
"port_hints": [
"1"
],
@@ -23182,7 +22800,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_419",
- "source_port_id": "pcb_component_122_port_2",
"port_hints": [
"2"
],
@@ -23198,7 +22815,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_420",
- "source_port_id": "pcb_component_122_port_3",
"port_hints": [
"3"
],
@@ -23214,7 +22830,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_421",
- "source_port_id": "pcb_component_122_port_4",
"port_hints": [
"4"
],
@@ -23230,7 +22845,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_422",
- "source_port_id": "pcb_component_123_port_1",
"port_hints": [
"1"
],
@@ -23246,7 +22860,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_423",
- "source_port_id": "pcb_component_123_port_2",
"port_hints": [
"2"
],
@@ -23262,7 +22875,6 @@
"height": 2,
"layer": "bottom",
"pcb_port_id": "pcb_port_424",
- "source_port_id": "pcb_component_124_port_1",
"port_hints": [
"1"
],
@@ -23278,7 +22890,6 @@
"height": 2,
"layer": "bottom",
"pcb_port_id": "pcb_port_425",
- "source_port_id": "pcb_component_124_port_2",
"port_hints": [
"2"
],
@@ -23294,7 +22905,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_426",
- "source_port_id": "pcb_component_125_port_1",
"port_hints": [
"1"
],
@@ -23310,7 +22920,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_427",
- "source_port_id": "pcb_component_125_port_2",
"port_hints": [
"2"
],
@@ -23326,7 +22935,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_428",
- "source_port_id": "pcb_component_126_port_1",
"port_hints": [
"1"
],
@@ -23343,7 +22951,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_429",
- "source_port_id": "pcb_component_126_port_2",
"port_hints": [
"2"
],
@@ -23360,7 +22967,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_430",
- "source_port_id": "pcb_component_127_port_1",
"port_hints": [
"1"
],
@@ -23376,7 +22982,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_431",
- "source_port_id": "pcb_component_127_port_2",
"port_hints": [
"2"
],
@@ -23392,7 +22997,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_432",
- "source_port_id": "pcb_component_127_port_3",
"port_hints": [
"3"
],
@@ -23408,7 +23012,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_433",
- "source_port_id": "pcb_component_127_port_4",
"port_hints": [
"4"
],
@@ -23424,7 +23027,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_434",
- "source_port_id": "pcb_component_128_port_1",
"port_hints": [
"1"
],
@@ -23441,7 +23043,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_435",
- "source_port_id": "pcb_component_128_port_2",
"port_hints": [
"2"
],
@@ -23458,7 +23059,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_436",
- "source_port_id": "pcb_component_129_port_1",
"port_hints": [
"1"
],
@@ -23474,7 +23074,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_437",
- "source_port_id": "pcb_component_129_port_2",
"port_hints": [
"2"
],
@@ -23490,7 +23089,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_438",
- "source_port_id": "pcb_component_129_port_3",
"port_hints": [
"3"
],
@@ -23506,7 +23104,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_439",
- "source_port_id": "pcb_component_129_port_4",
"port_hints": [
"4"
],
@@ -23522,7 +23119,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_440",
- "source_port_id": "pcb_component_130_port_1",
"port_hints": [
"1"
],
@@ -23539,7 +23135,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_441",
- "source_port_id": "pcb_component_130_port_2",
"port_hints": [
"2"
],
@@ -23556,7 +23151,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_442",
- "source_port_id": "pcb_component_131_port_1",
"port_hints": [
"1"
],
@@ -23572,7 +23166,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_443",
- "source_port_id": "pcb_component_131_port_2",
"port_hints": [
"2"
],
@@ -23588,7 +23181,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_444",
- "source_port_id": "pcb_component_132_port_1",
"port_hints": [
"1"
],
@@ -23604,7 +23196,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_445",
- "source_port_id": "pcb_component_132_port_2",
"port_hints": [
"2"
],
@@ -23620,7 +23211,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_446",
- "source_port_id": "pcb_component_132_port_3",
"port_hints": [
"3"
],
@@ -23636,7 +23226,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_447",
- "source_port_id": "pcb_component_132_port_4",
"port_hints": [
"4"
],
@@ -23652,7 +23241,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_448",
- "source_port_id": "pcb_component_133_port_1",
"port_hints": [
"1"
],
@@ -23668,7 +23256,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_449",
- "source_port_id": "pcb_component_133_port_2",
"port_hints": [
"2"
],
@@ -23684,7 +23271,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_450",
- "source_port_id": "pcb_component_134_port_1",
"port_hints": [
"1"
],
@@ -23700,7 +23286,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_451",
- "source_port_id": "pcb_component_134_port_2",
"port_hints": [
"2"
],
@@ -23716,7 +23301,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_452",
- "source_port_id": "pcb_component_135_port_1",
"port_hints": [
"1"
],
@@ -23732,7 +23316,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_453",
- "source_port_id": "pcb_component_135_port_2",
"port_hints": [
"2"
],
@@ -23748,7 +23331,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_454",
- "source_port_id": "pcb_component_136_port_1",
"port_hints": [
"1"
],
@@ -23764,7 +23346,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_455",
- "source_port_id": "pcb_component_136_port_2",
"port_hints": [
"2"
],
@@ -23780,7 +23361,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_456",
- "source_port_id": "pcb_component_136_port_3",
"port_hints": [
"3"
],
@@ -23796,7 +23376,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_457",
- "source_port_id": "pcb_component_136_port_4",
"port_hints": [
"4"
],
@@ -23812,7 +23391,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_458",
- "source_port_id": "pcb_component_137_port_1",
"port_hints": [
"1"
],
@@ -23828,7 +23406,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_459",
- "source_port_id": "pcb_component_137_port_2",
"port_hints": [
"2"
],
@@ -23844,7 +23421,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_460",
- "source_port_id": "pcb_component_138_port_1",
"port_hints": [
"1"
],
@@ -23860,7 +23436,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_461",
- "source_port_id": "pcb_component_138_port_2",
"port_hints": [
"2"
],
@@ -23876,7 +23451,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_462",
- "source_port_id": "pcb_component_139_port_1",
"port_hints": [
"1"
],
@@ -23893,7 +23467,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_463",
- "source_port_id": "pcb_component_139_port_2",
"port_hints": [
"2"
],
@@ -23910,7 +23483,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_464",
- "source_port_id": "pcb_component_140_port_1",
"port_hints": [
"1"
],
@@ -23926,7 +23498,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_465",
- "source_port_id": "pcb_component_140_port_2",
"port_hints": [
"2"
],
@@ -23942,7 +23513,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_466",
- "source_port_id": "pcb_component_140_port_3",
"port_hints": [
"3"
],
@@ -23958,7 +23528,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_467",
- "source_port_id": "pcb_component_140_port_4",
"port_hints": [
"4"
],
@@ -23974,7 +23543,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_468",
- "source_port_id": "pcb_component_141_port_1",
"port_hints": [
"1"
],
@@ -23990,7 +23558,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_469",
- "source_port_id": "pcb_component_141_port_2",
"port_hints": [
"2"
],
@@ -24006,7 +23573,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_470",
- "source_port_id": "pcb_component_141_port_3",
"port_hints": [
"3"
],
@@ -24022,7 +23588,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_471",
- "source_port_id": "pcb_component_141_port_4",
"port_hints": [
"4"
],
@@ -24038,7 +23603,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_472",
- "source_port_id": "pcb_component_142_port_1",
"port_hints": [
"1"
],
@@ -24054,7 +23618,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_473",
- "source_port_id": "pcb_component_142_port_2",
"port_hints": [
"2"
],
@@ -24070,7 +23633,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_474",
- "source_port_id": "pcb_component_142_port_3",
"port_hints": [
"3"
],
@@ -24086,7 +23648,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_475",
- "source_port_id": "pcb_component_142_port_4",
"port_hints": [
"4"
],
@@ -24102,7 +23663,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_476",
- "source_port_id": "pcb_component_143_port_1",
"port_hints": [
"1"
],
@@ -24119,7 +23679,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_477",
- "source_port_id": "pcb_component_143_port_2",
"port_hints": [
"2"
],
@@ -24136,7 +23695,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_478",
- "source_port_id": "pcb_component_144_port_1",
"port_hints": [
"1"
],
@@ -24153,7 +23711,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_479",
- "source_port_id": "pcb_component_144_port_2",
"port_hints": [
"2"
],
@@ -24170,7 +23727,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_480",
- "source_port_id": "pcb_component_145_port_1",
"port_hints": [
"1"
],
@@ -24186,7 +23742,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_481",
- "source_port_id": "pcb_component_145_port_2",
"port_hints": [
"2"
],
@@ -24202,7 +23757,6 @@
"height": 1.3,
"layer": "bottom",
"pcb_port_id": "pcb_port_482",
- "source_port_id": "pcb_component_146_port_A1",
"port_hints": [
"A1"
],
@@ -24218,7 +23772,6 @@
"height": 1.3,
"layer": "bottom",
"pcb_port_id": "pcb_port_483",
- "source_port_id": "pcb_component_146_port_A4",
"port_hints": [
"A4"
],
@@ -24234,7 +23787,6 @@
"height": 1.3,
"layer": "bottom",
"pcb_port_id": "pcb_port_484",
- "source_port_id": "pcb_component_146_port_A5",
"port_hints": [
"A5"
],
@@ -24250,7 +23802,6 @@
"height": 1.3,
"layer": "bottom",
"pcb_port_id": "pcb_port_485",
- "source_port_id": "pcb_component_146_port_A6",
"port_hints": [
"A6"
],
@@ -24266,7 +23817,6 @@
"height": 1.3,
"layer": "bottom",
"pcb_port_id": "pcb_port_486",
- "source_port_id": "pcb_component_146_port_A7",
"port_hints": [
"A7"
],
@@ -24282,7 +23832,6 @@
"height": 1.3,
"layer": "bottom",
"pcb_port_id": "pcb_port_487",
- "source_port_id": "pcb_component_146_port_A8",
"port_hints": [
"A8"
],
@@ -24298,7 +23847,6 @@
"height": 1.3,
"layer": "bottom",
"pcb_port_id": "pcb_port_488",
- "source_port_id": "pcb_component_146_port_A9",
"port_hints": [
"A9"
],
@@ -24314,7 +23862,6 @@
"height": 1.3,
"layer": "bottom",
"pcb_port_id": "pcb_port_489",
- "source_port_id": "pcb_component_146_port_A12",
"port_hints": [
"A12"
],
@@ -24330,7 +23877,6 @@
"height": 1.3,
"layer": "bottom",
"pcb_port_id": "pcb_port_490",
- "source_port_id": "pcb_component_146_port_B1",
"port_hints": [
"B1"
],
@@ -24346,7 +23892,6 @@
"height": 1.3,
"layer": "bottom",
"pcb_port_id": "pcb_port_491",
- "source_port_id": "pcb_component_146_port_B4",
"port_hints": [
"B4"
],
@@ -24362,7 +23907,6 @@
"height": 1.3,
"layer": "bottom",
"pcb_port_id": "pcb_port_492",
- "source_port_id": "pcb_component_146_port_B5",
"port_hints": [
"B5"
],
@@ -24378,7 +23922,6 @@
"height": 1.3,
"layer": "bottom",
"pcb_port_id": "pcb_port_493",
- "source_port_id": "pcb_component_146_port_B6",
"port_hints": [
"B6"
],
@@ -24394,7 +23937,6 @@
"height": 1.3,
"layer": "bottom",
"pcb_port_id": "pcb_port_494",
- "source_port_id": "pcb_component_146_port_B7",
"port_hints": [
"B7"
],
@@ -24410,7 +23952,6 @@
"height": 1.3,
"layer": "bottom",
"pcb_port_id": "pcb_port_495",
- "source_port_id": "pcb_component_146_port_B8",
"port_hints": [
"B8"
],
@@ -24426,7 +23967,6 @@
"height": 1.3,
"layer": "bottom",
"pcb_port_id": "pcb_port_496",
- "source_port_id": "pcb_component_146_port_B9",
"port_hints": [
"B9"
],
@@ -24442,7 +23982,6 @@
"height": 1.3,
"layer": "bottom",
"pcb_port_id": "pcb_port_497",
- "source_port_id": "pcb_component_146_port_B12",
"port_hints": [
"B12"
],
@@ -24458,7 +23997,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_502",
- "source_port_id": "pcb_component_147_port_1",
"port_hints": [
"1"
],
@@ -24475,7 +24013,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_503",
- "source_port_id": "pcb_component_147_port_2",
"port_hints": [
"2"
],
@@ -24484,41 +24021,103 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_467",
+ "pcb_smtpad_id": "pcb_smtpad_id",
+ "shape": "circle",
+ "pcb_component_id": "pcb_component_148",
+ "pcb_port_id": "pcb_port_504",
+ "layer": "bottom",
+ "port_hints": [
+ "1"
+ ],
+ "x": 103.39749850000001,
+ "y": 33.8074255,
+ "width": 1,
+ "height": 1,
+ "radius": 0.5
+ },
+ {
+ "type": "pcb_smtpad",
+ "pcb_smtpad_id": "pcb_smtpad_id",
+ "shape": "circle",
+ "pcb_component_id": "pcb_component_148",
+ "pcb_port_id": "pcb_port_504",
+ "layer": "bottom",
+ "port_hints": [
+ "1"
+ ],
+ "x": 103.39749850000001,
+ "y": 34.3074255,
+ "width": 1,
+ "height": 1,
+ "radius": 0.5
+ },
+ {
+ "type": "pcb_smtpad",
+ "pcb_smtpad_id": "pcb_smtpad_id",
"shape": "polygon",
"pcb_component_id": "pcb_component_148",
"pcb_port_id": "pcb_port_504",
- "source_port_id": "pcb_component_148_port_1",
"layer": "bottom",
"port_hints": [
"1"
],
"points": [
{
- "x": 103.89749850000001,
- "y": 34.8074255
+ "x": 102.89749850000001,
+ "y": 33.3074255
},
{
"x": 103.39749850000001,
- "y": 34.8074255
+ "y": 33.3074255
},
{
"x": 103.39749850000001,
- "y": 33.3074255
+ "y": 34.8074255
},
{
- "x": 103.89749850000001,
- "y": 33.3074255
+ "x": 102.89749850000001,
+ "y": 34.8074255
}
]
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_468",
+ "pcb_smtpad_id": "pcb_smtpad_id",
+ "shape": "circle",
+ "pcb_component_id": "pcb_component_148",
+ "pcb_port_id": "pcb_port_505",
+ "layer": "bottom",
+ "port_hints": [
+ "2"
+ ],
+ "x": 102.0974985,
+ "y": 33.8074255,
+ "width": 1,
+ "height": 1,
+ "radius": 0.5
+ },
+ {
+ "type": "pcb_smtpad",
+ "pcb_smtpad_id": "pcb_smtpad_id",
+ "shape": "circle",
+ "pcb_component_id": "pcb_component_148",
+ "pcb_port_id": "pcb_port_505",
+ "layer": "bottom",
+ "port_hints": [
+ "2"
+ ],
+ "x": 102.0974985,
+ "y": 34.3074255,
+ "width": 1,
+ "height": 1,
+ "radius": 0.5
+ },
+ {
+ "type": "pcb_smtpad",
+ "pcb_smtpad_id": "pcb_smtpad_id",
"shape": "polygon",
"pcb_component_id": "pcb_component_148",
"pcb_port_id": "pcb_port_505",
- "source_port_id": "pcb_component_148_port_2",
"layer": "bottom",
"port_hints": [
"2"
@@ -24526,25 +24125,25 @@
"points": [
{
"x": 102.0974985,
- "y": 34.8074255
+ "y": 33.3074255
},
{
- "x": 101.5974985,
- "y": 34.8074255
+ "x": 102.5974985,
+ "y": 33.3074255
},
{
- "x": 101.5974985,
- "y": 33.3074255
+ "x": 102.5974985,
+ "y": 34.8074255
},
{
"x": 102.0974985,
- "y": 33.3074255
+ "y": 34.8074255
}
]
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_469",
+ "pcb_smtpad_id": "pcb_smtpad_473",
"pcb_component_id": "pcb_component_149",
"x": 82.3874985,
"y": 11.5899255,
@@ -24552,7 +24151,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_506",
- "source_port_id": "pcb_component_149_port_1",
"port_hints": [
"1"
],
@@ -24560,7 +24158,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_470",
+ "pcb_smtpad_id": "pcb_smtpad_474",
"pcb_component_id": "pcb_component_149",
"x": 93.5874985,
"y": 9.3899255,
@@ -24568,7 +24166,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_507",
- "source_port_id": "pcb_component_149_port_2",
"port_hints": [
"2"
],
@@ -24576,7 +24173,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_471",
+ "pcb_smtpad_id": "pcb_smtpad_475",
"pcb_component_id": "pcb_component_150",
"x": -117.63750149999998,
"y": -12.2225745,
@@ -24584,7 +24181,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_508",
- "source_port_id": "pcb_component_150_port_1",
"port_hints": [
"1"
],
@@ -24592,7 +24188,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_472",
+ "pcb_smtpad_id": "pcb_smtpad_476",
"pcb_component_id": "pcb_component_150",
"x": -106.4375015,
"y": -14.422574500000003,
@@ -24600,7 +24196,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_509",
- "source_port_id": "pcb_component_150_port_2",
"port_hints": [
"2"
],
@@ -24608,7 +24203,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_473",
+ "pcb_smtpad_id": "pcb_smtpad_477",
"pcb_component_id": "pcb_component_151",
"x": 22.337498500000002,
"y": 36.3536755,
@@ -24616,7 +24211,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_510",
- "source_port_id": "pcb_component_151_port_1",
"port_hints": [
"1"
],
@@ -24625,7 +24219,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_474",
+ "pcb_smtpad_id": "pcb_smtpad_478",
"pcb_component_id": "pcb_component_151",
"x": 23.357498500000005,
"y": 36.3536755,
@@ -24633,7 +24227,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_511",
- "source_port_id": "pcb_component_151_port_2",
"port_hints": [
"2"
],
@@ -24642,7 +24235,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_475",
+ "pcb_smtpad_id": "pcb_smtpad_479",
"pcb_component_id": "pcb_component_152",
"x": -79.8774995,
"y": -11.741324499999997,
@@ -24650,7 +24243,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_512",
- "source_port_id": "pcb_component_152_port_1",
"port_hints": [
"1"
],
@@ -24659,7 +24251,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_476",
+ "pcb_smtpad_id": "pcb_smtpad_480",
"pcb_component_id": "pcb_component_152",
"x": -80.8374995,
"y": -11.741324499999997,
@@ -24667,7 +24259,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_513",
- "source_port_id": "pcb_component_152_port_2",
"port_hints": [
"2"
],
@@ -24676,7 +24267,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_477",
+ "pcb_smtpad_id": "pcb_smtpad_481",
"pcb_component_id": "pcb_component_153",
"x": 48.232498500000005,
"y": -18.0125745,
@@ -24684,7 +24275,6 @@
"height": 1.5,
"layer": "bottom",
"pcb_port_id": "pcb_port_514",
- "source_port_id": "pcb_component_153_port_1",
"port_hints": [
"1"
],
@@ -24692,7 +24282,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_478",
+ "pcb_smtpad_id": "pcb_smtpad_482",
"pcb_component_id": "pcb_component_153",
"x": 48.232498500000005,
"y": -15.712574500000002,
@@ -24700,7 +24290,6 @@
"height": 1.5,
"layer": "bottom",
"pcb_port_id": "pcb_port_515",
- "source_port_id": "pcb_component_153_port_2",
"port_hints": [
"2"
],
@@ -24708,7 +24297,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_479",
+ "pcb_smtpad_id": "pcb_smtpad_483",
"pcb_component_id": "pcb_component_153",
"x": 54.5324985,
"y": -15.712574500000002,
@@ -24716,7 +24305,6 @@
"height": 3.8,
"layer": "bottom",
"pcb_port_id": "pcb_port_516",
- "source_port_id": "pcb_component_153_port_2",
"port_hints": [
"2"
],
@@ -24724,7 +24312,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_480",
+ "pcb_smtpad_id": "pcb_smtpad_484",
"pcb_component_id": "pcb_component_153",
"x": 48.232498500000005,
"y": -13.412574500000005,
@@ -24732,7 +24320,6 @@
"height": 1.5,
"layer": "bottom",
"pcb_port_id": "pcb_port_517",
- "source_port_id": "pcb_component_153_port_3",
"port_hints": [
"3"
],
@@ -24740,7 +24327,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_481",
+ "pcb_smtpad_id": "pcb_smtpad_485",
"pcb_component_id": "pcb_component_154",
"x": -19.15193547457147,
"y": -38.353482577954026,
@@ -24748,7 +24335,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_518",
- "source_port_id": "pcb_component_154_port_1",
"port_hints": [
"1"
],
@@ -24756,7 +24342,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_482",
+ "pcb_smtpad_id": "pcb_smtpad_486",
"pcb_component_id": "pcb_component_154",
"x": -12.606254583781208,
"y": -29.00286432695355,
@@ -24764,7 +24350,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_519",
- "source_port_id": "pcb_component_154_port_2",
"port_hints": [
"2"
],
@@ -24772,7 +24357,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_483",
+ "pcb_smtpad_id": "pcb_smtpad_487",
"pcb_component_id": "pcb_component_155",
"x": 44.287498500000005,
"y": 30.6399255,
@@ -24780,7 +24365,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_520",
- "source_port_id": "pcb_component_155_port_1",
"port_hints": [
"1"
],
@@ -24788,7 +24372,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_484",
+ "pcb_smtpad_id": "pcb_smtpad_488",
"pcb_component_id": "pcb_component_155",
"x": 55.48749850000001,
"y": 28.4399255,
@@ -24796,7 +24380,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_521",
- "source_port_id": "pcb_component_155_port_2",
"port_hints": [
"2"
],
@@ -24804,7 +24387,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_485",
+ "pcb_smtpad_id": "pcb_smtpad_489",
"pcb_component_id": "pcb_component_156",
"x": 23.347498500000004,
"y": 37.9336755,
@@ -24812,7 +24395,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_522",
- "source_port_id": "pcb_component_156_port_1",
"port_hints": [
"1"
],
@@ -24821,7 +24403,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_486",
+ "pcb_smtpad_id": "pcb_smtpad_490",
"pcb_component_id": "pcb_component_156",
"x": 22.3274985,
"y": 37.9336755,
@@ -24829,7 +24411,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_523",
- "source_port_id": "pcb_component_156_port_2",
"port_hints": [
"2"
],
@@ -24838,7 +24419,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_487",
+ "pcb_smtpad_id": "pcb_smtpad_491",
"pcb_component_id": "pcb_component_157",
"x": -41.437501499999996,
"y": -9.841324499999999,
@@ -24846,7 +24427,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_524",
- "source_port_id": "pcb_component_157_port_1",
"port_hints": [
"1"
],
@@ -24854,7 +24434,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_488",
+ "pcb_smtpad_id": "pcb_smtpad_492",
"pcb_component_id": "pcb_component_157",
"x": -30.237501499999997,
"y": -12.041324500000002,
@@ -24862,7 +24442,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_525",
- "source_port_id": "pcb_component_157_port_2",
"port_hints": [
"2"
],
@@ -24870,7 +24449,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_489",
+ "pcb_smtpad_id": "pcb_smtpad_493",
"pcb_component_id": "pcb_component_158",
"x": 46.2124985,
"y": -12.7225745,
@@ -24878,7 +24457,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_526",
- "source_port_id": "pcb_component_158_port_1",
"port_hints": [
"1"
],
@@ -24887,7 +24465,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_490",
+ "pcb_smtpad_id": "pcb_smtpad_494",
"pcb_component_id": "pcb_component_158",
"x": 46.2124985,
"y": -13.682574499999994,
@@ -24895,7 +24473,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_527",
- "source_port_id": "pcb_component_158_port_2",
"port_hints": [
"2"
],
@@ -24904,7 +24481,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_491",
+ "pcb_smtpad_id": "pcb_smtpad_495",
"pcb_component_id": "pcb_component_159",
"x": -60.4875015,
"y": 11.5899255,
@@ -24912,7 +24489,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_528",
- "source_port_id": "pcb_component_159_port_1",
"port_hints": [
"1"
],
@@ -24920,7 +24496,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_492",
+ "pcb_smtpad_id": "pcb_smtpad_496",
"pcb_component_id": "pcb_component_159",
"x": -49.2875015,
"y": 9.3899255,
@@ -24928,7 +24504,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_529",
- "source_port_id": "pcb_component_159_port_2",
"port_hints": [
"2"
],
@@ -24936,7 +24511,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_493",
+ "pcb_smtpad_id": "pcb_smtpad_497",
"pcb_component_id": "pcb_component_160",
"x": -36.13750149999999,
"y": -0.7038244999999996,
@@ -24944,7 +24519,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_530",
- "source_port_id": "pcb_component_160_port_1",
"port_hints": [
"1"
],
@@ -24952,7 +24526,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_494",
+ "pcb_smtpad_id": "pcb_smtpad_498",
"pcb_component_id": "pcb_component_160",
"x": -36.13750149999999,
"y": -2.103824499999998,
@@ -24960,7 +24534,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_531",
- "source_port_id": "pcb_component_160_port_2",
"port_hints": [
"2"
],
@@ -24968,7 +24541,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_495",
+ "pcb_smtpad_id": "pcb_smtpad_499",
"pcb_component_id": "pcb_component_160",
"x": -30.537501499999994,
"y": -2.103824499999998,
@@ -24976,7 +24549,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_532",
- "source_port_id": "pcb_component_160_port_3",
"port_hints": [
"3"
],
@@ -24984,7 +24556,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_496",
+ "pcb_smtpad_id": "pcb_smtpad_500",
"pcb_component_id": "pcb_component_160",
"x": -30.537501499999994,
"y": -0.7038244999999996,
@@ -24992,7 +24564,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_533",
- "source_port_id": "pcb_component_160_port_4",
"port_hints": [
"4"
],
@@ -25000,7 +24571,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_497",
+ "pcb_smtpad_id": "pcb_smtpad_501",
"pcb_component_id": "pcb_component_161",
"x": -73.8075015,
"y": -16.006274499999996,
@@ -25015,7 +24586,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_498",
+ "pcb_smtpad_id": "pcb_smtpad_502",
"pcb_component_id": "pcb_component_161",
"x": -73.8075015,
"y": -14.406274500000002,
@@ -25030,7 +24601,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_499",
+ "pcb_smtpad_id": "pcb_smtpad_503",
"pcb_component_id": "pcb_component_161",
"x": -75.4075015,
"y": -16.006274499999996,
@@ -25045,7 +24616,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_500",
+ "pcb_smtpad_id": "pcb_smtpad_504",
"pcb_component_id": "pcb_component_161",
"x": -75.4075015,
"y": -14.406274500000002,
@@ -25060,7 +24631,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_501",
+ "pcb_smtpad_id": "pcb_smtpad_505",
"pcb_component_id": "pcb_component_161",
"x": -71.1700015,
"y": -12.606274499999998,
@@ -25068,7 +24639,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_534",
- "source_port_id": "pcb_component_161_port_1",
"port_hints": [
"1"
],
@@ -25077,7 +24647,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_502",
+ "pcb_smtpad_id": "pcb_smtpad_506",
"pcb_component_id": "pcb_component_161",
"x": -71.1700015,
"y": -13.006274499999996,
@@ -25085,7 +24655,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_535",
- "source_port_id": "pcb_component_161_port_2",
"port_hints": [
"2"
],
@@ -25094,7 +24663,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_503",
+ "pcb_smtpad_id": "pcb_smtpad_507",
"pcb_component_id": "pcb_component_161",
"x": -71.1700015,
"y": -13.406274500000002,
@@ -25102,7 +24671,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_536",
- "source_port_id": "pcb_component_161_port_3",
"port_hints": [
"3"
],
@@ -25111,7 +24679,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_504",
+ "pcb_smtpad_id": "pcb_smtpad_508",
"pcb_component_id": "pcb_component_161",
"x": -71.1700015,
"y": -13.8062745,
@@ -25119,7 +24687,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_537",
- "source_port_id": "pcb_component_161_port_4",
"port_hints": [
"4"
],
@@ -25128,7 +24695,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_505",
+ "pcb_smtpad_id": "pcb_smtpad_509",
"pcb_component_id": "pcb_component_161",
"x": -71.1700015,
"y": -14.2062745,
@@ -25136,7 +24703,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_538",
- "source_port_id": "pcb_component_161_port_5",
"port_hints": [
"5"
],
@@ -25145,7 +24711,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_506",
+ "pcb_smtpad_id": "pcb_smtpad_510",
"pcb_component_id": "pcb_component_161",
"x": -71.1700015,
"y": -14.606274499999998,
@@ -25153,7 +24719,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_539",
- "source_port_id": "pcb_component_161_port_6",
"port_hints": [
"6"
],
@@ -25162,7 +24727,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_507",
+ "pcb_smtpad_id": "pcb_smtpad_511",
"pcb_component_id": "pcb_component_161",
"x": -71.1700015,
"y": -15.006274499999996,
@@ -25170,7 +24735,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_540",
- "source_port_id": "pcb_component_161_port_7",
"port_hints": [
"7"
],
@@ -25179,7 +24743,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_508",
+ "pcb_smtpad_id": "pcb_smtpad_512",
"pcb_component_id": "pcb_component_161",
"x": -71.1700015,
"y": -15.406274500000002,
@@ -25187,7 +24751,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_541",
- "source_port_id": "pcb_component_161_port_8",
"port_hints": [
"8"
],
@@ -25196,7 +24759,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_509",
+ "pcb_smtpad_id": "pcb_smtpad_513",
"pcb_component_id": "pcb_component_161",
"x": -71.1700015,
"y": -15.8062745,
@@ -25204,7 +24767,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_542",
- "source_port_id": "pcb_component_161_port_9",
"port_hints": [
"9"
],
@@ -25213,7 +24775,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_510",
+ "pcb_smtpad_id": "pcb_smtpad_514",
"pcb_component_id": "pcb_component_161",
"x": -71.1700015,
"y": -16.2062745,
@@ -25221,7 +24783,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_543",
- "source_port_id": "pcb_component_161_port_10",
"port_hints": [
"10"
],
@@ -25230,7 +24791,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_511",
+ "pcb_smtpad_id": "pcb_smtpad_515",
"pcb_component_id": "pcb_component_161",
"x": -71.1700015,
"y": -16.606274499999998,
@@ -25238,7 +24799,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_544",
- "source_port_id": "pcb_component_161_port_11",
"port_hints": [
"11"
],
@@ -25247,7 +24807,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_512",
+ "pcb_smtpad_id": "pcb_smtpad_516",
"pcb_component_id": "pcb_component_161",
"x": -71.1700015,
"y": -17.006274499999996,
@@ -25255,7 +24815,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_545",
- "source_port_id": "pcb_component_161_port_12",
"port_hints": [
"12"
],
@@ -25264,7 +24823,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_513",
+ "pcb_smtpad_id": "pcb_smtpad_517",
"pcb_component_id": "pcb_component_161",
"x": -71.1700015,
"y": -17.406274500000002,
@@ -25272,7 +24831,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_546",
- "source_port_id": "pcb_component_161_port_13",
"port_hints": [
"13"
],
@@ -25281,7 +24839,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_514",
+ "pcb_smtpad_id": "pcb_smtpad_518",
"pcb_component_id": "pcb_component_161",
"x": -71.1700015,
"y": -17.8062745,
@@ -25289,7 +24847,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_547",
- "source_port_id": "pcb_component_161_port_14",
"port_hints": [
"14"
],
@@ -25298,7 +24855,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_515",
+ "pcb_smtpad_id": "pcb_smtpad_519",
"pcb_component_id": "pcb_component_161",
"x": -72.0075015,
"y": -18.6437745,
@@ -25306,7 +24863,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_548",
- "source_port_id": "pcb_component_161_port_15",
"port_hints": [
"15"
],
@@ -25315,7 +24871,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_516",
+ "pcb_smtpad_id": "pcb_smtpad_520",
"pcb_component_id": "pcb_component_161",
"x": -72.4075015,
"y": -18.6437745,
@@ -25323,7 +24879,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_549",
- "source_port_id": "pcb_component_161_port_16",
"port_hints": [
"16"
],
@@ -25332,7 +24887,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_517",
+ "pcb_smtpad_id": "pcb_smtpad_521",
"pcb_component_id": "pcb_component_161",
"x": -72.8075015,
"y": -18.6437745,
@@ -25340,7 +24895,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_550",
- "source_port_id": "pcb_component_161_port_17",
"port_hints": [
"17"
],
@@ -25349,7 +24903,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_518",
+ "pcb_smtpad_id": "pcb_smtpad_522",
"pcb_component_id": "pcb_component_161",
"x": -73.20750149999999,
"y": -18.6437745,
@@ -25357,7 +24911,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_551",
- "source_port_id": "pcb_component_161_port_18",
"port_hints": [
"18"
],
@@ -25366,7 +24919,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_519",
+ "pcb_smtpad_id": "pcb_smtpad_523",
"pcb_component_id": "pcb_component_161",
"x": -73.6075015,
"y": -18.6437745,
@@ -25374,7 +24927,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_552",
- "source_port_id": "pcb_component_161_port_19",
"port_hints": [
"19"
],
@@ -25383,7 +24935,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_520",
+ "pcb_smtpad_id": "pcb_smtpad_524",
"pcb_component_id": "pcb_component_161",
"x": -74.0075015,
"y": -18.6437745,
@@ -25391,7 +24943,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_553",
- "source_port_id": "pcb_component_161_port_20",
"port_hints": [
"20"
],
@@ -25400,7 +24951,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_521",
+ "pcb_smtpad_id": "pcb_smtpad_525",
"pcb_component_id": "pcb_component_161",
"x": -74.4075015,
"y": -18.6437745,
@@ -25408,7 +24959,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_554",
- "source_port_id": "pcb_component_161_port_21",
"port_hints": [
"21"
],
@@ -25417,7 +24967,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_522",
+ "pcb_smtpad_id": "pcb_smtpad_526",
"pcb_component_id": "pcb_component_161",
"x": -74.8075015,
"y": -18.6437745,
@@ -25425,7 +24975,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_555",
- "source_port_id": "pcb_component_161_port_22",
"port_hints": [
"22"
],
@@ -25434,7 +24983,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_523",
+ "pcb_smtpad_id": "pcb_smtpad_527",
"pcb_component_id": "pcb_component_161",
"x": -75.20750149999999,
"y": -18.6437745,
@@ -25442,7 +24991,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_556",
- "source_port_id": "pcb_component_161_port_23",
"port_hints": [
"23"
],
@@ -25451,7 +24999,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_524",
+ "pcb_smtpad_id": "pcb_smtpad_528",
"pcb_component_id": "pcb_component_161",
"x": -75.6075015,
"y": -18.6437745,
@@ -25459,7 +25007,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_557",
- "source_port_id": "pcb_component_161_port_24",
"port_hints": [
"24"
],
@@ -25468,7 +25015,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_525",
+ "pcb_smtpad_id": "pcb_smtpad_529",
"pcb_component_id": "pcb_component_161",
"x": -76.0075015,
"y": -18.6437745,
@@ -25476,7 +25023,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_558",
- "source_port_id": "pcb_component_161_port_25",
"port_hints": [
"25"
],
@@ -25485,7 +25031,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_526",
+ "pcb_smtpad_id": "pcb_smtpad_530",
"pcb_component_id": "pcb_component_161",
"x": -76.4075015,
"y": -18.6437745,
@@ -25493,7 +25039,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_559",
- "source_port_id": "pcb_component_161_port_26",
"port_hints": [
"26"
],
@@ -25502,7 +25047,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_527",
+ "pcb_smtpad_id": "pcb_smtpad_531",
"pcb_component_id": "pcb_component_161",
"x": -76.8075015,
"y": -18.6437745,
@@ -25510,7 +25055,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_560",
- "source_port_id": "pcb_component_161_port_27",
"port_hints": [
"27"
],
@@ -25519,7 +25063,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_528",
+ "pcb_smtpad_id": "pcb_smtpad_532",
"pcb_component_id": "pcb_component_161",
"x": -77.20750149999999,
"y": -18.6437745,
@@ -25527,7 +25071,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_561",
- "source_port_id": "pcb_component_161_port_28",
"port_hints": [
"28"
],
@@ -25536,7 +25079,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_529",
+ "pcb_smtpad_id": "pcb_smtpad_533",
"pcb_component_id": "pcb_component_161",
"x": -78.0450015,
"y": -17.8062745,
@@ -25544,7 +25087,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_562",
- "source_port_id": "pcb_component_161_port_29",
"port_hints": [
"29"
],
@@ -25553,7 +25095,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_530",
+ "pcb_smtpad_id": "pcb_smtpad_534",
"pcb_component_id": "pcb_component_161",
"x": -78.0450015,
"y": -17.406274500000002,
@@ -25561,7 +25103,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_563",
- "source_port_id": "pcb_component_161_port_30",
"port_hints": [
"30"
],
@@ -25570,7 +25111,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_531",
+ "pcb_smtpad_id": "pcb_smtpad_535",
"pcb_component_id": "pcb_component_161",
"x": -78.0450015,
"y": -17.006274499999996,
@@ -25578,7 +25119,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_564",
- "source_port_id": "pcb_component_161_port_31",
"port_hints": [
"31"
],
@@ -25587,7 +25127,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_532",
+ "pcb_smtpad_id": "pcb_smtpad_536",
"pcb_component_id": "pcb_component_161",
"x": -78.0450015,
"y": -16.606274499999998,
@@ -25595,7 +25135,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_565",
- "source_port_id": "pcb_component_161_port_32",
"port_hints": [
"32"
],
@@ -25604,7 +25143,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_533",
+ "pcb_smtpad_id": "pcb_smtpad_537",
"pcb_component_id": "pcb_component_161",
"x": -78.0450015,
"y": -16.2062745,
@@ -25612,7 +25151,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_566",
- "source_port_id": "pcb_component_161_port_33",
"port_hints": [
"33"
],
@@ -25621,7 +25159,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_534",
+ "pcb_smtpad_id": "pcb_smtpad_538",
"pcb_component_id": "pcb_component_161",
"x": -78.0450015,
"y": -15.8062745,
@@ -25629,7 +25167,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_567",
- "source_port_id": "pcb_component_161_port_34",
"port_hints": [
"34"
],
@@ -25638,7 +25175,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_535",
+ "pcb_smtpad_id": "pcb_smtpad_539",
"pcb_component_id": "pcb_component_161",
"x": -78.0450015,
"y": -15.406274500000002,
@@ -25646,7 +25183,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_568",
- "source_port_id": "pcb_component_161_port_35",
"port_hints": [
"35"
],
@@ -25655,7 +25191,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_536",
+ "pcb_smtpad_id": "pcb_smtpad_540",
"pcb_component_id": "pcb_component_161",
"x": -78.0450015,
"y": -15.006274499999996,
@@ -25663,7 +25199,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_569",
- "source_port_id": "pcb_component_161_port_36",
"port_hints": [
"36"
],
@@ -25672,7 +25207,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_537",
+ "pcb_smtpad_id": "pcb_smtpad_541",
"pcb_component_id": "pcb_component_161",
"x": -78.0450015,
"y": -14.606274499999998,
@@ -25680,7 +25215,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_570",
- "source_port_id": "pcb_component_161_port_37",
"port_hints": [
"37"
],
@@ -25689,7 +25223,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_538",
+ "pcb_smtpad_id": "pcb_smtpad_542",
"pcb_component_id": "pcb_component_161",
"x": -78.0450015,
"y": -14.2062745,
@@ -25697,7 +25231,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_571",
- "source_port_id": "pcb_component_161_port_38",
"port_hints": [
"38"
],
@@ -25706,7 +25239,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_539",
+ "pcb_smtpad_id": "pcb_smtpad_543",
"pcb_component_id": "pcb_component_161",
"x": -78.0450015,
"y": -13.8062745,
@@ -25714,7 +25247,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_572",
- "source_port_id": "pcb_component_161_port_39",
"port_hints": [
"39"
],
@@ -25723,7 +25255,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_540",
+ "pcb_smtpad_id": "pcb_smtpad_544",
"pcb_component_id": "pcb_component_161",
"x": -78.0450015,
"y": -13.406274500000002,
@@ -25731,7 +25263,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_573",
- "source_port_id": "pcb_component_161_port_40",
"port_hints": [
"40"
],
@@ -25740,7 +25271,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_541",
+ "pcb_smtpad_id": "pcb_smtpad_545",
"pcb_component_id": "pcb_component_161",
"x": -78.0450015,
"y": -13.006274499999996,
@@ -25748,7 +25279,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_574",
- "source_port_id": "pcb_component_161_port_41",
"port_hints": [
"41"
],
@@ -25757,7 +25287,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_542",
+ "pcb_smtpad_id": "pcb_smtpad_546",
"pcb_component_id": "pcb_component_161",
"x": -78.0450015,
"y": -12.606274499999998,
@@ -25765,7 +25295,6 @@
"height": 0.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_575",
- "source_port_id": "pcb_component_161_port_42",
"port_hints": [
"42"
],
@@ -25774,7 +25303,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_543",
+ "pcb_smtpad_id": "pcb_smtpad_547",
"pcb_component_id": "pcb_component_161",
"x": -77.20750149999999,
"y": -11.7687745,
@@ -25782,7 +25311,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_576",
- "source_port_id": "pcb_component_161_port_43",
"port_hints": [
"43"
],
@@ -25791,7 +25319,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_544",
+ "pcb_smtpad_id": "pcb_smtpad_548",
"pcb_component_id": "pcb_component_161",
"x": -76.8075015,
"y": -11.7687745,
@@ -25799,7 +25327,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_577",
- "source_port_id": "pcb_component_161_port_44",
"port_hints": [
"44"
],
@@ -25808,7 +25335,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_545",
+ "pcb_smtpad_id": "pcb_smtpad_549",
"pcb_component_id": "pcb_component_161",
"x": -76.4075015,
"y": -11.7687745,
@@ -25816,7 +25343,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_578",
- "source_port_id": "pcb_component_161_port_45",
"port_hints": [
"45"
],
@@ -25825,7 +25351,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_546",
+ "pcb_smtpad_id": "pcb_smtpad_550",
"pcb_component_id": "pcb_component_161",
"x": -76.0075015,
"y": -11.7687745,
@@ -25833,7 +25359,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_579",
- "source_port_id": "pcb_component_161_port_46",
"port_hints": [
"46"
],
@@ -25842,7 +25367,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_547",
+ "pcb_smtpad_id": "pcb_smtpad_551",
"pcb_component_id": "pcb_component_161",
"x": -75.6075015,
"y": -11.7687745,
@@ -25850,7 +25375,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_580",
- "source_port_id": "pcb_component_161_port_47",
"port_hints": [
"47"
],
@@ -25859,7 +25383,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_548",
+ "pcb_smtpad_id": "pcb_smtpad_552",
"pcb_component_id": "pcb_component_161",
"x": -75.20750149999999,
"y": -11.7687745,
@@ -25867,7 +25391,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_581",
- "source_port_id": "pcb_component_161_port_48",
"port_hints": [
"48"
],
@@ -25876,7 +25399,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_549",
+ "pcb_smtpad_id": "pcb_smtpad_553",
"pcb_component_id": "pcb_component_161",
"x": -74.8075015,
"y": -11.7687745,
@@ -25884,7 +25407,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_582",
- "source_port_id": "pcb_component_161_port_49",
"port_hints": [
"49"
],
@@ -25893,7 +25415,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_550",
+ "pcb_smtpad_id": "pcb_smtpad_554",
"pcb_component_id": "pcb_component_161",
"x": -74.4075015,
"y": -11.7687745,
@@ -25901,7 +25423,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_583",
- "source_port_id": "pcb_component_161_port_50",
"port_hints": [
"50"
],
@@ -25910,7 +25431,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_551",
+ "pcb_smtpad_id": "pcb_smtpad_555",
"pcb_component_id": "pcb_component_161",
"x": -74.0075015,
"y": -11.7687745,
@@ -25918,7 +25439,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_584",
- "source_port_id": "pcb_component_161_port_51",
"port_hints": [
"51"
],
@@ -25927,7 +25447,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_552",
+ "pcb_smtpad_id": "pcb_smtpad_556",
"pcb_component_id": "pcb_component_161",
"x": -73.6075015,
"y": -11.7687745,
@@ -25935,7 +25455,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_585",
- "source_port_id": "pcb_component_161_port_52",
"port_hints": [
"52"
],
@@ -25944,7 +25463,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_553",
+ "pcb_smtpad_id": "pcb_smtpad_557",
"pcb_component_id": "pcb_component_161",
"x": -73.20750149999999,
"y": -11.7687745,
@@ -25952,7 +25471,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_586",
- "source_port_id": "pcb_component_161_port_53",
"port_hints": [
"53"
],
@@ -25961,7 +25479,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_554",
+ "pcb_smtpad_id": "pcb_smtpad_558",
"pcb_component_id": "pcb_component_161",
"x": -72.8075015,
"y": -11.7687745,
@@ -25969,7 +25487,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_587",
- "source_port_id": "pcb_component_161_port_54",
"port_hints": [
"54"
],
@@ -25978,7 +25495,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_555",
+ "pcb_smtpad_id": "pcb_smtpad_559",
"pcb_component_id": "pcb_component_161",
"x": -72.4075015,
"y": -11.7687745,
@@ -25986,7 +25503,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_588",
- "source_port_id": "pcb_component_161_port_55",
"port_hints": [
"55"
],
@@ -25995,7 +25511,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_556",
+ "pcb_smtpad_id": "pcb_smtpad_560",
"pcb_component_id": "pcb_component_161",
"x": -72.0075015,
"y": -11.7687745,
@@ -26003,7 +25519,6 @@
"height": 0.875,
"layer": "bottom",
"pcb_port_id": "pcb_port_589",
- "source_port_id": "pcb_component_161_port_56",
"port_hints": [
"56"
],
@@ -26012,7 +25527,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_557",
+ "pcb_smtpad_id": "pcb_smtpad_561",
"pcb_component_id": "pcb_component_161",
"x": -74.6075015,
"y": -15.2062745,
@@ -26020,7 +25535,6 @@
"height": 3.2,
"layer": "bottom",
"pcb_port_id": "pcb_port_590",
- "source_port_id": "pcb_component_161_port_57",
"port_hints": [
"57"
],
@@ -26028,7 +25542,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_558",
+ "pcb_smtpad_id": "pcb_smtpad_562",
"pcb_component_id": "pcb_component_162",
"x": -5.127501499999997,
"y": 38.2174255,
@@ -26036,7 +25550,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_591",
- "source_port_id": "pcb_component_162_port_1",
"port_hints": [
"1"
],
@@ -26045,7 +25558,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_559",
+ "pcb_smtpad_id": "pcb_smtpad_563",
"pcb_component_id": "pcb_component_162",
"x": -5.127501499999997,
"y": 37.1974255,
@@ -26053,7 +25566,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_592",
- "source_port_id": "pcb_component_162_port_2",
"port_hints": [
"2"
],
@@ -26062,7 +25574,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_560",
+ "pcb_smtpad_id": "pcb_smtpad_564",
"pcb_component_id": "pcb_component_163",
"x": -93.28750149999999,
"y": 20.7274255,
@@ -26070,7 +25582,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_593",
- "source_port_id": "pcb_component_163_port_1",
"port_hints": [
"1"
],
@@ -26078,7 +25589,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_561",
+ "pcb_smtpad_id": "pcb_smtpad_565",
"pcb_component_id": "pcb_component_163",
"x": -93.28750149999999,
"y": 19.3274255,
@@ -26086,7 +25597,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_594",
- "source_port_id": "pcb_component_163_port_2",
"port_hints": [
"2"
],
@@ -26094,7 +25604,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_562",
+ "pcb_smtpad_id": "pcb_smtpad_566",
"pcb_component_id": "pcb_component_163",
"x": -87.6875015,
"y": 19.3274255,
@@ -26102,7 +25612,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_595",
- "source_port_id": "pcb_component_163_port_3",
"port_hints": [
"3"
],
@@ -26110,7 +25619,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_563",
+ "pcb_smtpad_id": "pcb_smtpad_567",
"pcb_component_id": "pcb_component_163",
"x": -87.6875015,
"y": 20.7274255,
@@ -26118,7 +25627,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_596",
- "source_port_id": "pcb_component_163_port_4",
"port_hints": [
"4"
],
@@ -26126,7 +25634,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_564",
+ "pcb_smtpad_id": "pcb_smtpad_568",
"pcb_component_id": "pcb_component_164",
"x": -41.437501499999996,
"y": 9.2086755,
@@ -26134,7 +25642,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_597",
- "source_port_id": "pcb_component_164_port_1",
"port_hints": [
"1"
],
@@ -26142,7 +25649,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_565",
+ "pcb_smtpad_id": "pcb_smtpad_569",
"pcb_component_id": "pcb_component_164",
"x": -30.237501499999997,
"y": 7.008675499999999,
@@ -26150,7 +25657,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_598",
- "source_port_id": "pcb_component_164_port_2",
"port_hints": [
"2"
],
@@ -26158,41 +25664,103 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_566",
+ "pcb_smtpad_id": "pcb_smtpad_id",
+ "shape": "circle",
+ "pcb_component_id": "pcb_component_165",
+ "pcb_port_id": "pcb_port_599",
+ "layer": "bottom",
+ "port_hints": [
+ "1"
+ ],
+ "x": -115.69250149999999,
+ "y": 33.8074255,
+ "width": 1,
+ "height": 1,
+ "radius": 0.5
+ },
+ {
+ "type": "pcb_smtpad",
+ "pcb_smtpad_id": "pcb_smtpad_id",
+ "shape": "circle",
+ "pcb_component_id": "pcb_component_165",
+ "pcb_port_id": "pcb_port_599",
+ "layer": "bottom",
+ "port_hints": [
+ "1"
+ ],
+ "x": -115.69250149999999,
+ "y": 34.3074255,
+ "width": 1,
+ "height": 1,
+ "radius": 0.5
+ },
+ {
+ "type": "pcb_smtpad",
+ "pcb_smtpad_id": "pcb_smtpad_id",
"shape": "polygon",
"pcb_component_id": "pcb_component_165",
"pcb_port_id": "pcb_port_599",
- "source_port_id": "pcb_component_165_port_1",
"layer": "bottom",
"port_hints": [
"1"
],
"points": [
{
- "x": -115.19250149999999,
- "y": 34.8074255
+ "x": -116.19250149999999,
+ "y": 33.3074255
},
{
"x": -115.69250149999999,
- "y": 34.8074255
+ "y": 33.3074255
},
{
"x": -115.69250149999999,
- "y": 33.3074255
+ "y": 34.8074255
},
{
- "x": -115.19250149999999,
- "y": 33.3074255
+ "x": -116.19250149999999,
+ "y": 34.8074255
}
]
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_567",
+ "pcb_smtpad_id": "pcb_smtpad_id",
+ "shape": "circle",
+ "pcb_component_id": "pcb_component_165",
+ "pcb_port_id": "pcb_port_600",
+ "layer": "bottom",
+ "port_hints": [
+ "2"
+ ],
+ "x": -116.9925015,
+ "y": 33.8074255,
+ "width": 1,
+ "height": 1,
+ "radius": 0.5
+ },
+ {
+ "type": "pcb_smtpad",
+ "pcb_smtpad_id": "pcb_smtpad_id",
+ "shape": "circle",
+ "pcb_component_id": "pcb_component_165",
+ "pcb_port_id": "pcb_port_600",
+ "layer": "bottom",
+ "port_hints": [
+ "2"
+ ],
+ "x": -116.9925015,
+ "y": 34.3074255,
+ "width": 1,
+ "height": 1,
+ "radius": 0.5
+ },
+ {
+ "type": "pcb_smtpad",
+ "pcb_smtpad_id": "pcb_smtpad_id",
"shape": "polygon",
"pcb_component_id": "pcb_component_165",
"pcb_port_id": "pcb_port_600",
- "source_port_id": "pcb_component_165_port_2",
"layer": "bottom",
"port_hints": [
"2"
@@ -26200,25 +25768,25 @@
"points": [
{
"x": -116.9925015,
- "y": 34.8074255
+ "y": 33.3074255
},
{
- "x": -117.4925015,
- "y": 34.8074255
+ "x": -116.4925015,
+ "y": 33.3074255
},
{
- "x": -117.4925015,
- "y": 33.3074255
+ "x": -116.4925015,
+ "y": 34.8074255
},
{
"x": -116.9925015,
- "y": 33.3074255
+ "y": 34.8074255
}
]
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_568",
+ "pcb_smtpad_id": "pcb_smtpad_576",
"pcb_component_id": "pcb_component_166",
"x": 67.1224985,
"y": -8.182574499999998,
@@ -26226,7 +25794,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_601",
- "source_port_id": "pcb_component_166_port_1",
"port_hints": [
"1"
],
@@ -26235,7 +25802,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_569",
+ "pcb_smtpad_id": "pcb_smtpad_577",
"pcb_component_id": "pcb_component_166",
"x": 67.1224985,
"y": -9.2025745,
@@ -26243,7 +25810,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_602",
- "source_port_id": "pcb_component_166_port_2",
"port_hints": [
"2"
],
@@ -26252,7 +25818,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_570",
+ "pcb_smtpad_id": "pcb_smtpad_578",
"pcb_component_id": "pcb_component_167",
"x": 72.0225005,
"y": -26.891324500000003,
@@ -26260,7 +25826,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_603",
- "source_port_id": "pcb_component_167_port_1",
"port_hints": [
"1"
],
@@ -26269,7 +25834,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_571",
+ "pcb_smtpad_id": "pcb_smtpad_579",
"pcb_component_id": "pcb_component_167",
"x": 72.98250050000001,
"y": -26.891324500000003,
@@ -26277,7 +25842,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_604",
- "source_port_id": "pcb_component_167_port_2",
"port_hints": [
"2"
],
@@ -26286,7 +25850,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_572",
+ "pcb_smtpad_id": "pcb_smtpad_580",
"pcb_component_id": "pcb_component_168",
"x": 23.10549242808291,
"y": -24.671960903163203,
@@ -26294,7 +25858,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_605",
- "source_port_id": "pcb_component_168_port_1",
"port_hints": [
"1"
],
@@ -26302,7 +25865,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_573",
+ "pcb_smtpad_id": "pcb_smtpad_581",
"pcb_component_id": "pcb_component_168",
"x": 21.82533897920878,
"y": -25.238712301340286,
@@ -26310,7 +25873,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_606",
- "source_port_id": "pcb_component_168_port_2",
"port_hints": [
"2"
],
@@ -26318,7 +25880,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_574",
+ "pcb_smtpad_id": "pcb_smtpad_582",
"pcb_component_id": "pcb_component_168",
"x": 24.092344571917096,
"y": -30.359326096836803,
@@ -26326,7 +25888,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_607",
- "source_port_id": "pcb_component_168_port_3",
"port_hints": [
"3"
],
@@ -26334,7 +25895,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_575",
+ "pcb_smtpad_id": "pcb_smtpad_583",
"pcb_component_id": "pcb_component_168",
"x": 25.372498020791227,
"y": -29.79257469865972,
@@ -26342,7 +25903,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_608",
- "source_port_id": "pcb_component_168_port_4",
"port_hints": [
"4"
],
@@ -26350,7 +25910,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_576",
+ "pcb_smtpad_id": "pcb_smtpad_584",
"pcb_component_id": "pcb_component_169",
"x": -112.33750149999999,
"y": 35.014925500000004,
@@ -26358,7 +25918,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_609",
- "source_port_id": "pcb_component_169_port_1",
"port_hints": [
"1"
],
@@ -26366,7 +25925,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_577",
+ "pcb_smtpad_id": "pcb_smtpad_585",
"pcb_component_id": "pcb_component_169",
"x": -112.33750149999999,
"y": 33.6149255,
@@ -26374,7 +25933,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_610",
- "source_port_id": "pcb_component_169_port_2",
"port_hints": [
"2"
],
@@ -26382,7 +25940,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_578",
+ "pcb_smtpad_id": "pcb_smtpad_586",
"pcb_component_id": "pcb_component_169",
"x": -106.7375015,
"y": 33.6149255,
@@ -26390,7 +25948,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_611",
- "source_port_id": "pcb_component_169_port_3",
"port_hints": [
"3"
],
@@ -26398,7 +25955,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_579",
+ "pcb_smtpad_id": "pcb_smtpad_587",
"pcb_component_id": "pcb_component_169",
"x": -106.7375015,
"y": 35.0149255,
@@ -26406,7 +25963,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_612",
- "source_port_id": "pcb_component_169_port_4",
"port_hints": [
"4"
],
@@ -26414,7 +25970,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_580",
+ "pcb_smtpad_id": "pcb_smtpad_588",
"pcb_component_id": "pcb_component_170",
"x": -36.13750149999999,
"y": 37.3961755,
@@ -26422,7 +25978,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_613",
- "source_port_id": "pcb_component_170_port_1",
"port_hints": [
"1"
],
@@ -26430,7 +25985,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_581",
+ "pcb_smtpad_id": "pcb_smtpad_589",
"pcb_component_id": "pcb_component_170",
"x": -36.13750149999999,
"y": 35.9961755,
@@ -26438,7 +25993,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_614",
- "source_port_id": "pcb_component_170_port_2",
"port_hints": [
"2"
],
@@ -26446,7 +26000,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_582",
+ "pcb_smtpad_id": "pcb_smtpad_590",
"pcb_component_id": "pcb_component_170",
"x": -30.537501499999994,
"y": 35.9961755,
@@ -26454,7 +26008,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_615",
- "source_port_id": "pcb_component_170_port_3",
"port_hints": [
"3"
],
@@ -26462,7 +26015,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_583",
+ "pcb_smtpad_id": "pcb_smtpad_591",
"pcb_component_id": "pcb_component_170",
"x": -30.537501499999994,
"y": 37.3961755,
@@ -26470,7 +26023,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_616",
- "source_port_id": "pcb_component_170_port_4",
"port_hints": [
"4"
],
@@ -26478,7 +26030,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_584",
+ "pcb_smtpad_id": "pcb_smtpad_592",
"pcb_component_id": "pcb_component_171",
"x": -76.96249949999999,
"y": -20.5425745,
@@ -26486,7 +26038,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_617",
- "source_port_id": "pcb_component_171_port_1",
"port_hints": [
"1"
],
@@ -26495,7 +26046,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_585",
+ "pcb_smtpad_id": "pcb_smtpad_593",
"pcb_component_id": "pcb_component_171",
"x": -76.96249949999999,
"y": -21.502574499999994,
@@ -26503,7 +26054,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_618",
- "source_port_id": "pcb_component_171_port_2",
"port_hints": [
"2"
],
@@ -26512,7 +26062,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_586",
+ "pcb_smtpad_id": "pcb_smtpad_594",
"pcb_component_id": "pcb_component_172",
"x": 63.8274985,
"y": -11.5825745,
@@ -26520,7 +26070,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_619",
- "source_port_id": "pcb_component_172_port_1",
"port_hints": [
"1"
],
@@ -26529,7 +26078,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_587",
+ "pcb_smtpad_id": "pcb_smtpad_595",
"pcb_component_id": "pcb_component_172",
"x": 62.8674985,
"y": -11.5825745,
@@ -26537,7 +26086,6 @@
"height": 0.62,
"layer": "bottom",
"pcb_port_id": "pcb_port_620",
- "source_port_id": "pcb_component_172_port_2",
"port_hints": [
"2"
],
@@ -26546,7 +26094,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_588",
+ "pcb_smtpad_id": "pcb_smtpad_596",
"pcb_component_id": "pcb_component_173",
"x": 49.587500500000004,
"y": 1.6774254999999982,
@@ -26554,7 +26102,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_621",
- "source_port_id": "pcb_component_173_port_1",
"port_hints": [
"1"
],
@@ -26562,7 +26109,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_589",
+ "pcb_smtpad_id": "pcb_smtpad_597",
"pcb_component_id": "pcb_component_173",
"x": 49.587500500000004,
"y": 0.27742549999999966,
@@ -26570,7 +26117,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_622",
- "source_port_id": "pcb_component_173_port_2",
"port_hints": [
"2"
],
@@ -26578,7 +26124,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_590",
+ "pcb_smtpad_id": "pcb_smtpad_598",
"pcb_component_id": "pcb_component_173",
"x": 55.1875005,
"y": 0.27742549999999966,
@@ -26586,7 +26132,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_623",
- "source_port_id": "pcb_component_173_port_3",
"port_hints": [
"3"
],
@@ -26594,7 +26139,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_591",
+ "pcb_smtpad_id": "pcb_smtpad_599",
"pcb_component_id": "pcb_component_173",
"x": 55.1875005,
"y": 1.6774254999999982,
@@ -26602,7 +26147,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_624",
- "source_port_id": "pcb_component_173_port_4",
"port_hints": [
"4"
],
@@ -26610,7 +26154,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_592",
+ "pcb_smtpad_id": "pcb_smtpad_600",
"pcb_component_id": "pcb_component_174",
"x": 5.122500500000004,
"y": 38.2186755,
@@ -26618,7 +26162,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_625",
- "source_port_id": "pcb_component_174_port_1",
"port_hints": [
"1"
],
@@ -26627,7 +26170,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_593",
+ "pcb_smtpad_id": "pcb_smtpad_601",
"pcb_component_id": "pcb_component_174",
"x": 5.122500500000004,
"y": 37.1986755,
@@ -26635,7 +26178,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_626",
- "source_port_id": "pcb_component_174_port_2",
"port_hints": [
"2"
],
@@ -26644,7 +26186,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_594",
+ "pcb_smtpad_id": "pcb_smtpad_602",
"pcb_component_id": "pcb_component_175",
"x": 6.187498500000004,
"y": 18.7336755,
@@ -26652,7 +26194,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_631",
- "source_port_id": "pcb_component_175_port_S1",
"port_hints": [
"S1"
],
@@ -26660,7 +26201,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_595",
+ "pcb_smtpad_id": "pcb_smtpad_603",
"pcb_component_id": "pcb_component_175",
"x": 17.387498500000003,
"y": 16.5336755,
@@ -26668,7 +26209,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_632",
- "source_port_id": "pcb_component_175_port_S2",
"port_hints": [
"S2"
],
@@ -26676,7 +26216,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_596",
+ "pcb_smtpad_id": "pcb_smtpad_604",
"pcb_component_id": "pcb_component_176",
"x": 106.73750050000001,
"y": 35.014925500000004,
@@ -26684,7 +26224,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_634",
- "source_port_id": "pcb_component_176_port_1",
"port_hints": [
"1"
],
@@ -26692,7 +26231,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_597",
+ "pcb_smtpad_id": "pcb_smtpad_605",
"pcb_component_id": "pcb_component_176",
"x": 106.73750050000001,
"y": 33.6149255,
@@ -26700,7 +26239,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_635",
- "source_port_id": "pcb_component_176_port_2",
"port_hints": [
"2"
],
@@ -26708,7 +26246,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_598",
+ "pcb_smtpad_id": "pcb_smtpad_606",
"pcb_component_id": "pcb_component_176",
"x": 112.3375005,
"y": 33.6149255,
@@ -26716,7 +26254,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_636",
- "source_port_id": "pcb_component_176_port_3",
"port_hints": [
"3"
],
@@ -26724,7 +26261,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_599",
+ "pcb_smtpad_id": "pcb_smtpad_607",
"pcb_component_id": "pcb_component_176",
"x": 112.3375005,
"y": 35.0149255,
@@ -26732,7 +26269,6 @@
"height": 0.825,
"layer": "bottom",
"pcb_port_id": "pcb_port_637",
- "source_port_id": "pcb_component_176_port_4",
"port_hints": [
"4"
],
@@ -26740,7 +26276,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_600",
+ "pcb_smtpad_id": "pcb_smtpad_608",
"pcb_component_id": "pcb_component_177",
"x": -86.8174995,
"y": -14.601324500000004,
@@ -26748,7 +26284,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_638",
- "source_port_id": "pcb_component_177_port_1",
"port_hints": [
"1"
],
@@ -26757,7 +26292,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_601",
+ "pcb_smtpad_id": "pcb_smtpad_609",
"pcb_component_id": "pcb_component_177",
"x": -86.8174995,
"y": -15.6213245,
@@ -26765,7 +26300,6 @@
"height": 0.64,
"layer": "bottom",
"pcb_port_id": "pcb_port_639",
- "source_port_id": "pcb_component_177_port_2",
"port_hints": [
"2"
],
@@ -26774,7 +26308,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_602",
+ "pcb_smtpad_id": "pcb_smtpad_610",
"pcb_component_id": "pcb_component_178",
"x": -16.0675015,
"y": -16.1125745,
@@ -26782,7 +26316,6 @@
"height": 1.8,
"layer": "bottom",
"pcb_port_id": "pcb_port_644",
- "source_port_id": "pcb_component_178_port_T",
"port_hints": [
"T"
],
@@ -26790,7 +26323,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_603",
+ "pcb_smtpad_id": "pcb_smtpad_611",
"pcb_component_id": "pcb_component_178",
"x": -16.0675015,
"y": -8.3125745,
@@ -26798,7 +26331,6 @@
"height": 1.8,
"layer": "bottom",
"pcb_port_id": "pcb_port_645",
- "source_port_id": "pcb_component_178_port_T",
"port_hints": [
"T"
],
@@ -26806,7 +26338,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_604",
+ "pcb_smtpad_id": "pcb_smtpad_612",
"pcb_component_id": "pcb_component_179",
"x": 44.287498500000005,
"y": -7.460074500000001,
@@ -26814,7 +26346,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_646",
- "source_port_id": "pcb_component_179_port_1",
"port_hints": [
"1"
],
@@ -26822,7 +26353,7 @@
},
{
"type": "pcb_smtpad",
- "pcb_smtpad_id": "pcb_smtpad_605",
+ "pcb_smtpad_id": "pcb_smtpad_613",
"pcb_component_id": "pcb_component_179",
"x": 55.48749850000001,
"y": -9.6600745,
@@ -26830,7 +26361,6 @@
"height": 2.6,
"layer": "bottom",
"pcb_port_id": "pcb_port_647",
- "source_port_id": "pcb_component_179_port_2",
"port_hints": [
"2"
],
@@ -26839,15 +26369,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_0",
+ "shape": "circle",
"pcb_component_id": "pcb_component_3",
"pcb_port_id": "pcb_port_0",
- "source_port_id": "pcb_component_3_port_1",
"x": 10.477498500000003,
"y": -6.412574500000002,
"port_hints": [
"1"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.4,
"layers": [
@@ -26858,15 +26387,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_1",
+ "shape": "circle",
"pcb_component_id": "pcb_component_3",
"pcb_port_id": "pcb_port_1",
- "source_port_id": "pcb_component_3_port_2",
"x": 13.017498500000004,
"y": -6.412574500000002,
"port_hints": [
"2"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.4,
"layers": [
@@ -26877,15 +26405,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_2",
+ "shape": "circle",
"pcb_component_id": "pcb_component_3",
"pcb_port_id": "pcb_port_2",
- "source_port_id": "pcb_component_3_port_3",
"x": 15.557498500000003,
"y": -6.412574500000002,
"port_hints": [
"3"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.4,
"layers": [
@@ -26896,15 +26423,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_3",
+ "shape": "circle",
"pcb_component_id": "pcb_component_3",
"pcb_port_id": "pcb_port_3",
- "source_port_id": "pcb_component_3_port_4",
"x": 18.097498500000004,
"y": -6.412574500000002,
"port_hints": [
"4"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.4,
"layers": [
@@ -26915,15 +26441,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_4",
+ "shape": "circle",
"pcb_component_id": "pcb_component_11",
"pcb_port_id": "pcb_port_4",
- "source_port_id": "pcb_component_11_port_1",
"x": -18.097501499999996,
"y": -6.412574500000002,
"port_hints": [
"1"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.4,
"layers": [
@@ -26934,15 +26459,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_5",
+ "shape": "circle",
"pcb_component_id": "pcb_component_11",
"pcb_port_id": "pcb_port_5",
- "source_port_id": "pcb_component_11_port_2",
"x": -15.557501499999995,
"y": -6.412574500000002,
"port_hints": [
"2"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.4,
"layers": [
@@ -26953,15 +26477,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_6",
+ "shape": "circle",
"pcb_component_id": "pcb_component_11",
"pcb_port_id": "pcb_port_6",
- "source_port_id": "pcb_component_11_port_3",
"x": -13.017501499999996,
"y": -6.412574500000002,
"port_hints": [
"3"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.4,
"layers": [
@@ -26972,15 +26495,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_7",
+ "shape": "circle",
"pcb_component_id": "pcb_component_11",
"pcb_port_id": "pcb_port_7",
- "source_port_id": "pcb_component_11_port_4",
"x": -10.477501499999995,
"y": -6.412574500000002,
"port_hints": [
"4"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.4,
"layers": [
@@ -26990,20 +26512,19 @@
},
{
"type": "pcb_plated_hole",
- "pcb_plated_hole_id": "pcb_plated_hole_8",
+ "pcb_plated_hole_id": "pcb_plated_hole_id",
+ "shape": "circular_hole_with_rect_pad",
"pcb_component_id": "pcb_component_13",
"pcb_port_id": "pcb_port_10",
- "source_port_id": "pcb_component_13_port_1",
"x": -106.8675015,
"y": 0.057425500000000795,
"port_hints": [
"1"
],
- "shape": "circular_hole_with_rect_pad",
"hole_shape": "circle",
"pad_shape": "rect",
"hole_diameter": 1,
- "rect_ccw_rotation": 180,
+ "rect_ccw_rotation": 90,
"rect_pad_width": 1.7,
"rect_pad_height": 1.7,
"hole_offset_x": 0,
@@ -27016,19 +26537,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_9",
+ "shape": "pill",
"pcb_component_id": "pcb_component_13",
"pcb_port_id": "pcb_port_11",
- "source_port_id": "pcb_component_13_port_2",
"x": -109.40750150000001,
"y": 0.057425500000000795,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
"outer_width": 1.7,
"outer_height": 1.7,
+ "ccw_rotation": 90,
"layers": [
"top",
"bottom"
@@ -27037,19 +26558,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_10",
+ "shape": "pill",
"pcb_component_id": "pcb_component_13",
"pcb_port_id": "pcb_port_12",
- "source_port_id": "pcb_component_13_port_3",
"x": -111.9475015,
"y": 0.057425500000000795,
"port_hints": [
"3"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
"outer_width": 1.7,
"outer_height": 1.7,
+ "ccw_rotation": 90,
"layers": [
"top",
"bottom"
@@ -27058,21 +26579,21 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_11",
+ "shape": "rotated_pill_hole_with_rect_pad",
"pcb_component_id": "pcb_component_17",
"x": -6.287501499999996,
"y": 3.383675499999999,
"port_hints": [
""
],
- "shape": "rotated_pill_hole_with_rect_pad",
"hole_shape": "rotated_pill",
"pad_shape": "rect",
- "hole_width": 1.5,
- "hole_height": 2.3,
+ "hole_width": 2.3,
+ "hole_height": 1.5,
"hole_ccw_rotation": 90,
"rect_ccw_rotation": 90,
- "rect_pad_width": 2,
- "rect_pad_height": 2.6,
+ "rect_pad_width": 2.6,
+ "rect_pad_height": 2,
"hole_offset_x": 0,
"hole_offset_y": 0,
"layers": [
@@ -27083,21 +26604,21 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_12",
+ "shape": "rotated_pill_hole_with_rect_pad",
"pcb_component_id": "pcb_component_17",
"x": -22.287501499999998,
"y": 3.383675499999999,
"port_hints": [
""
],
- "shape": "rotated_pill_hole_with_rect_pad",
"hole_shape": "rotated_pill",
"pad_shape": "rect",
- "hole_width": 1.5,
- "hole_height": 2.3,
+ "hole_width": 2.3,
+ "hole_height": 1.5,
"hole_ccw_rotation": 90,
"rect_ccw_rotation": 90,
- "rect_pad_width": 2,
- "rect_pad_height": 2.6,
+ "rect_pad_width": 2.6,
+ "rect_pad_height": 2,
"hole_offset_x": 0,
"hole_offset_y": 0,
"layers": [
@@ -27108,15 +26629,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_13",
+ "shape": "circle",
"pcb_component_id": "pcb_component_17",
"pcb_port_id": "pcb_port_19",
- "source_port_id": "pcb_component_17_port_A",
"x": -11.787501499999994,
"y": 10.883675499999999,
"port_hints": [
"A"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.2,
"layers": [
@@ -27127,15 +26647,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_14",
+ "shape": "circle",
"pcb_component_id": "pcb_component_17",
"pcb_port_id": "pcb_port_20",
- "source_port_id": "pcb_component_17_port_B",
"x": -16.787501499999994,
"y": 10.883675499999999,
"port_hints": [
"B"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.2,
"layers": [
@@ -27146,15 +26665,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_15",
+ "shape": "circle",
"pcb_component_id": "pcb_component_17",
"pcb_port_id": "pcb_port_21",
- "source_port_id": "pcb_component_17_port_C",
"x": -14.287501499999994,
"y": 10.883675499999999,
"port_hints": [
"C"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.2,
"layers": [
@@ -27165,15 +26683,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_16",
+ "shape": "circle",
"pcb_component_id": "pcb_component_17",
"pcb_port_id": "pcb_port_22",
- "source_port_id": "pcb_component_17_port_S1",
"x": -16.787501499999998,
"y": -4.616324500000001,
"port_hints": [
"S1"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.2,
"layers": [
@@ -27184,15 +26701,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_17",
+ "shape": "circle",
"pcb_component_id": "pcb_component_17",
"pcb_port_id": "pcb_port_25",
- "source_port_id": "pcb_component_17_port_S2",
"x": -11.787501499999998,
"y": -4.616324500000001,
"port_hints": [
"S2"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.2,
"layers": [
@@ -27203,19 +26719,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_18",
+ "shape": "pill",
"pcb_component_id": "pcb_component_29",
"pcb_port_id": "pcb_port_54",
- "source_port_id": "pcb_component_29_port_R",
"x": 10.267498500000004,
"y": -8.312574500000004,
"port_hints": [
"R"
],
- "shape": "pill",
"hole_width": 1.6,
"hole_height": 1.6,
"outer_width": 1.2,
"outer_height": 2,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -27224,19 +26740,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_19",
+ "shape": "pill",
"pcb_component_id": "pcb_component_29",
"pcb_port_id": "pcb_port_55",
- "source_port_id": "pcb_component_29_port_R",
"x": 10.267498500000004,
"y": -16.1125745,
"port_hints": [
"R"
],
- "shape": "pill",
"hole_width": 1.6,
"hole_height": 1.6,
"outer_width": 1.2,
"outer_height": 2,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -27245,19 +26761,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_20",
+ "shape": "pill",
"pcb_component_id": "pcb_component_29",
"pcb_port_id": "pcb_port_56",
- "source_port_id": "pcb_component_29_port_S",
"x": 7.067498500000003,
"y": -8.312574500000004,
"port_hints": [
"S"
],
- "shape": "pill",
"hole_width": 1.6,
"hole_height": 1.6,
"outer_width": 1.2,
"outer_height": 2,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -27266,19 +26782,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_21",
+ "shape": "pill",
"pcb_component_id": "pcb_component_29",
"pcb_port_id": "pcb_port_57",
- "source_port_id": "pcb_component_29_port_S",
"x": 7.067498500000005,
"y": -16.1125745,
"port_hints": [
"S"
],
- "shape": "pill",
"hole_width": 1.6,
"hole_height": 1.6,
"outer_width": 1.2,
"outer_height": 2,
+ "ccw_rotation": 270,
"layers": [
"top",
"bottom"
@@ -27287,21 +26803,21 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_22",
+ "shape": "rotated_pill_hole_with_rect_pad",
"pcb_component_id": "pcb_component_33",
"x": 22.287498500000005,
"y": 3.383675499999999,
"port_hints": [
""
],
- "shape": "rotated_pill_hole_with_rect_pad",
"hole_shape": "rotated_pill",
"pad_shape": "rect",
- "hole_width": 1.5,
- "hole_height": 2.3,
+ "hole_width": 2.3,
+ "hole_height": 1.5,
"hole_ccw_rotation": 90,
"rect_ccw_rotation": 90,
- "rect_pad_width": 2,
- "rect_pad_height": 2.6,
+ "rect_pad_width": 2.6,
+ "rect_pad_height": 2,
"hole_offset_x": 0,
"hole_offset_y": 0,
"layers": [
@@ -27312,21 +26828,21 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_23",
+ "shape": "rotated_pill_hole_with_rect_pad",
"pcb_component_id": "pcb_component_33",
"x": 6.287498500000003,
"y": 3.383675499999999,
"port_hints": [
""
],
- "shape": "rotated_pill_hole_with_rect_pad",
"hole_shape": "rotated_pill",
"pad_shape": "rect",
- "hole_width": 1.5,
- "hole_height": 2.3,
+ "hole_width": 2.3,
+ "hole_height": 1.5,
"hole_ccw_rotation": 90,
"rect_ccw_rotation": 90,
- "rect_pad_width": 2,
- "rect_pad_height": 2.6,
+ "rect_pad_width": 2.6,
+ "rect_pad_height": 2,
"hole_offset_x": 0,
"hole_offset_y": 0,
"layers": [
@@ -27337,15 +26853,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_24",
+ "shape": "circle",
"pcb_component_id": "pcb_component_33",
"pcb_port_id": "pcb_port_66",
- "source_port_id": "pcb_component_33_port_A",
"x": 16.787498500000005,
"y": 10.883675499999999,
"port_hints": [
"A"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.2,
"layers": [
@@ -27356,15 +26871,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_25",
+ "shape": "circle",
"pcb_component_id": "pcb_component_33",
"pcb_port_id": "pcb_port_67",
- "source_port_id": "pcb_component_33_port_B",
"x": 11.787498500000005,
"y": 10.883675499999999,
"port_hints": [
"B"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.2,
"layers": [
@@ -27375,15 +26889,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_26",
+ "shape": "circle",
"pcb_component_id": "pcb_component_33",
"pcb_port_id": "pcb_port_68",
- "source_port_id": "pcb_component_33_port_C",
"x": 14.287498500000005,
"y": 10.883675499999999,
"port_hints": [
"C"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.2,
"layers": [
@@ -27394,15 +26907,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_27",
+ "shape": "circle",
"pcb_component_id": "pcb_component_33",
"pcb_port_id": "pcb_port_69",
- "source_port_id": "pcb_component_33_port_S1",
"x": 11.787498500000002,
"y": -4.616324500000001,
"port_hints": [
"S1"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.2,
"layers": [
@@ -27413,15 +26925,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_28",
+ "shape": "circle",
"pcb_component_id": "pcb_component_33",
"pcb_port_id": "pcb_port_72",
- "source_port_id": "pcb_component_33_port_S2",
"x": 16.7874985,
"y": -4.616324500000001,
"port_hints": [
"S2"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.2,
"layers": [
@@ -27432,19 +26943,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_29",
+ "shape": "pill",
"pcb_component_id": "pcb_component_44",
"pcb_port_id": "pcb_port_168",
- "source_port_id": "pcb_component_44_port_S1",
"x": 6.667498500000003,
"y": 38.3974255,
"port_hints": [
"S1"
],
- "shape": "pill",
"hole_width": 1.6,
"hole_height": 1.6,
"outer_width": 1.1,
"outer_height": 2.1,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -27453,19 +26964,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_30",
+ "shape": "pill",
"pcb_component_id": "pcb_component_44",
"pcb_port_id": "pcb_port_169",
- "source_port_id": "pcb_component_44_port_S1",
"x": 6.667498500000003,
"y": 34.3974255,
"port_hints": [
"S1"
],
- "shape": "pill",
"hole_width": 1.4,
"hole_height": 1.4,
"outer_width": 1.1,
"outer_height": 1.9,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -27474,19 +26985,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_31",
+ "shape": "pill",
"pcb_component_id": "pcb_component_44",
"pcb_port_id": "pcb_port_170",
- "source_port_id": "pcb_component_44_port_S1",
"x": 17.907498500000003,
"y": 38.3974255,
"port_hints": [
"S1"
],
- "shape": "pill",
"hole_width": 1.6,
"hole_height": 1.6,
"outer_width": 1.1,
"outer_height": 2.1,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -27495,19 +27006,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_32",
+ "shape": "pill",
"pcb_component_id": "pcb_component_44",
"pcb_port_id": "pcb_port_171",
- "source_port_id": "pcb_component_44_port_S1",
"x": 17.907498500000003,
"y": 34.3974255,
"port_hints": [
"S1"
],
- "shape": "pill",
"hole_width": 1.4,
"hole_height": 1.4,
"outer_width": 1.1,
"outer_height": 1.9,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -27516,21 +27027,21 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_33",
+ "shape": "rotated_pill_hole_with_rect_pad",
"pcb_component_id": "pcb_component_93",
"x": -6.287501499999996,
"y": 22.4336755,
"port_hints": [
""
],
- "shape": "rotated_pill_hole_with_rect_pad",
"hole_shape": "rotated_pill",
"pad_shape": "rect",
- "hole_width": 1.5,
- "hole_height": 2.3,
+ "hole_width": 2.3,
+ "hole_height": 1.5,
"hole_ccw_rotation": 90,
"rect_ccw_rotation": 90,
- "rect_pad_width": 2,
- "rect_pad_height": 2.6,
+ "rect_pad_width": 2.6,
+ "rect_pad_height": 2,
"hole_offset_x": 0,
"hole_offset_y": 0,
"layers": [
@@ -27541,21 +27052,21 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_34",
+ "shape": "rotated_pill_hole_with_rect_pad",
"pcb_component_id": "pcb_component_93",
"x": -22.287501499999998,
"y": 22.4336755,
"port_hints": [
""
],
- "shape": "rotated_pill_hole_with_rect_pad",
"hole_shape": "rotated_pill",
"pad_shape": "rect",
- "hole_width": 1.5,
- "hole_height": 2.3,
+ "hole_width": 2.3,
+ "hole_height": 1.5,
"hole_ccw_rotation": 90,
"rect_ccw_rotation": 90,
- "rect_pad_width": 2,
- "rect_pad_height": 2.6,
+ "rect_pad_width": 2.6,
+ "rect_pad_height": 2,
"hole_offset_x": 0,
"hole_offset_y": 0,
"layers": [
@@ -27566,15 +27077,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_35",
+ "shape": "circle",
"pcb_component_id": "pcb_component_93",
"pcb_port_id": "pcb_port_322",
- "source_port_id": "pcb_component_93_port_A",
"x": -11.787501499999994,
"y": 29.9336755,
"port_hints": [
"A"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.2,
"layers": [
@@ -27585,15 +27095,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_36",
+ "shape": "circle",
"pcb_component_id": "pcb_component_93",
"pcb_port_id": "pcb_port_323",
- "source_port_id": "pcb_component_93_port_B",
"x": -16.787501499999994,
"y": 29.9336755,
"port_hints": [
"B"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.2,
"layers": [
@@ -27604,15 +27113,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_37",
+ "shape": "circle",
"pcb_component_id": "pcb_component_93",
"pcb_port_id": "pcb_port_324",
- "source_port_id": "pcb_component_93_port_C",
"x": -14.287501499999994,
"y": 29.9336755,
"port_hints": [
"C"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.2,
"layers": [
@@ -27623,15 +27131,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_38",
+ "shape": "circle",
"pcb_component_id": "pcb_component_93",
"pcb_port_id": "pcb_port_325",
- "source_port_id": "pcb_component_93_port_S1",
"x": -16.787501499999998,
"y": 14.4336755,
"port_hints": [
"S1"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.2,
"layers": [
@@ -27642,15 +27149,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_39",
+ "shape": "circle",
"pcb_component_id": "pcb_component_93",
"pcb_port_id": "pcb_port_328",
- "source_port_id": "pcb_component_93_port_S2",
"x": -11.787501499999998,
"y": 14.4336755,
"port_hints": [
"S2"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.2,
"layers": [
@@ -27660,20 +27166,19 @@
},
{
"type": "pcb_plated_hole",
- "pcb_plated_hole_id": "pcb_plated_hole_40",
+ "pcb_plated_hole_id": "pcb_plated_hole_id",
+ "shape": "circular_hole_with_rect_pad",
"pcb_component_id": "pcb_component_115",
"pcb_port_id": "pcb_port_395",
- "source_port_id": "pcb_component_115_port_1",
"x": 111.8474985,
"y": 0.0024255000000010796,
"port_hints": [
"1"
],
- "shape": "circular_hole_with_rect_pad",
"hole_shape": "circle",
"pad_shape": "rect",
"hole_diameter": 1,
- "rect_ccw_rotation": 180,
+ "rect_ccw_rotation": 90,
"rect_pad_width": 1.7,
"rect_pad_height": 1.7,
"hole_offset_x": 0,
@@ -27686,19 +27191,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_41",
+ "shape": "pill",
"pcb_component_id": "pcb_component_115",
"pcb_port_id": "pcb_port_396",
- "source_port_id": "pcb_component_115_port_2",
"x": 109.3074985,
"y": 0.0024255000000010796,
"port_hints": [
"2"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
"outer_width": 1.7,
"outer_height": 1.7,
+ "ccw_rotation": 90,
"layers": [
"top",
"bottom"
@@ -27707,19 +27212,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_42",
+ "shape": "pill",
"pcb_component_id": "pcb_component_115",
"pcb_port_id": "pcb_port_397",
- "source_port_id": "pcb_component_115_port_3",
"x": 106.7674985,
"y": 0.0024255000000010796,
"port_hints": [
"3"
],
- "shape": "pill",
"hole_width": 1,
"hole_height": 1,
"outer_width": 1.7,
"outer_height": 1.7,
+ "ccw_rotation": 90,
"layers": [
"top",
"bottom"
@@ -27728,19 +27233,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_43",
+ "shape": "pill",
"pcb_component_id": "pcb_component_146",
"pcb_port_id": "pcb_port_498",
- "source_port_id": "pcb_component_146_port_S1",
"x": -17.907501499999995,
"y": 38.3974255,
"port_hints": [
"S1"
],
- "shape": "pill",
"hole_width": 1.6,
"hole_height": 1.6,
"outer_width": 1.1,
"outer_height": 2.1,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -27749,19 +27254,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_44",
+ "shape": "pill",
"pcb_component_id": "pcb_component_146",
"pcb_port_id": "pcb_port_499",
- "source_port_id": "pcb_component_146_port_S1",
"x": -17.907501499999995,
"y": 34.3974255,
"port_hints": [
"S1"
],
- "shape": "pill",
"hole_width": 1.4,
"hole_height": 1.4,
"outer_width": 1.1,
"outer_height": 1.9,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -27770,19 +27275,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_45",
+ "shape": "pill",
"pcb_component_id": "pcb_component_146",
"pcb_port_id": "pcb_port_500",
- "source_port_id": "pcb_component_146_port_S1",
"x": -6.667501499999996,
"y": 38.3974255,
"port_hints": [
"S1"
],
- "shape": "pill",
"hole_width": 1.6,
"hole_height": 1.6,
"outer_width": 1.1,
"outer_height": 2.1,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -27791,19 +27296,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_46",
+ "shape": "pill",
"pcb_component_id": "pcb_component_146",
"pcb_port_id": "pcb_port_501",
- "source_port_id": "pcb_component_146_port_S1",
"x": -6.667501499999996,
"y": 34.3974255,
"port_hints": [
"S1"
],
- "shape": "pill",
"hole_width": 1.4,
"hole_height": 1.4,
"outer_width": 1.1,
"outer_height": 1.9,
+ "ccw_rotation": 0,
"layers": [
"top",
"bottom"
@@ -27812,21 +27317,21 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_47",
+ "shape": "rotated_pill_hole_with_rect_pad",
"pcb_component_id": "pcb_component_175",
"x": 22.287498500000005,
"y": 22.4336755,
"port_hints": [
""
],
- "shape": "rotated_pill_hole_with_rect_pad",
"hole_shape": "rotated_pill",
"pad_shape": "rect",
- "hole_width": 1.5,
- "hole_height": 2.3,
+ "hole_width": 2.3,
+ "hole_height": 1.5,
"hole_ccw_rotation": 90,
"rect_ccw_rotation": 90,
- "rect_pad_width": 2,
- "rect_pad_height": 2.6,
+ "rect_pad_width": 2.6,
+ "rect_pad_height": 2,
"hole_offset_x": 0,
"hole_offset_y": 0,
"layers": [
@@ -27837,21 +27342,21 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_48",
+ "shape": "rotated_pill_hole_with_rect_pad",
"pcb_component_id": "pcb_component_175",
"x": 6.287498500000003,
"y": 22.4336755,
"port_hints": [
""
],
- "shape": "rotated_pill_hole_with_rect_pad",
"hole_shape": "rotated_pill",
"pad_shape": "rect",
- "hole_width": 1.5,
- "hole_height": 2.3,
+ "hole_width": 2.3,
+ "hole_height": 1.5,
"hole_ccw_rotation": 90,
"rect_ccw_rotation": 90,
- "rect_pad_width": 2,
- "rect_pad_height": 2.6,
+ "rect_pad_width": 2.6,
+ "rect_pad_height": 2,
"hole_offset_x": 0,
"hole_offset_y": 0,
"layers": [
@@ -27862,15 +27367,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_49",
+ "shape": "circle",
"pcb_component_id": "pcb_component_175",
"pcb_port_id": "pcb_port_627",
- "source_port_id": "pcb_component_175_port_A",
"x": 16.787498500000005,
"y": 29.9336755,
"port_hints": [
"A"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.2,
"layers": [
@@ -27881,15 +27385,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_50",
+ "shape": "circle",
"pcb_component_id": "pcb_component_175",
"pcb_port_id": "pcb_port_628",
- "source_port_id": "pcb_component_175_port_B",
"x": 11.787498500000005,
"y": 29.9336755,
"port_hints": [
"B"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.2,
"layers": [
@@ -27900,15 +27403,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_51",
+ "shape": "circle",
"pcb_component_id": "pcb_component_175",
"pcb_port_id": "pcb_port_629",
- "source_port_id": "pcb_component_175_port_C",
"x": 14.287498500000005,
"y": 29.9336755,
"port_hints": [
"C"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.2,
"layers": [
@@ -27919,15 +27421,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_52",
+ "shape": "circle",
"pcb_component_id": "pcb_component_175",
"pcb_port_id": "pcb_port_630",
- "source_port_id": "pcb_component_175_port_S1",
"x": 11.787498500000002,
"y": 14.4336755,
"port_hints": [
"S1"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.2,
"layers": [
@@ -27938,15 +27439,14 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_53",
+ "shape": "circle",
"pcb_component_id": "pcb_component_175",
"pcb_port_id": "pcb_port_633",
- "source_port_id": "pcb_component_175_port_S2",
"x": 16.7874985,
"y": 14.4336755,
"port_hints": [
"S2"
],
- "shape": "circle",
"hole_diameter": 1,
"outer_diameter": 1.2,
"layers": [
@@ -27957,19 +27457,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_54",
+ "shape": "pill",
"pcb_component_id": "pcb_component_178",
"pcb_port_id": "pcb_port_640",
- "source_port_id": "pcb_component_178_port_R",
"x": -10.267501499999996,
"y": -16.1125745,
"port_hints": [
"R"
],
- "shape": "pill",
"hole_width": 1.6,
"hole_height": 1.6,
"outer_width": 1.2,
"outer_height": 2,
+ "ccw_rotation": 90,
"layers": [
"top",
"bottom"
@@ -27978,19 +27478,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_55",
+ "shape": "pill",
"pcb_component_id": "pcb_component_178",
"pcb_port_id": "pcb_port_641",
- "source_port_id": "pcb_component_178_port_R",
"x": -10.267501499999996,
"y": -8.312574500000004,
"port_hints": [
"R"
],
- "shape": "pill",
"hole_width": 1.6,
"hole_height": 1.6,
"outer_width": 1.2,
"outer_height": 2,
+ "ccw_rotation": 90,
"layers": [
"top",
"bottom"
@@ -27999,19 +27499,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_56",
+ "shape": "pill",
"pcb_component_id": "pcb_component_178",
"pcb_port_id": "pcb_port_642",
- "source_port_id": "pcb_component_178_port_S",
"x": -7.067501499999997,
"y": -16.1125745,
"port_hints": [
"S"
],
- "shape": "pill",
"hole_width": 1.6,
"hole_height": 1.6,
"outer_width": 1.2,
"outer_height": 2,
+ "ccw_rotation": 90,
"layers": [
"top",
"bottom"
@@ -28020,19 +27520,19 @@
{
"type": "pcb_plated_hole",
"pcb_plated_hole_id": "pcb_plated_hole_57",
+ "shape": "pill",
"pcb_component_id": "pcb_component_178",
"pcb_port_id": "pcb_port_643",
- "source_port_id": "pcb_component_178_port_S",
"x": -7.067501499999995,
"y": -8.312574500000004,
"port_hints": [
"S"
],
- "shape": "pill",
"hole_width": 1.6,
"hole_height": 1.6,
"outer_width": 1.2,
"outer_height": 2,
+ "ccw_rotation": 90,
"layers": [
"top",
"bottom"
@@ -28041,2658 +27541,2658 @@
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_0",
+ "hole_shape": "circle",
"x": -130.9625015,
"y": -18.7475745,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_1",
+ "hole_shape": "circle",
"x": -130.1708345,
"y": -18.7475745,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_2",
+ "hole_shape": "circle",
"x": -129.3791685,
"y": -18.7475745,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_3",
+ "hole_shape": "circle",
"x": -128.5875015,
"y": -18.7475745,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_4",
+ "hole_shape": "circle",
"x": -127.7958345,
"y": -18.7475745,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_5",
+ "hole_shape": "circle",
"x": -127.0041685,
"y": -18.7475745,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_6",
+ "hole_shape": "circle",
"x": -126.2125015,
"y": -18.7475745,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_7",
+ "hole_shape": "circle",
"x": -54.7625015,
"y": 44.5649255,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_8",
+ "hole_shape": "circle",
"x": -53.9708345,
"y": 44.5649255,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_9",
+ "hole_shape": "circle",
"x": -53.179168499999996,
"y": 44.5649255,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_10",
+ "hole_shape": "circle",
"x": -52.3875015,
"y": 44.5649255,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_11",
+ "hole_shape": "circle",
"x": -51.5958345,
"y": 44.5649255,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_12",
+ "hole_shape": "circle",
"x": -50.804168499999996,
"y": 44.5649255,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_13",
+ "hole_shape": "circle",
"x": -50.0125015,
"y": 44.5649255,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_14",
+ "hole_shape": "circle",
"x": 50.0125005,
"y": 44.5649255,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_15",
+ "hole_shape": "circle",
"x": 50.8041675,
"y": 44.5649255,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_16",
+ "hole_shape": "circle",
"x": 51.595833500000005,
"y": 44.5649255,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_17",
+ "hole_shape": "circle",
"x": 52.3875005,
"y": 44.5649255,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_18",
+ "hole_shape": "circle",
"x": 53.1791675,
"y": 44.5649255,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_19",
+ "hole_shape": "circle",
"x": 53.970833500000005,
"y": 44.5649255,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_20",
+ "hole_shape": "circle",
"x": 54.7625005,
"y": 44.5649255,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_21",
+ "hole_shape": "circle",
"x": -111.91250149999999,
"y": -18.7475745,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_22",
+ "hole_shape": "circle",
"x": -111.12083449999999,
"y": -18.7475745,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_23",
+ "hole_shape": "circle",
"x": -110.3291685,
"y": -18.7475745,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_24",
+ "hole_shape": "circle",
"x": -109.53750149999999,
"y": -18.7475745,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_25",
+ "hole_shape": "circle",
"x": -108.74583449999999,
"y": -18.7475745,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_26",
+ "hole_shape": "circle",
"x": -107.9541685,
"y": -18.7475745,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_27",
+ "hole_shape": "circle",
"x": -107.16250149999999,
"y": -18.7475745,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_28",
+ "hole_shape": "circle",
"x": 88.1124985,
"y": 44.5649255,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_29",
+ "hole_shape": "circle",
"x": 88.9041655,
"y": 44.5649255,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_30",
+ "hole_shape": "circle",
"x": 89.6958315,
"y": 44.5649255,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_31",
+ "hole_shape": "circle",
"x": 90.4874985,
"y": 44.5649255,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_32",
+ "hole_shape": "circle",
"x": 91.2791655,
"y": 44.5649255,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_33",
+ "hole_shape": "circle",
"x": 92.0708315,
"y": 44.5649255,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_34",
+ "hole_shape": "circle",
"x": 92.8624985,
"y": 44.5649255,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_35",
+ "hole_shape": "circle",
"x": 126.21249850000001,
"y": -18.7475745,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_36",
+ "hole_shape": "circle",
"x": 127.00416550000001,
"y": -18.7475745,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_37",
+ "hole_shape": "circle",
"x": 127.7958315,
"y": -18.7475745,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_38",
+ "hole_shape": "circle",
"x": 128.5874985,
"y": -18.7475745,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_39",
+ "hole_shape": "circle",
"x": 129.3791655,
"y": -18.7475745,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_40",
+ "hole_shape": "circle",
"x": 130.17083150000002,
"y": -18.7475745,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_41",
+ "hole_shape": "circle",
"x": 130.9624985,
"y": -18.7475745,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_42",
+ "hole_shape": "circle",
"x": 107.1624985,
"y": -18.7475745,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_43",
+ "hole_shape": "circle",
"x": 107.9541655,
"y": -18.7475745,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_44",
+ "hole_shape": "circle",
"x": 108.7458315,
"y": -18.7475745,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_45",
+ "hole_shape": "circle",
"x": 109.5374985,
"y": -18.7475745,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_46",
+ "hole_shape": "circle",
"x": 110.3291655,
"y": -18.7475745,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_47",
+ "hole_shape": "circle",
"x": 111.1208315,
"y": -18.7475745,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_48",
+ "hole_shape": "circle",
"x": 111.9124985,
"y": -18.7475745,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_49",
+ "hole_shape": "circle",
"x": -92.8625015,
"y": 44.5649255,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_50",
+ "hole_shape": "circle",
"x": -92.07083449999999,
"y": 44.5649255,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_51",
+ "hole_shape": "circle",
"x": -91.2791685,
"y": 44.5649255,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_52",
+ "hole_shape": "circle",
"x": -90.4875015,
"y": 44.5649255,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_53",
+ "hole_shape": "circle",
"x": -89.69583449999999,
"y": 44.5649255,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_54",
+ "hole_shape": "circle",
"x": -88.9041685,
"y": 44.5649255,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_55",
+ "hole_shape": "circle",
"x": -88.1125015,
"y": 44.5649255,
- "hole_diameter": 0.5,
- "hole_shape": "circle"
+ "hole_diameter": 0.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_56",
+ "hole_shape": "circle",
"x": -27.837501499999995,
"y": 31.9586755,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_57",
+ "hole_shape": "circle",
"x": -28.337501499999995,
"y": 37.108675500000004,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_58",
+ "hole_shape": "circle",
"x": -33.337501499999995,
"y": 26.0586755,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_59",
+ "hole_shape": "circle",
"x": -33.337501499999995,
"y": 31.9586755,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_60",
+ "hole_shape": "circle",
"x": -38.337501499999995,
"y": 28.258675500000003,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_61",
+ "hole_shape": "circle",
"x": -38.837501499999995,
"y": 31.9586755,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_62",
+ "hole_shape": "circle",
"x": -8.787501499999996,
"y": 3.383675499999999,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_63",
+ "hole_shape": "circle",
"x": -9.287501499999994,
"y": 8.533675499999998,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_64",
+ "hole_shape": "circle",
"x": -14.287501499999996,
"y": -2.516324500000003,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_65",
+ "hole_shape": "circle",
"x": -14.287501499999996,
"y": 3.383675499999999,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_66",
+ "hole_shape": "circle",
"x": -19.287501499999998,
"y": -0.31632450000000034,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_67",
+ "hole_shape": "circle",
"x": -19.787501499999998,
"y": 3.383675499999999,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_68",
+ "hole_shape": "circle",
"x": 115.0374985,
"y": 10.5274255,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_69",
+ "hole_shape": "circle",
"x": 114.5374985,
"y": 15.677425499999998,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_70",
+ "hole_shape": "circle",
"x": 109.5374985,
"y": 4.627425500000001,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_71",
+ "hole_shape": "circle",
"x": 109.5374985,
"y": 10.5274255,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_72",
+ "hole_shape": "circle",
"x": 104.5374985,
"y": 6.8274255,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_73",
+ "hole_shape": "circle",
"x": 104.0374985,
"y": 10.5274255,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_74",
+ "hole_shape": "circle",
"x": 95.9874985,
"y": -3.7600745000000018,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_75",
+ "hole_shape": "circle",
"x": 95.4874985,
"y": 1.3899254999999968,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_76",
+ "hole_shape": "circle",
"x": 90.4874985,
"y": -9.6600745,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_77",
+ "hole_shape": "circle",
"x": 90.4874985,
"y": -3.7600745000000018,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_78",
+ "hole_shape": "circle",
"x": 85.4874985,
"y": -7.460074500000001,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_79",
+ "hole_shape": "circle",
"x": 84.9874985,
"y": -3.7600745000000018,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_80",
+ "hole_shape": "circle",
"x": 67.4124985,
"y": -25.1913245,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_81",
+ "hole_shape": "circle",
"x": 66.91249850000001,
"y": -20.0413245,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_82",
+ "hole_shape": "circle",
"x": 61.912498500000005,
"y": -31.0913245,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_83",
+ "hole_shape": "circle",
"x": 61.912498500000005,
"y": -25.1913245,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_84",
+ "hole_shape": "circle",
"x": 56.912498500000005,
"y": -28.891324500000003,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_85",
+ "hole_shape": "circle",
"x": 56.412498500000005,
"y": -25.1913245,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_86",
+ "hole_shape": "circle",
"x": 19.787498500000005,
"y": 3.383675499999999,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_87",
+ "hole_shape": "circle",
"x": 19.287498500000005,
"y": 8.533675499999998,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_88",
+ "hole_shape": "circle",
"x": 14.287498500000003,
"y": -2.516324500000003,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_89",
+ "hole_shape": "circle",
"x": 14.287498500000003,
"y": 3.383675499999999,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_90",
+ "hole_shape": "circle",
"x": 9.287498500000002,
"y": -0.31632450000000034,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_91",
+ "hole_shape": "circle",
"x": 8.787498500000003,
"y": 3.383675499999999,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_92",
+ "hole_shape": "circle",
"x": -56.4125015,
"y": -25.1913245,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_93",
+ "hole_shape": "circle",
"x": -56.9125015,
"y": -20.0413245,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_94",
+ "hole_shape": "circle",
"x": -61.9125015,
"y": -31.0913245,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_95",
+ "hole_shape": "circle",
"x": -61.9125015,
"y": -25.1913245,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_96",
+ "hole_shape": "circle",
"x": -66.9125015,
"y": -28.891324500000003,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_97",
+ "hole_shape": "circle",
"x": -67.41250149999999,
"y": -25.1913245,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_98",
+ "hole_shape": "circle",
"x": -46.8875015,
"y": 34.3399255,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_99",
+ "hole_shape": "circle",
"x": -47.3875015,
"y": 39.4899255,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_100",
+ "hole_shape": "circle",
"x": -52.3875015,
"y": 28.4399255,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_101",
+ "hole_shape": "circle",
"x": -52.3875015,
"y": 34.3399255,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_102",
+ "hole_shape": "circle",
"x": -57.3875015,
"y": 30.6399255,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_103",
+ "hole_shape": "circle",
"x": -57.8875015,
"y": 34.3399255,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_104",
+ "hole_shape": "circle",
"x": 76.9374985,
"y": -1.3788245000000003,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_105",
+ "hole_shape": "circle",
"x": 76.4374985,
"y": 3.7711754999999982,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_106",
+ "hole_shape": "circle",
"x": 71.4374985,
"y": -7.278824499999999,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_107",
+ "hole_shape": "circle",
"x": 71.4374985,
"y": -1.3788245000000003,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_108",
+ "hole_shape": "circle",
"x": 66.4374985,
"y": -5.0788245,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_109",
+ "hole_shape": "circle",
"x": 65.9374985,
"y": -1.3788245000000003,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_110",
+ "hole_shape": "circle",
"x": 76.9374985,
"y": 17.671175499999997,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_111",
+ "hole_shape": "circle",
"x": 76.4374985,
"y": 22.8211755,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_112",
+ "hole_shape": "circle",
"x": 71.4374985,
"y": 11.771175499999998,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_113",
+ "hole_shape": "circle",
"x": 71.4374985,
"y": 17.6711755,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_114",
+ "hole_shape": "circle",
"x": 66.4374985,
"y": 13.9711755,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_115",
+ "hole_shape": "circle",
"x": 65.9374985,
"y": 17.6711755,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_116",
+ "hole_shape": "circle",
"x": 115.0374985,
"y": -8.522574500000001,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_117",
+ "hole_shape": "circle",
"x": 114.5374985,
"y": -3.3725745000000025,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_118",
+ "hole_shape": "circle",
"x": 109.5374985,
"y": -14.422574500000003,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_119",
+ "hole_shape": "circle",
"x": 109.5374985,
"y": -8.522574500000001,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_120",
+ "hole_shape": "circle",
"x": 104.5374985,
"y": -12.2225745,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_121",
+ "hole_shape": "circle",
"x": 104.0374985,
"y": -8.522574500000001,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_122",
+ "hole_shape": "circle",
"x": -84.9875015,
"y": 34.3399255,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_123",
+ "hole_shape": "circle",
"x": -85.4875015,
"y": 39.4899255,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_124",
+ "hole_shape": "circle",
"x": -90.4875015,
"y": 28.4399255,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_125",
+ "hole_shape": "circle",
"x": -90.4875015,
"y": 34.3399255,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_126",
+ "hole_shape": "circle",
"x": -95.4875015,
"y": 30.6399255,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_127",
+ "hole_shape": "circle",
"x": -95.9875015,
"y": 34.3399255,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_128",
+ "hole_shape": "circle",
"x": -65.9375015,
"y": 17.671175499999997,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_129",
+ "hole_shape": "circle",
"x": -66.4375015,
"y": 22.8211755,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_130",
+ "hole_shape": "circle",
"x": -71.4375015,
"y": 11.771175499999998,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_131",
+ "hole_shape": "circle",
"x": -71.4375015,
"y": 17.6711755,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_132",
+ "hole_shape": "circle",
"x": -76.4375015,
"y": 13.9711755,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_133",
+ "hole_shape": "circle",
"x": -76.9375015,
"y": 17.6711755,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_134",
+ "hole_shape": "circle",
"x": -84.9875015,
"y": 15.289925499999999,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_135",
+ "hole_shape": "circle",
"x": -85.4875015,
"y": 20.4399255,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_136",
+ "hole_shape": "circle",
"x": -90.4875015,
"y": 9.3899255,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_137",
+ "hole_shape": "circle",
"x": -90.4875015,
"y": 15.289925499999999,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_138",
+ "hole_shape": "circle",
"x": -95.4875015,
"y": 11.5899255,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_139",
+ "hole_shape": "circle",
"x": -95.9875015,
"y": 15.2899255,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_140",
+ "hole_shape": "circle",
"x": 115.0374985,
"y": 29.577425499999997,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_141",
+ "hole_shape": "circle",
"x": 114.5374985,
"y": 34.727425499999995,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_142",
+ "hole_shape": "circle",
"x": 109.5374985,
"y": 23.6774255,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_143",
+ "hole_shape": "circle",
"x": 109.5374985,
"y": 29.5774255,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_144",
+ "hole_shape": "circle",
"x": 104.5374985,
"y": 25.8774255,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_145",
+ "hole_shape": "circle",
"x": 104.0374985,
"y": 29.5774255,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_146",
+ "hole_shape": "circle",
"x": 134.0874985,
"y": 29.577425499999997,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_147",
+ "hole_shape": "circle",
"x": 133.5874985,
"y": 34.727425499999995,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_148",
+ "hole_shape": "circle",
"x": 128.5874985,
"y": 23.6774255,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_149",
+ "hole_shape": "circle",
"x": 128.5874985,
"y": 29.5774255,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_150",
+ "hole_shape": "circle",
"x": 123.58749850000001,
"y": 25.8774255,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_151",
+ "hole_shape": "circle",
"x": 123.08749850000001,
"y": 29.5774255,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_152",
+ "hole_shape": "circle",
"x": -35.716949301688366,
"y": -28.505787531327456,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_153",
+ "hole_shape": "circle",
"x": -35.14075203583735,
"y": -23.36375517915134,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_154",
+ "hole_shape": "circle",
"x": -42.31850960633309,
"y": -33.14037505818884,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_155",
+ "hole_shape": "circle",
"x": -41.0979755,
"y": -27.3680015,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_156",
+ "hole_shape": "circle",
"x": -46.755237192267224,
"y": -29.95361364129377,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_157",
+ "hole_shape": "circle",
"x": -46.47900169831163,
"y": -26.23021546867254,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_158",
+ "hole_shape": "circle",
"x": 38.8374985,
"y": 31.9586755,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_159",
+ "hole_shape": "circle",
"x": 38.3374985,
"y": 37.108675500000004,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_160",
+ "hole_shape": "circle",
"x": 33.3374985,
"y": 26.0586755,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_161",
+ "hole_shape": "circle",
"x": 33.3374985,
"y": 31.9586755,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_162",
+ "hole_shape": "circle",
"x": 28.337498500000002,
"y": 28.258675500000003,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_163",
+ "hole_shape": "circle",
"x": 27.837498500000002,
"y": 31.9586755,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_164",
+ "hole_shape": "circle",
"x": -65.9375015,
"y": 36.7211755,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_165",
+ "hole_shape": "circle",
"x": -66.4375015,
"y": 41.8711755,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_166",
+ "hole_shape": "circle",
"x": -71.4375015,
"y": 30.8211755,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_167",
+ "hole_shape": "circle",
"x": -71.4375015,
"y": 36.7211755,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_168",
+ "hole_shape": "circle",
"x": -76.4375015,
"y": 33.0211755,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_169",
+ "hole_shape": "circle",
"x": -76.9375015,
"y": 36.7211755,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_170",
+ "hole_shape": "circle",
"x": 57.88749850000001,
"y": 15.289925499999999,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_171",
+ "hole_shape": "circle",
"x": 57.38749850000001,
"y": 20.4399255,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_172",
+ "hole_shape": "circle",
"x": 52.38749850000001,
"y": 9.3899255,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_173",
+ "hole_shape": "circle",
"x": 52.38749850000001,
"y": 15.289925499999999,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_174",
+ "hole_shape": "circle",
"x": 47.38749850000001,
"y": 11.5899255,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_175",
+ "hole_shape": "circle",
"x": 46.88749850000001,
"y": 15.2899255,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_176",
+ "hole_shape": "circle",
"x": -104.03750149999999,
"y": 10.5274255,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_177",
+ "hole_shape": "circle",
"x": -104.53750149999999,
"y": 15.677425499999998,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_178",
+ "hole_shape": "circle",
"x": -109.53750149999999,
"y": 4.627425500000001,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_179",
+ "hole_shape": "circle",
"x": -109.53750149999999,
"y": 10.5274255,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_180",
+ "hole_shape": "circle",
"x": -114.53750149999999,
"y": 6.8274255,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_181",
+ "hole_shape": "circle",
"x": -115.03750149999999,
"y": 10.5274255,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_182",
+ "hole_shape": "circle",
"x": -123.0875015,
"y": -8.522574500000001,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_183",
+ "hole_shape": "circle",
"x": -123.5875015,
"y": -3.3725745000000025,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_184",
+ "hole_shape": "circle",
"x": -128.5875015,
"y": -14.422574500000003,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_185",
+ "hole_shape": "circle",
"x": -128.5875015,
"y": -8.522574500000001,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_186",
+ "hole_shape": "circle",
"x": -133.5875015,
"y": -12.2225745,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_187",
+ "hole_shape": "circle",
"x": -134.0875015,
"y": -8.522574500000001,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_188",
+ "hole_shape": "circle",
"x": 38.8374985,
"y": 12.9086755,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_189",
+ "hole_shape": "circle",
"x": 38.3374985,
"y": 18.0586755,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_190",
+ "hole_shape": "circle",
"x": 33.3374985,
"y": 7.008675499999999,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_191",
+ "hole_shape": "circle",
"x": 33.3374985,
"y": 12.9086755,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_192",
+ "hole_shape": "circle",
"x": 28.337498500000002,
"y": 9.2086755,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_193",
+ "hole_shape": "circle",
"x": 27.837498500000002,
"y": 12.9086755,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_194",
+ "hole_shape": "circle",
"x": 21.482656849981385,
"y": -34.47821176343408,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_195",
+ "hole_shape": "circle",
"x": 25.98938153756226,
"y": -31.936178602684777,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_196",
+ "hole_shape": "circle",
"x": 13.861201108316177,
"y": -31.837489820889125,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_197",
+ "hole_shape": "circle",
"x": 19.256133500000004,
"y": -29.449037500000003,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_198",
+ "hole_shape": "circle",
"x": 13.848758677343096,
"y": -26.374903877774678,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_199",
+ "hole_shape": "circle",
"x": 17.029610150018623,
"y": -24.419863236565924,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_200",
+ "hole_shape": "circle",
"x": -8.787501499999996,
"y": 22.4336755,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_201",
+ "hole_shape": "circle",
"x": -9.287501499999994,
"y": 27.5836755,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_202",
+ "hole_shape": "circle",
"x": -14.287501499999996,
"y": 16.5336755,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_203",
+ "hole_shape": "circle",
"x": -14.287501499999996,
"y": 22.4336755,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_204",
+ "hole_shape": "circle",
"x": -19.287501499999998,
"y": 18.7336755,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_205",
+ "hole_shape": "circle",
"x": -19.787501499999998,
"y": 22.4336755,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_206",
+ "hole_shape": "circle",
"x": -46.8875015,
"y": -3.7600745000000018,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_207",
+ "hole_shape": "circle",
"x": -47.3875015,
"y": 1.3899254999999968,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_208",
+ "hole_shape": "circle",
"x": -52.3875015,
"y": -9.6600745,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_209",
+ "hole_shape": "circle",
"x": -52.3875015,
"y": -3.7600745000000018,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_210",
+ "hole_shape": "circle",
"x": -57.3875015,
"y": -7.460074500000001,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_211",
+ "hole_shape": "circle",
"x": -57.8875015,
"y": -3.7600745000000018,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_212",
+ "hole_shape": "circle",
"x": 95.9874985,
"y": 34.3399255,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_213",
+ "hole_shape": "circle",
"x": 95.4874985,
"y": 39.4899255,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_214",
+ "hole_shape": "circle",
"x": 90.4874985,
"y": 28.4399255,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_215",
+ "hole_shape": "circle",
"x": 90.4874985,
"y": 34.3399255,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_216",
+ "hole_shape": "circle",
"x": 85.4874985,
"y": 30.6399255,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_217",
+ "hole_shape": "circle",
"x": 84.9874985,
"y": 34.3399255,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_218",
+ "hole_shape": "circle",
"x": 38.8374985,
"y": -6.1413245,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_219",
+ "hole_shape": "circle",
"x": 38.3374985,
"y": -0.991324500000001,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_220",
+ "hole_shape": "circle",
"x": 33.3374985,
"y": -12.041324500000002,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_221",
+ "hole_shape": "circle",
"x": 33.3374985,
"y": -6.1413245,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_222",
+ "hole_shape": "circle",
"x": 28.337498500000002,
"y": -9.841324499999999,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_223",
+ "hole_shape": "circle",
"x": 27.837498500000002,
"y": -6.1413245,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_224",
+ "hole_shape": "circle",
"x": 46.47897883937963,
"y": -26.230121552221547,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_225",
+ "hole_shape": "circle",
"x": 44.92432703924347,
"y": -21.29498652060048,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_226",
+ "hole_shape": "circle",
"x": 42.318607353071435,
"y": -33.14035375497087,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_227",
+ "hole_shape": "circle",
"x": 41.097972500000004,
"y": -27.3680015,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_228",
+ "hole_shape": "circle",
"x": 36.97163142906949,
"y": -32.02238753538125,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_229",
+ "hole_shape": "circle",
"x": 35.71696616062038,
"y": -28.50588144777845,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_230",
+ "hole_shape": "circle",
"x": -65.9375015,
"y": -1.3788245000000003,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_231",
+ "hole_shape": "circle",
"x": -66.4375015,
"y": 3.7711754999999982,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_232",
+ "hole_shape": "circle",
"x": -71.4375015,
"y": -7.278824499999999,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_233",
+ "hole_shape": "circle",
"x": -71.4375015,
"y": -1.3788245000000003,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_234",
+ "hole_shape": "circle",
"x": -76.4375015,
"y": -5.0788245,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_235",
+ "hole_shape": "circle",
"x": -76.9375015,
"y": -1.3788245000000003,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_236",
+ "hole_shape": "circle",
"x": 134.0874985,
"y": -8.522574500000001,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_237",
+ "hole_shape": "circle",
"x": 133.5874985,
"y": -3.3725745000000025,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_238",
+ "hole_shape": "circle",
"x": 128.5874985,
"y": -14.422574500000003,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_239",
+ "hole_shape": "circle",
"x": 128.5874985,
"y": -8.522574500000001,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_240",
+ "hole_shape": "circle",
"x": 123.58749850000001,
"y": -12.2225745,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_241",
+ "hole_shape": "circle",
"x": 123.08749850000001,
"y": -8.522574500000001,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_242",
+ "hole_shape": "circle",
"x": -84.9875015,
"y": -3.7600745000000018,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_243",
+ "hole_shape": "circle",
"x": -85.4875015,
"y": 1.3899254999999968,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_244",
+ "hole_shape": "circle",
"x": -90.4875015,
"y": -9.6600745,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_245",
+ "hole_shape": "circle",
"x": -90.4875015,
"y": -3.7600745000000018,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_246",
+ "hole_shape": "circle",
"x": -95.4875015,
"y": -7.460074500000001,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_247",
+ "hole_shape": "circle",
"x": -95.9875015,
"y": -3.7600745000000018,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_248",
+ "hole_shape": "circle",
"x": -123.0875015,
"y": 29.577425499999997,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_249",
+ "hole_shape": "circle",
"x": -123.5875015,
"y": 34.727425499999995,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_250",
+ "hole_shape": "circle",
"x": -128.5875015,
"y": 23.6774255,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_251",
+ "hole_shape": "circle",
"x": -128.5875015,
"y": 29.5774255,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_252",
+ "hole_shape": "circle",
"x": -133.5875015,
"y": 25.8774255,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_253",
+ "hole_shape": "circle",
"x": -134.0875015,
"y": 29.5774255,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_254",
+ "hole_shape": "circle",
"x": 76.9374985,
"y": 36.7211755,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_255",
+ "hole_shape": "circle",
"x": 76.4374985,
"y": 41.8711755,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_256",
+ "hole_shape": "circle",
"x": 71.4374985,
"y": 30.8211755,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_257",
+ "hole_shape": "circle",
"x": 71.4374985,
"y": 36.7211755,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_258",
+ "hole_shape": "circle",
"x": 66.4374985,
"y": 33.0211755,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_259",
+ "hole_shape": "circle",
"x": 65.9374985,
"y": 36.7211755,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_260",
+ "hole_shape": "circle",
"x": -123.0875015,
"y": 10.5274255,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_261",
+ "hole_shape": "circle",
"x": -123.5875015,
"y": 15.677425499999998,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_262",
+ "hole_shape": "circle",
"x": -128.5875015,
"y": 4.627425500000001,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_263",
+ "hole_shape": "circle",
"x": -128.5875015,
"y": 10.5274255,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_264",
+ "hole_shape": "circle",
"x": -133.5875015,
"y": 6.8274255,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_265",
+ "hole_shape": "circle",
"x": -134.0875015,
"y": 10.5274255,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_266",
+ "hole_shape": "circle",
"x": -104.03750149999999,
"y": 29.577425499999997,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_267",
+ "hole_shape": "circle",
"x": -104.53750149999999,
"y": 34.727425499999995,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_268",
+ "hole_shape": "circle",
"x": -109.53750149999999,
"y": 23.6774255,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_269",
+ "hole_shape": "circle",
"x": -109.53750149999999,
"y": 29.5774255,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_270",
+ "hole_shape": "circle",
"x": -114.53750149999999,
"y": 25.8774255,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_271",
+ "hole_shape": "circle",
"x": -115.03750149999999,
"y": 29.5774255,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_272",
+ "hole_shape": "circle",
"x": 134.0874985,
"y": 10.5274255,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_273",
+ "hole_shape": "circle",
"x": 133.5874985,
"y": 15.677425499999998,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_274",
+ "hole_shape": "circle",
"x": 128.5874985,
"y": 4.627425500000001,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_275",
+ "hole_shape": "circle",
"x": 128.5874985,
"y": 10.5274255,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_276",
+ "hole_shape": "circle",
"x": 123.58749850000001,
"y": 6.8274255,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_277",
+ "hole_shape": "circle",
"x": 123.08749850000001,
"y": 10.5274255,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_278",
+ "hole_shape": "circle",
"x": 95.9874985,
"y": 15.289925499999999,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_279",
+ "hole_shape": "circle",
"x": 95.4874985,
"y": 20.4399255,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_280",
+ "hole_shape": "circle",
"x": 90.4874985,
"y": 9.3899255,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_281",
+ "hole_shape": "circle",
"x": 90.4874985,
"y": 15.289925499999999,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_282",
+ "hole_shape": "circle",
"x": 85.4874985,
"y": 11.5899255,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_283",
+ "hole_shape": "circle",
"x": 84.9874985,
"y": 15.2899255,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_284",
+ "hole_shape": "circle",
"x": -104.03750149999999,
"y": -8.522574500000001,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_285",
+ "hole_shape": "circle",
"x": -104.53750149999999,
"y": -3.3725745000000025,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_286",
+ "hole_shape": "circle",
"x": -109.53750149999999,
"y": -14.422574500000003,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_287",
+ "hole_shape": "circle",
"x": -109.53750149999999,
"y": -8.522574500000001,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_288",
+ "hole_shape": "circle",
"x": -114.53750149999999,
"y": -12.2225745,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_289",
+ "hole_shape": "circle",
"x": -115.03750149999999,
"y": -8.522574500000001,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_290",
+ "hole_shape": "circle",
"x": -17.029613150018616,
"y": -24.419863236565924,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_291",
+ "hole_shape": "circle",
"x": -21.94116026486883,
"y": -22.792225396441005,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_292",
+ "hole_shape": "circle",
"x": -13.86120410831617,
"y": -31.837489820889125,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_293",
+ "hole_shape": "circle",
"x": -19.256136499999997,
"y": -29.449037500000003,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_294",
+ "hole_shape": "circle",
"x": -17.89698595003651,
"y": -35.51885708401846,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_295",
+ "hole_shape": "circle",
"x": -21.482659849981378,
"y": -34.47821176343408,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_296",
+ "hole_shape": "circle",
"x": 57.88749850000001,
"y": 34.3399255,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_297",
+ "hole_shape": "circle",
"x": 57.38749850000001,
"y": 39.4899255,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_298",
+ "hole_shape": "circle",
"x": 52.38749850000001,
"y": 28.4399255,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_299",
+ "hole_shape": "circle",
"x": 52.38749850000001,
"y": 34.3399255,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_300",
+ "hole_shape": "circle",
"x": 47.38749850000001,
"y": 30.6399255,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_301",
+ "hole_shape": "circle",
"x": 46.88749850000001,
"y": 34.3399255,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_302",
+ "hole_shape": "circle",
"x": -27.837501499999995,
"y": -6.1413245,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_303",
+ "hole_shape": "circle",
"x": -28.337501499999995,
"y": -0.991324500000001,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_304",
+ "hole_shape": "circle",
"x": -33.337501499999995,
"y": -12.041324500000002,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_305",
+ "hole_shape": "circle",
"x": -33.337501499999995,
"y": -6.1413245,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_306",
+ "hole_shape": "circle",
"x": -38.337501499999995,
"y": -9.841324499999999,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_307",
+ "hole_shape": "circle",
"x": -38.837501499999995,
"y": -6.1413245,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_308",
+ "hole_shape": "circle",
"x": -46.8875015,
"y": 15.289925499999999,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_309",
+ "hole_shape": "circle",
"x": -47.3875015,
"y": 20.4399255,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_310",
+ "hole_shape": "circle",
"x": -52.3875015,
"y": 9.3899255,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_311",
+ "hole_shape": "circle",
"x": -52.3875015,
"y": 15.289925499999999,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_312",
+ "hole_shape": "circle",
"x": -57.3875015,
"y": 11.5899255,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_313",
+ "hole_shape": "circle",
"x": -57.8875015,
"y": 15.2899255,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_314",
+ "hole_shape": "circle",
"x": -27.837501499999995,
"y": 12.9086755,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_315",
+ "hole_shape": "circle",
"x": -28.337501499999995,
"y": 18.0586755,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_316",
+ "hole_shape": "circle",
"x": -33.337501499999995,
"y": 7.008675499999999,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_317",
+ "hole_shape": "circle",
"x": -33.337501499999995,
"y": 12.9086755,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_318",
+ "hole_shape": "circle",
"x": -38.337501499999995,
"y": 9.2086755,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_319",
+ "hole_shape": "circle",
"x": -38.837501499999995,
"y": 12.9086755,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_320",
+ "hole_shape": "circle",
"x": 19.787498500000005,
"y": 22.4336755,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_321",
+ "hole_shape": "circle",
"x": 19.287498500000005,
"y": 27.5836755,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_322",
+ "hole_shape": "circle",
"x": 14.287498500000003,
"y": 16.5336755,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_323",
+ "hole_shape": "circle",
"x": 14.287498500000003,
"y": 22.4336755,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_324",
+ "hole_shape": "circle",
"x": 9.287498500000002,
"y": 18.7336755,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_325",
+ "hole_shape": "circle",
"x": 8.787498500000003,
"y": 22.4336755,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_326",
+ "hole_shape": "circle",
"x": 57.88749850000001,
"y": -3.7600745000000018,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_327",
+ "hole_shape": "circle",
"x": 57.38749850000001,
"y": 1.3899254999999968,
- "hole_diameter": 1.5,
- "hole_shape": "circle"
+ "hole_diameter": 1.5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_328",
+ "hole_shape": "circle",
"x": 52.38749850000001,
"y": -9.6600745,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_329",
+ "hole_shape": "circle",
"x": 52.38749850000001,
"y": -3.7600745000000018,
- "hole_diameter": 5,
- "hole_shape": "circle"
+ "hole_diameter": 5
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_330",
+ "hole_shape": "circle",
"x": 47.38749850000001,
"y": -7.460074500000001,
- "hole_diameter": 3,
- "hole_shape": "circle"
+ "hole_diameter": 3
},
{
"type": "pcb_hole",
"pcb_hole_id": "pcb_hole_331",
+ "hole_shape": "circle",
"x": 46.88749850000001,
"y": -3.7600745000000018,
- "hole_diameter": 1.9,
- "hole_shape": "circle"
+ "hole_diameter": 1.9
},
{
"type": "pcb_trace",
@@ -412116,7 +411616,8 @@
"x": 14.287498500000003,
"y": -8.662574500000002
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412129,7 +411630,8 @@
"x": 8.232498500000004,
"y": -6.422574500000003
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412142,7 +411644,8 @@
"x": 90.4874985,
"y": -16.547574500000003
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412155,7 +411658,8 @@
"x": 91.2374985,
"y": -16.547574500000003
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412168,7 +411672,8 @@
"x": -90.4875015,
"y": -16.547574500000003
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412181,7 +411686,8 @@
"x": -89.7375015,
"y": -16.547574500000003
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412194,7 +411700,8 @@
"x": -14.287501499999996,
"y": -8.662574500000002
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412207,7 +411714,8 @@
"x": -8.307501499999995,
"y": -6.352574500000003
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412220,7 +411728,8 @@
"x": -72.5875015,
"y": -27.741274500000003
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412233,7 +411742,8 @@
"x": -105.07875150000001,
"y": 0.06742550000000236
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412246,7 +411756,8 @@
"x": 74.6425025,
"y": -27.8113745
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412259,7 +411770,8 @@
"x": -22.012501499999996,
"y": 36.962425499999995
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412272,7 +411784,8 @@
"x": -33.337501499999995,
"y": 23.1586755
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412285,7 +411798,8 @@
"x": -14.287501499999998,
"y": -5.416324500000002
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412298,7 +411812,8 @@
"x": 71.1025025,
"y": -23.191374500000002
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412311,7 +411826,8 @@
"x": -109.53750149999999,
"y": -1.835074500000001
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412324,7 +411840,8 @@
"x": 104.8124985,
"y": 3.8124255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412337,7 +411854,8 @@
"x": 109.53750050000001,
"y": -1.835074500000001
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412350,7 +411868,8 @@
"x": -33.337501499999995,
"y": 19.5961755
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412363,7 +411882,8 @@
"x": 74.20749850000001,
"y": -21.7525245
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412376,7 +411896,8 @@
"x": -57.421201499999995,
"y": -15.481324500000007
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412389,7 +411910,8 @@
"x": 85.6725065,
"y": -14.845074500000003
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412402,7 +411924,8 @@
"x": 79.7174985,
"y": -8.502574499999998
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412415,7 +411938,8 @@
"x": -24.282501499999995,
"y": 36.1624255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412428,7 +411952,8 @@
"x": 85.6424985,
"y": -10.657574500000003
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412441,7 +411966,8 @@
"x": 18.917498500000004,
"y": -12.212574500000002
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412454,7 +411980,8 @@
"x": -85.6974995,
"y": -13.521324499999999
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412467,7 +411994,8 @@
"x": 70.0525025,
"y": -23.131374500000007
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412480,7 +412008,8 @@
"x": 61.912498500000005,
"y": -33.9913245
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412493,7 +412022,8 @@
"x": 14.287498500000002,
"y": -5.416324500000002
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412506,7 +412036,8 @@
"x": 62.077498500000004,
"y": -9.502574500000001
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412519,7 +412050,8 @@
"x": -61.9125015,
"y": -33.9913245
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412532,7 +412064,8 @@
"x": 74.61250050000001,
"y": -10.641324500000003
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412545,7 +412078,8 @@
"x": -52.3875015,
"y": 25.5399255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412558,7 +412092,8 @@
"x": 71.4374985,
"y": -10.178824499999997
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412571,7 +412106,8 @@
"x": 33.3374985,
"y": 38.6461755
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412584,7 +412120,8 @@
"x": -74.6524975,
"y": -7.862624499999999
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412597,7 +412134,8 @@
"x": -93.0225015,
"y": -15.642574500000002
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412610,7 +412148,8 @@
"x": -109.53750149999999,
"y": 17.2149255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412623,7 +412162,8 @@
"x": -84.6074995,
"y": -13.311274500000003
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412636,7 +412176,8 @@
"x": 12.287498500000003,
"y": 31.5974255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412649,7 +412190,8 @@
"x": 52.3875005,
"y": 21.9774255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412662,7 +412204,8 @@
"x": -52.3875015,
"y": 41.0274255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412675,7 +412218,8 @@
"x": -78.8774995,
"y": -7.8926245
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412688,7 +412232,8 @@
"x": -75.6674975,
"y": -7.862674500000001
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412701,7 +412246,8 @@
"x": 71.4374985,
"y": 8.8711755
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412714,7 +412260,8 @@
"x": -22.687501499999996,
"y": 31.9037255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412727,7 +412274,8 @@
"x": 33.3374985,
"y": 0.5461755000000004
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412740,7 +412288,8 @@
"x": -39.714071336696726,
"y": -20.814763161492678
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412753,7 +412302,8 @@
"x": -49.83250149999999,
"y": -12.142574500000002
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412766,7 +412316,8 @@
"x": 109.5374985,
"y": -17.3225745
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412779,7 +412330,8 @@
"x": -90.4875015,
"y": 25.5399255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412792,7 +412344,8 @@
"x": -71.4375015,
"y": 8.8711755
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412805,7 +412358,8 @@
"x": -71.4375015,
"y": 5.3086755
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412818,7 +412372,8 @@
"x": -90.4875015,
"y": 6.489925499999998
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412831,7 +412386,8 @@
"x": 109.5374985,
"y": 20.7774255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412844,7 +412400,8 @@
"x": -54.867501499999996,
"y": -13.8612745
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412857,7 +412414,8 @@
"x": 128.5874985,
"y": 20.7774255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412870,7 +412428,8 @@
"x": -42.918433150123924,
"y": -35.97764341729861
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412883,7 +412442,8 @@
"x": 128.5875005,
"y": 17.2149255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412896,7 +412456,8 @@
"x": -71.4375015,
"y": 43.4086755
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412909,7 +412470,8 @@
"x": 90.48750050000001,
"y": 2.9274254999999982
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412922,7 +412484,8 @@
"x": 19.447502500000006,
"y": 36.0899255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412935,7 +412498,8 @@
"x": 33.3374985,
"y": 23.1586755
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412948,7 +412512,8 @@
"x": -19.417501499999997,
"y": 36.2774255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412961,7 +412526,8 @@
"x": -71.4375015,
"y": 27.921175499999997
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412974,7 +412540,8 @@
"x": -128.5875015,
"y": 17.2149255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -412987,7 +412554,8 @@
"x": -75.1775015,
"y": -20.481274500000005
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413000,7 +412568,8 @@
"x": 14.287498500000003,
"y": 29.1211755
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413013,7 +412582,8 @@
"x": 52.38749850000001,
"y": 6.489925499999998
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413026,7 +412596,8 @@
"x": 93.0774985,
"y": -15.9575745
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413039,7 +412610,8 @@
"x": 27.147498500000005,
"y": 20.8674255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413052,7 +412624,8 @@
"x": 109.53750050000001,
"y": 17.2149255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413065,7 +412638,8 @@
"x": 22.802500500000004,
"y": 31.6886755
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413078,7 +412652,8 @@
"x": -77.83749949999999,
"y": -7.8926245
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413091,7 +412666,8 @@
"x": 128.5875005,
"y": 36.2649255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413104,7 +412680,8 @@
"x": -114.0475015,
"y": 3.6324255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413117,7 +412694,8 @@
"x": 56.712500500000004,
"y": -16.9713245
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413130,7 +412708,8 @@
"x": -90.4875015,
"y": 2.9274254999999982
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413143,7 +412722,8 @@
"x": -25.380572375217533,
"y": -26.733170766824777
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413156,7 +412736,8 @@
"x": -65.4325015,
"y": -18.202574500000004
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413169,7 +412750,8 @@
"x": 71.5275005,
"y": -24.162574499999998
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413182,7 +412764,8 @@
"x": 52.3875005,
"y": 41.0274255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413195,7 +412778,8 @@
"x": -128.5875015,
"y": -17.3225745
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413208,7 +412792,8 @@
"x": 68.2674985,
"y": -9.852574500000003
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413221,7 +412806,8 @@
"x": 33.3374985,
"y": 4.108675499999997
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413234,7 +412820,8 @@
"x": 11.20945467850548,
"y": -33.011474859970214
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413247,7 +412834,8 @@
"x": 39.71482633669673,
"y": -20.81919216149268
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413260,7 +412848,8 @@
"x": 90.48750050000001,
"y": 41.0274255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413273,7 +412862,8 @@
"x": -14.287501499999998,
"y": 13.633675499999999
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413286,7 +412876,8 @@
"x": -56.5275015,
"y": -10.587574500000002
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413299,7 +412890,8 @@
"x": 64.94749850000001,
"y": -9.862574500000001
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413312,7 +412904,8 @@
"x": 75.7324985,
"y": -9.682574500000001
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413325,7 +412918,8 @@
"x": -90.4875015,
"y": 41.0274255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413338,7 +412932,8 @@
"x": -96.9075035,
"y": -15.7525245
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413351,7 +412946,8 @@
"x": -128.5875015,
"y": -1.835074500000001
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413364,7 +412960,8 @@
"x": -62.462501499999995,
"y": -8.8513245
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413377,7 +412974,8 @@
"x": -25.762501499999996,
"y": 26.868675500000002
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413390,7 +412988,8 @@
"x": -128.5875015,
"y": 36.2649255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413403,7 +413002,8 @@
"x": 90.4874985,
"y": 25.5399255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413416,7 +413016,8 @@
"x": -52.3875015,
"y": 2.9274254999999982
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413429,7 +413030,8 @@
"x": 85.61250650000001,
"y": -13.125074500000004
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413442,7 +413044,8 @@
"x": -79.88749949999999,
"y": -7.862624500000003
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413455,7 +413058,8 @@
"x": -82.0874995,
"y": -10.711324499999996
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413468,7 +413072,8 @@
"x": -74.7375015,
"y": -27.7512745
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413481,7 +413086,8 @@
"x": 90.48750050000001,
"y": 21.9774255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413494,7 +413100,8 @@
"x": 61.91250050000001,
"y": -18.5038245
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413507,7 +413114,8 @@
"x": -14.287501499999996,
"y": 10.071175499999999
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413520,7 +413128,8 @@
"x": 65.5374985,
"y": -15.767574500000002
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413533,7 +413142,8 @@
"x": -76.6075015,
"y": -23.951274500000004
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413546,7 +413156,8 @@
"x": -61.9125015,
"y": -18.492574499999996
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413559,7 +413170,8 @@
"x": 113.6262485,
"y": 0.0024255000000010796
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413572,7 +413184,8 @@
"x": 62.92249850000001,
"y": 12.1586755
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413585,7 +413198,8 @@
"x": 86.83250650000001,
"y": -13.165074500000003
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413598,7 +413212,8 @@
"x": 33.3374985,
"y": -14.9413245
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413611,7 +413226,8 @@
"x": 57.55749850000001,
"y": 12.237425499999999
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413624,7 +413240,8 @@
"x": -14.287501499999996,
"y": 29.1211755
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413637,7 +413254,8 @@
"x": 22.057498500000005,
"y": 37.2036755
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413650,7 +413268,8 @@
"x": -52.3875015,
"y": 21.9774255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413663,7 +413282,8 @@
"x": 42.91858041644553,
"y": -35.9776116430074
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413676,7 +413296,8 @@
"x": 89.0324985,
"y": -15.977574500000003
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413689,7 +413310,8 @@
"x": -71.4375015,
"y": -10.178824499999997
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413702,7 +413324,8 @@
"x": 66.0174985,
"y": -9.872574499999999
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413715,7 +413338,8 @@
"x": 71.4375005,
"y": 5.3086755
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413728,7 +413352,8 @@
"x": -76.73249750000001,
"y": -7.886324500000001
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413741,7 +413366,8 @@
"x": 71.4375005,
"y": 43.4086755
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413754,7 +413380,8 @@
"x": -78.1224995,
"y": -22.592574499999998
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413767,7 +413394,8 @@
"x": 128.5874985,
"y": -17.3225745
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413780,7 +413408,8 @@
"x": 71.4375005,
"y": 24.3586755
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413793,7 +413422,8 @@
"x": -90.4875015,
"y": -12.560074500000006
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413806,7 +413436,8 @@
"x": -128.5875015,
"y": 20.7774255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413819,7 +413450,8 @@
"x": 71.4374985,
"y": 27.921175499999997
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413832,7 +413464,8 @@
"x": 128.5875005,
"y": -1.835074500000001
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413845,7 +413478,8 @@
"x": -128.5875015,
"y": 1.727425499999999
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413858,7 +413492,8 @@
"x": -109.53750149999999,
"y": 20.7774255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413871,7 +413506,8 @@
"x": 62.1074985,
"y": -10.482574500000005
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413884,7 +413520,8 @@
"x": 33.3374985,
"y": 19.5961755
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413897,7 +413534,8 @@
"x": -71.4375015,
"y": 24.3586755
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413910,7 +413548,8 @@
"x": 14.287498500000003,
"y": 10.071175499999999
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413923,7 +413562,8 @@
"x": -24.342501499999997,
"y": 37.8224255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413936,7 +413576,8 @@
"x": -69.3275015,
"y": -11.076274500000004
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413949,7 +413590,8 @@
"x": 128.5874985,
"y": 1.727425499999999
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413962,7 +413604,8 @@
"x": -12.802499499999996,
"y": 31.5674255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413975,7 +413618,8 @@
"x": -38.7575015,
"y": -18.3212745
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -413988,7 +413632,8 @@
"x": 103.11749850000001,
"y": 32.337425499999995
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414001,7 +413646,8 @@
"x": 90.4874985,
"y": 6.489925499999998
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414014,7 +413660,8 @@
"x": -109.53750149999999,
"y": -17.3225745
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414027,7 +413674,8 @@
"x": 24.507498500000004,
"y": 36.2836755
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414040,7 +413688,8 @@
"x": -82.0974995,
"y": -11.741324499999997
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414053,7 +413702,8 @@
"x": 51.382498500000004,
"y": -20.212574500000002
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414066,7 +413716,8 @@
"x": -11.209457678505473,
"y": -33.011474859970214
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414079,7 +413730,8 @@
"x": 52.38749850000001,
"y": 25.5399255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414092,7 +413744,8 @@
"x": 24.527498500000004,
"y": 37.8736755
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414105,7 +413758,8 @@
"x": -33.337501499999995,
"y": -14.9413245
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414118,7 +413772,8 @@
"x": 45.052498500000006,
"y": -13.202574499999997
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414131,7 +413786,8 @@
"x": -52.3875015,
"y": 6.489925499999998
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414144,7 +413800,8 @@
"x": -33.337501499999995,
"y": 0.5461755000000004
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414157,7 +413814,8 @@
"x": -70.6775015,
"y": -19.3937745
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414170,7 +413828,8 @@
"x": -5.127501499999997,
"y": 36.2574255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414183,7 +413842,8 @@
"x": -90.4875015,
"y": 21.9774255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414196,7 +413856,8 @@
"x": -33.337501499999995,
"y": 4.108675499999997
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414209,7 +413870,8 @@
"x": -116.94250149999999,
"y": 32.3974255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414222,7 +413884,8 @@
"x": 67.0974985,
"y": -9.872574499999999
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414235,7 +413898,8 @@
"x": 72.5124985,
"y": -25.961274500000002
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414248,7 +413912,8 @@
"x": 25.427499050432054,
"y": -26.52257475128488
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414261,7 +413926,8 @@
"x": -109.53750149999999,
"y": 36.2649255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414274,7 +413940,8 @@
"x": -33.337501499999995,
"y": 38.6461755
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414287,7 +413954,8 @@
"x": -76.9724995,
"y": -22.5825745
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414300,7 +413968,8 @@
"x": 62.0874985,
"y": -11.622574499999999
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414313,7 +413982,8 @@
"x": 52.3875005,
"y": 2.9274254999999982
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414326,7 +413996,8 @@
"x": 5.107502500000003,
"y": 35.9999255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414339,7 +414010,8 @@
"x": 14.287498500000002,
"y": 13.633675499999999
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414352,7 +414024,8 @@
"x": 109.53750050000001,
"y": 36.2649255
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414365,7 +414038,8 @@
"x": -86.7974995,
"y": -13.561324500000005
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414378,7 +414052,8 @@
"x": -18.917501499999997,
"y": -12.212574500000002
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414391,7 +414066,8 @@
"x": 47.71249850000001,
"y": -10.6675745
},
- "layer": "bottom"
+ "layer": "bottom",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414404,7 +414080,8 @@
},
"layer": "bottom",
"font_size": 0.75,
- "font": "tscircuit2024"
+ "font": "tscircuit2024",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414417,7 +414094,8 @@
},
"layer": "bottom",
"font_size": 0.75,
- "font": "tscircuit2024"
+ "font": "tscircuit2024",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414430,7 +414108,8 @@
},
"layer": "bottom",
"font_size": 0.75,
- "font": "tscircuit2024"
+ "font": "tscircuit2024",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414443,7 +414122,8 @@
},
"layer": "bottom",
"font_size": 0.75,
- "font": "tscircuit2024"
+ "font": "tscircuit2024",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414456,7 +414136,8 @@
},
"layer": "bottom",
"font_size": 0.75,
- "font": "tscircuit2024"
+ "font": "tscircuit2024",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414469,7 +414150,8 @@
},
"layer": "bottom",
"font_size": 0.75,
- "font": "tscircuit2024"
+ "font": "tscircuit2024",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414482,7 +414164,8 @@
},
"layer": "bottom",
"font_size": 0.75,
- "font": "tscircuit2024"
+ "font": "tscircuit2024",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414495,7 +414178,8 @@
},
"layer": "bottom",
"font_size": 0.75,
- "font": "tscircuit2024"
+ "font": "tscircuit2024",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414508,7 +414192,8 @@
},
"layer": "bottom",
"font_size": 0.75,
- "font": "tscircuit2024"
+ "font": "tscircuit2024",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414521,7 +414206,8 @@
},
"layer": "bottom",
"font_size": 0.75,
- "font": "tscircuit2024"
+ "font": "tscircuit2024",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414534,7 +414220,8 @@
},
"layer": "bottom",
"font_size": 0.75,
- "font": "tscircuit2024"
+ "font": "tscircuit2024",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414547,7 +414234,8 @@
},
"layer": "bottom",
"font_size": 0.75,
- "font": "tscircuit2024"
+ "font": "tscircuit2024",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414560,7 +414248,8 @@
},
"layer": "top",
"font_size": 0.75,
- "font": "tscircuit2024"
+ "font": "tscircuit2024",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -414573,30597 +414262,14623 @@
},
"layer": "top",
"font_size": 0.75,
- "font": "tscircuit2024"
- },
- {
- "type": "pcb_silkscreen_text",
- "pcb_silkscreen_text_id": "pcb_silkscreen_text_190",
- "pcb_component_id": "",
- "text": "Edge of body",
- "anchor_position": {
- "x": -1.752499499999996,
- "y": -7.2388245
- },
- "layer": "bottom",
- "font_size": 1.5,
- "font": "tscircuit2024"
+ "font": "tscircuit2024",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_0",
- "pcb_component_id": "pcb_component_0",
+ "pcb_component_id": "pcb_component_5",
"layer": "top",
"route": [
{
- "x": -130.9625015,
- "y": -18.547574499999996
+ "x": 91.0272355,
+ "y": -15.293010500000001
},
{
- "x": -126.2125015,
- "y": -18.547574499999996
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1",
- "pcb_component_id": "pcb_component_0",
- "layer": "top",
- "route": [
+ "x": 91.1732985,
+ "y": -15.309535500000003
+ },
{
- "x": -130.9625015,
- "y": -18.9475745
+ "x": 91.1732985,
+ "y": -15.6803035
},
{
- "x": -126.2125015,
- "y": -18.9475745
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_2",
- "pcb_component_id": "pcb_component_1",
- "layer": "top",
- "route": [
+ "x": 91.0399485,
+ "y": -15.666642500000002
+ },
{
- "x": -54.7625015,
- "y": 44.764925500000004
+ "x": 90.8558495,
+ "y": -15.671713500000003
},
{
- "x": -50.0125015,
- "y": 44.764925500000004
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_3",
- "pcb_component_id": "pcb_component_1",
- "layer": "top",
- "route": [
+ "x": 90.6864505,
+ "y": -15.723496500000003
+ },
{
- "x": -54.7625015,
- "y": 44.3649255
+ "x": 90.5378795,
+ "y": -15.818630500000005
},
{
- "x": -50.0125015,
- "y": 44.3649255
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_4",
- "pcb_component_id": "pcb_component_2",
- "layer": "top",
- "route": [
+ "x": 90.4162645,
+ "y": -15.953753500000005
+ },
{
- "x": 50.0125005,
- "y": 44.764925500000004
+ "x": 90.3673875,
+ "y": -16.035443500000007
},
{
- "x": 54.7625005,
- "y": 44.764925500000004
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_5",
- "pcb_component_id": "pcb_component_2",
- "layer": "top",
- "route": [
+ "x": 90.2842985,
+ "y": -16.1964125
+ },
{
- "x": 50.0125005,
- "y": 44.3649255
+ "x": 90.2842985,
+ "y": -17.588974500000006
},
{
- "x": 54.7625005,
- "y": 44.3649255
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_6",
- "pcb_component_id": "pcb_component_3",
- "layer": "top",
- "route": [
+ "x": 89.8524985,
+ "y": -17.588974500000006
+ },
{
- "x": 8.287498500000003,
- "y": 30.317425499999995
+ "x": 89.8524985,
+ "y": -15.326319500000004
},
{
- "x": 20.287498500000005,
- "y": 30.317425499999995
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_7",
- "pcb_component_id": "pcb_component_3",
- "layer": "top",
- "route": [
+ "x": 90.0620485,
+ "y": -15.333696500000002
+ },
{
- "x": 8.287498500000003,
- "y": -7.682574500000001
+ "x": 90.2715985,
+ "y": -15.341074500000005
},
{
- "x": 8.287498500000003,
- "y": 30.317425499999995
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_8",
- "pcb_component_id": "pcb_component_3",
- "layer": "top",
- "route": [
+ "x": 90.2969985,
+ "y": -15.562932500000002
+ },
{
- "x": 8.287498500000003,
- "y": -7.682574500000001
+ "x": 90.3477675,
+ "y": -15.5065205
},
{
- "x": 20.287498500000005,
- "y": -7.682574500000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_9",
- "pcb_component_id": "pcb_component_3",
- "layer": "top",
- "route": [
+ "x": 90.4659445,
+ "y": -15.409931500000006
+ },
{
- "x": 20.287498500000005,
- "y": 30.317425499999995
+ "x": 90.6177965,
+ "y": -15.338841500000001
},
{
- "x": 20.287498500000005,
- "y": -7.682574500000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_10",
- "pcb_component_id": "pcb_component_3",
- "layer": "bottom",
- "route": [
+ "x": 90.7910405,
+ "y": -15.297110500000002
+ },
{
- "x": 8.787498500000003,
- "y": 29.817425499999995
+ "x": 90.9733885,
+ "y": -15.288599500000004
},
{
- "x": 19.787498500000005,
- "y": 29.817425499999995
+ "x": 91.0272355,
+ "y": -15.293010500000001
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.01
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_11",
- "pcb_component_id": "pcb_component_3",
- "layer": "bottom",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_1",
+ "pcb_component_id": "pcb_component_5",
+ "layer": "top",
"route": [
{
- "x": 8.787498500000003,
- "y": -5.142574500000002
+ "x": 92.68948950000001,
+ "y": -15.316365500000003
},
{
- "x": 8.787498500000003,
- "y": 29.817425499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_12",
- "pcb_component_id": "pcb_component_3",
- "layer": "bottom",
- "route": [
- {
- "x": 19.787498500000005,
- "y": -5.142574500000002
+ "x": 92.7835735,
+ "y": -15.3200255
},
{
- "x": 8.787498500000003,
- "y": -5.142574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_13",
- "pcb_component_id": "pcb_component_3",
- "layer": "bottom",
- "route": [
+ "x": 92.8539885,
+ "y": -15.329029500000004
+ },
{
- "x": 19.787498500000005,
- "y": -5.142574500000002
+ "x": 92.9142995,
+ "y": -15.345755500000003
},
{
- "x": 19.787498500000005,
- "y": 29.817425499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_14",
- "pcb_component_id": "pcb_component_4",
- "layer": "top",
- "route": [
+ "x": 92.9780685,
+ "y": -15.3725795
+ },
{
- "x": -111.91250149999999,
- "y": -18.547574499999996
+ "x": 93.0322495,
+ "y": -15.398745500000004
},
{
- "x": -107.16250149999999,
- "y": -18.547574499999996
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_15",
- "pcb_component_id": "pcb_component_4",
- "layer": "top",
- "route": [
+ "x": 93.20329650000001,
+ "y": -15.507087500000004
+ },
{
- "x": -111.91250149999999,
- "y": -18.9475745
+ "x": 93.3365465,
+ "y": -15.646247500000001
},
{
- "x": -107.16250149999999,
- "y": -18.9475745
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_16",
- "pcb_component_id": "pcb_component_6",
- "layer": "top",
- "route": [
+ "x": 93.4338775,
+ "y": -15.818952500000002
+ },
{
- "x": 88.1124985,
- "y": 44.764925500000004
+ "x": 93.4971665,
+ "y": -16.0279285
},
{
- "x": 92.8624985,
- "y": 44.764925500000004
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_17",
- "pcb_component_id": "pcb_component_6",
- "layer": "top",
- "route": [
+ "x": 93.5085735,
+ "y": -16.090374500000003
+ },
{
- "x": 88.1124985,
- "y": 44.3649255
+ "x": 93.5158625,
+ "y": -16.161344500000006
},
{
- "x": 92.8624985,
- "y": 44.3649255
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_18",
- "pcb_component_id": "pcb_component_7",
- "layer": "top",
- "route": [
+ "x": 93.5224015,
+ "y": -16.274099500000005
+ },
{
- "x": 126.21249850000001,
- "y": -18.547574499999996
+ "x": 93.5279015,
+ "y": -16.4196235
},
{
- "x": 130.9624985,
- "y": -18.547574499999996
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_19",
- "pcb_component_id": "pcb_component_7",
- "layer": "top",
- "route": [
+ "x": 93.5320725,
+ "y": -16.588904500000005
+ },
{
- "x": 126.21249850000001,
- "y": -18.9475745
+ "x": 93.5346255,
+ "y": -16.7729275
},
{
- "x": 130.9624985,
- "y": -18.9475745
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_20",
- "pcb_component_id": "pcb_component_9",
- "layer": "top",
- "route": [
+ "x": 93.5353065,
+ "y": -16.922224500000006
+ },
{
- "x": 107.1624985,
- "y": -18.547574499999996
+ "x": 93.5354985,
+ "y": -17.588974500000006
},
{
- "x": 111.9124985,
- "y": -18.547574499999996
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_21",
- "pcb_component_id": "pcb_component_9",
- "layer": "top",
- "route": [
+ "x": 93.10369850000001,
+ "y": -17.588974500000006
+ },
{
- "x": 107.1624985,
- "y": -18.9475745
+ "x": 93.10369850000001,
+ "y": -16.869684500000005
},
{
- "x": 111.9124985,
- "y": -18.9475745
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_22",
- "pcb_component_id": "pcb_component_10",
- "layer": "top",
- "route": [
+ "x": 93.1030915,
+ "y": -16.641031500000004
+ },
{
- "x": -92.8625015,
- "y": 44.764925500000004
+ "x": 93.1010985,
+ "y": -16.4573325
},
{
- "x": -88.1125015,
- "y": 44.764925500000004
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_23",
- "pcb_component_id": "pcb_component_10",
- "layer": "top",
- "route": [
+ "x": 93.0974615,
+ "y": -16.312751500000005
+ },
{
- "x": -92.8625015,
- "y": 44.3649255
+ "x": 93.0919205,
+ "y": -16.201456500000006
},
{
- "x": -88.1125015,
- "y": 44.3649255
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_24",
- "pcb_component_id": "pcb_component_11",
- "layer": "top",
- "route": [
+ "x": 93.0842175,
+ "y": -16.117611500000002
+ },
{
- "x": -20.287501499999998,
- "y": 30.317425499999995
+ "x": 93.0740935,
+ "y": -16.055383500000005
},
{
- "x": -8.287501499999996,
- "y": 30.317425499999995
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_25",
- "pcb_component_id": "pcb_component_11",
- "layer": "top",
- "route": [
+ "x": 93.0661955,
+ "y": -16.024108500000004
+ },
{
- "x": -20.287501499999998,
- "y": -7.682574500000001
+ "x": 93.0014355,
+ "y": -15.885881500000004
},
{
- "x": -20.287501499999998,
- "y": 30.317425499999995
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_26",
- "pcb_component_id": "pcb_component_11",
- "layer": "top",
- "route": [
+ "x": 92.90052850000001,
+ "y": -15.782680500000005
+ },
{
- "x": -20.287501499999998,
- "y": -7.682574500000001
+ "x": 92.7651015,
+ "y": -15.7155585
},
{
- "x": -8.287501499999996,
- "y": -7.682574500000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_27",
- "pcb_component_id": "pcb_component_11",
- "layer": "top",
- "route": [
+ "x": 92.5967785,
+ "y": -15.685573500000004
+ },
{
- "x": -8.287501499999996,
- "y": 30.317425499999995
+ "x": 92.5423105,
+ "y": -15.683974500000005
},
{
- "x": -8.287501499999996,
- "y": -7.682574500000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_28",
- "pcb_component_id": "pcb_component_11",
- "layer": "bottom",
- "route": [
+ "x": 92.3798395,
+ "y": -15.694391500000002
+ },
{
- "x": -19.787501499999998,
- "y": 29.817425499999995
+ "x": 92.2498605,
+ "y": -15.729268500000003
},
{
- "x": -8.787501499999996,
- "y": 29.817425499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_29",
- "pcb_component_id": "pcb_component_11",
- "layer": "bottom",
- "route": [
+ "x": 92.13776250000001,
+ "y": -15.7940465
+ },
{
- "x": -19.787501499999998,
- "y": -5.142574500000002
+ "x": 92.0578585,
+ "y": -15.864300500000006
},
{
- "x": -19.787501499999998,
- "y": 29.817425499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_30",
- "pcb_component_id": "pcb_component_11",
- "layer": "bottom",
- "route": [
+ "x": 92.0036715,
+ "y": -15.921305500000003
+ },
{
- "x": -8.787501499999996,
- "y": -5.142574500000002
+ "x": 91.9602895,
+ "y": -15.977075500000005
},
{
- "x": -19.787501499999998,
- "y": -5.142574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_31",
- "pcb_component_id": "pcb_component_11",
- "layer": "bottom",
- "route": [
+ "x": 91.9265215,
+ "y": -16.0379395
+ },
{
- "x": -8.787501499999996,
- "y": -5.142574500000002
+ "x": 91.9011775,
+ "y": -16.110226500000003
},
{
- "x": -8.787501499999996,
- "y": 29.817425499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_32",
- "pcb_component_id": "pcb_component_12",
- "layer": "bottom",
- "route": [
+ "x": 91.8830655,
+ "y": -16.200263500000005
+ },
{
- "x": -72.46966549999999,
- "y": -27.171274500000003
+ "x": 91.8709945,
+ "y": -16.3143795
},
{
- "x": -72.6853375,
- "y": -27.171274500000003
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_33",
- "pcb_component_id": "pcb_component_12",
- "layer": "bottom",
- "route": [
+ "x": 91.8637755,
+ "y": -16.458901500000003
+ },
{
- "x": -72.46966549999999,
- "y": -26.451274500000004
+ "x": 91.8602155,
+ "y": -16.640159500000003
},
{
- "x": -72.6853375,
- "y": -26.451274500000004
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_34",
- "pcb_component_id": "pcb_component_12",
- "layer": "bottom",
- "route": [
+ "x": 91.85912450000001,
+ "y": -16.864481500000004
+ },
{
- "x": -71.6675015,
- "y": -27.271274500000004
+ "x": 91.8590985,
+ "y": -16.9204845
},
{
- "x": -71.6675015,
- "y": -26.351274500000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_35",
- "pcb_component_id": "pcb_component_12",
- "layer": "bottom",
- "route": [
+ "x": 91.8590985,
+ "y": -17.588974500000006
+ },
{
- "x": -71.6675015,
- "y": -26.351274500000002
+ "x": 91.4272985,
+ "y": -17.588974500000006
},
{
- "x": -73.4875015,
- "y": -26.351274500000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_36",
- "pcb_component_id": "pcb_component_12",
- "layer": "bottom",
- "route": [
+ "x": 91.4272985,
+ "y": -15.328374500000002
+ },
{
- "x": -73.4875015,
- "y": -27.271274500000004
+ "x": 91.8590985,
+ "y": -15.328374500000002
},
{
- "x": -71.6675015,
- "y": -27.271274500000004
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_37",
- "pcb_component_id": "pcb_component_12",
- "layer": "bottom",
- "route": [
+ "x": 91.8590985,
+ "y": -15.586281500000005
+ },
{
- "x": -73.4875015,
- "y": -26.351274500000002
+ "x": 91.9413625,
+ "y": -15.504016500000006
},
{
- "x": -73.4875015,
- "y": -27.271274500000004
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_38",
- "pcb_component_id": "pcb_component_12",
- "layer": "bottom",
- "route": [
+ "x": 92.0277505,
+ "y": -15.428410500000005
+ },
{
- "x": -72.0775015,
- "y": -27.061274500000003
+ "x": 92.1184535,
+ "y": -15.3751435
},
{
- "x": -72.0775015,
- "y": -26.561274500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_39",
- "pcb_component_id": "pcb_component_12",
- "layer": "bottom",
- "route": [
+ "x": 92.2244765,
+ "y": -15.340856500000001
+ },
{
- "x": -72.0775015,
- "y": -26.561274500000003
+ "x": 92.3568225,
+ "y": -15.322190500000005
},
{
- "x": -73.0775015,
- "y": -26.561274500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_40",
- "pcb_component_id": "pcb_component_12",
- "layer": "bottom",
- "route": [
+ "x": 92.5264935,
+ "y": -15.315785500000004
+ },
{
- "x": -73.0775015,
- "y": -27.061274500000003
+ "x": 92.5581725,
+ "y": -15.3156745
},
{
- "x": -72.0775015,
- "y": -27.061274500000003
+ "x": 92.68948950000001,
+ "y": -15.316365500000003
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.01
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_41",
- "pcb_component_id": "pcb_component_12",
- "layer": "bottom",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_2",
+ "pcb_component_id": "pcb_component_5",
+ "layer": "top",
"route": [
{
- "x": -73.0775015,
- "y": -26.561274500000003
+ "x": 88.4299845,
+ "y": -15.309414500000003
},
{
- "x": -73.0775015,
- "y": -27.061274500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_42",
- "pcb_component_id": "pcb_component_13",
- "layer": "bottom",
- "route": [
+ "x": 88.6834385,
+ "y": -15.344685500000004
+ },
{
- "x": -113.2775015,
- "y": -1.2725744999999975
+ "x": 88.9115235,
+ "y": -15.421381500000003
},
{
- "x": -113.2775015,
- "y": 1.3874255000000026
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_43",
- "pcb_component_id": "pcb_component_13",
- "layer": "bottom",
- "route": [
+ "x": 89.1111735,
+ "y": -15.537439500000005
+ },
{
- "x": -108.1375015,
- "y": -1.2725744999999975
+ "x": 89.2793235,
+ "y": -15.690796500000005
},
{
- "x": -113.2775015,
- "y": -1.2725744999999975
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_44",
- "pcb_component_id": "pcb_component_13",
- "layer": "bottom",
- "route": [
+ "x": 89.4129065,
+ "y": -15.879390500000007
+ },
{
- "x": -108.1375015,
- "y": -1.2725744999999975
+ "x": 89.47745450000001,
+ "y": -16.014174500000003
},
{
- "x": -108.1375015,
- "y": 1.387425499999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_45",
- "pcb_component_id": "pcb_component_13",
- "layer": "bottom",
- "route": [
+ "x": 89.5090165,
+ "y": -16.128279500000005
+ },
{
- "x": -106.8675015,
- "y": -1.2725744999999975
+ "x": 89.5292835,
+ "y": -16.275945500000006
},
{
- "x": -105.5375015,
- "y": -1.2725744999999975
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_46",
- "pcb_component_id": "pcb_component_13",
- "layer": "bottom",
- "route": [
+ "x": 89.5380285,
+ "y": -16.441154500000003
+ },
{
- "x": -105.5375015,
- "y": -1.2725744999999975
+ "x": 89.5350235,
+ "y": -16.607887500000004
},
{
- "x": -105.5375015,
- "y": 0.057425500000000795
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_47",
- "pcb_component_id": "pcb_component_13",
- "layer": "bottom",
- "route": [
+ "x": 89.5200415,
+ "y": -16.7601255
+ },
{
- "x": -108.1375015,
- "y": 1.387425499999999
+ "x": 89.4928545,
+ "y": -16.8818495
},
{
- "x": -113.2775015,
- "y": 1.3874255000000026
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_48",
- "pcb_component_id": "pcb_component_13",
- "layer": "bottom",
- "route": [
+ "x": 89.4899035,
+ "y": -16.890474500000003
+ },
{
- "x": -113.7175015,
- "y": -1.7425745
+ "x": 89.3935175,
+ "y": -17.0877465
},
{
- "x": -113.7175015,
- "y": 1.8574255000000015
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_49",
- "pcb_component_id": "pcb_component_13",
- "layer": "bottom",
- "route": [
+ "x": 89.2542735,
+ "y": -17.264148500000005
+ },
{
- "x": -105.0675015,
- "y": -1.7425745
+ "x": 89.07767750000001,
+ "y": -17.4143435
},
{
- "x": -113.7175015,
- "y": -1.7425745
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_50",
- "pcb_component_id": "pcb_component_13",
- "layer": "bottom",
- "route": [
+ "x": 88.8692395,
+ "y": -17.532995500000006
+ },
{
- "x": -113.7175015,
- "y": 1.8574255000000015
+ "x": 88.7943385,
+ "y": -17.564344500000004
},
{
- "x": -105.0675015,
- "y": 1.8574255000000015
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_51",
- "pcb_component_id": "pcb_component_13",
- "layer": "bottom",
- "route": [
+ "x": 88.6623195,
+ "y": -17.600593500000002
+ },
{
- "x": -105.0675015,
- "y": 1.8574255000000015
+ "x": 88.4993335,
+ "y": -17.624041500000004
},
{
- "x": -105.0675015,
- "y": -1.7425745
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_52",
- "pcb_component_id": "pcb_component_13",
- "layer": "bottom",
- "route": [
+ "x": 88.3237795,
+ "y": -17.633861500000002
+ },
{
- "x": -113.2175015,
- "y": -1.2125744999999988
+ "x": 88.1540585,
+ "y": -17.629224500000007
},
{
- "x": -106.2325015,
- "y": -1.2125744999999988
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_53",
- "pcb_component_id": "pcb_component_13",
- "layer": "bottom",
- "route": [
+ "x": 88.0085725,
+ "y": -17.609303500000003
+ },
{
- "x": -106.2325015,
- "y": -1.2125744999999988
+ "x": 87.9757515,
+ "y": -17.6011735
},
{
- "x": -105.5975015,
- "y": -0.5775745000000008
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_54",
- "pcb_component_id": "pcb_component_13",
- "layer": "bottom",
- "route": [
+ "x": 87.7618515,
+ "y": -17.518975500000003
+ },
{
- "x": -105.5975015,
- "y": -0.5775745000000008
+ "x": 87.5671195,
+ "y": -17.400667500000004
},
{
- "x": -105.5975015,
- "y": 1.3274255000000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_55",
- "pcb_component_id": "pcb_component_13",
- "layer": "bottom",
- "route": [
+ "x": 87.4001535,
+ "y": -17.253209500000004
+ },
{
- "x": -113.2175015,
- "y": 1.3274255000000004
+ "x": 87.2695545,
+ "y": -17.083560500000004
},
{
- "x": -113.2175015,
- "y": -1.2125744999999988
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_56",
- "pcb_component_id": "pcb_component_13",
- "layer": "bottom",
- "route": [
+ "x": 87.2186805,
+ "y": -16.9884695
+ },
{
- "x": -105.5975015,
- "y": 1.3274255000000004
+ "x": 87.1803355,
+ "y": -16.885676500000002
},
{
- "x": -113.2175015,
- "y": 1.3274255000000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_57",
- "pcb_component_id": "pcb_component_14",
- "layer": "bottom",
- "route": [
+ "x": 87.1461495,
+ "y": -16.761450500000002
+ },
{
- "x": 74.77033650000001,
- "y": -27.211324499999996
+ "x": 87.1260975,
+ "y": -16.6582025
},
{
- "x": 74.5546645,
- "y": -27.211324499999996
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_58",
- "pcb_component_id": "pcb_component_14",
- "layer": "bottom",
- "route": [
+ "x": 87.1187465,
+ "y": -16.5167985
+ },
{
- "x": 74.77033650000001,
- "y": -26.491324499999997
+ "x": 87.5430725,
+ "y": -16.5167985
},
{
- "x": 74.5546645,
- "y": -26.491324499999997
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_59",
- "pcb_component_id": "pcb_component_14",
- "layer": "bottom",
- "route": [
+ "x": 87.5574075,
+ "y": -16.664440500000005
+ },
{
- "x": 75.5725005,
- "y": -27.311324499999998
+ "x": 87.5775395,
+ "y": -16.7457815
},
{
- "x": 75.5725005,
- "y": -26.391324499999996
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_60",
- "pcb_component_id": "pcb_component_14",
- "layer": "bottom",
- "route": [
+ "x": 87.6307925,
+ "y": -16.858515500000003
+ },
{
- "x": 75.5725005,
- "y": -26.391324499999996
+ "x": 87.71119350000001,
+ "y": -16.973907500000003
},
{
- "x": 73.75250050000001,
- "y": -26.391324499999996
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_61",
- "pcb_component_id": "pcb_component_14",
- "layer": "bottom",
- "route": [
+ "x": 87.8051765,
+ "y": -17.0752765
+ },
{
- "x": 73.75250050000001,
- "y": -27.311324499999998
+ "x": 87.8991725,
+ "y": -17.145939500000004
},
{
- "x": 75.5725005,
- "y": -27.311324499999998
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_62",
- "pcb_component_id": "pcb_component_14",
- "layer": "bottom",
- "route": [
+ "x": 87.9059565,
+ "y": -17.149594500000006
+ },
{
- "x": 73.75250050000001,
- "y": -26.391324499999996
+ "x": 88.10269650000001,
+ "y": -17.2256925
},
{
- "x": 73.75250050000001,
- "y": -27.311324499999998
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_63",
- "pcb_component_id": "pcb_component_14",
- "layer": "bottom",
- "route": [
+ "x": 88.3076875,
+ "y": -17.256037500000005
+ },
{
- "x": 75.16250050000001,
- "y": -27.101324499999997
+ "x": 88.5111025,
+ "y": -17.2398175
},
{
- "x": 75.16250050000001,
- "y": -26.601324499999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_64",
- "pcb_component_id": "pcb_component_14",
- "layer": "bottom",
- "route": [
+ "x": 88.6236625,
+ "y": -17.209042500000002
+ },
{
- "x": 75.16250050000001,
- "y": -26.601324499999997
+ "x": 88.8009425,
+ "y": -17.121921500000006
},
{
- "x": 74.16250050000001,
- "y": -26.601324499999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_65",
- "pcb_component_id": "pcb_component_14",
- "layer": "bottom",
- "route": [
+ "x": 88.9454085,
+ "y": -16.998251500000002
+ },
{
- "x": 74.16250050000001,
- "y": -27.101324499999997
+ "x": 89.0525855,
+ "y": -16.841915500000006
},
{
- "x": 75.16250050000001,
- "y": -27.101324499999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_66",
- "pcb_component_id": "pcb_component_14",
- "layer": "bottom",
- "route": [
+ "x": 89.0570185,
+ "y": -16.833040500000003
+ },
{
- "x": 74.16250050000001,
- "y": -26.601324499999997
+ "x": 89.1100085,
+ "y": -16.676975500000005
},
{
- "x": 74.16250050000001,
- "y": -27.101324499999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_67",
- "pcb_component_id": "pcb_component_15",
- "layer": "bottom",
- "route": [
- {
- "x": -21.567493499999998,
- "y": 38.2449255
- },
- {
- "x": -20.367493499999995,
- "y": 38.2449255
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_68",
- "pcb_component_id": "pcb_component_15",
- "layer": "bottom",
- "route": [
- {
- "x": -20.367493499999995,
- "y": 36.2849255
- },
- {
- "x": -20.367493499999995,
- "y": 38.2449255
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_69",
- "pcb_component_id": "pcb_component_15",
- "layer": "bottom",
- "route": [
- {
- "x": -21.567493499999998,
- "y": 36.2849255
- },
- {
- "x": -21.567493499999998,
- "y": 38.2449255
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_70",
- "pcb_component_id": "pcb_component_15",
- "layer": "bottom",
- "route": [
- {
- "x": -20.267493499999997,
- "y": 38.2349255
- },
- {
- "x": -21.667493499999996,
- "y": 38.2349255
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_71",
- "pcb_component_id": "pcb_component_15",
- "layer": "bottom",
- "route": [
- {
- "x": -21.667493499999996,
- "y": 38.2349255
- },
- {
- "x": -21.667493499999996,
- "y": 35.7349255
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_72",
- "pcb_component_id": "pcb_component_15",
- "layer": "bottom",
- "route": [
- {
- "x": -20.267493499999997,
- "y": 35.7349255
- },
- {
- "x": -20.267493499999997,
- "y": 38.2349255
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_73",
- "pcb_component_id": "pcb_component_15",
- "layer": "bottom",
- "route": [
- {
- "x": -21.667493499999996,
- "y": 35.7349255
- },
- {
- "x": -20.267493499999997,
- "y": 35.7349255
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_74",
- "pcb_component_id": "pcb_component_15",
- "layer": "bottom",
- "route": [
- {
- "x": -20.517493499999997,
- "y": 37.6349255
- },
- {
- "x": -21.417493499999996,
- "y": 37.6349255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_75",
- "pcb_component_id": "pcb_component_15",
- "layer": "bottom",
- "route": [
- {
- "x": -21.417493499999996,
- "y": 37.6349255
- },
- {
- "x": -21.417493499999996,
- "y": 36.3349255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_76",
- "pcb_component_id": "pcb_component_15",
- "layer": "bottom",
- "route": [
- {
- "x": -20.767493499999997,
- "y": 37.1849255
- },
- {
- "x": -21.167493499999996,
- "y": 37.1849255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_77",
- "pcb_component_id": "pcb_component_15",
- "layer": "bottom",
- "route": [
- {
- "x": -20.967493499999996,
- "y": 37.1849255
- },
- {
- "x": -20.967493499999996,
- "y": 37.3349255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_78",
- "pcb_component_id": "pcb_component_15",
- "layer": "bottom",
- "route": [
- {
- "x": -20.967493499999996,
- "y": 37.1849255
- },
- {
- "x": -20.767493499999997,
- "y": 36.8849255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_79",
- "pcb_component_id": "pcb_component_15",
- "layer": "bottom",
- "route": [
- {
- "x": -20.767493499999997,
- "y": 36.8849255
- },
- {
- "x": -21.167493499999996,
- "y": 36.8849255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_80",
- "pcb_component_id": "pcb_component_15",
- "layer": "bottom",
- "route": [
- {
- "x": -20.967493499999996,
- "y": 36.8849255
- },
- {
- "x": -20.967493499999996,
- "y": 36.7349255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_81",
- "pcb_component_id": "pcb_component_15",
- "layer": "bottom",
- "route": [
- {
- "x": -21.167493499999996,
- "y": 36.8849255
- },
- {
- "x": -20.967493499999996,
- "y": 37.1849255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_82",
- "pcb_component_id": "pcb_component_15",
- "layer": "bottom",
- "route": [
- {
- "x": -20.517493499999997,
- "y": 36.3349255
- },
- {
- "x": -20.517493499999997,
- "y": 37.6349255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_83",
- "pcb_component_id": "pcb_component_15",
- "layer": "bottom",
- "route": [
- {
- "x": -21.417493499999996,
- "y": 36.3349255
- },
- {
- "x": -20.517493499999997,
- "y": 36.3349255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_84",
- "pcb_component_id": "pcb_component_16",
- "layer": "top",
- "route": [
- {
- "x": -23.812501499999996,
- "y": 22.4336755
- },
- {
- "x": -42.86250149999999,
- "y": 22.4336755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_85",
- "pcb_component_id": "pcb_component_16",
- "layer": "top",
- "route": [
- {
- "x": -23.812501499999993,
- "y": 41.4836755
- },
- {
- "x": -23.812501499999996,
- "y": 22.4336755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_86",
- "pcb_component_id": "pcb_component_16",
- "layer": "top",
- "route": [
- {
- "x": -42.86250149999999,
- "y": 22.4336755
- },
- {
- "x": -42.86250149999999,
- "y": 41.483675500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_87",
- "pcb_component_id": "pcb_component_16",
- "layer": "top",
- "route": [
- {
- "x": -42.86250149999999,
- "y": 41.483675500000004
- },
- {
- "x": -23.812501499999993,
- "y": 41.4836755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_88",
- "pcb_component_id": "pcb_component_16",
- "layer": "top",
- "route": [
- {
- "x": -26.337501499999995,
- "y": 24.9586755
- },
- {
- "x": -40.337501499999995,
- "y": 24.958675500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_89",
- "pcb_component_id": "pcb_component_16",
- "layer": "top",
- "route": [
- {
- "x": -26.337501499999995,
- "y": 38.9586755
- },
- {
- "x": -26.337501499999995,
- "y": 24.9586755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_90",
- "pcb_component_id": "pcb_component_16",
- "layer": "top",
- "route": [
- {
- "x": -40.337501499999995,
- "y": 24.958675500000002
- },
- {
- "x": -40.337501499999995,
- "y": 38.9586755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_91",
- "pcb_component_id": "pcb_component_16",
- "layer": "top",
- "route": [
- {
- "x": -40.337501499999995,
- "y": 38.9586755
- },
- {
- "x": -26.337501499999995,
- "y": 38.9586755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_92",
- "pcb_component_id": "pcb_component_16",
- "layer": "top",
- "route": [
- {
- "x": -31.537501499999994,
- "y": 35.1586755
- },
- {
- "x": -31.537501499999994,
- "y": 38.258675499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_93",
- "pcb_component_id": "pcb_component_16",
- "layer": "top",
- "route": [
- {
- "x": -31.537501499999994,
- "y": 35.1586755
- },
- {
- "x": -35.13750149999999,
- "y": 35.1586755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_94",
- "pcb_component_id": "pcb_component_16",
- "layer": "top",
- "route": [
- {
- "x": -31.537501499999994,
- "y": 38.258675499999995
- },
- {
- "x": -35.13750149999999,
- "y": 38.258675499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_95",
- "pcb_component_id": "pcb_component_16",
- "layer": "top",
- "route": [
- {
- "x": -35.13750149999999,
- "y": 35.1586755
- },
- {
- "x": -35.13750149999999,
- "y": 38.258675499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_96",
- "pcb_component_id": "pcb_component_17",
- "layer": "top",
- "route": [
- {
- "x": -4.762501499999997,
- "y": -6.141324500000003
- },
- {
- "x": -23.812501499999996,
- "y": -6.1413245
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_97",
- "pcb_component_id": "pcb_component_17",
- "layer": "top",
- "route": [
- {
- "x": -4.762501499999994,
- "y": 12.908675499999998
- },
- {
- "x": -4.762501499999997,
- "y": -6.141324500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_98",
- "pcb_component_id": "pcb_component_17",
- "layer": "top",
- "route": [
- {
- "x": -23.812501499999996,
- "y": -6.1413245
- },
- {
- "x": -23.812501499999996,
- "y": 12.908675500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_99",
- "pcb_component_id": "pcb_component_17",
- "layer": "top",
- "route": [
- {
- "x": -23.812501499999996,
- "y": 12.908675500000001
- },
- {
- "x": -4.762501499999994,
- "y": 12.908675499999998
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_100",
- "pcb_component_id": "pcb_component_17",
- "layer": "top",
- "route": [
- {
- "x": -7.287501499999997,
- "y": -3.616324500000001
- },
- {
- "x": -21.287501499999998,
- "y": -3.616324500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_101",
- "pcb_component_id": "pcb_component_17",
- "layer": "top",
- "route": [
- {
- "x": -7.287501499999995,
- "y": 10.383675499999999
- },
- {
- "x": -7.287501499999997,
- "y": -3.616324500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_102",
- "pcb_component_id": "pcb_component_17",
- "layer": "top",
- "route": [
- {
- "x": -21.287501499999998,
- "y": -3.616324500000001
- },
- {
- "x": -21.287501499999994,
- "y": 10.383675499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_103",
- "pcb_component_id": "pcb_component_17",
- "layer": "top",
- "route": [
- {
- "x": -21.287501499999994,
- "y": 10.383675499999999
- },
- {
- "x": -7.287501499999995,
- "y": 10.383675499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_104",
- "pcb_component_id": "pcb_component_17",
- "layer": "top",
- "route": [
- {
- "x": -12.487501499999995,
- "y": 6.583675499999998
- },
- {
- "x": -12.487501499999995,
- "y": 9.6836755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_105",
- "pcb_component_id": "pcb_component_17",
- "layer": "top",
- "route": [
- {
- "x": -12.487501499999995,
- "y": 6.583675499999998
- },
- {
- "x": -16.087501499999995,
- "y": 6.583675499999998
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_106",
- "pcb_component_id": "pcb_component_17",
- "layer": "top",
- "route": [
- {
- "x": -12.487501499999995,
- "y": 9.6836755
- },
- {
- "x": -16.087501499999995,
- "y": 9.6836755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_107",
- "pcb_component_id": "pcb_component_17",
- "layer": "top",
- "route": [
- {
- "x": -16.087501499999995,
- "y": 6.583675499999998
- },
- {
- "x": -16.087501499999995,
- "y": 9.6836755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_108",
- "pcb_component_id": "pcb_component_18",
- "layer": "bottom",
- "route": [
- {
- "x": 71.4925005,
- "y": -21.423488500000005
- },
- {
- "x": 71.4925005,
- "y": -21.639160500000003
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_109",
- "pcb_component_id": "pcb_component_18",
- "layer": "bottom",
- "route": [
- {
- "x": 70.7725005,
- "y": -21.423488500000005
- },
- {
- "x": 70.7725005,
- "y": -21.639160500000003
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_110",
- "pcb_component_id": "pcb_component_18",
- "layer": "bottom",
- "route": [
- {
- "x": 71.5925005,
- "y": -20.621324500000007
- },
- {
- "x": 70.67250050000001,
- "y": -20.621324500000007
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_111",
- "pcb_component_id": "pcb_component_18",
- "layer": "bottom",
- "route": [
- {
- "x": 70.67250050000001,
- "y": -20.621324500000007
- },
- {
- "x": 70.67250050000001,
- "y": -22.4413245
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_112",
- "pcb_component_id": "pcb_component_18",
- "layer": "bottom",
- "route": [
- {
- "x": 71.5925005,
- "y": -22.4413245
- },
- {
- "x": 71.5925005,
- "y": -20.621324500000007
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_113",
- "pcb_component_id": "pcb_component_18",
- "layer": "bottom",
- "route": [
- {
- "x": 70.67250050000001,
- "y": -22.4413245
- },
- {
- "x": 71.5925005,
- "y": -22.4413245
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_114",
- "pcb_component_id": "pcb_component_18",
- "layer": "bottom",
- "route": [
- {
- "x": 71.3825005,
- "y": -21.031324500000004
- },
- {
- "x": 70.8825005,
- "y": -21.031324500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_115",
- "pcb_component_id": "pcb_component_18",
- "layer": "bottom",
- "route": [
- {
- "x": 70.8825005,
- "y": -21.031324500000004
- },
- {
- "x": 70.8825005,
- "y": -22.031324500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_116",
- "pcb_component_id": "pcb_component_18",
- "layer": "bottom",
- "route": [
- {
- "x": 71.3825005,
- "y": -22.031324500000004
- },
- {
- "x": 71.3825005,
- "y": -21.031324500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_117",
- "pcb_component_id": "pcb_component_18",
- "layer": "bottom",
- "route": [
- {
- "x": 70.8825005,
- "y": -22.031324500000004
- },
- {
- "x": 71.3825005,
- "y": -22.031324500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_118",
- "pcb_component_id": "pcb_component_19",
- "layer": "top",
- "route": [
- {
- "x": -107.7375015,
- "y": -5.335074500000001
- },
- {
- "x": -111.33750149999999,
- "y": -5.335074500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_119",
- "pcb_component_id": "pcb_component_19",
- "layer": "top",
- "route": [
- {
- "x": -107.7375015,
- "y": -2.2350744999999996
- },
- {
- "x": -107.7375015,
- "y": -5.335074500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_120",
- "pcb_component_id": "pcb_component_19",
- "layer": "top",
- "route": [
- {
- "x": -111.33750149999999,
- "y": -5.335074500000001
- },
- {
- "x": -111.33750149999999,
- "y": -2.2350744999999996
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_121",
- "pcb_component_id": "pcb_component_19",
- "layer": "top",
- "route": [
- {
- "x": -111.33750149999999,
- "y": -2.2350744999999996
- },
- {
- "x": -107.7375015,
- "y": -2.2350744999999996
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_122",
- "pcb_component_id": "pcb_component_19",
- "layer": "bottom",
- "route": [
- {
- "x": -107.9375015,
- "y": -5.185074499999999
- },
- {
- "x": -111.13750149999998,
- "y": -5.185074499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_123",
- "pcb_component_id": "pcb_component_19",
- "layer": "bottom",
- "route": [
- {
- "x": -107.9375015,
- "y": -2.3850745000000018
- },
- {
- "x": -107.9375015,
- "y": -5.185074499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_124",
- "pcb_component_id": "pcb_component_19",
- "layer": "bottom",
- "route": [
- {
- "x": -107.9375015,
- "y": -2.3850745000000018
- },
- {
- "x": -111.13750149999998,
- "y": -2.3850745000000018
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_125",
- "pcb_component_id": "pcb_component_19",
- "layer": "bottom",
- "route": [
- {
- "x": -111.13750149999998,
- "y": -2.3850745000000018
- },
- {
- "x": -111.13750149999998,
- "y": -5.185074499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_126",
- "pcb_component_id": "pcb_component_20",
- "layer": "top",
- "route": [
- {
- "x": 119.0624985,
- "y": 1.0024254999999975
- },
- {
- "x": 100.01249849999999,
- "y": 1.002425500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_127",
- "pcb_component_id": "pcb_component_20",
- "layer": "top",
- "route": [
- {
- "x": 119.0624985,
- "y": 20.0524255
- },
- {
- "x": 119.0624985,
- "y": 1.0024254999999975
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_128",
- "pcb_component_id": "pcb_component_20",
- "layer": "top",
- "route": [
- {
- "x": 100.01249849999999,
- "y": 1.002425500000001
- },
- {
- "x": 100.01249849999999,
- "y": 20.052425500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_129",
- "pcb_component_id": "pcb_component_20",
- "layer": "top",
- "route": [
- {
- "x": 100.01249849999999,
- "y": 20.052425500000002
- },
- {
- "x": 119.0624985,
- "y": 20.0524255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_130",
- "pcb_component_id": "pcb_component_20",
- "layer": "top",
- "route": [
- {
- "x": 116.5374985,
- "y": 3.5274254999999997
- },
- {
- "x": 102.5374985,
- "y": 3.5274254999999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_131",
- "pcb_component_id": "pcb_component_20",
- "layer": "top",
- "route": [
- {
- "x": 116.5374985,
- "y": 17.5274255
- },
- {
- "x": 116.5374985,
- "y": 3.5274254999999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_132",
- "pcb_component_id": "pcb_component_20",
- "layer": "top",
- "route": [
- {
- "x": 102.5374985,
- "y": 3.5274254999999997
- },
- {
- "x": 102.5374985,
- "y": 17.5274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_133",
- "pcb_component_id": "pcb_component_20",
- "layer": "top",
- "route": [
- {
- "x": 102.5374985,
- "y": 17.5274255
- },
- {
- "x": 116.5374985,
- "y": 17.5274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_134",
- "pcb_component_id": "pcb_component_20",
- "layer": "top",
- "route": [
- {
- "x": 111.3374985,
- "y": 13.727425499999999
- },
- {
- "x": 111.3374985,
- "y": 16.8274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_135",
- "pcb_component_id": "pcb_component_20",
- "layer": "top",
- "route": [
- {
- "x": 111.3374985,
- "y": 13.727425499999999
- },
- {
- "x": 107.7374985,
- "y": 13.727425499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_136",
- "pcb_component_id": "pcb_component_20",
- "layer": "top",
- "route": [
- {
- "x": 111.3374985,
- "y": 16.8274255
- },
- {
- "x": 107.7374985,
- "y": 16.8274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_137",
- "pcb_component_id": "pcb_component_20",
- "layer": "top",
- "route": [
- {
- "x": 107.7374985,
- "y": 13.727425499999999
- },
- {
- "x": 107.7374985,
- "y": 16.8274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_138",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": 111.3375005,
- "y": -5.335074500000001
- },
- {
- "x": 107.73750050000001,
- "y": -5.335074500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_139",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": 111.3375005,
- "y": -2.2350744999999996
- },
- {
- "x": 111.3375005,
- "y": -5.335074500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_140",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": 107.73750050000001,
- "y": -5.335074500000001
- },
- {
- "x": 107.73750050000001,
- "y": -2.2350744999999996
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_141",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": 107.73750050000001,
- "y": -2.2350744999999996
- },
- {
- "x": 111.3375005,
- "y": -2.2350744999999996
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_142",
- "pcb_component_id": "pcb_component_21",
- "layer": "bottom",
- "route": [
- {
- "x": 111.1375005,
- "y": -5.185074499999999
- },
- {
- "x": 107.93750050000001,
- "y": -5.185074499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_143",
- "pcb_component_id": "pcb_component_21",
- "layer": "bottom",
- "route": [
- {
- "x": 111.1375005,
- "y": -2.3850745000000018
- },
- {
- "x": 111.1375005,
- "y": -5.185074499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_144",
- "pcb_component_id": "pcb_component_21",
- "layer": "bottom",
- "route": [
- {
- "x": 111.1375005,
- "y": -2.3850745000000018
- },
- {
- "x": 107.93750050000001,
- "y": -2.3850745000000018
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_145",
- "pcb_component_id": "pcb_component_21",
- "layer": "bottom",
- "route": [
- {
- "x": 107.93750050000001,
- "y": -2.3850745000000018
- },
- {
- "x": 107.93750050000001,
- "y": -5.185074499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_146",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -31.537501499999994,
- "y": 16.0961755
- },
- {
- "x": -35.13750149999999,
- "y": 16.0961755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_147",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -31.537501499999994,
- "y": 19.1961755
- },
- {
- "x": -31.537501499999994,
- "y": 16.0961755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_148",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -35.13750149999999,
- "y": 16.0961755
- },
- {
- "x": -35.13750149999999,
- "y": 19.1961755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_149",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": -35.13750149999999,
- "y": 19.1961755
- },
- {
- "x": -31.537501499999994,
- "y": 19.1961755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_150",
- "pcb_component_id": "pcb_component_22",
- "layer": "bottom",
- "route": [
- {
- "x": -31.737501499999993,
- "y": 16.2461755
- },
- {
- "x": -34.937501499999996,
- "y": 16.2461755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_151",
- "pcb_component_id": "pcb_component_22",
- "layer": "bottom",
- "route": [
- {
- "x": -31.737501499999993,
- "y": 19.0461755
- },
- {
- "x": -31.737501499999993,
- "y": 16.2461755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_152",
- "pcb_component_id": "pcb_component_22",
- "layer": "bottom",
- "route": [
- {
- "x": -31.737501499999993,
- "y": 19.0461755
- },
- {
- "x": -34.937501499999996,
- "y": 19.0461755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_153",
- "pcb_component_id": "pcb_component_22",
- "layer": "bottom",
- "route": [
- {
- "x": -34.937501499999996,
- "y": 19.0461755
- },
- {
- "x": -34.937501499999996,
- "y": 16.2461755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_154",
- "pcb_component_id": "pcb_component_23",
- "layer": "bottom",
- "route": [
- {
- "x": 74.05385950000002,
- "y": -20.492574499999996
- },
- {
- "x": 74.3611415,
- "y": -20.492574499999996
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_155",
- "pcb_component_id": "pcb_component_23",
- "layer": "bottom",
- "route": [
- {
- "x": 74.05385950000002,
- "y": -21.2525745
- },
- {
- "x": 74.3611415,
- "y": -21.2525745
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_156",
- "pcb_component_id": "pcb_component_23",
- "layer": "bottom",
- "route": [
- {
- "x": 73.2775005,
- "y": -20.4025745
- },
- {
- "x": 73.2775005,
- "y": -21.342574499999998
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_157",
- "pcb_component_id": "pcb_component_23",
- "layer": "bottom",
- "route": [
- {
- "x": 73.2775005,
- "y": -21.342574499999998
- },
- {
- "x": 75.13750050000002,
- "y": -21.342574499999998
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_158",
- "pcb_component_id": "pcb_component_23",
- "layer": "bottom",
- "route": [
- {
- "x": 75.13750050000002,
- "y": -20.4025745
- },
- {
- "x": 73.2775005,
- "y": -20.4025745
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_159",
- "pcb_component_id": "pcb_component_23",
- "layer": "bottom",
- "route": [
- {
- "x": 75.13750050000002,
- "y": -21.342574499999998
- },
- {
- "x": 75.13750050000002,
- "y": -20.4025745
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_160",
- "pcb_component_id": "pcb_component_23",
- "layer": "bottom",
- "route": [
- {
- "x": 73.6825005,
- "y": -20.602574499999996
- },
- {
- "x": 73.6825005,
- "y": -21.142574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_161",
- "pcb_component_id": "pcb_component_23",
- "layer": "bottom",
- "route": [
- {
- "x": 73.6825005,
- "y": -21.142574500000002
- },
- {
- "x": 74.73250050000001,
- "y": -21.142574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_162",
- "pcb_component_id": "pcb_component_23",
- "layer": "bottom",
- "route": [
- {
- "x": 74.73250050000001,
- "y": -20.602574499999996
- },
- {
- "x": 73.6825005,
- "y": -20.602574499999996
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_163",
- "pcb_component_id": "pcb_component_23",
- "layer": "bottom",
- "route": [
- {
- "x": 74.73250050000001,
- "y": -21.142574500000002
- },
- {
- "x": 74.73250050000001,
- "y": -20.602574499999996
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_164",
- "pcb_component_id": "pcb_component_24",
- "layer": "bottom",
- "route": [
- {
- "x": -59.254665499999994,
- "y": -15.891324500000003
- },
- {
- "x": -59.47033749999999,
- "y": -15.891324500000003
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_165",
- "pcb_component_id": "pcb_component_24",
- "layer": "bottom",
- "route": [
- {
- "x": -59.254665499999994,
- "y": -15.171324500000004
- },
- {
- "x": -59.47033749999999,
- "y": -15.171324500000004
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_166",
- "pcb_component_id": "pcb_component_24",
- "layer": "bottom",
- "route": [
- {
- "x": -58.4525015,
- "y": -15.991324500000005
- },
- {
- "x": -58.4525015,
- "y": -15.071324500000003
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_167",
- "pcb_component_id": "pcb_component_24",
- "layer": "bottom",
- "route": [
- {
- "x": -58.4525015,
- "y": -15.071324500000003
- },
- {
- "x": -60.27250149999999,
- "y": -15.071324500000003
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_168",
- "pcb_component_id": "pcb_component_24",
- "layer": "bottom",
- "route": [
- {
- "x": -60.27250149999999,
- "y": -15.991324500000005
- },
- {
- "x": -58.4525015,
- "y": -15.991324500000005
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_169",
- "pcb_component_id": "pcb_component_24",
- "layer": "bottom",
- "route": [
- {
- "x": -60.27250149999999,
- "y": -15.071324500000003
- },
- {
- "x": -60.27250149999999,
- "y": -15.991324500000005
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_170",
- "pcb_component_id": "pcb_component_24",
- "layer": "bottom",
- "route": [
- {
- "x": -58.86250149999999,
- "y": -15.781324500000004
- },
- {
- "x": -58.86250149999999,
- "y": -15.281324500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_171",
- "pcb_component_id": "pcb_component_24",
- "layer": "bottom",
- "route": [
- {
- "x": -58.86250149999999,
- "y": -15.281324500000004
- },
- {
- "x": -59.86250149999999,
- "y": -15.281324500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_172",
- "pcb_component_id": "pcb_component_24",
- "layer": "bottom",
- "route": [
- {
- "x": -59.86250149999999,
- "y": -15.781324500000004
- },
- {
- "x": -58.86250149999999,
- "y": -15.781324500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_173",
- "pcb_component_id": "pcb_component_24",
- "layer": "bottom",
- "route": [
- {
- "x": -59.86250149999999,
- "y": -15.281324500000004
- },
- {
- "x": -59.86250149999999,
- "y": -15.781324500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_174",
- "pcb_component_id": "pcb_component_25",
- "layer": "bottom",
- "route": [
- {
- "x": 84.1525065,
- "y": -14.952910500000002
- },
- {
- "x": 84.1525065,
- "y": -14.737238500000004
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_175",
- "pcb_component_id": "pcb_component_25",
- "layer": "bottom",
- "route": [
- {
- "x": 84.8725065,
- "y": -14.952910500000002
- },
- {
- "x": 84.8725065,
- "y": -14.737238500000004
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_176",
- "pcb_component_id": "pcb_component_25",
- "layer": "bottom",
- "route": [
- {
- "x": 84.0525065,
- "y": -15.7550745
- },
- {
- "x": 84.9725065,
- "y": -15.7550745
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_177",
- "pcb_component_id": "pcb_component_25",
- "layer": "bottom",
- "route": [
- {
- "x": 84.9725065,
- "y": -15.7550745
- },
- {
- "x": 84.9725065,
- "y": -13.935074500000006
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_178",
- "pcb_component_id": "pcb_component_25",
- "layer": "bottom",
- "route": [
- {
- "x": 84.0525065,
- "y": -13.935074500000006
- },
- {
- "x": 84.0525065,
- "y": -15.7550745
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_179",
- "pcb_component_id": "pcb_component_25",
- "layer": "bottom",
- "route": [
- {
- "x": 84.9725065,
- "y": -13.935074500000006
- },
- {
- "x": 84.0525065,
- "y": -13.935074500000006
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_180",
- "pcb_component_id": "pcb_component_25",
- "layer": "bottom",
- "route": [
- {
- "x": 84.2625065,
- "y": -15.345074500000003
- },
- {
- "x": 84.7625065,
- "y": -15.345074500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_181",
- "pcb_component_id": "pcb_component_25",
- "layer": "bottom",
- "route": [
- {
- "x": 84.7625065,
- "y": -15.345074500000003
- },
- {
- "x": 84.7625065,
- "y": -14.345074500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_182",
- "pcb_component_id": "pcb_component_25",
- "layer": "bottom",
- "route": [
- {
- "x": 84.2625065,
- "y": -14.345074500000003
- },
- {
- "x": 84.2625065,
- "y": -15.345074500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_183",
- "pcb_component_id": "pcb_component_25",
- "layer": "bottom",
- "route": [
- {
- "x": 84.7625065,
- "y": -14.345074500000003
- },
- {
- "x": 84.2625065,
- "y": -14.345074500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_184",
- "pcb_component_id": "pcb_component_26",
- "layer": "bottom",
- "route": [
- {
- "x": 78.3274985,
- "y": -8.640410499999998
- },
- {
- "x": 78.3274985,
- "y": -8.4247385
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_185",
- "pcb_component_id": "pcb_component_26",
- "layer": "bottom",
- "route": [
- {
- "x": 79.0474985,
- "y": -8.640410499999998
- },
- {
- "x": 79.0474985,
- "y": -8.4247385
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_186",
- "pcb_component_id": "pcb_component_26",
- "layer": "bottom",
- "route": [
- {
- "x": 78.22749850000001,
- "y": -9.4425745
- },
- {
- "x": 79.1474985,
- "y": -9.4425745
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_187",
- "pcb_component_id": "pcb_component_26",
- "layer": "bottom",
- "route": [
- {
- "x": 79.1474985,
- "y": -9.4425745
- },
- {
- "x": 79.1474985,
- "y": -7.622574499999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_188",
- "pcb_component_id": "pcb_component_26",
- "layer": "bottom",
- "route": [
- {
- "x": 78.22749850000001,
- "y": -7.622574499999999
- },
- {
- "x": 78.22749850000001,
- "y": -9.4425745
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_189",
- "pcb_component_id": "pcb_component_26",
- "layer": "bottom",
- "route": [
- {
- "x": 79.1474985,
- "y": -7.622574499999999
- },
- {
- "x": 78.22749850000001,
- "y": -7.622574499999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_190",
- "pcb_component_id": "pcb_component_26",
- "layer": "bottom",
- "route": [
- {
- "x": 78.4374985,
- "y": -9.032574499999999
- },
- {
- "x": 78.9374985,
- "y": -9.032574499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_191",
- "pcb_component_id": "pcb_component_26",
- "layer": "bottom",
- "route": [
- {
- "x": 78.9374985,
- "y": -9.032574499999999
- },
- {
- "x": 78.9374985,
- "y": -8.032574499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_192",
- "pcb_component_id": "pcb_component_26",
- "layer": "bottom",
- "route": [
- {
- "x": 78.4374985,
- "y": -8.032574499999999
- },
- {
- "x": 78.4374985,
- "y": -9.032574499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_193",
- "pcb_component_id": "pcb_component_26",
- "layer": "bottom",
- "route": [
- {
- "x": 78.9374985,
- "y": -8.032574499999999
- },
- {
- "x": 78.4374985,
- "y": -8.032574499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_194",
- "pcb_component_id": "pcb_component_27",
- "layer": "bottom",
- "route": [
- {
- "x": -22.628860499999995,
- "y": 35.8324255
- },
- {
- "x": -22.936142499999995,
- "y": 35.8324255
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_195",
- "pcb_component_id": "pcb_component_27",
- "layer": "bottom",
- "route": [
- {
- "x": -22.628860499999995,
- "y": 36.592425500000004
- },
- {
- "x": -22.936142499999995,
- "y": 36.592425500000004
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_196",
- "pcb_component_id": "pcb_component_27",
- "layer": "bottom",
- "route": [
- {
- "x": -21.852501499999995,
- "y": 35.742425499999996
- },
- {
- "x": -21.852501499999995,
- "y": 36.6824255
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_197",
- "pcb_component_id": "pcb_component_27",
- "layer": "bottom",
- "route": [
- {
- "x": -21.852501499999995,
- "y": 36.6824255
- },
- {
- "x": -23.712501499999995,
- "y": 36.6824255
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_198",
- "pcb_component_id": "pcb_component_27",
- "layer": "bottom",
- "route": [
- {
- "x": -23.712501499999995,
- "y": 35.742425499999996
- },
- {
- "x": -21.852501499999995,
- "y": 35.742425499999996
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_199",
- "pcb_component_id": "pcb_component_27",
- "layer": "bottom",
- "route": [
- {
- "x": -23.712501499999995,
- "y": 36.6824255
- },
- {
- "x": -23.712501499999995,
- "y": 35.742425499999996
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_200",
- "pcb_component_id": "pcb_component_27",
- "layer": "bottom",
- "route": [
- {
- "x": -22.257501499999996,
- "y": 35.9424255
- },
- {
- "x": -22.257501499999996,
- "y": 36.4824255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_201",
- "pcb_component_id": "pcb_component_27",
- "layer": "bottom",
- "route": [
- {
- "x": -22.257501499999996,
- "y": 36.4824255
- },
- {
- "x": -23.307501499999994,
- "y": 36.4824255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_202",
- "pcb_component_id": "pcb_component_27",
- "layer": "bottom",
- "route": [
- {
- "x": -23.307501499999994,
- "y": 35.9424255
- },
- {
- "x": -22.257501499999996,
- "y": 35.9424255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_203",
- "pcb_component_id": "pcb_component_27",
- "layer": "bottom",
- "route": [
- {
- "x": -23.307501499999994,
- "y": 36.4824255
- },
- {
- "x": -23.307501499999994,
- "y": 35.9424255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_204",
- "pcb_component_id": "pcb_component_28",
- "layer": "top",
- "route": [
- {
- "x": 100.01249849999999,
- "y": -13.2850745
- },
- {
- "x": 80.9624985,
- "y": -13.2850745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_205",
- "pcb_component_id": "pcb_component_28",
- "layer": "top",
- "route": [
- {
- "x": 100.0124985,
- "y": 5.764925499999997
- },
- {
- "x": 100.01249849999999,
- "y": -13.2850745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_206",
- "pcb_component_id": "pcb_component_28",
- "layer": "top",
- "route": [
- {
- "x": 80.9624985,
- "y": -13.2850745
- },
- {
- "x": 80.96249850000001,
- "y": 5.7649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_207",
- "pcb_component_id": "pcb_component_28",
- "layer": "top",
- "route": [
- {
- "x": 80.96249850000001,
- "y": 5.7649255
- },
- {
- "x": 100.0124985,
- "y": 5.764925499999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_208",
- "pcb_component_id": "pcb_component_28",
- "layer": "top",
- "route": [
- {
- "x": 97.4874985,
- "y": -10.760074500000002
- },
- {
- "x": 83.4874985,
- "y": -10.760074500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_209",
- "pcb_component_id": "pcb_component_28",
- "layer": "top",
- "route": [
- {
- "x": 97.4874985,
- "y": 3.2399254999999982
- },
- {
- "x": 97.4874985,
- "y": -10.760074500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_210",
- "pcb_component_id": "pcb_component_28",
- "layer": "top",
- "route": [
- {
- "x": 83.4874985,
- "y": -10.760074500000002
- },
- {
- "x": 83.4874985,
- "y": 3.2399254999999982
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_211",
- "pcb_component_id": "pcb_component_28",
- "layer": "top",
- "route": [
- {
- "x": 83.4874985,
- "y": 3.2399254999999982
- },
- {
- "x": 97.4874985,
- "y": 3.2399254999999982
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_212",
- "pcb_component_id": "pcb_component_28",
- "layer": "top",
- "route": [
- {
- "x": 92.2874985,
- "y": -0.5600745000000025
- },
- {
- "x": 92.2874985,
- "y": 2.539925499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_213",
- "pcb_component_id": "pcb_component_28",
- "layer": "top",
- "route": [
- {
- "x": 92.2874985,
- "y": -0.5600745000000025
- },
- {
- "x": 88.6874985,
- "y": -0.5600745000000025
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_214",
- "pcb_component_id": "pcb_component_28",
- "layer": "top",
- "route": [
- {
- "x": 92.2874985,
- "y": 2.539925499999999
- },
- {
- "x": 88.6874985,
- "y": 2.539925499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_215",
- "pcb_component_id": "pcb_component_28",
- "layer": "top",
- "route": [
- {
- "x": 88.6874985,
- "y": -0.5600745000000025
- },
- {
- "x": 88.6874985,
- "y": 2.539925499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_216",
- "pcb_component_id": "pcb_component_29",
- "layer": "bottom",
- "route": [
- {
- "x": 16.967498500000005,
- "y": -9.212574500000002
- },
- {
- "x": 16.967498500000005,
- "y": -15.212574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_217",
- "pcb_component_id": "pcb_component_29",
- "layer": "bottom",
- "route": [
- {
- "x": 4.267498500000004,
- "y": -9.212574500000002
- },
- {
- "x": 16.967498500000005,
- "y": -9.212574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_218",
- "pcb_component_id": "pcb_component_29",
- "layer": "bottom",
- "route": [
- {
- "x": 4.267498500000004,
- "y": -9.212574500000002
- },
- {
- "x": 4.267498500000004,
- "y": -15.212574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_219",
- "pcb_component_id": "pcb_component_29",
- "layer": "bottom",
- "route": [
- {
- "x": 4.267498500000004,
- "y": -15.212574500000002
- },
- {
- "x": 16.967498500000005,
- "y": -15.212574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_220",
- "pcb_component_id": "pcb_component_29",
- "layer": "top",
- "route": [
- {
- "x": 16.967498500000005,
- "y": -9.212574500000002
- },
- {
- "x": 16.967498500000005,
- "y": -15.212574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_221",
- "pcb_component_id": "pcb_component_29",
- "layer": "top",
- "route": [
- {
- "x": 4.267498500000004,
- "y": -9.212574500000002
- },
- {
- "x": 16.967498500000005,
- "y": -9.212574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_222",
- "pcb_component_id": "pcb_component_29",
- "layer": "top",
- "route": [
- {
- "x": 4.267498500000004,
- "y": -9.212574500000002
- },
- {
- "x": 4.267498500000004,
- "y": -15.212574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_223",
- "pcb_component_id": "pcb_component_29",
- "layer": "top",
- "route": [
- {
- "x": 4.267498500000004,
- "y": -15.212574500000002
- },
- {
- "x": 16.967498500000005,
- "y": -15.212574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_224",
- "pcb_component_id": "pcb_component_29",
- "layer": "bottom",
- "route": [
- {
- "x": 4.267498500000004,
- "y": -9.212574500000002
- },
- {
- "x": 2.1674985000000038,
- "y": -9.212574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_225",
- "pcb_component_id": "pcb_component_29",
- "layer": "bottom",
- "route": [
- {
- "x": 2.1674985000000038,
- "y": -9.212574500000002
- },
- {
- "x": 2.1674985000000038,
- "y": -15.212574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_226",
- "pcb_component_id": "pcb_component_29",
- "layer": "bottom",
- "route": [
- {
- "x": 1.7674985000000039,
- "y": -9.712574500000002
- },
- {
- "x": 4.267498500000004,
- "y": -9.712574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_227",
- "pcb_component_id": "pcb_component_29",
- "layer": "bottom",
- "route": [
- {
- "x": 1.7674985000000039,
- "y": -9.712574500000002
- },
- {
- "x": 1.7674985000000039,
- "y": -14.712574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_228",
- "pcb_component_id": "pcb_component_29",
- "layer": "bottom",
- "route": [
- {
- "x": 1.7674985000000039,
- "y": -14.712574500000002
- },
- {
- "x": 4.267498500000004,
- "y": -14.712574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_229",
- "pcb_component_id": "pcb_component_29",
- "layer": "bottom",
- "route": [
- {
- "x": 4.267498500000004,
- "y": -15.212574500000002
- },
- {
- "x": 2.1674985000000038,
- "y": -15.212574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_230",
- "pcb_component_id": "pcb_component_30",
- "layer": "bottom",
- "route": [
- {
- "x": -85.3374995,
- "y": -14.957683500000002
- },
- {
- "x": -85.3374995,
- "y": -15.264965500000002
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_231",
- "pcb_component_id": "pcb_component_30",
- "layer": "bottom",
- "route": [
- {
- "x": -86.0974995,
- "y": -14.957683500000002
- },
- {
- "x": -86.0974995,
- "y": -15.264965500000002
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_232",
- "pcb_component_id": "pcb_component_30",
- "layer": "bottom",
- "route": [
- {
- "x": -85.2474995,
- "y": -14.181324500000002
- },
- {
- "x": -86.1874995,
- "y": -14.181324500000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_233",
- "pcb_component_id": "pcb_component_30",
- "layer": "bottom",
- "route": [
- {
- "x": -86.1874995,
- "y": -14.181324500000002
- },
- {
- "x": -86.1874995,
- "y": -16.0413245
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_234",
- "pcb_component_id": "pcb_component_30",
- "layer": "bottom",
- "route": [
- {
- "x": -85.2474995,
- "y": -16.0413245
- },
- {
- "x": -85.2474995,
- "y": -14.181324500000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_235",
- "pcb_component_id": "pcb_component_30",
- "layer": "bottom",
- "route": [
- {
- "x": -86.1874995,
- "y": -16.0413245
- },
- {
- "x": -85.2474995,
- "y": -16.0413245
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_236",
- "pcb_component_id": "pcb_component_30",
- "layer": "bottom",
- "route": [
- {
- "x": -85.4474995,
- "y": -14.586324500000003
- },
- {
- "x": -85.9874995,
- "y": -14.586324500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_237",
- "pcb_component_id": "pcb_component_30",
- "layer": "bottom",
- "route": [
- {
- "x": -85.9874995,
- "y": -14.586324500000003
- },
- {
- "x": -85.9874995,
- "y": -15.6363245
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_238",
- "pcb_component_id": "pcb_component_30",
- "layer": "bottom",
- "route": [
- {
- "x": -85.4474995,
- "y": -15.6363245
- },
- {
- "x": -85.4474995,
- "y": -14.586324500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_239",
- "pcb_component_id": "pcb_component_30",
- "layer": "bottom",
- "route": [
- {
- "x": -85.9874995,
- "y": -15.6363245
- },
- {
- "x": -85.4474995,
- "y": -15.6363245
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_240",
- "pcb_component_id": "pcb_component_31",
- "layer": "bottom",
- "route": [
- {
- "x": 70.41250050000001,
- "y": -21.423488500000005
- },
- {
- "x": 70.41250050000001,
- "y": -21.639160500000003
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_241",
- "pcb_component_id": "pcb_component_31",
- "layer": "bottom",
- "route": [
- {
- "x": 69.69250050000001,
- "y": -21.423488500000005
- },
- {
- "x": 69.69250050000001,
- "y": -21.639160500000003
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_242",
- "pcb_component_id": "pcb_component_31",
- "layer": "bottom",
- "route": [
- {
- "x": 70.5125005,
- "y": -20.621324500000007
- },
- {
- "x": 69.59250050000001,
- "y": -20.621324500000007
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_243",
- "pcb_component_id": "pcb_component_31",
- "layer": "bottom",
- "route": [
- {
- "x": 69.59250050000001,
- "y": -20.621324500000007
- },
- {
- "x": 69.59250050000001,
- "y": -22.4413245
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_244",
- "pcb_component_id": "pcb_component_31",
- "layer": "bottom",
- "route": [
- {
- "x": 70.5125005,
- "y": -22.4413245
- },
- {
- "x": 70.5125005,
- "y": -20.621324500000007
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_245",
- "pcb_component_id": "pcb_component_31",
- "layer": "bottom",
- "route": [
- {
- "x": 69.59250050000001,
- "y": -22.4413245
- },
- {
- "x": 70.5125005,
- "y": -22.4413245
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_246",
- "pcb_component_id": "pcb_component_31",
- "layer": "bottom",
- "route": [
- {
- "x": 70.30250050000001,
- "y": -21.031324500000004
- },
- {
- "x": 69.80250050000001,
- "y": -21.031324500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_247",
- "pcb_component_id": "pcb_component_31",
- "layer": "bottom",
- "route": [
- {
- "x": 69.80250050000001,
- "y": -21.031324500000004
- },
- {
- "x": 69.80250050000001,
- "y": -22.031324500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_248",
- "pcb_component_id": "pcb_component_31",
- "layer": "bottom",
- "route": [
- {
- "x": 70.30250050000001,
- "y": -22.031324500000004
- },
- {
- "x": 70.30250050000001,
- "y": -21.031324500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_249",
- "pcb_component_id": "pcb_component_31",
- "layer": "bottom",
- "route": [
- {
- "x": 69.80250050000001,
- "y": -22.031324500000004
- },
- {
- "x": 70.30250050000001,
- "y": -22.031324500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_250",
- "pcb_component_id": "pcb_component_32",
- "layer": "top",
- "route": [
- {
- "x": 71.4374985,
- "y": -34.716324500000006
- },
- {
- "x": 52.38749850000001,
- "y": -34.7163245
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_251",
- "pcb_component_id": "pcb_component_32",
- "layer": "top",
- "route": [
- {
- "x": 71.4374985,
- "y": -15.666324500000002
- },
- {
- "x": 71.4374985,
- "y": -34.716324500000006
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_252",
- "pcb_component_id": "pcb_component_32",
- "layer": "top",
- "route": [
- {
- "x": 52.38749850000001,
- "y": -34.7163245
- },
- {
- "x": 52.38749850000001,
- "y": -15.666324499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_253",
- "pcb_component_id": "pcb_component_32",
- "layer": "top",
- "route": [
- {
- "x": 52.38749850000001,
- "y": -15.666324499999995
- },
- {
- "x": 71.4374985,
- "y": -15.666324500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_254",
- "pcb_component_id": "pcb_component_32",
- "layer": "top",
- "route": [
- {
- "x": 68.9124985,
- "y": -32.1913245
- },
- {
- "x": 54.912498500000005,
- "y": -32.1913245
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_255",
- "pcb_component_id": "pcb_component_32",
- "layer": "top",
- "route": [
- {
- "x": 68.91249850000001,
- "y": -18.1913245
- },
- {
- "x": 68.9124985,
- "y": -32.1913245
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_256",
- "pcb_component_id": "pcb_component_32",
- "layer": "top",
- "route": [
- {
- "x": 54.912498500000005,
- "y": -32.1913245
- },
- {
- "x": 54.912498500000005,
- "y": -18.1913245
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_257",
- "pcb_component_id": "pcb_component_32",
- "layer": "top",
- "route": [
- {
- "x": 54.912498500000005,
- "y": -18.1913245
- },
- {
- "x": 68.91249850000001,
- "y": -18.1913245
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_258",
- "pcb_component_id": "pcb_component_32",
- "layer": "top",
- "route": [
- {
- "x": 63.7124985,
- "y": -21.991324499999997
- },
- {
- "x": 63.71249850000001,
- "y": -18.891324500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_259",
- "pcb_component_id": "pcb_component_32",
- "layer": "top",
- "route": [
- {
- "x": 63.7124985,
- "y": -21.991324499999997
- },
- {
- "x": 60.11249850000001,
- "y": -21.991324499999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_260",
- "pcb_component_id": "pcb_component_32",
- "layer": "top",
- "route": [
- {
- "x": 63.71249850000001,
- "y": -18.891324500000003
- },
- {
- "x": 60.11249850000001,
- "y": -18.891324500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_261",
- "pcb_component_id": "pcb_component_32",
- "layer": "top",
- "route": [
- {
- "x": 60.11249850000001,
- "y": -21.991324499999997
- },
- {
- "x": 60.11249850000001,
- "y": -18.891324500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_262",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": 23.812498500000004,
- "y": -6.141324500000003
- },
- {
- "x": 4.762498500000001,
- "y": -6.1413245
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_263",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": 23.812498500000004,
- "y": 12.908675499999998
- },
- {
- "x": 23.812498500000004,
- "y": -6.141324500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_264",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": 4.762498500000001,
- "y": -6.1413245
- },
- {
- "x": 4.762498500000005,
- "y": 12.908675500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_265",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": 4.762498500000005,
- "y": 12.908675500000001
- },
- {
- "x": 23.812498500000004,
- "y": 12.908675499999998
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_266",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": 21.2874985,
- "y": -3.616324500000001
- },
- {
- "x": 7.2874985000000025,
- "y": -3.616324500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_267",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": 21.287498500000005,
- "y": 10.383675499999999
- },
- {
- "x": 21.2874985,
- "y": -3.616324500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_268",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": 7.2874985000000025,
- "y": -3.616324500000001
- },
- {
- "x": 7.287498500000004,
- "y": 10.383675499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_269",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": 7.287498500000004,
- "y": 10.383675499999999
- },
- {
- "x": 21.287498500000005,
- "y": 10.383675499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_270",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": 16.087498500000002,
- "y": 6.583675499999998
- },
- {
- "x": 16.087498500000002,
- "y": 9.6836755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_271",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": 16.087498500000002,
- "y": 6.583675499999998
- },
- {
- "x": 12.487498500000004,
- "y": 6.583675499999998
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_272",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": 16.087498500000002,
- "y": 9.6836755
- },
- {
- "x": 12.487498500000004,
- "y": 9.6836755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_273",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": 12.487498500000004,
- "y": 6.583675499999998
- },
- {
- "x": 12.487498500000004,
- "y": 9.6836755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_274",
- "pcb_component_id": "pcb_component_34",
- "layer": "bottom",
- "route": [
- {
- "x": 63.4453345,
- "y": -9.8325745
- },
- {
- "x": 63.2296625,
- "y": -9.8325745
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_275",
- "pcb_component_id": "pcb_component_34",
- "layer": "bottom",
- "route": [
- {
- "x": 63.4453345,
- "y": -9.112574500000001
- },
- {
- "x": 63.2296625,
- "y": -9.112574500000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_276",
- "pcb_component_id": "pcb_component_34",
- "layer": "bottom",
- "route": [
- {
- "x": 64.2474985,
- "y": -9.932574500000001
- },
- {
- "x": 64.2474985,
- "y": -9.0125745
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_277",
- "pcb_component_id": "pcb_component_34",
- "layer": "bottom",
- "route": [
- {
- "x": 64.2474985,
- "y": -9.0125745
- },
- {
- "x": 62.427498500000006,
- "y": -9.0125745
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_278",
- "pcb_component_id": "pcb_component_34",
- "layer": "bottom",
- "route": [
- {
- "x": 62.4274985,
- "y": -9.932574500000001
- },
- {
- "x": 64.2474985,
- "y": -9.932574500000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_279",
- "pcb_component_id": "pcb_component_34",
- "layer": "bottom",
- "route": [
- {
- "x": 62.427498500000006,
- "y": -9.0125745
- },
- {
- "x": 62.4274985,
- "y": -9.932574500000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_280",
- "pcb_component_id": "pcb_component_34",
- "layer": "bottom",
- "route": [
- {
- "x": 63.8374985,
- "y": -9.7225745
- },
- {
- "x": 63.8374985,
- "y": -9.2225745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_281",
- "pcb_component_id": "pcb_component_34",
- "layer": "bottom",
- "route": [
- {
- "x": 63.8374985,
- "y": -9.2225745
- },
- {
- "x": 62.8374985,
- "y": -9.2225745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_282",
- "pcb_component_id": "pcb_component_34",
- "layer": "bottom",
- "route": [
- {
- "x": 62.8374985,
- "y": -9.7225745
- },
- {
- "x": 63.8374985,
- "y": -9.7225745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_283",
- "pcb_component_id": "pcb_component_34",
- "layer": "bottom",
- "route": [
- {
- "x": 62.8374985,
- "y": -9.2225745
- },
- {
- "x": 62.8374985,
- "y": -9.7225745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_284",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": -52.3875015,
- "y": -34.716324500000006
- },
- {
- "x": -71.4375015,
- "y": -34.7163245
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_285",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": -52.3875015,
- "y": -15.666324500000002
- },
- {
- "x": -52.3875015,
- "y": -34.716324500000006
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_286",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": -71.4375015,
- "y": -34.7163245
- },
- {
- "x": -71.4375015,
- "y": -15.666324499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_287",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": -71.4375015,
- "y": -15.666324499999995
- },
- {
- "x": -52.3875015,
- "y": -15.666324500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_288",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": -54.9125015,
- "y": -32.1913245
- },
- {
- "x": -68.9125015,
- "y": -32.1913245
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_289",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": -54.9125015,
- "y": -18.1913245
- },
- {
- "x": -54.9125015,
- "y": -32.1913245
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_290",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": -68.9125015,
- "y": -32.1913245
- },
- {
- "x": -68.91250149999999,
- "y": -18.1913245
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_291",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": -68.91250149999999,
- "y": -18.1913245
- },
- {
- "x": -54.9125015,
- "y": -18.1913245
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_292",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": -60.1125015,
- "y": -21.991324499999997
- },
- {
- "x": -60.11250149999999,
- "y": -18.891324500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_293",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": -60.1125015,
- "y": -21.991324499999997
- },
- {
- "x": -63.712501499999995,
- "y": -21.991324499999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_294",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": -60.11250149999999,
- "y": -18.891324500000003
- },
- {
- "x": -63.712501499999995,
- "y": -18.891324500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_295",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": -63.712501499999995,
- "y": -21.991324499999997
- },
- {
- "x": -63.712501499999995,
- "y": -18.891324500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_296",
- "pcb_component_id": "pcb_component_36",
- "layer": "bottom",
- "route": [
- {
- "x": 78.2174985,
- "y": -18.8162745
- },
- {
- "x": 78.2174985,
- "y": -18.1662745
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_297",
- "pcb_component_id": "pcb_component_36",
- "layer": "bottom",
- "route": [
- {
- "x": 77.5674985,
- "y": -18.8162745
- },
- {
- "x": 78.2174985,
- "y": -18.8162745
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_298",
- "pcb_component_id": "pcb_component_36",
- "layer": "bottom",
- "route": [
- {
- "x": 77.5674985,
- "y": -11.5962745
- },
- {
- "x": 78.2174985,
- "y": -11.5962745
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_299",
- "pcb_component_id": "pcb_component_36",
- "layer": "bottom",
- "route": [
- {
- "x": 71.64749850000001,
- "y": -18.8162745
- },
- {
- "x": 70.9974985,
- "y": -18.8162745
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_300",
- "pcb_component_id": "pcb_component_36",
- "layer": "bottom",
- "route": [
- {
- "x": 71.64749850000001,
- "y": -11.5962745
- },
- {
- "x": 70.9974985,
- "y": -11.5962745
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_301",
- "pcb_component_id": "pcb_component_36",
- "layer": "bottom",
- "route": [
- {
- "x": 70.9974985,
- "y": -18.8162745
- },
- {
- "x": 70.9974985,
- "y": -18.1662745
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_302",
- "pcb_component_id": "pcb_component_36",
- "layer": "bottom",
- "route": [
- {
- "x": 70.9974985,
- "y": -11.5962745
- },
- {
- "x": 70.9974985,
- "y": -12.246274499999998
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_303",
- "pcb_component_id": "pcb_component_36",
- "layer": "bottom",
- "route": [
- {
- "x": 78.72749850000001,
- "y": -19.326274500000004
- },
- {
- "x": 70.4874985,
- "y": -19.326274499999997
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_304",
- "pcb_component_id": "pcb_component_36",
- "layer": "bottom",
- "route": [
- {
- "x": 78.72749850000001,
- "y": -11.086274500000002
- },
- {
- "x": 78.72749850000001,
- "y": -19.326274500000004
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_305",
- "pcb_component_id": "pcb_component_36",
- "layer": "bottom",
- "route": [
- {
- "x": 70.4874985,
- "y": -19.326274499999997
- },
- {
- "x": 70.4874985,
- "y": -11.086274499999995
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_306",
- "pcb_component_id": "pcb_component_36",
- "layer": "bottom",
- "route": [
- {
- "x": 70.4874985,
- "y": -11.086274499999995
- },
- {
- "x": 78.72749850000001,
- "y": -11.086274500000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_307",
- "pcb_component_id": "pcb_component_36",
- "layer": "bottom",
- "route": [
- {
- "x": 78.1074985,
- "y": -18.7062745
- },
- {
- "x": 78.1074985,
- "y": -12.7062745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_308",
- "pcb_component_id": "pcb_component_36",
- "layer": "bottom",
- "route": [
- {
- "x": 78.1074985,
- "y": -12.7062745
- },
- {
- "x": 77.1074985,
- "y": -11.7062745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_309",
- "pcb_component_id": "pcb_component_36",
- "layer": "bottom",
- "route": [
- {
- "x": 77.1074985,
- "y": -11.7062745
- },
- {
- "x": 71.1074985,
- "y": -11.7062745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_310",
- "pcb_component_id": "pcb_component_36",
- "layer": "bottom",
- "route": [
- {
- "x": 71.1074985,
- "y": -18.7062745
- },
- {
- "x": 78.1074985,
- "y": -18.7062745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_311",
- "pcb_component_id": "pcb_component_36",
- "layer": "bottom",
- "route": [
- {
- "x": 71.1074985,
- "y": -11.7062745
- },
- {
- "x": 71.1074985,
- "y": -18.7062745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_312",
- "pcb_component_id": "pcb_component_37",
- "layer": "top",
- "route": [
- {
- "x": -42.8625015,
- "y": 24.814925499999998
- },
- {
- "x": -61.912501500000005,
- "y": 24.8149255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_313",
- "pcb_component_id": "pcb_component_37",
- "layer": "top",
- "route": [
- {
- "x": -42.86250149999999,
- "y": 43.8649255
- },
- {
- "x": -42.8625015,
- "y": 24.814925499999998
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_314",
- "pcb_component_id": "pcb_component_37",
- "layer": "top",
- "route": [
- {
- "x": -61.912501500000005,
- "y": 24.8149255
- },
- {
- "x": -61.9125015,
- "y": 43.8649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_315",
- "pcb_component_id": "pcb_component_37",
- "layer": "top",
- "route": [
- {
- "x": -61.9125015,
- "y": 43.8649255
- },
- {
- "x": -42.86250149999999,
- "y": 43.8649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_316",
- "pcb_component_id": "pcb_component_37",
- "layer": "top",
- "route": [
- {
- "x": -45.3875015,
- "y": 27.3399255
- },
- {
- "x": -59.3875015,
- "y": 27.3399255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_317",
- "pcb_component_id": "pcb_component_37",
- "layer": "top",
- "route": [
- {
- "x": -45.3875015,
- "y": 41.3399255
- },
- {
- "x": -45.3875015,
- "y": 27.3399255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_318",
- "pcb_component_id": "pcb_component_37",
- "layer": "top",
- "route": [
- {
- "x": -59.3875015,
- "y": 27.3399255
- },
- {
- "x": -59.3875015,
- "y": 41.3399255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_319",
- "pcb_component_id": "pcb_component_37",
- "layer": "top",
- "route": [
- {
- "x": -59.3875015,
- "y": 41.3399255
- },
- {
- "x": -45.3875015,
- "y": 41.3399255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_320",
- "pcb_component_id": "pcb_component_37",
- "layer": "top",
- "route": [
- {
- "x": -50.5875015,
- "y": 37.539925499999995
- },
- {
- "x": -50.5875015,
- "y": 40.639925500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_321",
- "pcb_component_id": "pcb_component_37",
- "layer": "top",
- "route": [
- {
- "x": -50.5875015,
- "y": 37.539925499999995
- },
- {
- "x": -54.187501499999996,
- "y": 37.539925499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_322",
- "pcb_component_id": "pcb_component_37",
- "layer": "top",
- "route": [
- {
- "x": -50.5875015,
- "y": 40.639925500000004
- },
- {
- "x": -54.187501499999996,
- "y": 40.639925500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_323",
- "pcb_component_id": "pcb_component_37",
- "layer": "top",
- "route": [
- {
- "x": -54.187501499999996,
- "y": 37.539925499999995
- },
- {
- "x": -54.187501499999996,
- "y": 40.639925500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_324",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": 80.96249850000001,
- "y": -10.903824500000006
- },
- {
- "x": 61.9124985,
- "y": -10.903824499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_325",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": 80.96249850000001,
- "y": 8.146175499999998
- },
- {
- "x": 80.96249850000001,
- "y": -10.903824500000006
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_326",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": 61.9124985,
- "y": -10.903824499999999
- },
- {
- "x": 61.912498500000005,
- "y": 8.146175500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_327",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": 61.912498500000005,
- "y": 8.146175500000002
- },
- {
- "x": 80.96249850000001,
- "y": 8.146175499999998
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_328",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": 78.4374985,
- "y": -8.3788245
- },
- {
- "x": 64.4374985,
- "y": -8.3788245
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_329",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": 78.4374985,
- "y": 5.6211755
- },
- {
- "x": 78.4374985,
- "y": -8.3788245
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_330",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": 64.4374985,
- "y": -8.3788245
- },
- {
- "x": 64.4374985,
- "y": 5.6211755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_331",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": 64.4374985,
- "y": 5.6211755
- },
- {
- "x": 78.4374985,
- "y": 5.6211755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_332",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": 73.2374985,
- "y": 1.821175499999999
- },
- {
- "x": 73.2374985,
- "y": 4.9211755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_333",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": 73.2374985,
- "y": 1.821175499999999
- },
- {
- "x": 69.6374985,
- "y": 1.821175499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_334",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": 73.2374985,
- "y": 4.9211755
- },
- {
- "x": 69.6374985,
- "y": 4.9211755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_335",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": 69.6374985,
- "y": 1.821175499999999
- },
- {
- "x": 69.6374985,
- "y": 4.9211755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_336",
- "pcb_component_id": "pcb_component_39",
- "layer": "top",
- "route": [
- {
- "x": 35.1374985,
- "y": 35.1461755
- },
- {
- "x": 31.5374985,
- "y": 35.1461755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_337",
- "pcb_component_id": "pcb_component_39",
- "layer": "top",
- "route": [
- {
- "x": 35.1374985,
- "y": 38.2461755
- },
- {
- "x": 35.1374985,
- "y": 35.1461755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_338",
- "pcb_component_id": "pcb_component_39",
- "layer": "top",
- "route": [
- {
- "x": 31.5374985,
- "y": 35.1461755
- },
- {
- "x": 31.5374985,
- "y": 38.2461755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_339",
- "pcb_component_id": "pcb_component_39",
- "layer": "top",
- "route": [
- {
- "x": 31.5374985,
- "y": 38.2461755
- },
- {
- "x": 35.1374985,
- "y": 38.2461755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_340",
- "pcb_component_id": "pcb_component_39",
- "layer": "bottom",
- "route": [
- {
- "x": 34.937498500000004,
- "y": 35.2961755
- },
- {
- "x": 31.7374985,
- "y": 35.2961755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_341",
- "pcb_component_id": "pcb_component_39",
- "layer": "bottom",
- "route": [
- {
- "x": 34.937498500000004,
- "y": 38.0961755
- },
- {
- "x": 34.937498500000004,
- "y": 35.2961755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_342",
- "pcb_component_id": "pcb_component_39",
- "layer": "bottom",
- "route": [
- {
- "x": 34.937498500000004,
- "y": 38.0961755
- },
- {
- "x": 31.7374985,
- "y": 38.0961755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_343",
- "pcb_component_id": "pcb_component_39",
- "layer": "bottom",
- "route": [
- {
- "x": 31.7374985,
- "y": 38.0961755
- },
- {
- "x": 31.7374985,
- "y": 35.2961755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_344",
- "pcb_component_id": "pcb_component_40",
- "layer": "bottom",
- "route": [
- {
- "x": -75.0024995,
- "y": -9.190410499999999
- },
- {
- "x": -75.0024995,
- "y": -8.9747385
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_345",
- "pcb_component_id": "pcb_component_40",
- "layer": "bottom",
- "route": [
- {
- "x": -74.2824995,
- "y": -9.190410499999999
- },
- {
- "x": -74.2824995,
- "y": -8.9747385
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_346",
- "pcb_component_id": "pcb_component_40",
- "layer": "bottom",
- "route": [
- {
- "x": -75.1024995,
- "y": -9.992574499999996
- },
- {
- "x": -74.1824995,
- "y": -9.992574499999996
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_347",
- "pcb_component_id": "pcb_component_40",
- "layer": "bottom",
- "route": [
- {
- "x": -74.1824995,
- "y": -9.992574499999996
- },
- {
- "x": -74.1824995,
- "y": -8.1725745
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_348",
- "pcb_component_id": "pcb_component_40",
- "layer": "bottom",
- "route": [
- {
- "x": -75.1024995,
- "y": -8.1725745
- },
- {
- "x": -75.1024995,
- "y": -9.992574499999996
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_349",
- "pcb_component_id": "pcb_component_40",
- "layer": "bottom",
- "route": [
- {
- "x": -74.1824995,
- "y": -8.1725745
- },
- {
- "x": -75.1024995,
- "y": -8.1725745
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_350",
- "pcb_component_id": "pcb_component_40",
- "layer": "bottom",
- "route": [
- {
- "x": -74.8924995,
- "y": -9.5825745
- },
- {
- "x": -74.3924995,
- "y": -9.5825745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_351",
- "pcb_component_id": "pcb_component_40",
- "layer": "bottom",
- "route": [
- {
- "x": -74.3924995,
- "y": -9.5825745
- },
- {
- "x": -74.3924995,
- "y": -8.5825745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_352",
- "pcb_component_id": "pcb_component_40",
- "layer": "bottom",
- "route": [
- {
- "x": -74.8924995,
- "y": -8.5825745
- },
- {
- "x": -74.8924995,
- "y": -9.5825745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_353",
- "pcb_component_id": "pcb_component_40",
- "layer": "bottom",
- "route": [
- {
- "x": -74.3924995,
- "y": -8.5825745
- },
- {
- "x": -74.8924995,
- "y": -8.5825745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_354",
- "pcb_component_id": "pcb_component_41",
- "layer": "bottom",
- "route": [
- {
- "x": -92.5825015,
- "y": -12.9575745
- },
- {
- "x": -89.6525015,
- "y": -12.9575745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_355",
- "pcb_component_id": "pcb_component_41",
- "layer": "bottom",
- "route": [
- {
- "x": -92.5825015,
- "y": -12.9575745
- },
- {
- "x": -92.5825015,
- "y": -16.857574500000005
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_356",
- "pcb_component_id": "pcb_component_41",
- "layer": "bottom",
- "route": [
- {
- "x": -89.6525015,
- "y": -16.857574500000005
- },
- {
- "x": -89.6525015,
- "y": -12.9575745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_357",
- "pcb_component_id": "pcb_component_41",
- "layer": "bottom",
- "route": [
- {
- "x": -92.5825015,
- "y": -16.857574500000005
- },
- {
- "x": -89.6525015,
- "y": -16.857574500000005
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_358",
- "pcb_component_id": "pcb_component_42",
- "layer": "top",
- "route": [
- {
- "x": -107.7375015,
- "y": 13.7149255
- },
- {
- "x": -111.33750149999999,
- "y": 13.7149255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_359",
- "pcb_component_id": "pcb_component_42",
- "layer": "top",
- "route": [
- {
- "x": -107.7375015,
- "y": 16.8149255
- },
- {
- "x": -107.7375015,
- "y": 13.7149255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_360",
- "pcb_component_id": "pcb_component_42",
- "layer": "top",
- "route": [
- {
- "x": -111.33750149999999,
- "y": 13.7149255
- },
- {
- "x": -111.33750149999999,
- "y": 16.8149255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_361",
- "pcb_component_id": "pcb_component_42",
- "layer": "top",
- "route": [
- {
- "x": -111.33750149999999,
- "y": 16.8149255
- },
- {
- "x": -107.7375015,
- "y": 16.8149255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_362",
- "pcb_component_id": "pcb_component_42",
- "layer": "bottom",
- "route": [
- {
- "x": -107.9375015,
- "y": 13.8649255
- },
- {
- "x": -111.13750149999998,
- "y": 13.8649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_363",
- "pcb_component_id": "pcb_component_42",
- "layer": "bottom",
- "route": [
- {
- "x": -107.9375015,
- "y": 16.6649255
- },
- {
- "x": -107.9375015,
- "y": 13.8649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_364",
- "pcb_component_id": "pcb_component_42",
- "layer": "bottom",
- "route": [
- {
- "x": -107.9375015,
- "y": 16.6649255
- },
- {
- "x": -111.13750149999998,
- "y": 16.6649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_365",
- "pcb_component_id": "pcb_component_42",
- "layer": "bottom",
- "route": [
- {
- "x": -111.13750149999998,
- "y": 16.6649255
- },
- {
- "x": -111.13750149999998,
- "y": 13.8649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_366",
- "pcb_component_id": "pcb_component_43",
- "layer": "bottom",
- "route": [
- {
- "x": -84.9674995,
- "y": -15.209110500000001
- },
- {
- "x": -84.9674995,
- "y": -14.993438500000003
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_367",
- "pcb_component_id": "pcb_component_43",
- "layer": "bottom",
- "route": [
- {
- "x": -84.2474995,
- "y": -15.209110500000001
- },
- {
- "x": -84.2474995,
- "y": -14.993438500000003
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_368",
- "pcb_component_id": "pcb_component_43",
- "layer": "bottom",
- "route": [
- {
- "x": -85.0674995,
- "y": -16.0112745
- },
- {
- "x": -84.14749950000001,
- "y": -16.0112745
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_369",
- "pcb_component_id": "pcb_component_43",
- "layer": "bottom",
- "route": [
- {
- "x": -84.14749950000001,
- "y": -16.0112745
- },
- {
- "x": -84.14749950000001,
- "y": -14.191274500000006
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_370",
- "pcb_component_id": "pcb_component_43",
- "layer": "bottom",
- "route": [
- {
- "x": -85.0674995,
- "y": -14.191274500000006
- },
- {
- "x": -85.0674995,
- "y": -16.0112745
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_371",
- "pcb_component_id": "pcb_component_43",
- "layer": "bottom",
- "route": [
- {
- "x": -84.14749950000001,
- "y": -14.191274500000006
- },
- {
- "x": -85.0674995,
- "y": -14.191274500000006
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_372",
- "pcb_component_id": "pcb_component_43",
- "layer": "bottom",
- "route": [
- {
- "x": -84.8574995,
- "y": -15.601274500000002
- },
- {
- "x": -84.3574995,
- "y": -15.601274500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_373",
- "pcb_component_id": "pcb_component_43",
- "layer": "bottom",
- "route": [
- {
- "x": -84.3574995,
- "y": -15.601274500000002
- },
- {
- "x": -84.3574995,
- "y": -14.601274500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_374",
- "pcb_component_id": "pcb_component_43",
- "layer": "bottom",
- "route": [
- {
- "x": -84.8574995,
- "y": -14.601274500000002
- },
- {
- "x": -84.8574995,
- "y": -15.601274500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_375",
- "pcb_component_id": "pcb_component_43",
- "layer": "bottom",
- "route": [
- {
- "x": -84.3574995,
- "y": -14.601274500000002
- },
- {
- "x": -84.8574995,
- "y": -14.601274500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_376",
- "pcb_component_id": "pcb_component_44",
- "layer": "bottom",
- "route": [
- {
- "x": 7.767498500000004,
- "y": 33.8974255
- },
- {
- "x": 7.767498500000004,
- "y": 40.3974255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_377",
- "pcb_component_id": "pcb_component_44",
- "layer": "bottom",
- "route": [
- {
- "x": 16.8074985,
- "y": 40.3974255
- },
- {
- "x": 7.767498500000004,
- "y": 40.3974255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_378",
- "pcb_component_id": "pcb_component_44",
- "layer": "bottom",
- "route": [
- {
- "x": 16.8074985,
- "y": 33.8974255
- },
- {
- "x": 7.767498500000004,
- "y": 33.8974255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_379",
- "pcb_component_id": "pcb_component_44",
- "layer": "bottom",
- "route": [
- {
- "x": 16.8074985,
- "y": 33.8974255
- },
- {
- "x": 16.8074985,
- "y": 40.3974255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_380",
- "pcb_component_id": "pcb_component_44",
- "layer": "top",
- "route": [
- {
- "x": 7.767498500000004,
- "y": 33.8974255
- },
- {
- "x": 7.767498500000004,
- "y": 40.3974255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_381",
- "pcb_component_id": "pcb_component_44",
- "layer": "top",
- "route": [
- {
- "x": 16.8074985,
- "y": 40.3974255
- },
- {
- "x": 7.767498500000004,
- "y": 40.3974255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_382",
- "pcb_component_id": "pcb_component_44",
- "layer": "top",
- "route": [
- {
- "x": 16.8074985,
- "y": 33.8974255
- },
- {
- "x": 7.767498500000004,
- "y": 33.8974255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_383",
- "pcb_component_id": "pcb_component_44",
- "layer": "top",
- "route": [
- {
- "x": 16.8074985,
- "y": 33.8974255
- },
- {
- "x": 16.8074985,
- "y": 40.3974255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_384",
- "pcb_component_id": "pcb_component_44",
- "layer": "bottom",
- "route": [
- {
- "x": 7.767498500000004,
- "y": 40.3974255
- },
- {
- "x": 7.767498500000004,
- "y": 41.9974255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_385",
- "pcb_component_id": "pcb_component_44",
- "layer": "bottom",
- "route": [
- {
- "x": 7.767498500000004,
- "y": 40.3974255
- },
- {
- "x": 16.8074985,
- "y": 40.3974255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_386",
- "pcb_component_id": "pcb_component_44",
- "layer": "bottom",
- "route": [
- {
- "x": 16.8074985,
- "y": 41.9974255
- },
- {
- "x": 7.767498500000004,
- "y": 41.9974255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_387",
- "pcb_component_id": "pcb_component_44",
- "layer": "bottom",
- "route": [
- {
- "x": 16.8074985,
- "y": 40.3974255
- },
- {
- "x": 16.8074985,
- "y": 41.9974255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_388",
- "pcb_component_id": "pcb_component_45",
- "layer": "top",
- "route": [
- {
- "x": 54.1875005,
- "y": 18.4774255
- },
- {
- "x": 50.587500500000004,
- "y": 18.4774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_389",
- "pcb_component_id": "pcb_component_45",
- "layer": "top",
- "route": [
- {
- "x": 54.1875005,
- "y": 21.5774255
- },
- {
- "x": 54.1875005,
- "y": 18.4774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_390",
- "pcb_component_id": "pcb_component_45",
- "layer": "top",
- "route": [
- {
- "x": 50.587500500000004,
- "y": 18.4774255
- },
- {
- "x": 50.587500500000004,
- "y": 21.5774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_391",
- "pcb_component_id": "pcb_component_45",
- "layer": "top",
- "route": [
- {
- "x": 50.587500500000004,
- "y": 21.5774255
- },
- {
- "x": 54.1875005,
- "y": 21.5774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_392",
- "pcb_component_id": "pcb_component_45",
- "layer": "bottom",
- "route": [
- {
- "x": 53.9875005,
- "y": 18.6274255
- },
- {
- "x": 50.7875005,
- "y": 18.6274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_393",
- "pcb_component_id": "pcb_component_45",
- "layer": "bottom",
- "route": [
- {
- "x": 53.9875005,
- "y": 21.4274255
- },
- {
- "x": 53.9875005,
- "y": 18.6274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_394",
- "pcb_component_id": "pcb_component_45",
- "layer": "bottom",
- "route": [
- {
- "x": 53.9875005,
- "y": 21.4274255
- },
- {
- "x": 50.7875005,
- "y": 21.4274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_395",
- "pcb_component_id": "pcb_component_45",
- "layer": "bottom",
- "route": [
- {
- "x": 50.7875005,
- "y": 21.4274255
- },
- {
- "x": 50.7875005,
- "y": 18.6274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_396",
- "pcb_component_id": "pcb_component_46",
- "layer": "top",
- "route": [
- {
- "x": -50.5875015,
- "y": 37.5274255
- },
- {
- "x": -54.187501499999996,
- "y": 37.5274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_397",
- "pcb_component_id": "pcb_component_46",
- "layer": "top",
- "route": [
- {
- "x": -50.5875015,
- "y": 40.6274255
- },
- {
- "x": -50.5875015,
- "y": 37.5274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_398",
- "pcb_component_id": "pcb_component_46",
- "layer": "top",
- "route": [
- {
- "x": -54.187501499999996,
- "y": 37.5274255
- },
- {
- "x": -54.187501499999996,
- "y": 40.6274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_399",
- "pcb_component_id": "pcb_component_46",
- "layer": "top",
- "route": [
- {
- "x": -54.187501499999996,
- "y": 40.6274255
- },
- {
- "x": -50.5875015,
- "y": 40.6274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_400",
- "pcb_component_id": "pcb_component_46",
- "layer": "bottom",
- "route": [
- {
- "x": -50.7875015,
- "y": 37.6774255
- },
- {
- "x": -53.9875015,
- "y": 37.6774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_401",
- "pcb_component_id": "pcb_component_46",
- "layer": "bottom",
- "route": [
- {
- "x": -50.7875015,
- "y": 40.477425499999995
- },
- {
- "x": -50.7875015,
- "y": 37.6774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_402",
- "pcb_component_id": "pcb_component_46",
- "layer": "bottom",
- "route": [
- {
- "x": -50.7875015,
- "y": 40.477425499999995
- },
- {
- "x": -53.9875015,
- "y": 40.477425499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_403",
- "pcb_component_id": "pcb_component_46",
- "layer": "bottom",
- "route": [
- {
- "x": -53.9875015,
- "y": 40.477425499999995
- },
- {
- "x": -53.9875015,
- "y": 37.6774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_404",
- "pcb_component_id": "pcb_component_47",
- "layer": "bottom",
- "route": [
- {
- "x": -79.2175015,
- "y": -9.1804105
- },
- {
- "x": -79.2175015,
- "y": -8.964738500000003
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_405",
- "pcb_component_id": "pcb_component_47",
- "layer": "bottom",
- "route": [
- {
- "x": -78.4975015,
- "y": -9.1804105
- },
- {
- "x": -78.4975015,
- "y": -8.964738500000003
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_406",
- "pcb_component_id": "pcb_component_47",
- "layer": "bottom",
- "route": [
- {
- "x": -79.31750149999999,
- "y": -9.982574499999998
- },
- {
- "x": -78.3975015,
- "y": -9.982574499999998
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_407",
- "pcb_component_id": "pcb_component_47",
- "layer": "bottom",
- "route": [
- {
- "x": -78.3975015,
- "y": -9.982574499999998
- },
- {
- "x": -78.3975015,
- "y": -8.162574500000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_408",
- "pcb_component_id": "pcb_component_47",
- "layer": "bottom",
- "route": [
- {
- "x": -79.31750149999999,
- "y": -8.162574500000002
- },
- {
- "x": -79.31750149999999,
- "y": -9.982574499999998
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_409",
- "pcb_component_id": "pcb_component_47",
- "layer": "bottom",
- "route": [
- {
- "x": -78.3975015,
- "y": -8.162574500000002
- },
- {
- "x": -79.31750149999999,
- "y": -8.162574500000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_410",
- "pcb_component_id": "pcb_component_47",
- "layer": "bottom",
- "route": [
- {
- "x": -79.1075015,
- "y": -9.572574500000002
- },
- {
- "x": -78.6075015,
- "y": -9.572574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_411",
- "pcb_component_id": "pcb_component_47",
- "layer": "bottom",
- "route": [
- {
- "x": -78.6075015,
- "y": -9.572574500000002
- },
- {
- "x": -78.6075015,
- "y": -8.572574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_412",
- "pcb_component_id": "pcb_component_47",
- "layer": "bottom",
- "route": [
- {
- "x": -79.1075015,
- "y": -8.572574500000002
- },
- {
- "x": -79.1075015,
- "y": -9.572574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_413",
- "pcb_component_id": "pcb_component_47",
- "layer": "bottom",
- "route": [
- {
- "x": -78.6075015,
- "y": -8.572574500000002
- },
- {
- "x": -79.1075015,
- "y": -8.572574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_414",
- "pcb_component_id": "pcb_component_48",
- "layer": "bottom",
- "route": [
- {
- "x": -76.0275015,
- "y": -9.190410499999999
- },
- {
- "x": -76.0275015,
- "y": -8.9747385
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_415",
- "pcb_component_id": "pcb_component_48",
- "layer": "bottom",
- "route": [
- {
- "x": -75.3075015,
- "y": -9.190410499999999
- },
- {
- "x": -75.3075015,
- "y": -8.9747385
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_416",
- "pcb_component_id": "pcb_component_48",
- "layer": "bottom",
- "route": [
- {
- "x": -76.1275015,
- "y": -9.992574499999996
- },
- {
- "x": -75.2075015,
- "y": -9.992574499999996
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_417",
- "pcb_component_id": "pcb_component_48",
- "layer": "bottom",
- "route": [
- {
- "x": -75.2075015,
- "y": -9.992574499999996
- },
- {
- "x": -75.2075015,
- "y": -8.1725745
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_418",
- "pcb_component_id": "pcb_component_48",
- "layer": "bottom",
- "route": [
- {
- "x": -76.1275015,
- "y": -8.1725745
- },
- {
- "x": -76.1275015,
- "y": -9.992574499999996
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_419",
- "pcb_component_id": "pcb_component_48",
- "layer": "bottom",
- "route": [
- {
- "x": -75.2075015,
- "y": -8.1725745
- },
- {
- "x": -76.1275015,
- "y": -8.1725745
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_420",
- "pcb_component_id": "pcb_component_48",
- "layer": "bottom",
- "route": [
- {
- "x": -75.9175015,
- "y": -9.5825745
- },
- {
- "x": -75.4175015,
- "y": -9.5825745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_421",
- "pcb_component_id": "pcb_component_48",
- "layer": "bottom",
- "route": [
- {
- "x": -75.4175015,
- "y": -9.5825745
- },
- {
- "x": -75.4175015,
- "y": -8.5825745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_422",
- "pcb_component_id": "pcb_component_48",
- "layer": "bottom",
- "route": [
- {
- "x": -75.9175015,
- "y": -8.5825745
- },
- {
- "x": -75.9175015,
- "y": -9.5825745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_423",
- "pcb_component_id": "pcb_component_48",
- "layer": "bottom",
- "route": [
- {
- "x": -75.4175015,
- "y": -8.5825745
- },
- {
- "x": -75.9175015,
- "y": -8.5825745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_424",
- "pcb_component_id": "pcb_component_49",
- "layer": "top",
- "route": [
- {
- "x": 80.96249850000001,
- "y": 8.146175499999998
- },
- {
- "x": 61.9124985,
- "y": 8.146175500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_425",
- "pcb_component_id": "pcb_component_49",
- "layer": "top",
- "route": [
- {
- "x": 80.96249850000001,
- "y": 27.1961755
- },
- {
- "x": 80.96249850000001,
- "y": 8.146175499999998
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_426",
- "pcb_component_id": "pcb_component_49",
- "layer": "top",
- "route": [
- {
- "x": 61.9124985,
- "y": 8.146175500000002
- },
- {
- "x": 61.912498500000005,
- "y": 27.196175500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_427",
- "pcb_component_id": "pcb_component_49",
- "layer": "top",
- "route": [
- {
- "x": 61.912498500000005,
- "y": 27.196175500000003
- },
- {
- "x": 80.96249850000001,
- "y": 27.1961755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_428",
- "pcb_component_id": "pcb_component_49",
- "layer": "top",
- "route": [
- {
- "x": 78.4374985,
- "y": 10.671175499999999
- },
- {
- "x": 64.4374985,
- "y": 10.6711755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_429",
- "pcb_component_id": "pcb_component_49",
- "layer": "top",
- "route": [
- {
- "x": 78.4374985,
- "y": 24.671175499999997
- },
- {
- "x": 78.4374985,
- "y": 10.671175499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_430",
- "pcb_component_id": "pcb_component_49",
- "layer": "top",
- "route": [
- {
- "x": 64.4374985,
- "y": 10.6711755
- },
- {
- "x": 64.4374985,
- "y": 24.6711755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_431",
- "pcb_component_id": "pcb_component_49",
- "layer": "top",
- "route": [
- {
- "x": 64.4374985,
- "y": 24.6711755
- },
- {
- "x": 78.4374985,
- "y": 24.671175499999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_432",
- "pcb_component_id": "pcb_component_49",
- "layer": "top",
- "route": [
- {
- "x": 73.2374985,
- "y": 20.8711755
- },
- {
- "x": 73.2374985,
- "y": 23.9711755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_433",
- "pcb_component_id": "pcb_component_49",
- "layer": "top",
- "route": [
- {
- "x": 73.2374985,
- "y": 20.8711755
- },
- {
- "x": 69.6374985,
- "y": 20.8711755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_434",
- "pcb_component_id": "pcb_component_49",
- "layer": "top",
- "route": [
- {
- "x": 73.2374985,
- "y": 23.9711755
- },
- {
- "x": 69.6374985,
- "y": 23.9711755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_435",
- "pcb_component_id": "pcb_component_49",
- "layer": "top",
- "route": [
- {
- "x": 69.6374985,
- "y": 20.8711755
- },
- {
- "x": 69.6374985,
- "y": 23.9711755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_436",
- "pcb_component_id": "pcb_component_50",
- "layer": "bottom",
- "route": [
- {
- "x": -22.152501499999996,
- "y": 35.3437255
- },
- {
- "x": -23.152501499999996,
- "y": 35.3437255
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_437",
- "pcb_component_id": "pcb_component_50",
- "layer": "bottom",
- "route": [
- {
- "x": -22.152501499999996,
- "y": 32.5437255
- },
- {
- "x": -23.452501499999997,
- "y": 32.5437255
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_438",
- "pcb_component_id": "pcb_component_50",
- "layer": "bottom",
- "route": [
- {
- "x": -23.562501499999996,
- "y": 35.4437255
- },
- {
- "x": -23.562501499999996,
- "y": 32.4437255
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_439",
- "pcb_component_id": "pcb_component_50",
- "layer": "bottom",
- "route": [
- {
- "x": -23.562501499999996,
- "y": 32.4437255
- },
- {
- "x": -21.742501499999996,
- "y": 32.4437255
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_440",
- "pcb_component_id": "pcb_component_50",
- "layer": "bottom",
- "route": [
- {
- "x": -21.742501499999996,
- "y": 35.4437255
- },
- {
- "x": -23.562501499999996,
- "y": 35.4437255
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_441",
- "pcb_component_id": "pcb_component_50",
- "layer": "bottom",
- "route": [
- {
- "x": -21.742501499999996,
- "y": 32.4437255
- },
- {
- "x": -21.742501499999996,
- "y": 35.4437255
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_442",
- "pcb_component_id": "pcb_component_50",
- "layer": "bottom",
- "route": [
- {
- "x": -23.152501499999996,
- "y": 35.1937255
- },
- {
- "x": -22.152501499999996,
- "y": 35.1937255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_443",
- "pcb_component_id": "pcb_component_50",
- "layer": "bottom",
- "route": [
- {
- "x": -23.152501499999996,
- "y": 32.9437255
- },
- {
- "x": -23.152501499999996,
- "y": 35.1937255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_444",
- "pcb_component_id": "pcb_component_50",
- "layer": "bottom",
- "route": [
- {
- "x": -22.902501499999996,
- "y": 32.6937255
- },
- {
- "x": -23.152501499999996,
- "y": 32.9437255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_445",
- "pcb_component_id": "pcb_component_50",
- "layer": "bottom",
- "route": [
- {
- "x": -22.152501499999996,
- "y": 32.6937255
- },
- {
- "x": -22.902501499999996,
- "y": 32.6937255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_446",
- "pcb_component_id": "pcb_component_50",
- "layer": "bottom",
- "route": [
- {
- "x": -22.152501499999996,
- "y": 32.6937255
- },
- {
- "x": -22.152501499999996,
- "y": 35.1937255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_447",
- "pcb_component_id": "pcb_component_51",
- "layer": "top",
- "route": [
- {
- "x": 35.1374985,
- "y": -2.9538244999999996
- },
- {
- "x": 31.5374985,
- "y": -2.9538244999999996
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_448",
- "pcb_component_id": "pcb_component_51",
- "layer": "top",
- "route": [
- {
- "x": 35.1374985,
- "y": 0.1461755000000018
- },
- {
- "x": 35.1374985,
- "y": -2.9538244999999996
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_449",
- "pcb_component_id": "pcb_component_51",
- "layer": "top",
- "route": [
- {
- "x": 31.5374985,
- "y": -2.9538244999999996
- },
- {
- "x": 31.5374985,
- "y": 0.1461755000000018
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_450",
- "pcb_component_id": "pcb_component_51",
- "layer": "top",
- "route": [
- {
- "x": 31.5374985,
- "y": 0.1461755000000018
- },
- {
- "x": 35.1374985,
- "y": 0.1461755000000018
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_451",
- "pcb_component_id": "pcb_component_51",
- "layer": "bottom",
- "route": [
- {
- "x": 34.937498500000004,
- "y": -2.8038244999999975
- },
- {
- "x": 31.7374985,
- "y": -2.8038244999999975
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_452",
- "pcb_component_id": "pcb_component_51",
- "layer": "bottom",
- "route": [
- {
- "x": 34.937498500000004,
- "y": -0.0038245000000003415
- },
- {
- "x": 34.937498500000004,
- "y": -2.8038244999999975
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_453",
- "pcb_component_id": "pcb_component_51",
- "layer": "bottom",
- "route": [
- {
- "x": 34.937498500000004,
- "y": -0.0038245000000003415
- },
- {
- "x": 31.7374985,
- "y": -0.0038245000000003415
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_454",
- "pcb_component_id": "pcb_component_51",
- "layer": "bottom",
- "route": [
- {
- "x": 31.7374985,
- "y": -0.0038245000000003415
- },
- {
- "x": 31.7374985,
- "y": -2.8038244999999975
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_455",
- "pcb_component_id": "pcb_component_52",
- "layer": "top",
- "route": [
- {
- "x": -38.677120137849684,
- "y": -24.611436996734476
- },
- {
- "x": -42.199233378170895,
- "y": -23.866642849097673
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_456",
- "pcb_component_id": "pcb_component_52",
- "layer": "top",
- "route": [
- {
- "x": -38.0357696218291,
- "y": -21.578506150902328
- },
- {
- "x": -38.677120137849684,
- "y": -24.611436996734476
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_457",
- "pcb_component_id": "pcb_component_52",
- "layer": "top",
- "route": [
- {
- "x": -42.199233378170895,
- "y": -23.866642849097673
- },
- {
- "x": -41.55788286215031,
- "y": -20.833712003265525
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_458",
- "pcb_component_id": "pcb_component_52",
- "layer": "top",
- "route": [
- {
- "x": -41.55788286215031,
- "y": -20.833712003265525
- },
- {
- "x": -38.0357696218291,
- "y": -21.578506150902328
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_459",
- "pcb_component_id": "pcb_component_52",
- "layer": "bottom",
- "route": [
- {
- "x": -38.84176000616044,
- "y": -24.423304825741276
- },
- {
- "x": -41.9725273308904,
- "y": -23.761265583397446
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_460",
- "pcb_component_id": "pcb_component_52",
- "layer": "bottom",
- "route": [
- {
- "x": -38.26247566910959,
- "y": -21.683883416602555
- },
- {
- "x": -38.84176000616044,
- "y": -24.423304825741276
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_461",
- "pcb_component_id": "pcb_component_52",
- "layer": "bottom",
- "route": [
- {
- "x": -38.26247566910959,
- "y": -21.683883416602555
- },
- {
- "x": -41.39324299383955,
- "y": -21.021844174258725
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_462",
- "pcb_component_id": "pcb_component_52",
- "layer": "bottom",
- "route": [
- {
- "x": -41.39324299383955,
- "y": -21.021844174258725
- },
- {
- "x": -41.9725273308904,
- "y": -23.761265583397446
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_463",
- "pcb_component_id": "pcb_component_53",
- "layer": "bottom",
- "route": [
- {
- "x": -45.74750149999999,
- "y": -12.636274500000006
- },
- {
- "x": -51.75750149999999,
- "y": -12.636274499999999
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_464",
- "pcb_component_id": "pcb_component_53",
- "layer": "bottom",
- "route": [
- {
- "x": -47.99750149999999,
- "y": -19.456274500000006
- },
- {
- "x": -51.7575015,
- "y": -19.4562745
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_465",
- "pcb_component_id": "pcb_component_53",
- "layer": "bottom",
- "route": [
- {
- "x": -51.7575015,
- "y": -19.4562745
- },
- {
- "x": -51.75750149999999,
- "y": -18.1962745
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_466",
- "pcb_component_id": "pcb_component_53",
- "layer": "bottom",
- "route": [
- {
- "x": -51.75750149999999,
- "y": -12.636274499999999
- },
- {
- "x": -51.75750149999999,
- "y": -13.896274500000004
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_467",
- "pcb_component_id": "pcb_component_53",
- "layer": "bottom",
- "route": [
- {
- "x": -45.447501499999994,
- "y": -19.646274500000004
- },
- {
- "x": -54.24750149999999,
- "y": -19.646274500000004
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_468",
- "pcb_component_id": "pcb_component_53",
- "layer": "bottom",
- "route": [
- {
- "x": -45.447501499999994,
- "y": -12.446274500000001
- },
- {
- "x": -45.447501499999994,
- "y": -19.646274500000004
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_469",
- "pcb_component_id": "pcb_component_53",
- "layer": "bottom",
- "route": [
- {
- "x": -54.24750149999999,
- "y": -19.646274500000004
- },
- {
- "x": -54.24750149999999,
- "y": -12.446274500000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_470",
- "pcb_component_id": "pcb_component_53",
- "layer": "bottom",
- "route": [
- {
- "x": -54.24750149999999,
- "y": -12.446274500000001
- },
- {
- "x": -45.447501499999994,
- "y": -12.446274500000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_471",
- "pcb_component_id": "pcb_component_53",
- "layer": "bottom",
- "route": [
- {
- "x": -47.99750149999999,
- "y": -19.396274500000004
- },
- {
- "x": -51.697501499999994,
- "y": -19.396274500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_472",
- "pcb_component_id": "pcb_component_53",
- "layer": "bottom",
- "route": [
- {
- "x": -47.99750149999999,
- "y": -13.696274500000001
- },
- {
- "x": -47.99750149999999,
- "y": -19.396274500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_473",
- "pcb_component_id": "pcb_component_53",
- "layer": "bottom",
- "route": [
- {
- "x": -47.99750149999999,
- "y": -13.696274500000001
- },
- {
- "x": -48.99750149999999,
- "y": -12.696274500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_474",
- "pcb_component_id": "pcb_component_53",
- "layer": "bottom",
- "route": [
- {
- "x": -48.99750149999999,
- "y": -12.696274500000001
- },
- {
- "x": -51.697501499999994,
- "y": -12.696274500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_475",
- "pcb_component_id": "pcb_component_53",
- "layer": "bottom",
- "route": [
- {
- "x": -51.697501499999994,
- "y": -12.696274500000001
- },
- {
- "x": -51.697501499999994,
- "y": -19.396274500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_476",
- "pcb_component_id": "pcb_component_54",
- "layer": "top",
- "route": [
- {
- "x": 119.0624985,
- "y": -18.047574500000003
- },
- {
- "x": 100.01249849999999,
- "y": -18.047574500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_477",
- "pcb_component_id": "pcb_component_54",
- "layer": "top",
- "route": [
- {
- "x": 119.0624985,
- "y": 1.0024254999999975
- },
- {
- "x": 119.0624985,
- "y": -18.047574500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_478",
- "pcb_component_id": "pcb_component_54",
- "layer": "top",
- "route": [
- {
- "x": 100.01249849999999,
- "y": -18.047574500000003
- },
- {
- "x": 100.01249849999999,
- "y": 1.002425500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_479",
- "pcb_component_id": "pcb_component_54",
- "layer": "top",
- "route": [
- {
- "x": 100.01249849999999,
- "y": 1.002425500000001
- },
- {
- "x": 119.0624985,
- "y": 1.0024254999999975
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_480",
- "pcb_component_id": "pcb_component_54",
- "layer": "top",
- "route": [
- {
- "x": 116.5374985,
- "y": -15.522574500000005
- },
- {
- "x": 102.5374985,
- "y": -15.522574499999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_481",
- "pcb_component_id": "pcb_component_54",
- "layer": "top",
- "route": [
- {
- "x": 116.5374985,
- "y": -1.522574500000001
- },
- {
- "x": 116.5374985,
- "y": -15.522574500000005
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_482",
- "pcb_component_id": "pcb_component_54",
- "layer": "top",
- "route": [
- {
- "x": 102.5374985,
- "y": -15.522574499999997
- },
- {
- "x": 102.5374985,
- "y": -1.522574500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_483",
- "pcb_component_id": "pcb_component_54",
- "layer": "top",
- "route": [
- {
- "x": 102.5374985,
- "y": -1.522574500000001
- },
- {
- "x": 116.5374985,
- "y": -1.522574500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_484",
- "pcb_component_id": "pcb_component_54",
- "layer": "top",
- "route": [
- {
- "x": 111.3374985,
- "y": -5.322574500000002
- },
- {
- "x": 111.3374985,
- "y": -2.2225745000000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_485",
- "pcb_component_id": "pcb_component_54",
- "layer": "top",
- "route": [
- {
- "x": 111.3374985,
- "y": -5.322574500000002
- },
- {
- "x": 107.7374985,
- "y": -5.322574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_486",
- "pcb_component_id": "pcb_component_54",
- "layer": "top",
- "route": [
- {
- "x": 111.3374985,
- "y": -2.2225745000000003
- },
- {
- "x": 107.7374985,
- "y": -2.2225745000000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_487",
- "pcb_component_id": "pcb_component_54",
- "layer": "top",
- "route": [
- {
- "x": 107.7374985,
- "y": -5.322574500000002
- },
- {
- "x": 107.7374985,
- "y": -2.2225745000000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_488",
- "pcb_component_id": "pcb_component_55",
- "layer": "top",
- "route": [
- {
- "x": -80.9625015,
- "y": 24.814925499999998
- },
- {
- "x": -100.0125015,
- "y": 24.8149255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_489",
- "pcb_component_id": "pcb_component_55",
- "layer": "top",
- "route": [
- {
- "x": -80.96250149999999,
- "y": 43.8649255
- },
- {
- "x": -80.9625015,
- "y": 24.814925499999998
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_490",
- "pcb_component_id": "pcb_component_55",
- "layer": "top",
- "route": [
- {
- "x": -100.0125015,
- "y": 24.8149255
- },
- {
- "x": -100.01250149999998,
- "y": 43.8649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_491",
- "pcb_component_id": "pcb_component_55",
- "layer": "top",
- "route": [
- {
- "x": -100.01250149999998,
- "y": 43.8649255
- },
- {
- "x": -80.96250149999999,
- "y": 43.8649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_492",
- "pcb_component_id": "pcb_component_55",
- "layer": "top",
- "route": [
- {
- "x": -83.4875015,
- "y": 27.3399255
- },
- {
- "x": -97.4875015,
- "y": 27.3399255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_493",
- "pcb_component_id": "pcb_component_55",
- "layer": "top",
- "route": [
- {
- "x": -83.4875015,
- "y": 41.3399255
- },
- {
- "x": -83.4875015,
- "y": 27.3399255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_494",
- "pcb_component_id": "pcb_component_55",
- "layer": "top",
- "route": [
- {
- "x": -97.4875015,
- "y": 27.3399255
- },
- {
- "x": -97.4875015,
- "y": 41.3399255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_495",
- "pcb_component_id": "pcb_component_55",
- "layer": "top",
- "route": [
- {
- "x": -97.4875015,
- "y": 41.3399255
- },
- {
- "x": -83.4875015,
- "y": 41.3399255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_496",
- "pcb_component_id": "pcb_component_55",
- "layer": "top",
- "route": [
- {
- "x": -88.6875015,
- "y": 37.539925499999995
- },
- {
- "x": -88.6875015,
- "y": 40.639925500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_497",
- "pcb_component_id": "pcb_component_55",
- "layer": "top",
- "route": [
- {
- "x": -88.6875015,
- "y": 37.539925499999995
- },
- {
- "x": -92.28750149999999,
- "y": 37.539925499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_498",
- "pcb_component_id": "pcb_component_55",
- "layer": "top",
- "route": [
- {
- "x": -88.6875015,
- "y": 40.639925500000004
- },
- {
- "x": -92.28750149999999,
- "y": 40.639925500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_499",
- "pcb_component_id": "pcb_component_55",
- "layer": "top",
- "route": [
- {
- "x": -92.28750149999999,
- "y": 37.539925499999995
- },
- {
- "x": -92.28750149999999,
- "y": 40.639925500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_500",
- "pcb_component_id": "pcb_component_56",
- "layer": "top",
- "route": [
- {
- "x": -61.9125015,
- "y": 8.146175499999998
- },
- {
- "x": -80.9625015,
- "y": 8.146175500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_501",
- "pcb_component_id": "pcb_component_56",
- "layer": "top",
- "route": [
- {
- "x": -61.91250149999999,
- "y": 27.1961755
- },
- {
- "x": -61.9125015,
- "y": 8.146175499999998
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_502",
- "pcb_component_id": "pcb_component_56",
- "layer": "top",
- "route": [
- {
- "x": -80.9625015,
- "y": 8.146175500000002
- },
- {
- "x": -80.9625015,
- "y": 27.196175500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_503",
- "pcb_component_id": "pcb_component_56",
- "layer": "top",
- "route": [
- {
- "x": -80.9625015,
- "y": 27.196175500000003
- },
- {
- "x": -61.91250149999999,
- "y": 27.1961755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_504",
- "pcb_component_id": "pcb_component_56",
- "layer": "top",
- "route": [
- {
- "x": -64.4375015,
- "y": 10.671175499999999
- },
- {
- "x": -78.4375015,
- "y": 10.6711755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_505",
- "pcb_component_id": "pcb_component_56",
- "layer": "top",
- "route": [
- {
- "x": -64.4375015,
- "y": 24.671175499999997
- },
- {
- "x": -64.4375015,
- "y": 10.671175499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_506",
- "pcb_component_id": "pcb_component_56",
- "layer": "top",
- "route": [
- {
- "x": -78.4375015,
- "y": 10.6711755
- },
- {
- "x": -78.4375015,
- "y": 24.6711755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_507",
- "pcb_component_id": "pcb_component_56",
- "layer": "top",
- "route": [
- {
- "x": -78.4375015,
- "y": 24.6711755
- },
- {
- "x": -64.4375015,
- "y": 24.671175499999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_508",
- "pcb_component_id": "pcb_component_56",
- "layer": "top",
- "route": [
- {
- "x": -69.6375015,
- "y": 20.8711755
- },
- {
- "x": -69.6375015,
- "y": 23.9711755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_509",
- "pcb_component_id": "pcb_component_56",
- "layer": "top",
- "route": [
- {
- "x": -69.6375015,
- "y": 20.8711755
- },
- {
- "x": -73.2375015,
- "y": 20.8711755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_510",
- "pcb_component_id": "pcb_component_56",
- "layer": "top",
- "route": [
- {
- "x": -69.6375015,
- "y": 23.9711755
- },
- {
- "x": -73.2375015,
- "y": 23.9711755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_511",
- "pcb_component_id": "pcb_component_56",
- "layer": "top",
- "route": [
- {
- "x": -73.2375015,
- "y": 20.8711755
- },
- {
- "x": -73.2375015,
- "y": 23.9711755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_512",
- "pcb_component_id": "pcb_component_57",
- "layer": "top",
- "route": [
- {
- "x": -69.6375015,
- "y": 1.8086754999999997
- },
- {
- "x": -73.2375015,
- "y": 1.8086754999999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_513",
- "pcb_component_id": "pcb_component_57",
- "layer": "top",
- "route": [
- {
- "x": -69.6375015,
- "y": 4.908675500000001
- },
- {
- "x": -69.6375015,
- "y": 1.8086754999999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_514",
- "pcb_component_id": "pcb_component_57",
- "layer": "top",
- "route": [
- {
- "x": -73.2375015,
- "y": 1.8086754999999997
- },
- {
- "x": -73.2375015,
- "y": 4.908675500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_515",
- "pcb_component_id": "pcb_component_57",
- "layer": "top",
- "route": [
- {
- "x": -73.2375015,
- "y": 4.908675500000001
- },
- {
- "x": -69.6375015,
- "y": 4.908675500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_516",
- "pcb_component_id": "pcb_component_57",
- "layer": "bottom",
- "route": [
- {
- "x": -69.8375015,
- "y": 1.9586755000000018
- },
- {
- "x": -73.03750149999999,
- "y": 1.9586755000000018
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_517",
- "pcb_component_id": "pcb_component_57",
- "layer": "bottom",
- "route": [
- {
- "x": -69.8375015,
- "y": 4.758675499999999
- },
- {
- "x": -69.8375015,
- "y": 1.9586755000000018
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_518",
- "pcb_component_id": "pcb_component_57",
- "layer": "bottom",
- "route": [
- {
- "x": -69.8375015,
- "y": 4.758675499999999
- },
- {
- "x": -73.03750149999999,
- "y": 4.758675499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_519",
- "pcb_component_id": "pcb_component_57",
- "layer": "bottom",
- "route": [
- {
- "x": -73.03750149999999,
- "y": 4.758675499999999
- },
- {
- "x": -73.03750149999999,
- "y": 1.9586755000000018
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_520",
- "pcb_component_id": "pcb_component_58",
- "layer": "top",
- "route": [
- {
- "x": -80.9625015,
- "y": 5.764925499999997
- },
- {
- "x": -100.0125015,
- "y": 5.7649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_521",
- "pcb_component_id": "pcb_component_58",
- "layer": "top",
- "route": [
- {
- "x": -80.96250149999999,
- "y": 24.814925499999998
- },
- {
- "x": -80.9625015,
- "y": 5.764925499999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_522",
- "pcb_component_id": "pcb_component_58",
- "layer": "top",
- "route": [
- {
- "x": -100.0125015,
- "y": 5.7649255
- },
- {
- "x": -100.01250149999998,
- "y": 24.8149255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_523",
- "pcb_component_id": "pcb_component_58",
- "layer": "top",
- "route": [
- {
- "x": -100.01250149999998,
- "y": 24.8149255
- },
- {
- "x": -80.96250149999999,
- "y": 24.814925499999998
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_524",
- "pcb_component_id": "pcb_component_58",
- "layer": "top",
- "route": [
- {
- "x": -83.4875015,
- "y": 8.289925499999999
- },
- {
- "x": -97.4875015,
- "y": 8.2899255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_525",
- "pcb_component_id": "pcb_component_58",
- "layer": "top",
- "route": [
- {
- "x": -83.4875015,
- "y": 22.2899255
- },
- {
- "x": -83.4875015,
- "y": 8.289925499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_526",
- "pcb_component_id": "pcb_component_58",
- "layer": "top",
- "route": [
- {
- "x": -97.4875015,
- "y": 8.2899255
- },
- {
- "x": -97.4875015,
- "y": 22.289925500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_527",
- "pcb_component_id": "pcb_component_58",
- "layer": "top",
- "route": [
- {
- "x": -97.4875015,
- "y": 22.289925500000003
- },
- {
- "x": -83.4875015,
- "y": 22.2899255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_528",
- "pcb_component_id": "pcb_component_58",
- "layer": "top",
- "route": [
- {
- "x": -88.6875015,
- "y": 18.4899255
- },
- {
- "x": -88.6875015,
- "y": 21.5899255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_529",
- "pcb_component_id": "pcb_component_58",
- "layer": "top",
- "route": [
- {
- "x": -88.6875015,
- "y": 18.4899255
- },
- {
- "x": -92.28750149999999,
- "y": 18.4899255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_530",
- "pcb_component_id": "pcb_component_58",
- "layer": "top",
- "route": [
- {
- "x": -88.6875015,
- "y": 21.5899255
- },
- {
- "x": -92.28750149999999,
- "y": 21.5899255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_531",
- "pcb_component_id": "pcb_component_58",
- "layer": "top",
- "route": [
- {
- "x": -92.28750149999999,
- "y": 18.4899255
- },
- {
- "x": -92.28750149999999,
- "y": 21.5899255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_532",
- "pcb_component_id": "pcb_component_59",
- "layer": "top",
- "route": [
- {
- "x": 119.0624985,
- "y": 20.0524255
- },
- {
- "x": 100.01249849999999,
- "y": 20.052425500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_533",
- "pcb_component_id": "pcb_component_59",
- "layer": "top",
- "route": [
- {
- "x": 119.0624985,
- "y": 39.102425499999995
- },
- {
- "x": 119.0624985,
- "y": 20.0524255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_534",
- "pcb_component_id": "pcb_component_59",
- "layer": "top",
- "route": [
- {
- "x": 100.01249849999999,
- "y": 20.052425500000002
- },
- {
- "x": 100.01249849999999,
- "y": 39.1024255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_535",
- "pcb_component_id": "pcb_component_59",
- "layer": "top",
- "route": [
- {
- "x": 100.01249849999999,
- "y": 39.1024255
- },
- {
- "x": 119.0624985,
- "y": 39.102425499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_536",
- "pcb_component_id": "pcb_component_59",
- "layer": "top",
- "route": [
- {
- "x": 116.5374985,
- "y": 22.577425499999997
- },
- {
- "x": 102.5374985,
- "y": 22.5774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_537",
- "pcb_component_id": "pcb_component_59",
- "layer": "top",
- "route": [
- {
- "x": 116.5374985,
- "y": 36.5774255
- },
- {
- "x": 116.5374985,
- "y": 22.577425499999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_538",
- "pcb_component_id": "pcb_component_59",
- "layer": "top",
- "route": [
- {
- "x": 102.5374985,
- "y": 22.5774255
- },
- {
- "x": 102.5374985,
- "y": 36.577425500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_539",
- "pcb_component_id": "pcb_component_59",
- "layer": "top",
- "route": [
- {
- "x": 102.5374985,
- "y": 36.577425500000004
- },
- {
- "x": 116.5374985,
- "y": 36.5774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_540",
- "pcb_component_id": "pcb_component_59",
- "layer": "top",
- "route": [
- {
- "x": 111.3374985,
- "y": 32.7774255
- },
- {
- "x": 111.3374985,
- "y": 35.8774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_541",
- "pcb_component_id": "pcb_component_59",
- "layer": "top",
- "route": [
- {
- "x": 111.3374985,
- "y": 32.7774255
- },
- {
- "x": 107.7374985,
- "y": 32.7774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_542",
- "pcb_component_id": "pcb_component_59",
- "layer": "top",
- "route": [
- {
- "x": 111.3374985,
- "y": 35.8774255
- },
- {
- "x": 107.7374985,
- "y": 35.8774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_543",
- "pcb_component_id": "pcb_component_59",
- "layer": "top",
- "route": [
- {
- "x": 107.7374985,
- "y": 32.7774255
- },
- {
- "x": 107.7374985,
- "y": 35.8774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_544",
- "pcb_component_id": "pcb_component_60",
- "layer": "bottom",
- "route": [
- {
- "x": -55.2175015,
- "y": -15.669110500000002
- },
- {
- "x": -55.2175015,
- "y": -15.453438500000004
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_545",
- "pcb_component_id": "pcb_component_60",
- "layer": "bottom",
- "route": [
- {
- "x": -54.4975015,
- "y": -15.669110500000002
- },
- {
- "x": -54.4975015,
- "y": -15.453438500000004
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_546",
- "pcb_component_id": "pcb_component_60",
- "layer": "bottom",
- "route": [
- {
- "x": -55.3175015,
- "y": -16.4712745
- },
- {
- "x": -54.3975015,
- "y": -16.4712745
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_547",
- "pcb_component_id": "pcb_component_60",
- "layer": "bottom",
- "route": [
- {
- "x": -54.3975015,
- "y": -16.4712745
- },
- {
- "x": -54.3975015,
- "y": -14.651274500000007
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_548",
- "pcb_component_id": "pcb_component_60",
- "layer": "bottom",
- "route": [
- {
- "x": -55.3175015,
- "y": -14.651274500000007
- },
- {
- "x": -55.3175015,
- "y": -16.4712745
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_549",
- "pcb_component_id": "pcb_component_60",
- "layer": "bottom",
- "route": [
- {
- "x": -54.3975015,
- "y": -14.651274500000007
- },
- {
- "x": -55.3175015,
- "y": -14.651274500000007
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_550",
- "pcb_component_id": "pcb_component_60",
- "layer": "bottom",
- "route": [
- {
- "x": -55.1075015,
- "y": -16.061274500000003
- },
- {
- "x": -54.6075015,
- "y": -16.061274500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_551",
- "pcb_component_id": "pcb_component_60",
- "layer": "bottom",
- "route": [
- {
- "x": -54.6075015,
- "y": -16.061274500000003
- },
- {
- "x": -54.6075015,
- "y": -15.061274500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_552",
- "pcb_component_id": "pcb_component_60",
- "layer": "bottom",
- "route": [
- {
- "x": -55.1075015,
- "y": -15.061274500000003
- },
- {
- "x": -55.1075015,
- "y": -16.061274500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_553",
- "pcb_component_id": "pcb_component_60",
- "layer": "bottom",
- "route": [
- {
- "x": -54.6075015,
- "y": -15.061274500000003
- },
- {
- "x": -55.1075015,
- "y": -15.061274500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_554",
- "pcb_component_id": "pcb_component_61",
- "layer": "top",
- "route": [
- {
- "x": 138.11249850000002,
- "y": 20.0524255
- },
- {
- "x": 119.0624985,
- "y": 20.052425500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_555",
- "pcb_component_id": "pcb_component_61",
- "layer": "top",
- "route": [
- {
- "x": 138.11249850000002,
- "y": 39.102425499999995
- },
- {
- "x": 138.11249850000002,
- "y": 20.0524255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_556",
- "pcb_component_id": "pcb_component_61",
- "layer": "top",
- "route": [
- {
- "x": 119.0624985,
- "y": 20.052425500000002
- },
- {
- "x": 119.0624985,
- "y": 39.1024255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_557",
- "pcb_component_id": "pcb_component_61",
- "layer": "top",
- "route": [
- {
- "x": 119.0624985,
- "y": 39.1024255
- },
- {
- "x": 138.11249850000002,
- "y": 39.102425499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_558",
- "pcb_component_id": "pcb_component_61",
- "layer": "top",
- "route": [
- {
- "x": 135.5874985,
- "y": 22.577425499999997
- },
- {
- "x": 121.58749850000001,
- "y": 22.5774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_559",
- "pcb_component_id": "pcb_component_61",
- "layer": "top",
- "route": [
- {
- "x": 135.5874985,
- "y": 36.5774255
- },
- {
- "x": 135.5874985,
- "y": 22.577425499999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_560",
- "pcb_component_id": "pcb_component_61",
- "layer": "top",
- "route": [
- {
- "x": 121.58749850000001,
- "y": 22.5774255
- },
- {
- "x": 121.58749850000001,
- "y": 36.577425500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_561",
- "pcb_component_id": "pcb_component_61",
- "layer": "top",
- "route": [
- {
- "x": 121.58749850000001,
- "y": 36.577425500000004
- },
- {
- "x": 135.5874985,
- "y": 36.5774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_562",
- "pcb_component_id": "pcb_component_61",
- "layer": "top",
- "route": [
- {
- "x": 130.38749850000002,
- "y": 32.7774255
- },
- {
- "x": 130.38749850000002,
- "y": 35.8774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_563",
- "pcb_component_id": "pcb_component_61",
- "layer": "top",
- "route": [
- {
- "x": 130.38749850000002,
- "y": 32.7774255
- },
- {
- "x": 126.78749850000001,
- "y": 32.7774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_564",
- "pcb_component_id": "pcb_component_61",
- "layer": "top",
- "route": [
- {
- "x": 130.38749850000002,
- "y": 35.8774255
- },
- {
- "x": 126.78749850000001,
- "y": 35.8774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_565",
- "pcb_component_id": "pcb_component_61",
- "layer": "top",
- "route": [
- {
- "x": 126.78749850000001,
- "y": 32.7774255
- },
- {
- "x": 126.78749850000001,
- "y": 35.8774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_566",
- "pcb_component_id": "pcb_component_62",
- "layer": "top",
- "route": [
- {
- "x": -33.749455028995584,
- "y": -38.65739904314769
- },
- {
- "x": -52.38737304314769,
- "y": -34.71652197100441
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_567",
- "pcb_component_id": "pcb_component_62",
- "layer": "top",
- "route": [
- {
- "x": -29.808577956852304,
- "y": -20.019481028995585
- },
- {
- "x": -33.749455028995584,
- "y": -38.65739904314769
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_568",
- "pcb_component_id": "pcb_component_62",
- "layer": "top",
- "route": [
- {
- "x": -52.38737304314769,
- "y": -34.71652197100441
- },
- {
- "x": -48.44649597100441,
- "y": -16.078603956852305
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_569",
- "pcb_component_id": "pcb_component_62",
- "layer": "top",
- "route": [
- {
- "x": -48.44649597100441,
- "y": -16.078603956852305
- },
- {
- "x": -29.808577956852304,
- "y": -20.019481028995585
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_570",
- "pcb_component_id": "pcb_component_62",
- "layer": "top",
- "route": [
- {
- "x": -35.697488014747414,
- "y": -35.664671610449744
- },
- {
- "x": -49.39464561044974,
- "y": -32.76848898525258
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_571",
- "pcb_component_id": "pcb_component_62",
- "layer": "top",
- "route": [
- {
- "x": -32.80130538955025,
- "y": -21.967514014747415
- },
- {
- "x": -35.697488014747414,
- "y": -35.664671610449744
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_572",
- "pcb_component_id": "pcb_component_62",
- "layer": "top",
- "route": [
- {
- "x": -49.39464561044974,
- "y": -32.76848898525258
- },
- {
- "x": -46.49846298525258,
- "y": -19.071331389550252
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_573",
- "pcb_component_id": "pcb_component_62",
- "layer": "top",
- "route": [
- {
- "x": -46.49846298525258,
- "y": -19.071331389550252
- },
- {
- "x": -32.80130538955025,
- "y": -21.967514014747415
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_574",
- "pcb_component_id": "pcb_component_62",
- "layer": "top",
- "route": [
- {
- "x": -38.67492778050749,
- "y": -24.609588958507672
- },
- {
- "x": -38.03363019921383,
- "y": -21.5766469194593
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_575",
- "pcb_component_id": "pcb_component_62",
- "layer": "top",
- "route": [
- {
- "x": -38.67492778050749,
- "y": -24.609588958507672
- },
- {
- "x": -42.19705401940237,
- "y": -23.864856283456973
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_576",
- "pcb_component_id": "pcb_component_62",
- "layer": "top",
- "route": [
- {
- "x": -38.03363019921383,
- "y": -21.5766469194593
- },
- {
- "x": -41.555756438108716,
- "y": -20.8319142444086
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_577",
- "pcb_component_id": "pcb_component_62",
- "layer": "top",
- "route": [
- {
- "x": -42.19705401940237,
- "y": -23.864856283456973
- },
- {
- "x": -41.555756438108716,
- "y": -20.8319142444086
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_578",
- "pcb_component_id": "pcb_component_63",
- "layer": "top",
- "route": [
- {
- "x": 130.38750050000002,
- "y": 13.7149255
- },
- {
- "x": 126.78750050000001,
- "y": 13.7149255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_579",
- "pcb_component_id": "pcb_component_63",
- "layer": "top",
- "route": [
- {
- "x": 130.38750050000002,
- "y": 16.8149255
- },
- {
- "x": 130.38750050000002,
- "y": 13.7149255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_580",
- "pcb_component_id": "pcb_component_63",
- "layer": "top",
- "route": [
- {
- "x": 126.78750050000001,
- "y": 13.7149255
- },
- {
- "x": 126.78750050000001,
- "y": 16.8149255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_581",
- "pcb_component_id": "pcb_component_63",
- "layer": "top",
- "route": [
- {
- "x": 126.78750050000001,
- "y": 16.8149255
- },
- {
- "x": 130.38750050000002,
- "y": 16.8149255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_582",
- "pcb_component_id": "pcb_component_63",
- "layer": "bottom",
- "route": [
- {
- "x": 130.1875005,
- "y": 13.8649255
- },
- {
- "x": 126.98750050000001,
- "y": 13.8649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_583",
- "pcb_component_id": "pcb_component_63",
- "layer": "bottom",
- "route": [
- {
- "x": 130.1875005,
- "y": 16.6649255
- },
- {
- "x": 130.1875005,
- "y": 13.8649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_584",
- "pcb_component_id": "pcb_component_63",
- "layer": "bottom",
- "route": [
- {
- "x": 130.1875005,
- "y": 16.6649255
- },
- {
- "x": 126.98750050000001,
- "y": 16.6649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_585",
- "pcb_component_id": "pcb_component_63",
- "layer": "bottom",
- "route": [
- {
- "x": 126.98750050000001,
- "y": 16.6649255
- },
- {
- "x": 126.98750050000001,
- "y": 13.8649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_586",
- "pcb_component_id": "pcb_component_64",
- "layer": "top",
- "route": [
- {
- "x": -69.6375015,
- "y": 39.9086755
- },
- {
- "x": -73.2375015,
- "y": 39.9086755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_587",
- "pcb_component_id": "pcb_component_64",
- "layer": "top",
- "route": [
- {
- "x": -69.6375015,
- "y": 43.008675499999995
- },
- {
- "x": -69.6375015,
- "y": 39.9086755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_588",
- "pcb_component_id": "pcb_component_64",
- "layer": "top",
- "route": [
- {
- "x": -73.2375015,
- "y": 39.9086755
- },
- {
- "x": -73.2375015,
- "y": 43.008675499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_589",
- "pcb_component_id": "pcb_component_64",
- "layer": "top",
- "route": [
- {
- "x": -73.2375015,
- "y": 43.008675499999995
- },
- {
- "x": -69.6375015,
- "y": 43.008675499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_590",
- "pcb_component_id": "pcb_component_64",
- "layer": "bottom",
- "route": [
- {
- "x": -69.8375015,
- "y": 40.0586755
- },
- {
- "x": -73.03750149999999,
- "y": 40.0586755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_591",
- "pcb_component_id": "pcb_component_64",
- "layer": "bottom",
- "route": [
- {
- "x": -69.8375015,
- "y": 42.8586755
- },
- {
- "x": -69.8375015,
- "y": 40.0586755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_592",
- "pcb_component_id": "pcb_component_64",
- "layer": "bottom",
- "route": [
- {
- "x": -69.8375015,
- "y": 42.8586755
- },
- {
- "x": -73.03750149999999,
- "y": 42.8586755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_593",
- "pcb_component_id": "pcb_component_64",
- "layer": "bottom",
- "route": [
- {
- "x": -73.03750149999999,
- "y": 42.8586755
- },
- {
- "x": -73.03750149999999,
- "y": 40.0586755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_594",
- "pcb_component_id": "pcb_component_65",
- "layer": "top",
- "route": [
- {
- "x": 92.28750050000001,
- "y": -0.5725745000000018
- },
- {
- "x": 88.68750050000001,
- "y": -0.5725745000000018
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_595",
- "pcb_component_id": "pcb_component_65",
- "layer": "top",
- "route": [
- {
- "x": 92.28750050000001,
- "y": 2.5274254999999997
- },
- {
- "x": 92.28750050000001,
- "y": -0.5725745000000018
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_596",
- "pcb_component_id": "pcb_component_65",
- "layer": "top",
- "route": [
- {
- "x": 88.68750050000001,
- "y": -0.5725745000000018
- },
- {
- "x": 88.68750050000001,
- "y": 2.5274254999999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_597",
- "pcb_component_id": "pcb_component_65",
- "layer": "top",
- "route": [
- {
- "x": 88.68750050000001,
- "y": 2.5274254999999997
- },
- {
- "x": 92.28750050000001,
- "y": 2.5274254999999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_598",
- "pcb_component_id": "pcb_component_65",
- "layer": "bottom",
- "route": [
- {
- "x": 92.0875005,
- "y": -0.42257449999999963
- },
- {
- "x": 88.88750050000002,
- "y": -0.42257449999999963
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_599",
- "pcb_component_id": "pcb_component_65",
- "layer": "bottom",
- "route": [
- {
- "x": 92.0875005,
- "y": 2.3774254999999975
- },
- {
- "x": 92.0875005,
- "y": -0.42257449999999963
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_600",
- "pcb_component_id": "pcb_component_65",
- "layer": "bottom",
- "route": [
- {
- "x": 92.0875005,
- "y": 2.3774254999999975
- },
- {
- "x": 88.88750050000002,
- "y": 2.3774254999999975
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_601",
- "pcb_component_id": "pcb_component_65",
- "layer": "bottom",
- "route": [
- {
- "x": 88.88750050000002,
- "y": 2.3774254999999975
- },
- {
- "x": 88.88750050000002,
- "y": -0.42257449999999963
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_602",
- "pcb_component_id": "pcb_component_66",
- "layer": "bottom",
- "route": [
- {
- "x": 19.802500500000004,
- "y": 37.8823165
- },
- {
- "x": 19.802500500000004,
- "y": 37.5750345
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_603",
- "pcb_component_id": "pcb_component_66",
- "layer": "bottom",
- "route": [
- {
- "x": 19.042500500000006,
- "y": 37.8823165
- },
- {
- "x": 19.042500500000006,
- "y": 37.5750345
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_604",
- "pcb_component_id": "pcb_component_66",
- "layer": "bottom",
- "route": [
- {
- "x": 19.892500500000004,
- "y": 38.6586755
- },
- {
- "x": 18.952500500000006,
- "y": 38.6586755
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_605",
- "pcb_component_id": "pcb_component_66",
- "layer": "bottom",
- "route": [
- {
- "x": 18.952500500000006,
- "y": 38.6586755
- },
- {
- "x": 18.952500500000006,
- "y": 36.7986755
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_606",
- "pcb_component_id": "pcb_component_66",
- "layer": "bottom",
- "route": [
- {
- "x": 19.892500500000004,
- "y": 36.7986755
- },
- {
- "x": 19.892500500000004,
- "y": 38.6586755
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_607",
- "pcb_component_id": "pcb_component_66",
- "layer": "bottom",
- "route": [
- {
- "x": 18.952500500000006,
- "y": 36.7986755
- },
- {
- "x": 19.892500500000004,
- "y": 36.7986755
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_608",
- "pcb_component_id": "pcb_component_66",
- "layer": "bottom",
- "route": [
- {
- "x": 19.692500500000005,
- "y": 38.2536755
- },
- {
- "x": 19.152500500000006,
- "y": 38.2536755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_609",
- "pcb_component_id": "pcb_component_66",
- "layer": "bottom",
- "route": [
- {
- "x": 19.152500500000006,
- "y": 38.2536755
- },
- {
- "x": 19.152500500000006,
- "y": 37.2036755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_610",
- "pcb_component_id": "pcb_component_66",
- "layer": "bottom",
- "route": [
- {
- "x": 19.692500500000005,
- "y": 37.2036755
- },
- {
- "x": 19.692500500000005,
- "y": 38.2536755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_611",
- "pcb_component_id": "pcb_component_66",
- "layer": "bottom",
- "route": [
- {
- "x": 19.152500500000006,
- "y": 37.2036755
- },
- {
- "x": 19.692500500000005,
- "y": 37.2036755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_612",
- "pcb_component_id": "pcb_component_67",
- "layer": "top",
- "route": [
- {
- "x": 42.8624985,
- "y": 22.4336755
- },
- {
- "x": 23.8124985,
- "y": 22.4336755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_613",
- "pcb_component_id": "pcb_component_67",
- "layer": "top",
- "route": [
- {
- "x": 42.8624985,
- "y": 41.4836755
- },
- {
- "x": 42.8624985,
- "y": 22.4336755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_614",
- "pcb_component_id": "pcb_component_67",
- "layer": "top",
- "route": [
- {
- "x": 23.8124985,
- "y": 22.4336755
- },
- {
- "x": 23.812498500000004,
- "y": 41.483675500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_615",
- "pcb_component_id": "pcb_component_67",
- "layer": "top",
- "route": [
- {
- "x": 23.812498500000004,
- "y": 41.483675500000004
- },
- {
- "x": 42.8624985,
- "y": 41.4836755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_616",
- "pcb_component_id": "pcb_component_67",
- "layer": "top",
- "route": [
- {
- "x": 40.3374985,
- "y": 24.9586755
- },
- {
- "x": 26.337498500000002,
- "y": 24.958675500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_617",
- "pcb_component_id": "pcb_component_67",
- "layer": "top",
- "route": [
- {
- "x": 40.3374985,
- "y": 38.9586755
- },
- {
- "x": 40.3374985,
- "y": 24.9586755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_618",
- "pcb_component_id": "pcb_component_67",
- "layer": "top",
- "route": [
- {
- "x": 26.337498500000002,
- "y": 24.958675500000002
- },
- {
- "x": 26.337498500000002,
- "y": 38.9586755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_619",
- "pcb_component_id": "pcb_component_67",
- "layer": "top",
- "route": [
- {
- "x": 26.337498500000002,
- "y": 38.9586755
- },
- {
- "x": 40.3374985,
- "y": 38.9586755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_620",
- "pcb_component_id": "pcb_component_67",
- "layer": "top",
- "route": [
- {
- "x": 35.1374985,
- "y": 35.1586755
- },
- {
- "x": 35.13749850000001,
- "y": 38.258675499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_621",
- "pcb_component_id": "pcb_component_67",
- "layer": "top",
- "route": [
- {
- "x": 35.1374985,
- "y": 35.1586755
- },
- {
- "x": 31.5374985,
- "y": 35.1586755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_622",
- "pcb_component_id": "pcb_component_67",
- "layer": "top",
- "route": [
- {
- "x": 35.13749850000001,
- "y": 38.258675499999995
- },
- {
- "x": 31.5374985,
- "y": 38.258675499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_623",
- "pcb_component_id": "pcb_component_67",
- "layer": "top",
- "route": [
- {
- "x": 31.5374985,
- "y": 35.1586755
- },
- {
- "x": 31.5374985,
- "y": 38.258675499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_624",
- "pcb_component_id": "pcb_component_68",
- "layer": "bottom",
- "route": [
- {
- "x": -19.037501499999998,
- "y": 37.9010665
- },
- {
- "x": -19.037501499999998,
- "y": 37.5937845
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_625",
- "pcb_component_id": "pcb_component_68",
- "layer": "bottom",
- "route": [
- {
- "x": -19.797501499999996,
- "y": 37.9010665
- },
- {
- "x": -19.797501499999996,
- "y": 37.5937845
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_626",
- "pcb_component_id": "pcb_component_68",
- "layer": "bottom",
- "route": [
- {
- "x": -18.947501499999998,
- "y": 38.6774255
- },
- {
- "x": -19.887501499999996,
- "y": 38.6774255
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_627",
- "pcb_component_id": "pcb_component_68",
- "layer": "bottom",
- "route": [
- {
- "x": -19.887501499999996,
- "y": 38.6774255
- },
- {
- "x": -19.887501499999996,
- "y": 36.8174255
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_628",
- "pcb_component_id": "pcb_component_68",
- "layer": "bottom",
- "route": [
- {
- "x": -18.947501499999998,
- "y": 36.8174255
- },
- {
- "x": -18.947501499999998,
- "y": 38.6774255
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_629",
- "pcb_component_id": "pcb_component_68",
- "layer": "bottom",
- "route": [
- {
- "x": -19.887501499999996,
- "y": 36.8174255
- },
- {
- "x": -18.947501499999998,
- "y": 36.8174255
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_630",
- "pcb_component_id": "pcb_component_68",
- "layer": "bottom",
- "route": [
- {
- "x": -19.147501499999997,
- "y": 38.2724255
- },
- {
- "x": -19.687501499999996,
- "y": 38.2724255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_631",
- "pcb_component_id": "pcb_component_68",
- "layer": "bottom",
- "route": [
- {
- "x": -19.687501499999996,
- "y": 38.2724255
- },
- {
- "x": -19.687501499999996,
- "y": 37.2224255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_632",
- "pcb_component_id": "pcb_component_68",
- "layer": "bottom",
- "route": [
- {
- "x": -19.147501499999997,
- "y": 37.2224255
- },
- {
- "x": -19.147501499999997,
- "y": 38.2724255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_633",
- "pcb_component_id": "pcb_component_68",
- "layer": "bottom",
- "route": [
- {
- "x": -19.687501499999996,
- "y": 37.2224255
- },
- {
- "x": -19.147501499999997,
- "y": 37.2224255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_634",
- "pcb_component_id": "pcb_component_69",
- "layer": "top",
- "route": [
- {
- "x": -61.9125015,
- "y": 27.196175499999995
- },
- {
- "x": -80.9625015,
- "y": 27.196175500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_635",
- "pcb_component_id": "pcb_component_69",
- "layer": "top",
- "route": [
- {
- "x": -61.91250149999999,
- "y": 46.2461755
- },
- {
- "x": -61.9125015,
- "y": 27.196175499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_636",
- "pcb_component_id": "pcb_component_69",
- "layer": "top",
- "route": [
- {
- "x": -80.9625015,
- "y": 27.196175500000003
- },
- {
- "x": -80.9625015,
- "y": 46.2461755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_637",
- "pcb_component_id": "pcb_component_69",
- "layer": "top",
- "route": [
- {
- "x": -80.9625015,
- "y": 46.2461755
- },
- {
- "x": -61.91250149999999,
- "y": 46.2461755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_638",
- "pcb_component_id": "pcb_component_69",
- "layer": "top",
- "route": [
- {
- "x": -64.4375015,
- "y": 29.721175499999998
- },
- {
- "x": -78.4375015,
- "y": 29.7211755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_639",
- "pcb_component_id": "pcb_component_69",
- "layer": "top",
- "route": [
- {
- "x": -64.4375015,
- "y": 43.7211755
- },
- {
- "x": -64.4375015,
- "y": 29.721175499999998
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_640",
- "pcb_component_id": "pcb_component_69",
- "layer": "top",
- "route": [
- {
- "x": -78.4375015,
- "y": 29.7211755
- },
- {
- "x": -78.4375015,
- "y": 43.7211755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_641",
- "pcb_component_id": "pcb_component_69",
- "layer": "top",
- "route": [
- {
- "x": -78.4375015,
- "y": 43.7211755
- },
- {
- "x": -64.4375015,
- "y": 43.7211755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_642",
- "pcb_component_id": "pcb_component_69",
- "layer": "top",
- "route": [
- {
- "x": -69.6375015,
- "y": 39.921175500000004
- },
- {
- "x": -69.6375015,
- "y": 43.0211755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_643",
- "pcb_component_id": "pcb_component_69",
- "layer": "top",
- "route": [
- {
- "x": -69.6375015,
- "y": 39.921175500000004
- },
- {
- "x": -73.2375015,
- "y": 39.921175500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_644",
- "pcb_component_id": "pcb_component_69",
- "layer": "top",
- "route": [
- {
- "x": -69.6375015,
- "y": 43.0211755
- },
- {
- "x": -73.2375015,
- "y": 43.0211755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_645",
- "pcb_component_id": "pcb_component_69",
- "layer": "top",
- "route": [
- {
- "x": -73.2375015,
- "y": 39.921175500000004
- },
- {
- "x": -73.2375015,
- "y": 43.0211755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_646",
- "pcb_component_id": "pcb_component_70",
- "layer": "top",
- "route": [
- {
- "x": -126.7875015,
- "y": 13.7149255
- },
- {
- "x": -130.3875015,
- "y": 13.7149255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_647",
- "pcb_component_id": "pcb_component_70",
- "layer": "top",
- "route": [
- {
- "x": -126.7875015,
- "y": 16.8149255
- },
- {
- "x": -126.7875015,
- "y": 13.7149255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_648",
- "pcb_component_id": "pcb_component_70",
- "layer": "top",
- "route": [
- {
- "x": -130.3875015,
- "y": 13.7149255
- },
- {
- "x": -130.3875015,
- "y": 16.8149255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_649",
- "pcb_component_id": "pcb_component_70",
- "layer": "top",
- "route": [
- {
- "x": -130.3875015,
- "y": 16.8149255
- },
- {
- "x": -126.7875015,
- "y": 16.8149255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_650",
- "pcb_component_id": "pcb_component_70",
- "layer": "bottom",
- "route": [
- {
- "x": -126.98750150000001,
- "y": 13.8649255
- },
- {
- "x": -130.1875015,
- "y": 13.8649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_651",
- "pcb_component_id": "pcb_component_70",
- "layer": "bottom",
- "route": [
- {
- "x": -126.98750150000001,
- "y": 16.6649255
- },
- {
- "x": -126.98750150000001,
- "y": 13.8649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_652",
- "pcb_component_id": "pcb_component_70",
- "layer": "bottom",
- "route": [
- {
- "x": -126.98750150000001,
- "y": 16.6649255
- },
- {
- "x": -130.1875015,
- "y": 16.6649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_653",
- "pcb_component_id": "pcb_component_70",
- "layer": "bottom",
- "route": [
- {
- "x": -130.1875015,
- "y": 16.6649255
- },
- {
- "x": -130.1875015,
- "y": 13.8649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_654",
- "pcb_component_id": "pcb_component_71",
- "layer": "bottom",
- "route": [
- {
- "x": -75.29114249999999,
- "y": -20.9312745
- },
- {
- "x": -74.9838605,
- "y": -20.9312745
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_655",
- "pcb_component_id": "pcb_component_71",
- "layer": "bottom",
- "route": [
- {
- "x": -75.29114249999999,
- "y": -21.691274500000006
- },
- {
- "x": -74.9838605,
- "y": -21.691274500000006
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_656",
- "pcb_component_id": "pcb_component_71",
- "layer": "bottom",
- "route": [
- {
- "x": -76.0675015,
- "y": -20.841274500000004
- },
- {
- "x": -76.0675015,
- "y": -21.781274500000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_657",
- "pcb_component_id": "pcb_component_71",
- "layer": "bottom",
- "route": [
- {
- "x": -76.0675015,
- "y": -21.781274500000002
- },
- {
- "x": -74.20750149999999,
- "y": -21.781274500000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_658",
- "pcb_component_id": "pcb_component_71",
- "layer": "bottom",
- "route": [
- {
- "x": -74.20750149999999,
- "y": -20.841274500000004
- },
- {
- "x": -76.0675015,
- "y": -20.841274500000004
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_659",
- "pcb_component_id": "pcb_component_71",
- "layer": "bottom",
- "route": [
- {
- "x": -74.20750149999999,
- "y": -21.781274500000002
- },
- {
- "x": -74.20750149999999,
- "y": -20.841274500000004
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_660",
- "pcb_component_id": "pcb_component_71",
- "layer": "bottom",
- "route": [
- {
- "x": -75.6625015,
- "y": -21.0412745
- },
- {
- "x": -75.6625015,
- "y": -21.581274500000006
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_661",
- "pcb_component_id": "pcb_component_71",
- "layer": "bottom",
- "route": [
- {
- "x": -75.6625015,
- "y": -21.581274500000006
- },
- {
- "x": -74.6125015,
- "y": -21.581274500000006
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_662",
- "pcb_component_id": "pcb_component_71",
- "layer": "bottom",
- "route": [
- {
- "x": -74.6125015,
- "y": -21.0412745
- },
- {
- "x": -75.6625015,
- "y": -21.0412745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_663",
- "pcb_component_id": "pcb_component_71",
- "layer": "bottom",
- "route": [
- {
- "x": -74.6125015,
- "y": -21.581274500000006
- },
- {
- "x": -74.6125015,
- "y": -21.0412745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_664",
- "pcb_component_id": "pcb_component_72",
- "layer": "top",
- "route": [
- {
- "x": 16.087498500000002,
- "y": 25.6211755
- },
- {
- "x": 12.487498500000003,
- "y": 25.6211755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_665",
- "pcb_component_id": "pcb_component_72",
- "layer": "top",
- "route": [
- {
- "x": 16.087498500000002,
- "y": 28.7211755
- },
- {
- "x": 16.087498500000002,
- "y": 25.6211755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_666",
- "pcb_component_id": "pcb_component_72",
- "layer": "top",
- "route": [
- {
- "x": 12.487498500000003,
- "y": 25.6211755
- },
- {
- "x": 12.487498500000004,
- "y": 28.7211755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_667",
- "pcb_component_id": "pcb_component_72",
- "layer": "top",
- "route": [
- {
- "x": 12.487498500000004,
- "y": 28.7211755
- },
- {
- "x": 16.087498500000002,
- "y": 28.7211755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_668",
- "pcb_component_id": "pcb_component_72",
- "layer": "bottom",
- "route": [
- {
- "x": 15.887498500000003,
- "y": 25.7711755
- },
- {
- "x": 12.687498500000004,
- "y": 25.7711755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_669",
- "pcb_component_id": "pcb_component_72",
- "layer": "bottom",
- "route": [
- {
- "x": 15.887498500000003,
- "y": 28.5711755
- },
- {
- "x": 15.887498500000003,
- "y": 25.7711755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_670",
- "pcb_component_id": "pcb_component_72",
- "layer": "bottom",
- "route": [
- {
- "x": 15.887498500000003,
- "y": 28.5711755
- },
- {
- "x": 12.687498500000004,
- "y": 28.5711755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_671",
- "pcb_component_id": "pcb_component_72",
- "layer": "bottom",
- "route": [
- {
- "x": 12.687498500000004,
- "y": 28.5711755
- },
- {
- "x": 12.687498500000004,
- "y": 25.7711755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_672",
- "pcb_component_id": "pcb_component_73",
- "layer": "top",
- "route": [
- {
- "x": 61.912498500000005,
- "y": 5.764925499999997
- },
- {
- "x": 42.8624985,
- "y": 5.7649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_673",
- "pcb_component_id": "pcb_component_73",
- "layer": "top",
- "route": [
- {
- "x": 61.91249850000001,
- "y": 24.814925499999998
- },
- {
- "x": 61.912498500000005,
- "y": 5.764925499999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_674",
- "pcb_component_id": "pcb_component_73",
- "layer": "top",
- "route": [
- {
- "x": 42.8624985,
- "y": 5.7649255
- },
- {
- "x": 42.86249850000001,
- "y": 24.8149255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_675",
- "pcb_component_id": "pcb_component_73",
- "layer": "top",
- "route": [
- {
- "x": 42.86249850000001,
- "y": 24.8149255
- },
- {
- "x": 61.91249850000001,
- "y": 24.814925499999998
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_676",
- "pcb_component_id": "pcb_component_73",
- "layer": "top",
- "route": [
- {
- "x": 59.38749850000001,
- "y": 8.289925499999999
- },
- {
- "x": 45.38749850000001,
- "y": 8.2899255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_677",
- "pcb_component_id": "pcb_component_73",
- "layer": "top",
- "route": [
- {
- "x": 59.38749850000001,
- "y": 22.2899255
- },
- {
- "x": 59.38749850000001,
- "y": 8.289925499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_678",
- "pcb_component_id": "pcb_component_73",
- "layer": "top",
- "route": [
- {
- "x": 45.38749850000001,
- "y": 8.2899255
- },
- {
- "x": 45.38749850000001,
- "y": 22.289925500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_679",
- "pcb_component_id": "pcb_component_73",
- "layer": "top",
- "route": [
- {
- "x": 45.38749850000001,
- "y": 22.289925500000003
- },
- {
- "x": 59.38749850000001,
- "y": 22.2899255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_680",
- "pcb_component_id": "pcb_component_73",
- "layer": "top",
- "route": [
- {
- "x": 54.187498500000004,
- "y": 18.4899255
- },
- {
- "x": 54.187498500000004,
- "y": 21.5899255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_681",
- "pcb_component_id": "pcb_component_73",
- "layer": "top",
- "route": [
- {
- "x": 54.187498500000004,
- "y": 18.4899255
- },
- {
- "x": 50.58749850000001,
- "y": 18.4899255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_682",
- "pcb_component_id": "pcb_component_73",
- "layer": "top",
- "route": [
- {
- "x": 54.187498500000004,
- "y": 21.5899255
- },
- {
- "x": 50.58749850000001,
- "y": 21.5899255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_683",
- "pcb_component_id": "pcb_component_73",
- "layer": "top",
- "route": [
- {
- "x": 50.58749850000001,
- "y": 18.4899255
- },
- {
- "x": 50.58749850000001,
- "y": 21.5899255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_684",
- "pcb_component_id": "pcb_component_74",
- "layer": "bottom",
- "route": [
- {
- "x": 93.5374985,
- "y": -12.997574499999999
- },
- {
- "x": 96.4674985,
- "y": -12.997574499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_685",
- "pcb_component_id": "pcb_component_74",
- "layer": "bottom",
- "route": [
- {
- "x": 93.5374985,
- "y": -12.997574499999999
- },
- {
- "x": 93.5374985,
- "y": -16.897574500000005
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_686",
- "pcb_component_id": "pcb_component_74",
- "layer": "bottom",
- "route": [
- {
- "x": 96.4674985,
- "y": -16.897574500000005
- },
- {
- "x": 96.4674985,
- "y": -12.997574499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_687",
- "pcb_component_id": "pcb_component_74",
- "layer": "bottom",
- "route": [
- {
- "x": 93.5374985,
- "y": -16.897574500000005
- },
- {
- "x": 96.4674985,
- "y": -16.897574500000005
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_688",
- "pcb_component_id": "pcb_component_75",
- "layer": "bottom",
- "route": [
- {
- "x": 28.407498500000006,
- "y": 20.1674255
- },
- {
- "x": 28.407498500000006,
- "y": 18.9674255
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_689",
- "pcb_component_id": "pcb_component_75",
- "layer": "bottom",
- "route": [
- {
- "x": 26.447498500000005,
- "y": 18.9674255
- },
- {
- "x": 28.407498500000006,
- "y": 18.9674255
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_690",
- "pcb_component_id": "pcb_component_75",
- "layer": "bottom",
- "route": [
- {
- "x": 26.447498500000005,
- "y": 20.1674255
- },
- {
- "x": 28.407498500000006,
- "y": 20.1674255
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_691",
- "pcb_component_id": "pcb_component_75",
- "layer": "bottom",
- "route": [
- {
- "x": 28.397498500000005,
- "y": 18.8674255
- },
- {
- "x": 28.397498500000005,
- "y": 20.267425499999998
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_692",
- "pcb_component_id": "pcb_component_75",
- "layer": "bottom",
- "route": [
- {
- "x": 28.397498500000005,
- "y": 20.267425499999998
- },
- {
- "x": 25.897498500000005,
- "y": 20.2674255
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_693",
- "pcb_component_id": "pcb_component_75",
- "layer": "bottom",
- "route": [
- {
- "x": 25.897498500000005,
- "y": 18.8674255
- },
- {
- "x": 28.397498500000005,
- "y": 18.8674255
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_694",
- "pcb_component_id": "pcb_component_75",
- "layer": "bottom",
- "route": [
- {
- "x": 25.897498500000005,
- "y": 20.2674255
- },
- {
- "x": 25.897498500000005,
- "y": 18.8674255
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_695",
- "pcb_component_id": "pcb_component_75",
- "layer": "bottom",
- "route": [
- {
- "x": 27.797498500000003,
- "y": 19.1174255
- },
- {
- "x": 27.797498500000003,
- "y": 20.0174255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_696",
- "pcb_component_id": "pcb_component_75",
- "layer": "bottom",
- "route": [
- {
- "x": 27.797498500000003,
- "y": 20.0174255
- },
- {
- "x": 26.497498500000006,
- "y": 20.0174255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_697",
- "pcb_component_id": "pcb_component_75",
- "layer": "bottom",
- "route": [
- {
- "x": 27.347498500000004,
- "y": 19.3674255
- },
- {
- "x": 27.347498500000004,
- "y": 19.7674255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_698",
- "pcb_component_id": "pcb_component_75",
- "layer": "bottom",
- "route": [
- {
- "x": 27.347498500000004,
- "y": 19.5674255
- },
- {
- "x": 27.497498500000006,
- "y": 19.5674255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_699",
- "pcb_component_id": "pcb_component_75",
- "layer": "bottom",
- "route": [
- {
- "x": 27.347498500000004,
- "y": 19.5674255
- },
- {
- "x": 27.047498500000003,
- "y": 19.3674255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_700",
- "pcb_component_id": "pcb_component_75",
- "layer": "bottom",
- "route": [
- {
- "x": 27.047498500000003,
- "y": 19.3674255
- },
- {
- "x": 27.047498500000003,
- "y": 19.7674255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_701",
- "pcb_component_id": "pcb_component_75",
- "layer": "bottom",
- "route": [
- {
- "x": 27.047498500000003,
- "y": 19.5674255
- },
- {
- "x": 26.897498500000005,
- "y": 19.5674255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_702",
- "pcb_component_id": "pcb_component_75",
- "layer": "bottom",
- "route": [
- {
- "x": 27.047498500000003,
- "y": 19.7674255
- },
- {
- "x": 27.347498500000004,
- "y": 19.5674255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_703",
- "pcb_component_id": "pcb_component_75",
- "layer": "bottom",
- "route": [
- {
- "x": 26.497498500000006,
- "y": 19.1174255
- },
- {
- "x": 27.797498500000003,
- "y": 19.1174255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_704",
- "pcb_component_id": "pcb_component_75",
- "layer": "bottom",
- "route": [
- {
- "x": 26.497498500000006,
- "y": 20.0174255
- },
- {
- "x": 26.497498500000006,
- "y": 19.1174255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_705",
- "pcb_component_id": "pcb_component_76",
- "layer": "top",
- "route": [
- {
- "x": 111.3375005,
- "y": 13.7149255
- },
- {
- "x": 107.73750050000001,
- "y": 13.7149255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_706",
- "pcb_component_id": "pcb_component_76",
- "layer": "top",
- "route": [
- {
- "x": 111.3375005,
- "y": 16.8149255
- },
- {
- "x": 111.3375005,
- "y": 13.7149255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_707",
- "pcb_component_id": "pcb_component_76",
- "layer": "top",
- "route": [
- {
- "x": 107.73750050000001,
- "y": 13.7149255
- },
- {
- "x": 107.73750050000001,
- "y": 16.8149255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_708",
- "pcb_component_id": "pcb_component_76",
- "layer": "top",
- "route": [
- {
- "x": 107.73750050000001,
- "y": 16.8149255
- },
- {
- "x": 111.3375005,
- "y": 16.8149255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_709",
- "pcb_component_id": "pcb_component_76",
- "layer": "bottom",
- "route": [
- {
- "x": 111.1375005,
- "y": 13.8649255
- },
- {
- "x": 107.93750050000001,
- "y": 13.8649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_710",
- "pcb_component_id": "pcb_component_76",
- "layer": "bottom",
- "route": [
- {
- "x": 111.1375005,
- "y": 16.6649255
- },
- {
- "x": 111.1375005,
- "y": 13.8649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_711",
- "pcb_component_id": "pcb_component_76",
- "layer": "bottom",
- "route": [
- {
- "x": 111.1375005,
- "y": 16.6649255
- },
- {
- "x": 107.93750050000001,
- "y": 16.6649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_712",
- "pcb_component_id": "pcb_component_76",
- "layer": "bottom",
- "route": [
- {
- "x": 107.93750050000001,
- "y": 16.6649255
- },
- {
- "x": 107.93750050000001,
- "y": 13.8649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_713",
- "pcb_component_id": "pcb_component_77",
- "layer": "bottom",
- "route": [
- {
- "x": 22.152498500000004,
- "y": 32.5437255
- },
- {
- "x": 23.152498500000004,
- "y": 32.5437255
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_714",
- "pcb_component_id": "pcb_component_77",
- "layer": "bottom",
- "route": [
- {
- "x": 22.152498500000004,
- "y": 35.3437255
- },
- {
- "x": 23.452498500000004,
- "y": 35.3437255
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_715",
- "pcb_component_id": "pcb_component_77",
- "layer": "bottom",
- "route": [
- {
- "x": 23.562498500000004,
- "y": 32.4437255
- },
- {
- "x": 23.562498500000004,
- "y": 35.4437255
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_716",
- "pcb_component_id": "pcb_component_77",
- "layer": "bottom",
- "route": [
- {
- "x": 23.562498500000004,
- "y": 35.4437255
- },
- {
- "x": 21.742498500000004,
- "y": 35.4437255
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_717",
- "pcb_component_id": "pcb_component_77",
- "layer": "bottom",
- "route": [
- {
- "x": 21.742498500000004,
- "y": 32.4437255
- },
- {
- "x": 23.562498500000004,
- "y": 32.4437255
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_718",
- "pcb_component_id": "pcb_component_77",
- "layer": "bottom",
- "route": [
- {
- "x": 21.742498500000004,
- "y": 35.4437255
- },
- {
- "x": 21.742498500000004,
- "y": 32.4437255
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_719",
- "pcb_component_id": "pcb_component_77",
- "layer": "bottom",
- "route": [
- {
- "x": 23.152498500000004,
- "y": 32.6937255
- },
- {
- "x": 22.152498500000004,
- "y": 32.6937255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_720",
- "pcb_component_id": "pcb_component_77",
- "layer": "bottom",
- "route": [
- {
- "x": 23.152498500000004,
- "y": 34.9437255
- },
- {
- "x": 23.152498500000004,
- "y": 32.6937255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_721",
- "pcb_component_id": "pcb_component_77",
- "layer": "bottom",
- "route": [
- {
- "x": 22.902498500000004,
- "y": 35.1937255
- },
- {
- "x": 23.152498500000004,
- "y": 34.9437255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_722",
- "pcb_component_id": "pcb_component_77",
- "layer": "bottom",
- "route": [
- {
- "x": 22.152498500000004,
- "y": 35.1937255
- },
- {
- "x": 22.902498500000004,
- "y": 35.1937255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_723",
- "pcb_component_id": "pcb_component_77",
- "layer": "bottom",
- "route": [
- {
- "x": 22.152498500000004,
- "y": 35.1937255
- },
- {
- "x": 22.152498500000004,
- "y": 32.6937255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_724",
- "pcb_component_id": "pcb_component_78",
- "layer": "bottom",
- "route": [
- {
- "x": -78.17750149999999,
- "y": -9.246215500000002
- },
- {
- "x": -78.17750149999999,
- "y": -8.938933500000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_725",
- "pcb_component_id": "pcb_component_78",
- "layer": "bottom",
- "route": [
- {
- "x": -77.4175015,
- "y": -9.246215500000002
- },
- {
- "x": -77.4175015,
- "y": -8.938933500000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_726",
- "pcb_component_id": "pcb_component_78",
- "layer": "bottom",
- "route": [
- {
- "x": -78.2675015,
- "y": -10.022574500000005
- },
- {
- "x": -77.3275015,
- "y": -10.022574500000005
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_727",
- "pcb_component_id": "pcb_component_78",
- "layer": "bottom",
- "route": [
- {
- "x": -77.3275015,
- "y": -10.022574500000005
- },
- {
- "x": -77.3275015,
- "y": -8.162574500000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_728",
- "pcb_component_id": "pcb_component_78",
- "layer": "bottom",
- "route": [
- {
- "x": -78.2675015,
- "y": -8.162574500000002
- },
- {
- "x": -78.2675015,
- "y": -10.022574500000005
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_729",
- "pcb_component_id": "pcb_component_78",
- "layer": "bottom",
- "route": [
- {
- "x": -77.3275015,
- "y": -8.162574500000002
- },
- {
- "x": -78.2675015,
- "y": -8.162574500000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_730",
- "pcb_component_id": "pcb_component_78",
- "layer": "bottom",
- "route": [
- {
- "x": -78.06750149999999,
- "y": -9.617574500000003
- },
- {
- "x": -77.5275015,
- "y": -9.617574500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_731",
- "pcb_component_id": "pcb_component_78",
- "layer": "bottom",
- "route": [
- {
- "x": -77.5275015,
- "y": -9.617574500000003
- },
- {
- "x": -77.5275015,
- "y": -8.567574500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_732",
- "pcb_component_id": "pcb_component_78",
- "layer": "bottom",
- "route": [
- {
- "x": -78.06750149999999,
- "y": -8.567574500000003
- },
- {
- "x": -78.06750149999999,
- "y": -9.617574500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_733",
- "pcb_component_id": "pcb_component_78",
- "layer": "bottom",
- "route": [
- {
- "x": -77.5275015,
- "y": -8.567574500000003
- },
- {
- "x": -78.06750149999999,
- "y": -8.567574500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_734",
- "pcb_component_id": "pcb_component_79",
- "layer": "top",
- "route": [
- {
- "x": 130.38750050000002,
- "y": 32.7649255
- },
- {
- "x": 126.78750050000001,
- "y": 32.764925500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_735",
- "pcb_component_id": "pcb_component_79",
- "layer": "top",
- "route": [
- {
- "x": 130.38750050000002,
- "y": 35.8649255
- },
- {
- "x": 130.38750050000002,
- "y": 32.7649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_736",
- "pcb_component_id": "pcb_component_79",
- "layer": "top",
- "route": [
- {
- "x": 126.78750050000001,
- "y": 32.764925500000004
- },
- {
- "x": 126.78750050000001,
- "y": 35.8649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_737",
- "pcb_component_id": "pcb_component_79",
- "layer": "top",
- "route": [
- {
- "x": 126.78750050000001,
- "y": 35.8649255
- },
- {
- "x": 130.38750050000002,
- "y": 35.8649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_738",
- "pcb_component_id": "pcb_component_79",
- "layer": "bottom",
- "route": [
- {
- "x": 130.1875005,
- "y": 32.914925499999995
- },
- {
- "x": 126.98750050000001,
- "y": 32.914925499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_739",
- "pcb_component_id": "pcb_component_79",
- "layer": "bottom",
- "route": [
- {
- "x": 130.1875005,
- "y": 35.7149255
- },
- {
- "x": 130.1875005,
- "y": 32.914925499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_740",
- "pcb_component_id": "pcb_component_79",
- "layer": "bottom",
- "route": [
- {
- "x": 130.1875005,
- "y": 35.7149255
- },
- {
- "x": 126.98750050000001,
- "y": 35.7149255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_741",
- "pcb_component_id": "pcb_component_79",
- "layer": "bottom",
- "route": [
- {
- "x": 126.98750050000001,
- "y": 35.7149255
- },
- {
- "x": 126.98750050000001,
- "y": 32.914925499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_742",
- "pcb_component_id": "pcb_component_80",
- "layer": "top",
- "route": [
- {
- "x": -100.01250149999998,
- "y": 1.0024254999999975
- },
- {
- "x": -119.0625015,
- "y": 1.002425500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_743",
- "pcb_component_id": "pcb_component_80",
- "layer": "top",
- "route": [
- {
- "x": -100.01250149999998,
- "y": 20.0524255
- },
- {
- "x": -100.01250149999998,
- "y": 1.0024254999999975
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_744",
- "pcb_component_id": "pcb_component_80",
- "layer": "top",
- "route": [
- {
- "x": -119.0625015,
- "y": 1.002425500000001
- },
- {
- "x": -119.0625015,
- "y": 20.052425500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_745",
- "pcb_component_id": "pcb_component_80",
- "layer": "top",
- "route": [
- {
- "x": -119.0625015,
- "y": 20.052425500000002
- },
- {
- "x": -100.01250149999998,
- "y": 20.0524255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_746",
- "pcb_component_id": "pcb_component_80",
- "layer": "top",
- "route": [
- {
- "x": -102.53750149999999,
- "y": 3.5274254999999997
- },
- {
- "x": -116.53750149999999,
- "y": 3.5274254999999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_747",
- "pcb_component_id": "pcb_component_80",
- "layer": "top",
- "route": [
- {
- "x": -102.53750149999999,
- "y": 17.5274255
- },
- {
- "x": -102.53750149999999,
- "y": 3.5274254999999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_748",
- "pcb_component_id": "pcb_component_80",
- "layer": "top",
- "route": [
- {
- "x": -116.53750149999999,
- "y": 3.5274254999999997
- },
- {
- "x": -116.53750149999999,
- "y": 17.5274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_749",
- "pcb_component_id": "pcb_component_80",
- "layer": "top",
- "route": [
- {
- "x": -116.53750149999999,
- "y": 17.5274255
- },
- {
- "x": -102.53750149999999,
- "y": 17.5274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_750",
- "pcb_component_id": "pcb_component_80",
- "layer": "top",
- "route": [
- {
- "x": -107.7375015,
- "y": 13.727425499999999
- },
- {
- "x": -107.7375015,
- "y": 16.8274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_751",
- "pcb_component_id": "pcb_component_80",
- "layer": "top",
- "route": [
- {
- "x": -107.7375015,
- "y": 13.727425499999999
- },
- {
- "x": -111.33750149999999,
- "y": 13.727425499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_752",
- "pcb_component_id": "pcb_component_80",
- "layer": "top",
- "route": [
- {
- "x": -107.7375015,
- "y": 16.8274255
- },
- {
- "x": -111.33750149999999,
- "y": 16.8274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_753",
- "pcb_component_id": "pcb_component_80",
- "layer": "top",
- "route": [
- {
- "x": -111.33750149999999,
- "y": 13.727425499999999
- },
- {
- "x": -111.33750149999999,
- "y": 16.8274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_754",
- "pcb_component_id": "pcb_component_81",
- "layer": "bottom",
- "route": [
- {
- "x": 57.062500500000006,
- "y": -14.9134885
- },
- {
- "x": 57.062500500000006,
- "y": -15.129160499999998
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_755",
- "pcb_component_id": "pcb_component_81",
- "layer": "bottom",
- "route": [
- {
- "x": 56.34250050000001,
- "y": -14.9134885
- },
- {
- "x": 56.34250050000001,
- "y": -15.129160499999998
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_756",
- "pcb_component_id": "pcb_component_81",
- "layer": "bottom",
- "route": [
- {
- "x": 57.16250050000001,
- "y": -14.111324500000002
- },
- {
- "x": 56.242500500000006,
- "y": -14.111324500000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_757",
- "pcb_component_id": "pcb_component_81",
- "layer": "bottom",
- "route": [
- {
- "x": 56.242500500000006,
- "y": -14.111324500000002
- },
- {
- "x": 56.242500500000006,
- "y": -15.931324499999995
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_758",
- "pcb_component_id": "pcb_component_81",
- "layer": "bottom",
- "route": [
- {
- "x": 57.16250050000001,
- "y": -15.931324499999995
- },
- {
- "x": 57.16250050000001,
- "y": -14.111324500000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_759",
- "pcb_component_id": "pcb_component_81",
- "layer": "bottom",
- "route": [
- {
- "x": 56.242500500000006,
- "y": -15.931324499999995
- },
- {
- "x": 57.16250050000001,
- "y": -15.931324499999995
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_760",
- "pcb_component_id": "pcb_component_81",
- "layer": "bottom",
- "route": [
- {
- "x": 56.952500500000006,
- "y": -14.521324499999999
- },
- {
- "x": 56.452500500000006,
- "y": -14.521324499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_761",
- "pcb_component_id": "pcb_component_81",
- "layer": "bottom",
- "route": [
- {
- "x": 56.452500500000006,
- "y": -14.521324499999999
- },
- {
- "x": 56.452500500000006,
- "y": -15.521324499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_762",
- "pcb_component_id": "pcb_component_81",
- "layer": "bottom",
- "route": [
- {
- "x": 56.952500500000006,
- "y": -15.521324499999999
- },
- {
- "x": 56.952500500000006,
- "y": -14.521324499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_763",
- "pcb_component_id": "pcb_component_81",
- "layer": "bottom",
- "route": [
- {
- "x": 56.452500500000006,
- "y": -15.521324499999999
- },
- {
- "x": 56.952500500000006,
- "y": -15.521324499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_764",
- "pcb_component_id": "pcb_component_82",
- "layer": "top",
- "route": [
- {
- "x": -88.6875015,
- "y": -0.5725745000000018
- },
- {
- "x": -92.28750149999999,
- "y": -0.5725745000000018
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_765",
- "pcb_component_id": "pcb_component_82",
- "layer": "top",
- "route": [
- {
- "x": -88.6875015,
- "y": 2.5274254999999997
- },
- {
- "x": -88.6875015,
- "y": -0.5725745000000018
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_766",
- "pcb_component_id": "pcb_component_82",
- "layer": "top",
- "route": [
- {
- "x": -92.28750149999999,
- "y": -0.5725745000000018
- },
- {
- "x": -92.28750149999999,
- "y": 2.5274254999999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_767",
- "pcb_component_id": "pcb_component_82",
- "layer": "top",
- "route": [
- {
- "x": -92.28750149999999,
- "y": 2.5274254999999997
- },
- {
- "x": -88.6875015,
- "y": 2.5274254999999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_768",
- "pcb_component_id": "pcb_component_82",
- "layer": "bottom",
- "route": [
- {
- "x": -88.8875015,
- "y": -0.42257449999999963
- },
- {
- "x": -92.08750149999999,
- "y": -0.42257449999999963
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_769",
- "pcb_component_id": "pcb_component_82",
- "layer": "bottom",
- "route": [
- {
- "x": -88.8875015,
- "y": 2.3774254999999975
- },
- {
- "x": -88.8875015,
- "y": -0.42257449999999963
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_770",
- "pcb_component_id": "pcb_component_82",
- "layer": "bottom",
- "route": [
- {
- "x": -88.8875015,
- "y": 2.3774254999999975
- },
- {
- "x": -92.08750149999999,
- "y": 2.3774254999999975
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_771",
- "pcb_component_id": "pcb_component_82",
- "layer": "bottom",
- "route": [
- {
- "x": -92.08750149999999,
- "y": 2.3774254999999975
- },
- {
- "x": -92.08750149999999,
- "y": -0.42257449999999963
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_772",
- "pcb_component_id": "pcb_component_83",
- "layer": "top",
- "route": [
- {
- "x": -21.451508383947395,
- "y": -26.504137685143597
- },
- {
- "x": -22.90886912211703,
- "y": -29.795960839391356
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_773",
- "pcb_component_id": "pcb_component_83",
- "layer": "top",
- "route": [
- {
- "x": -24.286133877882964,
- "y": -25.24918816060864
- },
- {
- "x": -21.451508383947395,
- "y": -26.504137685143597
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_774",
- "pcb_component_id": "pcb_component_83",
- "layer": "top",
- "route": [
- {
- "x": -22.90886912211703,
- "y": -29.795960839391356
- },
- {
- "x": -25.743494616052597,
- "y": -28.541011314856398
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_775",
- "pcb_component_id": "pcb_component_83",
- "layer": "top",
- "route": [
- {
- "x": -25.743494616052597,
- "y": -28.541011314856398
- },
- {
- "x": -24.286133877882964,
- "y": -25.24918816060864
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_776",
- "pcb_component_id": "pcb_component_83",
- "layer": "bottom",
- "route": [
- {
- "x": -21.66963216749492,
- "y": -26.626293385178073
- },
- {
- "x": -22.965063934756817,
- "y": -29.55235841117608
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_777",
- "pcb_component_id": "pcb_component_83",
- "layer": "bottom",
- "route": [
- {
- "x": -24.229939065243176,
- "y": -25.492790588823915
- },
- {
- "x": -21.66963216749492,
- "y": -26.626293385178073
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_778",
- "pcb_component_id": "pcb_component_83",
- "layer": "bottom",
- "route": [
- {
- "x": -24.229939065243176,
- "y": -25.492790588823915
- },
- {
- "x": -25.52537083250507,
- "y": -28.418855614821922
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_779",
- "pcb_component_id": "pcb_component_83",
- "layer": "bottom",
- "route": [
- {
- "x": -25.52537083250507,
- "y": -28.418855614821922
- },
- {
- "x": -22.965063934756817,
- "y": -29.55235841117608
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_780",
- "pcb_component_id": "pcb_component_84",
- "layer": "bottom",
- "route": [
- {
- "x": -67.1203375,
- "y": -17.8225745
- },
- {
- "x": -66.9046655,
- "y": -17.8225745
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_781",
- "pcb_component_id": "pcb_component_84",
- "layer": "bottom",
- "route": [
- {
- "x": -67.1203375,
- "y": -18.5425745
- },
- {
- "x": -66.9046655,
- "y": -18.5425745
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_782",
- "pcb_component_id": "pcb_component_84",
- "layer": "bottom",
- "route": [
- {
- "x": -67.9225015,
- "y": -17.7225745
- },
- {
- "x": -67.9225015,
- "y": -18.642574500000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_783",
- "pcb_component_id": "pcb_component_84",
- "layer": "bottom",
- "route": [
- {
- "x": -67.9225015,
- "y": -18.642574500000002
- },
- {
- "x": -66.1025015,
- "y": -18.642574500000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_784",
- "pcb_component_id": "pcb_component_84",
- "layer": "bottom",
- "route": [
- {
- "x": -66.1025015,
- "y": -17.7225745
- },
- {
- "x": -67.9225015,
- "y": -17.7225745
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_785",
- "pcb_component_id": "pcb_component_84",
- "layer": "bottom",
- "route": [
- {
- "x": -66.1025015,
- "y": -18.642574500000002
- },
- {
- "x": -66.1025015,
- "y": -17.7225745
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_786",
- "pcb_component_id": "pcb_component_84",
- "layer": "bottom",
- "route": [
- {
- "x": -67.5125015,
- "y": -17.9325745
- },
- {
- "x": -67.5125015,
- "y": -18.4325745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_787",
- "pcb_component_id": "pcb_component_84",
- "layer": "bottom",
- "route": [
- {
- "x": -67.5125015,
- "y": -18.4325745
- },
- {
- "x": -66.5125015,
- "y": -18.4325745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_788",
- "pcb_component_id": "pcb_component_84",
- "layer": "bottom",
- "route": [
- {
- "x": -66.5125015,
- "y": -17.9325745
- },
- {
- "x": -67.5125015,
- "y": -17.9325745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_789",
- "pcb_component_id": "pcb_component_84",
- "layer": "bottom",
- "route": [
- {
- "x": -66.5125015,
- "y": -18.4325745
- },
- {
- "x": -66.5125015,
- "y": -17.9325745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_790",
- "pcb_component_id": "pcb_component_85",
- "layer": "bottom",
- "route": [
- {
- "x": 76.30250050000001,
- "y": -25.4813245
- },
- {
- "x": 72.30250050000001,
- "y": -25.4813245
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_791",
- "pcb_component_id": "pcb_component_85",
- "layer": "bottom",
- "route": [
- {
- "x": 76.30250050000001,
- "y": -22.181324500000002
- },
- {
- "x": 76.30250050000001,
- "y": -25.4813245
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_792",
- "pcb_component_id": "pcb_component_85",
- "layer": "bottom",
- "route": [
- {
- "x": 76.4025005,
- "y": -25.531324500000004
+ "x": 89.1319915,
+ "y": -16.499872500000002
},
{
- "x": 72.20250050000001,
- "y": -25.531324500000004
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_793",
- "pcb_component_id": "pcb_component_85",
- "layer": "bottom",
- "route": [
- {
- "x": 76.4025005,
- "y": -22.131324499999998
+ "x": 89.1226375,
+ "y": -16.320591500000006
},
{
- "x": 76.4025005,
- "y": -25.531324500000004
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_794",
- "pcb_component_id": "pcb_component_85",
- "layer": "bottom",
- "route": [
- {
- "x": 72.20250050000001,
- "y": -25.531324500000004
+ "x": 89.0816195,
+ "y": -16.157995500000006
},
{
- "x": 72.20250050000001,
- "y": -22.131324499999998
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_795",
- "pcb_component_id": "pcb_component_85",
- "layer": "bottom",
- "route": [
- {
- "x": 72.20250050000001,
- "y": -22.131324499999998
+ "x": 89.0692875,
+ "y": -16.128474500000003
},
{
- "x": 76.4025005,
- "y": -22.131324499999998
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_796",
- "pcb_component_id": "pcb_component_85",
- "layer": "bottom",
- "route": [
- {
- "x": 75.9025005,
- "y": -25.0813245
+ "x": 88.9719565,
+ "y": -15.969480500000003
},
{
- "x": 72.70250050000001,
- "y": -25.0813245
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_797",
- "pcb_component_id": "pcb_component_85",
- "layer": "bottom",
- "route": [
- {
- "x": 75.9025005,
- "y": -24.0813245
+ "x": 88.8442595,
+ "y": -15.844666500000002
},
{
- "x": 74.9025005,
- "y": -25.0813245
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_798",
- "pcb_component_id": "pcb_component_85",
- "layer": "bottom",
- "route": [
- {
- "x": 75.9025005,
- "y": -22.5813245
+ "x": 88.6935625,
+ "y": -15.754197500000004
},
{
- "x": 75.9025005,
- "y": -25.0813245
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_799",
- "pcb_component_id": "pcb_component_85",
- "layer": "bottom",
- "route": [
- {
- "x": 72.70250050000001,
- "y": -25.0813245
+ "x": 88.5272345,
+ "y": -15.698240500000004
},
{
- "x": 72.70250050000001,
- "y": -22.5813245
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_800",
- "pcb_component_id": "pcb_component_85",
- "layer": "bottom",
- "route": [
- {
- "x": 72.70250050000001,
- "y": -22.5813245
+ "x": 88.3526405,
+ "y": -15.6769605
},
{
- "x": 75.9025005,
- "y": -22.5813245
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_801",
- "pcb_component_id": "pcb_component_86",
- "layer": "top",
- "route": [
- {
- "x": 54.1875005,
- "y": 37.5274255
+ "x": 88.1771475,
+ "y": -15.690523500000005
},
{
- "x": 50.587500500000004,
- "y": 37.5274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_802",
- "pcb_component_id": "pcb_component_86",
- "layer": "top",
- "route": [
- {
- "x": 54.1875005,
- "y": 40.6274255
+ "x": 88.0081225,
+ "y": -15.739096500000002
},
{
- "x": 54.1875005,
- "y": 37.5274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_803",
- "pcb_component_id": "pcb_component_86",
- "layer": "top",
- "route": [
- {
- "x": 50.587500500000004,
- "y": 37.5274255
+ "x": 87.8529325,
+ "y": -15.822844500000002
},
{
- "x": 50.587500500000004,
- "y": 40.6274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_804",
- "pcb_component_id": "pcb_component_86",
- "layer": "top",
- "route": [
- {
- "x": 50.587500500000004,
- "y": 40.6274255
+ "x": 87.7189435,
+ "y": -15.941934500000002
},
{
- "x": 54.1875005,
- "y": 40.6274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_805",
- "pcb_component_id": "pcb_component_86",
- "layer": "bottom",
- "route": [
- {
- "x": 53.9875005,
- "y": 37.6774255
+ "x": 87.6139635,
+ "y": -16.095675500000006
},
{
- "x": 50.7875005,
- "y": 37.6774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_806",
- "pcb_component_id": "pcb_component_86",
- "layer": "bottom",
- "route": [
- {
- "x": 53.9875005,
- "y": 40.477425499999995
+ "x": 87.5724175,
+ "y": -16.213381500000004
},
{
- "x": 53.9875005,
- "y": 37.6774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_807",
- "pcb_component_id": "pcb_component_86",
- "layer": "bottom",
- "route": [
- {
- "x": 53.9875005,
- "y": 40.477425499999995
+ "x": 87.5484315,
+ "y": -16.3601005
},
{
- "x": 50.7875005,
- "y": 40.477425499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_808",
- "pcb_component_id": "pcb_component_86",
- "layer": "bottom",
- "route": [
- {
- "x": 50.7875005,
- "y": 40.477425499999995
+ "x": 87.5430725,
+ "y": -16.5167985
},
{
- "x": 50.7875005,
- "y": 37.6774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_809",
- "pcb_component_id": "pcb_component_87",
- "layer": "top",
- "route": [
- {
- "x": -119.0625015,
- "y": -18.047574500000003
+ "x": 87.1187465,
+ "y": -16.5167985
},
{
- "x": -138.1125015,
- "y": -18.047574500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_810",
- "pcb_component_id": "pcb_component_87",
- "layer": "top",
- "route": [
- {
- "x": -119.0625015,
- "y": 1.0024254999999975
+ "x": 87.1132365,
+ "y": -16.410810500000004
},
{
- "x": -119.0625015,
- "y": -18.047574500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_811",
- "pcb_component_id": "pcb_component_87",
- "layer": "top",
- "route": [
- {
- "x": -138.1125015,
- "y": -18.047574500000003
+ "x": 87.14564850000001,
+ "y": -16.1762675
},
{
- "x": -138.1125015,
- "y": 1.002425500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_812",
- "pcb_component_id": "pcb_component_87",
- "layer": "top",
- "route": [
- {
- "x": -138.1125015,
- "y": 1.002425500000001
+ "x": 87.2208485,
+ "y": -15.959626500000006
},
{
- "x": -119.0625015,
- "y": 1.0024254999999975
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_813",
- "pcb_component_id": "pcb_component_87",
- "layer": "top",
- "route": [
- {
- "x": -121.5875015,
- "y": -15.522574500000005
+ "x": 87.3363555,
+ "y": -15.765939500000002
},
{
- "x": -135.5875015,
- "y": -15.522574499999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_814",
- "pcb_component_id": "pcb_component_87",
- "layer": "top",
- "route": [
- {
- "x": -121.5875015,
- "y": -1.522574500000001
+ "x": 87.48968550000001,
+ "y": -15.600261500000002
},
{
- "x": -121.5875015,
- "y": -15.522574500000005
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_815",
- "pcb_component_id": "pcb_component_87",
- "layer": "top",
- "route": [
- {
- "x": -135.5875015,
- "y": -15.522574499999997
+ "x": 87.6783585,
+ "y": -15.467643500000001
},
{
- "x": -135.5875015,
- "y": -1.522574500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_816",
- "pcb_component_id": "pcb_component_87",
- "layer": "top",
- "route": [
- {
- "x": -135.5875015,
- "y": -1.522574500000001
+ "x": 87.7224175,
+ "y": -15.444377500000002
},
{
- "x": -121.5875015,
- "y": -1.522574500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_817",
- "pcb_component_id": "pcb_component_87",
- "layer": "top",
- "route": [
- {
- "x": -126.7875015,
- "y": -5.322574500000002
+ "x": 87.8967035,
+ "y": -15.3696275
},
{
- "x": -126.7875015,
- "y": -2.2225745000000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_818",
- "pcb_component_id": "pcb_component_87",
- "layer": "top",
- "route": [
- {
- "x": -126.7875015,
- "y": -5.322574500000002
+ "x": 88.0680285,
+ "y": -15.324855500000005
},
{
- "x": -130.3875015,
- "y": -5.322574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_819",
- "pcb_component_id": "pcb_component_87",
- "layer": "top",
- "route": [
- {
- "x": -126.7875015,
- "y": -2.2225745000000003
+ "x": 88.2539035,
+ "y": -15.306721500000002
},
{
- "x": -130.3875015,
- "y": -2.2225745000000003
+ "x": 88.4299845,
+ "y": -15.309414500000003
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.01
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_820",
- "pcb_component_id": "pcb_component_87",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_3",
+ "pcb_component_id": "pcb_component_5",
"layer": "top",
"route": [
{
- "x": -130.3875015,
- "y": -5.322574500000002
- },
- {
- "x": -130.3875015,
- "y": -2.2225745000000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_821",
- "pcb_component_id": "pcb_component_88",
- "layer": "bottom",
- "route": [
- {
- "x": 67.8424985,
- "y": -8.8104105
- },
- {
- "x": 67.8424985,
- "y": -8.594738500000002
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_822",
- "pcb_component_id": "pcb_component_88",
- "layer": "bottom",
- "route": [
- {
- "x": 68.5624985,
- "y": -8.8104105
- },
- {
- "x": 68.5624985,
- "y": -8.594738500000002
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_823",
- "pcb_component_id": "pcb_component_88",
- "layer": "bottom",
- "route": [
- {
- "x": 67.74249850000001,
- "y": -9.612574500000001
- },
- {
- "x": 68.6624985,
- "y": -9.612574500000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_824",
- "pcb_component_id": "pcb_component_88",
- "layer": "bottom",
- "route": [
- {
- "x": 68.6624985,
- "y": -9.612574500000001
- },
- {
- "x": 68.6624985,
- "y": -7.792574500000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_825",
- "pcb_component_id": "pcb_component_88",
- "layer": "bottom",
- "route": [
- {
- "x": 67.74249850000001,
- "y": -7.792574500000001
- },
- {
- "x": 67.74249850000001,
- "y": -9.612574500000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_826",
- "pcb_component_id": "pcb_component_88",
- "layer": "bottom",
- "route": [
- {
- "x": 68.6624985,
- "y": -7.792574500000001
- },
- {
- "x": 67.74249850000001,
- "y": -7.792574500000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_827",
- "pcb_component_id": "pcb_component_88",
- "layer": "bottom",
- "route": [
- {
- "x": 67.9524985,
- "y": -9.2025745
- },
- {
- "x": 68.4524985,
- "y": -9.2025745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_828",
- "pcb_component_id": "pcb_component_88",
- "layer": "bottom",
- "route": [
- {
- "x": 68.4524985,
- "y": -9.2025745
- },
- {
- "x": 68.4524985,
- "y": -8.2025745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_829",
- "pcb_component_id": "pcb_component_88",
- "layer": "bottom",
- "route": [
- {
- "x": 67.9524985,
- "y": -8.2025745
+ "x": 86.0470475,
+ "y": -15.323562500000001
},
{
- "x": 67.9524985,
- "y": -9.2025745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_830",
- "pcb_component_id": "pcb_component_88",
- "layer": "bottom",
- "route": [
- {
- "x": 68.4524985,
- "y": -8.2025745
+ "x": 86.1617465,
+ "y": -15.349676500000001
},
{
- "x": 67.9524985,
- "y": -8.2025745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_831",
- "pcb_component_id": "pcb_component_89",
- "layer": "top",
- "route": [
- {
- "x": 42.8624985,
- "y": 3.3836754999999954
+ "x": 86.3828485,
+ "y": -15.440213500000006
},
{
- "x": 23.8124985,
- "y": 3.3836755000000025
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_832",
- "pcb_component_id": "pcb_component_89",
- "layer": "top",
- "route": [
- {
- "x": 42.8624985,
- "y": 22.4336755
+ "x": 86.5742915,
+ "y": -15.566610500000003
},
{
- "x": 42.8624985,
- "y": 3.3836754999999954
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_833",
- "pcb_component_id": "pcb_component_89",
- "layer": "top",
- "route": [
- {
- "x": 23.8124985,
- "y": 3.3836755000000025
+ "x": 86.7312205,
+ "y": -15.724562500000005
},
{
- "x": 23.812498500000004,
- "y": 22.4336755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_834",
- "pcb_component_id": "pcb_component_89",
- "layer": "top",
- "route": [
- {
- "x": 23.812498500000004,
- "y": 22.4336755
+ "x": 86.8487805,
+ "y": -15.909762500000006
},
{
- "x": 42.8624985,
- "y": 22.4336755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_835",
- "pcb_component_id": "pcb_component_89",
- "layer": "top",
- "route": [
- {
- "x": 40.3374985,
- "y": 5.9086754999999975
+ "x": 86.8834355,
+ "y": -15.989828500000002
},
{
- "x": 26.337498500000002,
- "y": 5.908675500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_836",
- "pcb_component_id": "pcb_component_89",
- "layer": "top",
- "route": [
- {
- "x": 40.3374985,
- "y": 19.908675499999998
+ "x": 86.9174625,
+ "y": -16.0833055
},
{
- "x": 40.3374985,
- "y": 5.9086754999999975
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_837",
- "pcb_component_id": "pcb_component_89",
- "layer": "top",
- "route": [
- {
- "x": 26.337498500000002,
- "y": 5.908675500000001
+ "x": 86.9290815,
+ "y": -16.1423355
},
{
- "x": 26.337498500000002,
- "y": 19.9086755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_838",
- "pcb_component_id": "pcb_component_89",
- "layer": "top",
- "route": [
- {
- "x": 26.337498500000002,
- "y": 19.9086755
+ "x": 86.9117965,
+ "y": -16.1748355
},
{
- "x": 40.3374985,
- "y": 19.908675499999998
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_839",
- "pcb_component_id": "pcb_component_89",
- "layer": "top",
- "route": [
- {
- "x": 35.1374985,
- "y": 16.1086755
+ "x": 86.8591105,
+ "y": -16.188723500000002
},
{
- "x": 35.13749850000001,
- "y": 19.2086755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_840",
- "pcb_component_id": "pcb_component_89",
- "layer": "top",
- "route": [
- {
- "x": 35.1374985,
- "y": 16.1086755
+ "x": 86.7645275,
+ "y": -16.191917500000002
},
{
- "x": 31.5374985,
- "y": 16.1086755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_841",
- "pcb_component_id": "pcb_component_89",
- "layer": "top",
- "route": [
- {
- "x": 35.13749850000001,
- "y": 19.2086755
+ "x": 86.7175675,
+ "y": -16.1919745
},
{
- "x": 31.5374985,
- "y": 19.2086755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_842",
- "pcb_component_id": "pcb_component_89",
- "layer": "top",
- "route": [
- {
- "x": 31.5374985,
- "y": 16.1086755
+ "x": 86.5036375,
+ "y": -16.191973500000003
},
{
- "x": 31.5374985,
- "y": 19.2086755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_843",
- "pcb_component_id": "pcb_component_90",
- "layer": "top",
- "route": [
- {
- "x": 16.330418500663534,
- "y": -46.36939426316129
+ "x": 86.4727315,
+ "y": -16.0983285
},
{
- "x": 4.76261764144208,
- "y": -20.240547976319696
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_844",
- "pcb_component_id": "pcb_component_90",
- "layer": "top",
- "route": [
- {
- "x": 33.74964935855793,
- "y": -38.65752702368031
+ "x": 86.4061415,
+ "y": -15.972468500000005
},
{
- "x": 16.330418500663534,
- "y": -46.36939426316129
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_845",
- "pcb_component_id": "pcb_component_90",
- "layer": "top",
- "route": [
- {
- "x": 4.76261764144208,
- "y": -20.240547976319696
+ "x": 86.2996365,
+ "y": -15.8610775
},
{
- "x": 22.181848499336475,
- "y": -12.528680736838723
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_846",
- "pcb_component_id": "pcb_component_90",
- "layer": "top",
- "route": [
- {
- "x": 22.181848499336475,
- "y": -12.528680736838723
+ "x": 86.1634615,
+ "y": -15.7705865
},
{
- "x": 33.74964935855793,
- "y": -38.65752702368031
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_847",
- "pcb_component_id": "pcb_component_90",
- "layer": "top",
- "route": [
- {
- "x": 15.689123246514757,
- "y": -38.68356173525604
+ "x": 86.0078625,
+ "y": -15.707428500000006
},
{
- "x": 10.021609264743965,
- "y": -25.882027246514753
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_848",
- "pcb_component_id": "pcb_component_90",
- "layer": "top",
- "route": [
- {
- "x": 28.490657735256043,
- "y": -33.01604775348525
+ "x": 85.8430835,
+ "y": -15.6780355
},
{
- "x": 15.689123246514757,
- "y": -38.68356173525604
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_849",
- "pcb_component_id": "pcb_component_90",
- "layer": "top",
- "route": [
- {
- "x": 10.021609264743965,
- "y": -25.882027246514753
+ "x": 85.8011975,
+ "y": -15.676716500000005
},
{
- "x": 22.82314375348525,
- "y": -20.214513264743964
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_850",
- "pcb_component_id": "pcb_component_90",
- "layer": "top",
- "route": [
- {
- "x": 22.82314375348525,
- "y": -20.214513264743964
+ "x": 85.61886750000001,
+ "y": -15.699484500000004
},
{
- "x": 28.490657735256043,
- "y": -33.01604775348525
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_851",
- "pcb_component_id": "pcb_component_90",
- "layer": "top",
- "route": [
- {
- "x": 22.910878895082828,
- "y": -29.79951730986199
+ "x": 85.4485635,
+ "y": -15.7637955
},
{
- "x": 25.7455043890184,
- "y": -28.544567785327025
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_852",
- "pcb_component_id": "pcb_component_90",
- "layer": "top",
- "route": [
- {
- "x": 22.910878895082828,
- "y": -29.79951730986199
+ "x": 85.2990145,
+ "y": -15.863663500000001
},
{
- "x": 21.453518156913198,
- "y": -26.507694155614224
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_853",
- "pcb_component_id": "pcb_component_90",
- "layer": "top",
- "route": [
- {
- "x": 25.7455043890184,
- "y": -28.544567785327025
+ "x": 85.1789515,
+ "y": -15.993100500000004
},
{
- "x": 24.288143650848767,
- "y": -25.252744631079267
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_854",
- "pcb_component_id": "pcb_component_90",
- "layer": "top",
- "route": [
- {
- "x": 21.453518156913198,
- "y": -26.507694155614224
+ "x": 85.0971035,
+ "y": -16.146121500000007
},
{
- "x": 24.288143650848767,
- "y": -25.252744631079267
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_855",
- "pcb_component_id": "pcb_component_91",
- "layer": "top",
- "route": [
- {
- "x": 42.1999883781709,
- "y": -23.871071849097675
+ "x": 85.0909055,
+ "y": -16.163841500000004
},
{
- "x": 38.67787513784969,
- "y": -24.615865996734478
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_856",
- "pcb_component_id": "pcb_component_91",
- "layer": "top",
- "route": [
- {
- "x": 41.55863786215031,
- "y": -20.838141003265527
+ "x": 85.0573545,
+ "y": -16.322498500000002
},
{
- "x": 42.1999883781709,
- "y": -23.871071849097675
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_857",
- "pcb_component_id": "pcb_component_91",
- "layer": "top",
- "route": [
- {
- "x": 38.67787513784969,
- "y": -24.615865996734478
+ "x": 85.0515715,
+ "y": -16.4979765
},
{
- "x": 38.0365246218291,
- "y": -21.58293515090233
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_858",
- "pcb_component_id": "pcb_component_91",
- "layer": "top",
- "route": [
- {
- "x": 38.0365246218291,
- "y": -21.58293515090233
+ "x": 85.0722575,
+ "y": -16.671901500000004
},
{
- "x": 41.55863786215031,
- "y": -20.838141003265527
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_859",
- "pcb_component_id": "pcb_component_91",
- "layer": "bottom",
- "route": [
- {
- "x": 41.973282330890406,
- "y": -23.765694583397448
+ "x": 85.1181115,
+ "y": -16.825896500000006
},
{
- "x": 38.84251500616045,
- "y": -24.427733825741278
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_860",
- "pcb_component_id": "pcb_component_91",
- "layer": "bottom",
- "route": [
- {
- "x": 41.393997993839555,
- "y": -21.026273174258726
+ "x": 85.14117350000001,
+ "y": -16.874105500000006
},
{
- "x": 41.973282330890406,
- "y": -23.765694583397448
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_861",
- "pcb_component_id": "pcb_component_91",
- "layer": "bottom",
- "route": [
- {
- "x": 41.393997993839555,
- "y": -21.026273174258726
+ "x": 85.2469025,
+ "y": -17.0247125
},
{
- "x": 38.263230669109596,
- "y": -21.688312416602557
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_862",
- "pcb_component_id": "pcb_component_91",
- "layer": "bottom",
- "route": [
- {
- "x": 38.263230669109596,
- "y": -21.688312416602557
+ "x": 85.3817775,
+ "y": -17.136877500000004
},
{
- "x": 38.84251500616045,
- "y": -24.427733825741278
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_863",
- "pcb_component_id": "pcb_component_92",
- "layer": "top",
- "route": [
- {
- "x": 92.28750050000001,
- "y": 37.5274255
+ "x": 85.5291005,
+ "y": -17.208489500000006
},
{
- "x": 88.68750050000001,
- "y": 37.5274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_864",
- "pcb_component_id": "pcb_component_92",
- "layer": "top",
- "route": [
- {
- "x": 92.28750050000001,
- "y": 40.6274255
+ "x": 85.7077875,
+ "y": -17.251500500000006
},
{
- "x": 92.28750050000001,
- "y": 37.5274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_865",
- "pcb_component_id": "pcb_component_92",
- "layer": "top",
- "route": [
- {
- "x": 88.68750050000001,
- "y": 37.5274255
+ "x": 85.8872575,
+ "y": -17.2513475
},
{
- "x": 88.68750050000001,
- "y": 40.6274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_866",
- "pcb_component_id": "pcb_component_92",
- "layer": "top",
- "route": [
- {
- "x": 88.68750050000001,
- "y": 40.6274255
+ "x": 86.0590705,
+ "y": -17.2113595
},
{
- "x": 92.28750050000001,
- "y": 40.6274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_867",
- "pcb_component_id": "pcb_component_92",
- "layer": "bottom",
- "route": [
- {
- "x": 92.0875005,
- "y": 37.6774255
+ "x": 86.2147885,
+ "y": -17.134865500000004
},
{
- "x": 88.88750050000002,
- "y": 37.6774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_868",
- "pcb_component_id": "pcb_component_92",
- "layer": "bottom",
- "route": [
- {
- "x": 92.0875005,
- "y": 40.477425499999995
+ "x": 86.3459725,
+ "y": -17.0251965
},
{
- "x": 92.0875005,
- "y": 37.6774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_869",
- "pcb_component_id": "pcb_component_92",
- "layer": "bottom",
- "route": [
- {
- "x": 92.0875005,
- "y": 40.477425499999995
+ "x": 86.4441825,
+ "y": -16.885680500000007
},
{
- "x": 88.88750050000002,
- "y": 40.477425499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_870",
- "pcb_component_id": "pcb_component_92",
- "layer": "bottom",
- "route": [
- {
- "x": 88.88750050000002,
- "y": 40.477425499999995
+ "x": 86.4657655,
+ "y": -16.838963500000006
},
{
- "x": 88.88750050000002,
- "y": 37.6774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_871",
- "pcb_component_id": "pcb_component_93",
- "layer": "top",
- "route": [
- {
- "x": -4.762501499999997,
- "y": 12.908675499999998
+ "x": 86.5123985,
+ "y": -16.725564500000004
},
{
- "x": -23.812501499999996,
- "y": 12.908675500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_872",
- "pcb_component_id": "pcb_component_93",
- "layer": "top",
- "route": [
- {
- "x": -4.762501499999994,
- "y": 31.9586755
+ "x": 86.7219485,
+ "y": -16.725469500000003
},
{
- "x": -4.762501499999997,
- "y": 12.908675499999998
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_873",
- "pcb_component_id": "pcb_component_93",
- "layer": "top",
- "route": [
- {
- "x": -23.812501499999996,
- "y": 12.908675500000001
+ "x": 86.8246665,
+ "y": -16.726135500000005
},
{
- "x": -23.812501499999996,
- "y": 31.958675500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_874",
- "pcb_component_id": "pcb_component_93",
- "layer": "top",
- "route": [
- {
- "x": -23.812501499999996,
- "y": 31.958675500000002
+ "x": 86.8867825,
+ "y": -16.730194500000003
},
{
- "x": -4.762501499999994,
- "y": 31.9586755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_875",
- "pcb_component_id": "pcb_component_93",
- "layer": "top",
- "route": [
- {
- "x": -7.287501499999997,
- "y": 15.4336755
+ "x": 86.9184935,
+ "y": -16.7405665
},
{
- "x": -21.287501499999998,
- "y": 15.4336755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_876",
- "pcb_component_id": "pcb_component_93",
- "layer": "top",
- "route": [
- {
- "x": -7.287501499999995,
- "y": 29.4336755
+ "x": 86.9299955,
+ "y": -16.760168500000006
},
{
- "x": -7.287501499999997,
- "y": 15.4336755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_877",
- "pcb_component_id": "pcb_component_93",
- "layer": "top",
- "route": [
- {
- "x": -21.287501499999998,
- "y": 15.4336755
+ "x": 86.9314985,
+ "y": -16.785461500000004
},
{
- "x": -21.287501499999994,
- "y": 29.4336755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_878",
- "pcb_component_id": "pcb_component_93",
- "layer": "top",
- "route": [
- {
- "x": -21.287501499999994,
- "y": 29.4336755
+ "x": 86.9159735,
+ "y": -16.860476500000004
},
{
- "x": -7.287501499999995,
- "y": 29.4336755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_879",
- "pcb_component_id": "pcb_component_93",
- "layer": "top",
- "route": [
- {
- "x": -12.487501499999995,
- "y": 25.6336755
+ "x": 86.8744225,
+ "y": -16.960355500000006
},
{
- "x": -12.487501499999995,
- "y": 28.7336755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_880",
- "pcb_component_id": "pcb_component_93",
- "layer": "top",
- "route": [
- {
- "x": -12.487501499999995,
- "y": 25.6336755
+ "x": 86.8143765,
+ "y": -17.0718265
},
{
- "x": -16.087501499999995,
- "y": 25.6336755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_881",
- "pcb_component_id": "pcb_component_93",
- "layer": "top",
- "route": [
- {
- "x": -12.487501499999995,
- "y": 28.7336755
+ "x": 86.7433675,
+ "y": -17.181615500000007
},
{
- "x": -16.087501499999995,
- "y": 28.7336755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_882",
- "pcb_component_id": "pcb_component_93",
- "layer": "top",
- "route": [
- {
- "x": -16.087501499999995,
- "y": 25.6336755
+ "x": 86.6689275,
+ "y": -17.276450500000003
},
{
- "x": -16.087501499999995,
- "y": 28.7336755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_883",
- "pcb_component_id": "pcb_component_94",
- "layer": "top",
- "route": [
- {
- "x": -42.8625015,
- "y": -13.2850745
+ "x": 86.6300365,
+ "y": -17.316693500000007
},
{
- "x": -61.912501500000005,
- "y": -13.2850745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_884",
- "pcb_component_id": "pcb_component_94",
- "layer": "top",
- "route": [
+ "x": 86.45026250000001,
+ "y": -17.451705500000003
+ },
{
- "x": -42.86250149999999,
- "y": 5.764925499999997
+ "x": 86.2414055,
+ "y": -17.5523855
},
{
- "x": -42.8625015,
- "y": -13.2850745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_885",
- "pcb_component_id": "pcb_component_94",
- "layer": "top",
- "route": [
+ "x": 86.0145585,
+ "y": -17.6154875
+ },
{
- "x": -61.912501500000005,
- "y": -13.2850745
+ "x": 85.7808165,
+ "y": -17.6377685
},
{
- "x": -61.9125015,
- "y": 5.7649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_886",
- "pcb_component_id": "pcb_component_94",
- "layer": "top",
- "route": [
+ "x": 85.58529850000001,
+ "y": -17.6222385
+ },
{
- "x": -61.9125015,
- "y": 5.7649255
+ "x": 85.39208550000001,
+ "y": -17.571517500000006
},
{
- "x": -42.86250149999999,
- "y": 5.764925499999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_887",
- "pcb_component_id": "pcb_component_94",
- "layer": "top",
- "route": [
+ "x": 85.2044495,
+ "y": -17.488451500000004
+ },
{
- "x": -45.3875015,
- "y": -10.760074500000002
+ "x": 85.0347585,
+ "y": -17.3804345
},
{
- "x": -59.3875015,
- "y": -10.760074500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_888",
- "pcb_component_id": "pcb_component_94",
- "layer": "top",
- "route": [
+ "x": 84.8953815,
+ "y": -17.254863500000006
+ },
{
- "x": -45.3875015,
- "y": 3.2399254999999982
+ "x": 84.8284875,
+ "y": -17.169739500000006
},
{
- "x": -45.3875015,
- "y": -10.760074500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_889",
- "pcb_component_id": "pcb_component_94",
- "layer": "top",
- "route": [
+ "x": 84.7471585,
+ "y": -17.035415500000006
+ },
{
- "x": -59.3875015,
- "y": -10.760074500000002
+ "x": 84.6912685,
+ "y": -16.910461500000004
},
{
- "x": -59.3875015,
- "y": 3.2399254999999982
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_890",
- "pcb_component_id": "pcb_component_94",
- "layer": "top",
- "route": [
+ "x": 84.6566895,
+ "y": -16.779712500000002
+ },
{
- "x": -59.3875015,
- "y": 3.2399254999999982
+ "x": 84.6392915,
+ "y": -16.628004500000003
},
{
- "x": -45.3875015,
- "y": 3.2399254999999982
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_891",
- "pcb_component_id": "pcb_component_94",
- "layer": "top",
- "route": [
+ "x": 84.6349125,
+ "y": -16.4586745
+ },
{
- "x": -50.5875015,
- "y": -0.5600745000000025
+ "x": 84.63641750000001,
+ "y": -16.3177685
},
{
- "x": -50.5875015,
- "y": 2.539925499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_892",
- "pcb_component_id": "pcb_component_94",
- "layer": "top",
- "route": [
+ "x": 84.6421195,
+ "y": -16.2137625
+ },
{
- "x": -50.5875015,
- "y": -0.5600745000000025
+ "x": 84.6537965,
+ "y": -16.132810500000005
},
{
- "x": -54.187501499999996,
- "y": -0.5600745000000025
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_893",
- "pcb_component_id": "pcb_component_94",
- "layer": "top",
- "route": [
+ "x": 84.67322850000001,
+ "y": -16.061068500000005
+ },
{
- "x": -50.5875015,
- "y": 2.539925499999999
+ "x": 84.6928495,
+ "y": -16.007771500000004
},
{
- "x": -54.187501499999996,
- "y": 2.539925499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_894",
- "pcb_component_id": "pcb_component_94",
- "layer": "top",
- "route": [
+ "x": 84.7984955,
+ "y": -15.808117500000002
+ },
{
- "x": -54.187501499999996,
- "y": -0.5600745000000025
+ "x": 84.9447605,
+ "y": -15.631600500000005
},
{
- "x": -54.187501499999996,
- "y": 2.539925499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_895",
- "pcb_component_id": "pcb_component_95",
- "layer": "bottom",
- "route": [
+ "x": 85.1238745,
+ "y": -15.485890500000004
+ },
{
- "x": 64.57249850000001,
- "y": -8.8104105
+ "x": 85.3280675,
+ "y": -15.378659500000005
},
{
- "x": 64.57249850000001,
- "y": -8.594738500000002
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_896",
- "pcb_component_id": "pcb_component_95",
- "layer": "bottom",
- "route": [
+ "x": 85.3312985,
+ "y": -15.377376500000004
+ },
{
- "x": 65.29249850000001,
- "y": -8.8104105
+ "x": 85.4872815,
+ "y": -15.333488500000001
},
{
- "x": 65.29249850000001,
- "y": -8.594738500000002
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_897",
- "pcb_component_id": "pcb_component_95",
- "layer": "bottom",
- "route": [
+ "x": 85.6712535,
+ "y": -15.309466500000006
+ },
{
- "x": 64.47249850000001,
- "y": -9.612574500000001
+ "x": 85.8641855,
+ "y": -15.305946500000005
},
{
- "x": 65.3924985,
- "y": -9.612574500000001
+ "x": 86.0470475,
+ "y": -15.323562500000001
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.01
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_898",
- "pcb_component_id": "pcb_component_95",
- "layer": "bottom",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_4",
+ "pcb_component_id": "pcb_component_5",
+ "layer": "top",
"route": [
{
- "x": 65.3924985,
- "y": -9.612574500000001
+ "x": 95.2215285,
+ "y": -15.3259805
},
{
- "x": 65.3924985,
- "y": -7.792574500000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_899",
- "pcb_component_id": "pcb_component_95",
- "layer": "bottom",
- "route": [
+ "x": 95.4438925,
+ "y": -15.3922795
+ },
{
- "x": 64.47249850000001,
- "y": -7.792574500000001
+ "x": 95.6421315,
+ "y": -15.497787500000001
},
{
- "x": 64.47249850000001,
- "y": -9.612574500000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_900",
- "pcb_component_id": "pcb_component_95",
- "layer": "bottom",
- "route": [
+ "x": 95.8120775,
+ "y": -15.6384215
+ },
{
- "x": 65.3924985,
- "y": -7.792574500000001
+ "x": 95.9495575,
+ "y": -15.810098500000002
},
{
- "x": 64.47249850000001,
- "y": -7.792574500000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_901",
- "pcb_component_id": "pcb_component_95",
- "layer": "bottom",
- "route": [
+ "x": 96.0504025,
+ "y": -16.008736500000005
+ },
{
- "x": 64.68249850000001,
- "y": -9.2025745
+ "x": 96.11044150000001,
+ "y": -16.230252500000006
},
{
- "x": 65.18249850000001,
- "y": -9.2025745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_902",
- "pcb_component_id": "pcb_component_95",
- "layer": "bottom",
- "route": [
+ "x": 96.1262985,
+ "y": -16.4259105
+ },
{
- "x": 65.18249850000001,
- "y": -9.2025745
+ "x": 96.1262985,
+ "y": -16.5729745
},
{
- "x": 65.18249850000001,
- "y": -8.2025745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_903",
- "pcb_component_id": "pcb_component_95",
- "layer": "bottom",
- "route": [
+ "x": 94.2212985,
+ "y": -16.5729745
+ },
{
- "x": 64.68249850000001,
- "y": -8.2025745
+ "x": 94.2212985,
+ "y": -16.646072500000002
},
{
- "x": 64.68249850000001,
- "y": -9.2025745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_904",
- "pcb_component_id": "pcb_component_95",
- "layer": "bottom",
- "route": [
+ "x": 94.2442155,
+ "y": -16.769223500000003
+ },
{
- "x": 65.18249850000001,
- "y": -8.2025745
+ "x": 94.3076535,
+ "y": -16.896746500000006
},
{
- "x": 64.68249850000001,
- "y": -8.2025745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_905",
- "pcb_component_id": "pcb_component_96",
- "layer": "bottom",
- "route": [
+ "x": 94.4036415,
+ "y": -17.017872500000003
+ },
{
- "x": 74.4846625,
- "y": -9.392574500000002
+ "x": 94.5242095,
+ "y": -17.1218305
},
{
- "x": 74.70033450000001,
- "y": -9.392574500000002
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_906",
- "pcb_component_id": "pcb_component_96",
- "layer": "bottom",
- "route": [
+ "x": 94.6133865,
+ "y": -17.175813500000004
+ },
{
- "x": 74.4846625,
- "y": -10.112574500000001
+ "x": 94.7492405,
+ "y": -17.227221500000006
},
{
- "x": 74.70033450000001,
- "y": -10.112574500000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_907",
- "pcb_component_id": "pcb_component_96",
- "layer": "bottom",
- "route": [
+ "x": 94.9099025,
+ "y": -17.252257500000006
+ },
{
- "x": 73.68249850000001,
- "y": -9.2925745
+ "x": 94.9228705,
+ "y": -17.253170500000003
},
{
- "x": 73.68249850000001,
- "y": -10.212574500000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_908",
- "pcb_component_id": "pcb_component_96",
- "layer": "bottom",
- "route": [
+ "x": 95.1051275,
+ "y": -17.250701500000005
+ },
{
- "x": 73.68249850000001,
- "y": -10.212574500000002
+ "x": 95.2588015,
+ "y": -17.2139035
},
{
- "x": 75.5024985,
- "y": -10.212574500000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_909",
- "pcb_component_id": "pcb_component_96",
- "layer": "bottom",
- "route": [
+ "x": 95.3964935,
+ "y": -17.138188500000005
+ },
{
- "x": 75.5024985,
- "y": -9.2925745
+ "x": 95.5111915,
+ "y": -17.038993500000004
},
{
- "x": 73.68249850000001,
- "y": -9.2925745
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_910",
- "pcb_component_id": "pcb_component_96",
- "layer": "bottom",
- "route": [
+ "x": 95.6470115,
+ "y": -16.903174500000006
+ },
{
- "x": 75.5024985,
- "y": -10.212574500000002
+ "x": 95.8502665,
+ "y": -16.903174500000006
},
{
- "x": 75.5024985,
- "y": -9.2925745
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_911",
- "pcb_component_id": "pcb_component_96",
- "layer": "bottom",
- "route": [
+ "x": 95.9508095,
+ "y": -16.903820500000002
+ },
{
- "x": 74.0924985,
- "y": -9.502574500000001
+ "x": 96.0100315,
+ "y": -16.9076965
},
{
- "x": 74.0924985,
- "y": -10.002574500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_912",
- "pcb_component_id": "pcb_component_96",
- "layer": "bottom",
- "route": [
+ "x": 96.0374085,
+ "y": -16.917707500000006
+ },
{
- "x": 74.0924985,
- "y": -10.002574500000001
+ "x": 96.0424175,
+ "y": -16.9367565
},
{
- "x": 75.0924985,
- "y": -10.002574500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_913",
- "pcb_component_id": "pcb_component_96",
- "layer": "bottom",
- "route": [
+ "x": 96.0367285,
+ "y": -16.960324500000006
+ },
{
- "x": 75.0924985,
- "y": -9.502574500000001
+ "x": 95.99841550000001,
+ "y": -17.045972500000005
},
{
- "x": 74.0924985,
- "y": -9.502574500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_914",
- "pcb_component_id": "pcb_component_96",
- "layer": "bottom",
- "route": [
+ "x": 95.9334975,
+ "y": -17.148660500000005
+ },
{
- "x": 75.0924985,
- "y": -10.002574500000001
+ "x": 95.8537725,
+ "y": -17.2521805
},
{
- "x": 75.0924985,
- "y": -9.502574500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_915",
- "pcb_component_id": "pcb_component_97",
- "layer": "top",
- "route": [
+ "x": 95.77104250000001,
+ "y": -17.340320500000004
+ },
{
- "x": -88.6875015,
- "y": 37.5274255
+ "x": 95.7408555,
+ "y": -17.366747500000002
},
{
- "x": -92.28750149999999,
- "y": 37.5274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_916",
- "pcb_component_id": "pcb_component_97",
- "layer": "top",
- "route": [
+ "x": 95.5419885,
+ "y": -17.496347500000006
+ },
{
- "x": -88.6875015,
- "y": 40.6274255
+ "x": 95.3193005,
+ "y": -17.585811500000005
},
{
- "x": -88.6875015,
- "y": 37.5274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_917",
- "pcb_component_id": "pcb_component_97",
- "layer": "top",
- "route": [
+ "x": 95.0825945,
+ "y": -17.633083500000005
+ },
{
- "x": -92.28750149999999,
- "y": 37.5274255
+ "x": 94.8416715,
+ "y": -17.636109500000003
},
{
- "x": -92.28750149999999,
- "y": 40.6274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_918",
- "pcb_component_id": "pcb_component_97",
- "layer": "top",
- "route": [
+ "x": 94.63035550000001,
+ "y": -17.5995785
+ },
{
- "x": -92.28750149999999,
- "y": 40.6274255
+ "x": 94.4092435,
+ "y": -17.515453500000007
},
{
- "x": -88.6875015,
- "y": 40.6274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_919",
- "pcb_component_id": "pcb_component_97",
- "layer": "bottom",
- "route": [
+ "x": 94.2144235,
+ "y": -17.391597500000003
+ },
{
- "x": -88.8875015,
- "y": 37.6774255
+ "x": 94.0508235,
+ "y": -17.233128500000007
},
{
- "x": -92.08750149999999,
- "y": 37.6774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_920",
- "pcb_component_id": "pcb_component_97",
- "layer": "bottom",
- "route": [
+ "x": 93.9233725,
+ "y": -17.045164500000006
+ },
{
- "x": -88.8875015,
- "y": 40.477425499999995
+ "x": 93.8369995,
+ "y": -16.832823500000003
},
{
- "x": -88.8875015,
- "y": 37.6774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_921",
- "pcb_component_id": "pcb_component_97",
- "layer": "bottom",
- "route": [
+ "x": 93.8178425,
+ "y": -16.7558735
+ },
{
- "x": -88.8875015,
- "y": 40.477425499999995
+ "x": 93.7873065,
+ "y": -16.5058165
},
{
- "x": -92.08750149999999,
- "y": 40.477425499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_922",
- "pcb_component_id": "pcb_component_97",
- "layer": "bottom",
- "route": [
+ "x": 93.8010395,
+ "y": -16.2662355
+ },
{
- "x": -92.08750149999999,
- "y": 40.477425499999995
+ "x": 93.8132205,
+ "y": -16.217374500000005
},
{
- "x": -92.08750149999999,
- "y": 37.6774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_923",
- "pcb_component_id": "pcb_component_98",
- "layer": "bottom",
- "route": [
+ "x": 94.2225555,
+ "y": -16.217374500000005
+ },
{
- "x": -96.4325015,
- "y": -12.9575745
+ "x": 94.9458265,
+ "y": -16.217374500000005
},
{
- "x": -93.5025015,
- "y": -12.9575745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_924",
- "pcb_component_id": "pcb_component_98",
- "layer": "bottom",
- "route": [
+ "x": 95.1584125,
+ "y": -16.217102500000003
+ },
{
- "x": -96.4325015,
- "y": -12.9575745
+ "x": 95.3254975,
+ "y": -16.2160955
},
{
- "x": -96.4325015,
- "y": -16.857574500000005
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_925",
- "pcb_component_id": "pcb_component_98",
- "layer": "bottom",
- "route": [
+ "x": 95.4523775,
+ "y": -16.214068500000003
+ },
{
- "x": -93.5025015,
- "y": -16.857574500000005
+ "x": 95.5443495,
+ "y": -16.210732500000006
},
{
- "x": -93.5025015,
- "y": -12.9575745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_926",
- "pcb_component_id": "pcb_component_98",
- "layer": "bottom",
- "route": [
+ "x": 95.6067105,
+ "y": -16.205803500000002
+ },
{
- "x": -96.4325015,
- "y": -16.857574500000005
+ "x": 95.6447575,
+ "y": -16.198994500000005
},
{
- "x": -93.5025015,
- "y": -16.857574500000005
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_927",
- "pcb_component_id": "pcb_component_99",
- "layer": "top",
- "route": [
+ "x": 95.6637865,
+ "y": -16.1900185
+ },
{
- "x": -126.7875015,
- "y": -5.335074500000001
+ "x": 95.6690955,
+ "y": -16.178588500000004
},
{
- "x": -130.3875015,
- "y": -5.335074500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_928",
- "pcb_component_id": "pcb_component_99",
- "layer": "top",
- "route": [
+ "x": 95.6690985,
+ "y": -16.178262500000002
+ },
{
- "x": -126.7875015,
- "y": -2.2350744999999996
+ "x": 95.6487215,
+ "y": -16.096332500000003
},
{
- "x": -126.7875015,
- "y": -5.335074500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_929",
- "pcb_component_id": "pcb_component_99",
- "layer": "top",
- "route": [
+ "x": 95.5940235,
+ "y": -16.000747500000003
+ },
{
- "x": -130.3875015,
- "y": -5.335074500000001
+ "x": 95.5146505,
+ "y": -15.903296500000003
},
{
- "x": -130.3875015,
- "y": -2.2350744999999996
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_930",
- "pcb_component_id": "pcb_component_99",
- "layer": "top",
- "route": [
+ "x": 95.4202465,
+ "y": -15.815769500000002
+ },
{
- "x": -130.3875015,
- "y": -2.2350744999999996
+ "x": 95.3204595,
+ "y": -15.7499575
},
{
- "x": -126.7875015,
- "y": -2.2350744999999996
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_931",
- "pcb_component_id": "pcb_component_99",
- "layer": "bottom",
- "route": [
+ "x": 95.3174015,
+ "y": -15.748400500000002
+ },
{
- "x": -126.98750150000001,
- "y": -5.185074499999999
+ "x": 95.1783455,
+ "y": -15.700851500000006
},
{
- "x": -130.1875015,
- "y": -5.185074499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_932",
- "pcb_component_id": "pcb_component_99",
- "layer": "bottom",
- "route": [
+ "x": 95.0142315,
+ "y": -15.679588500000001
+ },
{
- "x": -126.98750150000001,
- "y": -2.3850745000000018
+ "x": 94.8434265,
+ "y": -15.684534500000005
},
{
- "x": -126.98750150000001,
- "y": -5.185074499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_933",
- "pcb_component_id": "pcb_component_99",
- "layer": "bottom",
- "route": [
+ "x": 94.6842965,
+ "y": -15.715613500000003
+ },
{
- "x": -126.98750150000001,
- "y": -2.3850745000000018
+ "x": 94.5925585,
+ "y": -15.7514185
},
{
- "x": -130.1875015,
- "y": -2.3850745000000018
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_934",
- "pcb_component_id": "pcb_component_99",
- "layer": "bottom",
- "route": [
+ "x": 94.44602450000001,
+ "y": -15.853060500000005
+ },
{
- "x": -130.1875015,
- "y": -2.3850745000000018
+ "x": 94.3271475,
+ "y": -15.9943715
},
{
- "x": -130.1875015,
- "y": -5.185074499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_935",
- "pcb_component_id": "pcb_component_100",
- "layer": "bottom",
- "route": [
+ "x": 94.2467635,
+ "y": -16.153701500000004
+ },
{
- "x": -65.2175015,
- "y": -9.4813245
+ "x": 94.2225555,
+ "y": -16.217374500000005
},
{
- "x": -65.2175015,
- "y": -9.741324499999997
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_936",
- "pcb_component_id": "pcb_component_100",
- "layer": "bottom",
- "route": [
+ "x": 93.8132205,
+ "y": -16.217374500000005
+ },
{
- "x": -65.2175015,
- "y": -14.671324500000004
+ "x": 93.8568655,
+ "y": -16.0423095
},
{
- "x": -66.8925015,
- "y": -14.671324500000004
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_937",
- "pcb_component_id": "pcb_component_100",
- "layer": "bottom",
- "route": [
+ "x": 93.9526045,
+ "y": -15.839217500000004
+ },
{
- "x": -65.2175015,
- "y": -14.931324500000002
+ "x": 94.0860775,
+ "y": -15.6621375
},
{
- "x": -65.2175015,
- "y": -14.671324500000004
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_938",
- "pcb_component_id": "pcb_component_100",
- "layer": "bottom",
- "route": [
+ "x": 94.2551065,
+ "y": -15.516246500000001
+ },
{
- "x": -62.492501499999996,
- "y": -9.4813245
+ "x": 94.3679975,
+ "y": -15.448263500000003
},
{
- "x": -65.2175015,
- "y": -9.4813245
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_939",
- "pcb_component_id": "pcb_component_100",
- "layer": "bottom",
- "route": [
+ "x": 94.5626015,
+ "y": -15.364320500000005
+ },
{
- "x": -62.492501499999996,
- "y": -9.4813245
+ "x": 94.7599245,
+ "y": -15.3174755
},
{
- "x": -59.767501499999995,
- "y": -9.4813245
+ "x": 94.9792115,
+ "y": -15.302974500000005
+ },
+ {
+ "x": 95.2215285,
+ "y": -15.3259805
}
],
- "stroke_width": 0.12
+ "stroke_width": 0.01
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_940",
- "pcb_component_id": "pcb_component_100",
- "layer": "bottom",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_5",
+ "pcb_component_id": "pcb_component_8",
+ "layer": "top",
"route": [
{
- "x": -62.492501499999996,
- "y": -14.931324500000002
+ "x": -89.94776449999999,
+ "y": -15.293010500000001
},
{
- "x": -65.2175015,
- "y": -14.931324500000002
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_941",
- "pcb_component_id": "pcb_component_100",
- "layer": "bottom",
- "route": [
+ "x": -89.8017015,
+ "y": -15.309535500000003
+ },
{
- "x": -62.492501499999996,
- "y": -14.931324500000002
+ "x": -89.8017015,
+ "y": -15.6803035
},
{
- "x": -59.767501499999995,
- "y": -14.931324500000002
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_942",
- "pcb_component_id": "pcb_component_100",
- "layer": "bottom",
- "route": [
+ "x": -89.9350515,
+ "y": -15.666642500000002
+ },
{
- "x": -59.767501499999995,
- "y": -9.4813245
+ "x": -90.11915049999999,
+ "y": -15.671713500000003
},
{
- "x": -59.767501499999995,
- "y": -9.741324499999997
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_943",
- "pcb_component_id": "pcb_component_100",
- "layer": "bottom",
- "route": [
+ "x": -90.28854949999999,
+ "y": -15.723496500000003
+ },
{
- "x": -59.767501499999995,
- "y": -14.931324500000002
+ "x": -90.43712049999999,
+ "y": -15.818630500000005
},
{
- "x": -59.767501499999995,
- "y": -14.671324500000004
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_944",
- "pcb_component_id": "pcb_component_100",
- "layer": "bottom",
- "route": [
+ "x": -90.5587355,
+ "y": -15.953753500000005
+ },
{
- "x": -67.1425015,
- "y": -9.346324500000001
+ "x": -90.60761249999999,
+ "y": -16.035443500000007
},
{
- "x": -57.8425015,
- "y": -9.346324500000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_945",
- "pcb_component_id": "pcb_component_100",
- "layer": "bottom",
- "route": [
+ "x": -90.69070149999999,
+ "y": -16.1964125
+ },
{
- "x": -67.1425015,
- "y": -15.0663245
+ "x": -90.69070149999999,
+ "y": -17.588974500000006
},
{
- "x": -67.1425015,
- "y": -9.346324500000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_946",
- "pcb_component_id": "pcb_component_100",
- "layer": "bottom",
- "route": [
+ "x": -91.1225015,
+ "y": -17.588974500000006
+ },
{
- "x": -57.8425015,
- "y": -9.346324500000001
+ "x": -91.1225015,
+ "y": -15.326319500000004
},
{
- "x": -57.8425015,
- "y": -15.0663245
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_947",
- "pcb_component_id": "pcb_component_100",
- "layer": "bottom",
- "route": [
+ "x": -90.91295149999999,
+ "y": -15.333696500000002
+ },
{
- "x": -57.8425015,
- "y": -15.0663245
+ "x": -90.7034015,
+ "y": -15.341074500000005
},
{
- "x": -67.1425015,
- "y": -15.0663245
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_948",
- "pcb_component_id": "pcb_component_100",
- "layer": "bottom",
- "route": [
+ "x": -90.6780015,
+ "y": -15.562932500000002
+ },
{
- "x": -65.1075015,
- "y": -9.591324499999999
+ "x": -90.62723249999999,
+ "y": -15.5065205
},
{
- "x": -65.1075015,
- "y": -13.821324500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_949",
- "pcb_component_id": "pcb_component_100",
- "layer": "bottom",
- "route": [
+ "x": -90.50905549999999,
+ "y": -15.409931500000006
+ },
{
- "x": -65.1075015,
- "y": -13.821324500000003
+ "x": -90.3572035,
+ "y": -15.338841500000001
},
{
- "x": -64.1075015,
- "y": -14.821324500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_950",
- "pcb_component_id": "pcb_component_100",
- "layer": "bottom",
- "route": [
+ "x": -90.1839595,
+ "y": -15.297110500000002
+ },
{
- "x": -64.1075015,
- "y": -14.821324500000003
+ "x": -90.0016115,
+ "y": -15.288599500000004
},
{
- "x": -59.877501499999994,
- "y": -14.821324500000003
+ "x": -89.94776449999999,
+ "y": -15.293010500000001
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.01
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_951",
- "pcb_component_id": "pcb_component_100",
- "layer": "bottom",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_6",
+ "pcb_component_id": "pcb_component_8",
+ "layer": "top",
"route": [
{
- "x": -59.877501499999994,
- "y": -9.591324499999999
+ "x": -88.28551049999999,
+ "y": -15.316365500000003
},
{
- "x": -65.1075015,
- "y": -9.591324499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_952",
- "pcb_component_id": "pcb_component_100",
- "layer": "bottom",
- "route": [
+ "x": -88.19142649999999,
+ "y": -15.3200255
+ },
{
- "x": -59.877501499999994,
- "y": -14.821324500000003
+ "x": -88.1210115,
+ "y": -15.329029500000004
},
{
- "x": -59.877501499999994,
- "y": -9.591324499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_953",
- "pcb_component_id": "pcb_component_101",
- "layer": "bottom",
- "route": [
+ "x": -88.0607005,
+ "y": -15.345755500000003
+ },
{
- "x": -27.022501499999997,
- "y": 27.5686755
+ "x": -87.99693149999999,
+ "y": -15.3725795
},
{
- "x": -27.022501499999997,
- "y": 28.7686755
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_954",
- "pcb_component_id": "pcb_component_101",
- "layer": "bottom",
- "route": [
+ "x": -87.94275049999999,
+ "y": -15.398745500000004
+ },
{
- "x": -25.062501499999996,
- "y": 28.7686755
+ "x": -87.77170349999999,
+ "y": -15.507087500000004
},
{
- "x": -27.022501499999997,
- "y": 28.7686755
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_955",
- "pcb_component_id": "pcb_component_101",
- "layer": "bottom",
- "route": [
+ "x": -87.6384535,
+ "y": -15.646247500000001
+ },
{
- "x": -25.062501499999996,
- "y": 27.5686755
+ "x": -87.5411225,
+ "y": -15.818952500000002
},
{
- "x": -27.022501499999997,
- "y": 27.5686755
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_956",
- "pcb_component_id": "pcb_component_101",
- "layer": "bottom",
- "route": [
+ "x": -87.47783349999999,
+ "y": -16.0279285
+ },
{
- "x": -27.012501499999996,
- "y": 28.868675500000002
+ "x": -87.4664265,
+ "y": -16.090374500000003
},
{
- "x": -27.012501499999996,
- "y": 27.4686755
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_957",
- "pcb_component_id": "pcb_component_101",
- "layer": "bottom",
- "route": [
+ "x": -87.4591375,
+ "y": -16.161344500000006
+ },
{
- "x": -27.012501499999996,
- "y": 27.4686755
+ "x": -87.4525985,
+ "y": -16.274099500000005
},
{
- "x": -24.512501499999996,
- "y": 27.4686755
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_958",
- "pcb_component_id": "pcb_component_101",
- "layer": "bottom",
- "route": [
+ "x": -87.4470985,
+ "y": -16.4196235
+ },
{
- "x": -24.512501499999996,
- "y": 28.868675500000002
+ "x": -87.4429275,
+ "y": -16.588904500000005
},
{
- "x": -27.012501499999996,
- "y": 28.868675500000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_959",
- "pcb_component_id": "pcb_component_101",
- "layer": "bottom",
- "route": [
+ "x": -87.44037449999999,
+ "y": -16.7729275
+ },
{
- "x": -24.512501499999996,
- "y": 27.4686755
+ "x": -87.43969349999999,
+ "y": -16.922224500000006
},
{
- "x": -24.512501499999996,
- "y": 28.868675500000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_960",
- "pcb_component_id": "pcb_component_101",
- "layer": "bottom",
- "route": [
+ "x": -87.43950149999999,
+ "y": -17.588974500000006
+ },
{
- "x": -26.412501499999994,
- "y": 28.618675500000002
+ "x": -87.87130149999999,
+ "y": -17.588974500000006
},
{
- "x": -26.412501499999994,
- "y": 27.7186755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_961",
- "pcb_component_id": "pcb_component_101",
- "layer": "bottom",
- "route": [
+ "x": -87.87130149999999,
+ "y": -16.869684500000005
+ },
{
- "x": -26.412501499999994,
- "y": 27.7186755
+ "x": -87.87190849999999,
+ "y": -16.641031500000004
},
{
- "x": -25.112501499999997,
- "y": 27.7186755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_962",
- "pcb_component_id": "pcb_component_101",
- "layer": "bottom",
- "route": [
+ "x": -87.87390149999999,
+ "y": -16.4573325
+ },
{
- "x": -25.962501499999995,
- "y": 28.368675500000002
+ "x": -87.8775385,
+ "y": -16.312751500000005
},
{
- "x": -25.962501499999995,
- "y": 27.9686755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_963",
- "pcb_component_id": "pcb_component_101",
- "layer": "bottom",
- "route": [
+ "x": -87.8830795,
+ "y": -16.201456500000006
+ },
{
- "x": -25.962501499999995,
- "y": 28.1686755
+ "x": -87.8907825,
+ "y": -16.117611500000002
},
{
- "x": -26.112501499999997,
- "y": 28.1686755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_964",
- "pcb_component_id": "pcb_component_101",
- "layer": "bottom",
- "route": [
+ "x": -87.90090649999999,
+ "y": -16.055383500000005
+ },
{
- "x": -25.962501499999995,
- "y": 28.1686755
+ "x": -87.90880449999999,
+ "y": -16.024108500000004
},
{
- "x": -25.662501499999994,
- "y": 28.368675500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_965",
- "pcb_component_id": "pcb_component_101",
- "layer": "bottom",
- "route": [
+ "x": -87.9735645,
+ "y": -15.885881500000004
+ },
{
- "x": -25.662501499999994,
- "y": 28.368675500000002
+ "x": -88.07447149999999,
+ "y": -15.782680500000005
},
{
- "x": -25.662501499999994,
- "y": 27.9686755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_966",
- "pcb_component_id": "pcb_component_101",
- "layer": "bottom",
- "route": [
+ "x": -88.2098985,
+ "y": -15.7155585
+ },
{
- "x": -25.662501499999994,
- "y": 28.1686755
+ "x": -88.3782215,
+ "y": -15.685573500000004
},
{
- "x": -25.512501499999996,
- "y": 28.1686755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_967",
- "pcb_component_id": "pcb_component_101",
- "layer": "bottom",
- "route": [
+ "x": -88.4326895,
+ "y": -15.683974500000005
+ },
{
- "x": -25.662501499999994,
- "y": 27.9686755
+ "x": -88.59516049999999,
+ "y": -15.694391500000002
},
{
- "x": -25.962501499999995,
- "y": 28.1686755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_968",
- "pcb_component_id": "pcb_component_101",
- "layer": "bottom",
- "route": [
+ "x": -88.7251395,
+ "y": -15.729268500000003
+ },
{
- "x": -25.112501499999997,
- "y": 28.618675500000002
+ "x": -88.83723749999999,
+ "y": -15.7940465
},
{
- "x": -26.412501499999994,
- "y": 28.618675500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_969",
- "pcb_component_id": "pcb_component_101",
- "layer": "bottom",
- "route": [
+ "x": -88.9171415,
+ "y": -15.864300500000006
+ },
{
- "x": -25.112501499999997,
- "y": 27.7186755
+ "x": -88.9713285,
+ "y": -15.921305500000003
},
{
- "x": -25.112501499999997,
- "y": 28.618675500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_970",
- "pcb_component_id": "pcb_component_102",
- "layer": "top",
- "route": [
+ "x": -89.01471049999999,
+ "y": -15.977075500000005
+ },
{
- "x": -126.7875015,
- "y": 32.7649255
+ "x": -89.04847849999999,
+ "y": -16.0379395
},
{
- "x": -130.3875015,
- "y": 32.764925500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_971",
- "pcb_component_id": "pcb_component_102",
- "layer": "top",
- "route": [
+ "x": -89.07382249999999,
+ "y": -16.110226500000003
+ },
{
- "x": -126.7875015,
- "y": 35.8649255
+ "x": -89.0919345,
+ "y": -16.200263500000005
},
{
- "x": -126.7875015,
- "y": 32.7649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_972",
- "pcb_component_id": "pcb_component_102",
- "layer": "top",
- "route": [
+ "x": -89.1040055,
+ "y": -16.3143795
+ },
{
- "x": -130.3875015,
- "y": 32.764925500000004
+ "x": -89.11122449999999,
+ "y": -16.458901500000003
},
{
- "x": -130.3875015,
- "y": 35.8649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_973",
- "pcb_component_id": "pcb_component_102",
- "layer": "top",
- "route": [
+ "x": -89.1147845,
+ "y": -16.640159500000003
+ },
{
- "x": -130.3875015,
- "y": 35.8649255
+ "x": -89.11587549999999,
+ "y": -16.864481500000004
},
{
- "x": -126.7875015,
- "y": 35.8649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_974",
- "pcb_component_id": "pcb_component_102",
- "layer": "bottom",
- "route": [
+ "x": -89.11590149999999,
+ "y": -16.9204845
+ },
{
- "x": -126.98750150000001,
- "y": 32.914925499999995
+ "x": -89.11590149999999,
+ "y": -17.588974500000006
},
{
- "x": -130.1875015,
- "y": 32.914925499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_975",
- "pcb_component_id": "pcb_component_102",
- "layer": "bottom",
- "route": [
+ "x": -89.54770149999999,
+ "y": -17.588974500000006
+ },
{
- "x": -126.98750150000001,
- "y": 35.7149255
+ "x": -89.54770149999999,
+ "y": -15.328374500000002
},
{
- "x": -126.98750150000001,
- "y": 32.914925499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_976",
- "pcb_component_id": "pcb_component_102",
- "layer": "bottom",
- "route": [
+ "x": -89.11590149999999,
+ "y": -15.328374500000002
+ },
{
- "x": -126.98750150000001,
- "y": 35.7149255
+ "x": -89.11590149999999,
+ "y": -15.586281500000005
},
{
- "x": -130.1875015,
- "y": 35.7149255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_977",
- "pcb_component_id": "pcb_component_102",
- "layer": "bottom",
- "route": [
+ "x": -89.0336375,
+ "y": -15.504016500000006
+ },
+ {
+ "x": -88.9472495,
+ "y": -15.428410500000005
+ },
+ {
+ "x": -88.8565465,
+ "y": -15.3751435
+ },
{
- "x": -130.1875015,
- "y": 35.7149255
+ "x": -88.7505235,
+ "y": -15.340856500000001
},
{
- "x": -130.1875015,
- "y": 32.914925499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_978",
- "pcb_component_id": "pcb_component_103",
- "layer": "top",
- "route": [
+ "x": -88.61817749999999,
+ "y": -15.322190500000005
+ },
+ {
+ "x": -88.4485065,
+ "y": -15.315785500000004
+ },
{
- "x": 100.01249849999999,
- "y": 24.814925499999998
+ "x": -88.4168275,
+ "y": -15.3156745
},
{
- "x": 80.9624985,
- "y": 24.8149255
+ "x": -88.28551049999999,
+ "y": -15.316365500000003
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.01
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_979",
- "pcb_component_id": "pcb_component_103",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_7",
+ "pcb_component_id": "pcb_component_8",
"layer": "top",
"route": [
{
- "x": 100.0124985,
- "y": 43.8649255
+ "x": -92.54501549999999,
+ "y": -15.309414500000003
},
{
- "x": 100.01249849999999,
- "y": 24.814925499999998
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_980",
- "pcb_component_id": "pcb_component_103",
- "layer": "top",
- "route": [
+ "x": -92.2915615,
+ "y": -15.344685500000004
+ },
{
- "x": 80.9624985,
- "y": 24.8149255
+ "x": -92.0634765,
+ "y": -15.421381500000003
},
{
- "x": 80.96249850000001,
- "y": 43.8649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_981",
- "pcb_component_id": "pcb_component_103",
- "layer": "top",
- "route": [
+ "x": -91.86382649999999,
+ "y": -15.537439500000005
+ },
{
- "x": 80.96249850000001,
- "y": 43.8649255
+ "x": -91.69567649999999,
+ "y": -15.690796500000005
},
{
- "x": 100.0124985,
- "y": 43.8649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_982",
- "pcb_component_id": "pcb_component_103",
- "layer": "top",
- "route": [
+ "x": -91.56209349999999,
+ "y": -15.879390500000007
+ },
{
- "x": 97.4874985,
- "y": 27.3399255
+ "x": -91.49754549999999,
+ "y": -16.014174500000003
},
{
- "x": 83.4874985,
- "y": 27.3399255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_983",
- "pcb_component_id": "pcb_component_103",
- "layer": "top",
- "route": [
+ "x": -91.4659835,
+ "y": -16.128279500000005
+ },
{
- "x": 97.4874985,
- "y": 41.3399255
+ "x": -91.44571649999999,
+ "y": -16.275945500000006
},
{
- "x": 97.4874985,
- "y": 27.3399255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_984",
- "pcb_component_id": "pcb_component_103",
- "layer": "top",
- "route": [
+ "x": -91.4369715,
+ "y": -16.441154500000003
+ },
{
- "x": 83.4874985,
- "y": 27.3399255
+ "x": -91.4399765,
+ "y": -16.607887500000004
},
{
- "x": 83.4874985,
- "y": 41.3399255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_985",
- "pcb_component_id": "pcb_component_103",
- "layer": "top",
- "route": [
+ "x": -91.45495849999999,
+ "y": -16.7601255
+ },
{
- "x": 83.4874985,
- "y": 41.3399255
+ "x": -91.48214549999999,
+ "y": -16.8818495
},
{
- "x": 97.4874985,
- "y": 41.3399255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_986",
- "pcb_component_id": "pcb_component_103",
- "layer": "top",
- "route": [
+ "x": -91.4850965,
+ "y": -16.890474500000003
+ },
{
- "x": 92.2874985,
- "y": 37.539925499999995
+ "x": -91.58148249999999,
+ "y": -17.0877465
},
{
- "x": 92.2874985,
- "y": 40.639925500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_987",
- "pcb_component_id": "pcb_component_103",
- "layer": "top",
- "route": [
+ "x": -91.7207265,
+ "y": -17.264148500000005
+ },
{
- "x": 92.2874985,
- "y": 37.539925499999995
+ "x": -91.89732249999999,
+ "y": -17.4143435
},
{
- "x": 88.6874985,
- "y": 37.539925499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_988",
- "pcb_component_id": "pcb_component_103",
- "layer": "top",
- "route": [
+ "x": -92.10576049999999,
+ "y": -17.532995500000006
+ },
{
- "x": 92.2874985,
- "y": 40.639925500000004
+ "x": -92.1806615,
+ "y": -17.564344500000004
},
{
- "x": 88.6874985,
- "y": 40.639925500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_989",
- "pcb_component_id": "pcb_component_103",
- "layer": "top",
- "route": [
+ "x": -92.3126805,
+ "y": -17.600593500000002
+ },
{
- "x": 88.6874985,
- "y": 37.539925499999995
+ "x": -92.47566649999999,
+ "y": -17.624041500000004
},
{
- "x": 88.6874985,
- "y": 40.639925500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_990",
- "pcb_component_id": "pcb_component_104",
- "layer": "top",
- "route": [
+ "x": -92.6512205,
+ "y": -17.633861500000002
+ },
{
- "x": -50.5875015,
- "y": -0.5725745000000018
+ "x": -92.82094149999999,
+ "y": -17.629224500000007
},
{
- "x": -54.187501499999996,
- "y": -0.5725745000000018
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_991",
- "pcb_component_id": "pcb_component_104",
- "layer": "top",
- "route": [
+ "x": -92.9664275,
+ "y": -17.609303500000003
+ },
{
- "x": -50.5875015,
- "y": 2.5274254999999997
+ "x": -92.9992485,
+ "y": -17.6011735
},
{
- "x": -50.5875015,
- "y": -0.5725745000000018
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_992",
- "pcb_component_id": "pcb_component_104",
- "layer": "top",
- "route": [
+ "x": -93.21314849999999,
+ "y": -17.518975500000003
+ },
{
- "x": -54.187501499999996,
- "y": -0.5725745000000018
+ "x": -93.40788049999999,
+ "y": -17.400667500000004
},
{
- "x": -54.187501499999996,
- "y": 2.5274254999999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_993",
- "pcb_component_id": "pcb_component_104",
- "layer": "top",
- "route": [
+ "x": -93.57484649999999,
+ "y": -17.253209500000004
+ },
{
- "x": -54.187501499999996,
- "y": 2.5274254999999997
+ "x": -93.7054455,
+ "y": -17.083560500000004
},
{
- "x": -50.5875015,
- "y": 2.5274254999999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_994",
- "pcb_component_id": "pcb_component_104",
- "layer": "bottom",
- "route": [
+ "x": -93.75631949999999,
+ "y": -16.9884695
+ },
{
- "x": -50.7875015,
- "y": -0.42257449999999963
+ "x": -93.7946645,
+ "y": -16.885676500000002
},
{
- "x": -53.9875015,
- "y": -0.42257449999999963
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_995",
- "pcb_component_id": "pcb_component_104",
- "layer": "bottom",
- "route": [
+ "x": -93.82885049999999,
+ "y": -16.761450500000002
+ },
{
- "x": -50.7875015,
- "y": 2.3774254999999975
+ "x": -93.8489025,
+ "y": -16.6582025
},
{
- "x": -50.7875015,
- "y": -0.42257449999999963
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_996",
- "pcb_component_id": "pcb_component_104",
- "layer": "bottom",
- "route": [
+ "x": -93.8562535,
+ "y": -16.5167985
+ },
{
- "x": -50.7875015,
- "y": 2.3774254999999975
+ "x": -93.4319275,
+ "y": -16.5167985
},
{
- "x": -53.9875015,
- "y": 2.3774254999999975
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_997",
- "pcb_component_id": "pcb_component_104",
- "layer": "bottom",
- "route": [
+ "x": -93.4175925,
+ "y": -16.664440500000005
+ },
{
- "x": -53.9875015,
- "y": 2.3774254999999975
+ "x": -93.3974605,
+ "y": -16.7457815
},
{
- "x": -53.9875015,
- "y": -0.42257449999999963
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_998",
- "pcb_component_id": "pcb_component_105",
- "layer": "bottom",
- "route": [
+ "x": -93.3442075,
+ "y": -16.858515500000003
+ },
{
- "x": 86.0125065,
- "y": -14.7014335
+ "x": -93.26380649999999,
+ "y": -16.973907500000003
},
{
- "x": 86.0125065,
- "y": -15.008715500000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_999",
- "pcb_component_id": "pcb_component_105",
- "layer": "bottom",
- "route": [
+ "x": -93.16982349999999,
+ "y": -17.0752765
+ },
{
- "x": 85.25250650000001,
- "y": -14.7014335
+ "x": -93.07582749999999,
+ "y": -17.145939500000004
},
{
- "x": 85.25250650000001,
- "y": -15.008715500000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1000",
- "pcb_component_id": "pcb_component_105",
- "layer": "bottom",
- "route": [
+ "x": -93.06904349999999,
+ "y": -17.149594500000006
+ },
{
- "x": 86.1025065,
- "y": -13.925074500000001
+ "x": -92.87230349999999,
+ "y": -17.2256925
},
{
- "x": 85.1625065,
- "y": -13.925074500000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1001",
- "pcb_component_id": "pcb_component_105",
- "layer": "bottom",
- "route": [
+ "x": -92.6673125,
+ "y": -17.256037500000005
+ },
{
- "x": 85.1625065,
- "y": -13.925074500000001
+ "x": -92.46389749999999,
+ "y": -17.2398175
},
{
- "x": 85.1625065,
- "y": -15.7850745
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1002",
- "pcb_component_id": "pcb_component_105",
- "layer": "bottom",
- "route": [
+ "x": -92.3513375,
+ "y": -17.209042500000002
+ },
{
- "x": 86.1025065,
- "y": -15.7850745
+ "x": -92.17405749999999,
+ "y": -17.121921500000006
},
{
- "x": 86.1025065,
- "y": -13.925074500000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1003",
- "pcb_component_id": "pcb_component_105",
- "layer": "bottom",
- "route": [
+ "x": -92.0295915,
+ "y": -16.998251500000002
+ },
{
- "x": 85.1625065,
- "y": -15.7850745
+ "x": -91.92241449999999,
+ "y": -16.841915500000006
},
{
- "x": 86.1025065,
- "y": -15.7850745
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1004",
- "pcb_component_id": "pcb_component_105",
- "layer": "bottom",
- "route": [
+ "x": -91.9179815,
+ "y": -16.833040500000003
+ },
{
- "x": 85.9025065,
- "y": -14.330074500000002
+ "x": -91.86499149999999,
+ "y": -16.676975500000005
},
{
- "x": 85.36250650000001,
- "y": -14.330074500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1005",
- "pcb_component_id": "pcb_component_105",
- "layer": "bottom",
- "route": [
+ "x": -91.8430085,
+ "y": -16.499872500000002
+ },
{
- "x": 85.36250650000001,
- "y": -14.330074500000002
+ "x": -91.8523625,
+ "y": -16.320591500000006
},
{
- "x": 85.36250650000001,
- "y": -15.3800745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1006",
- "pcb_component_id": "pcb_component_105",
- "layer": "bottom",
- "route": [
+ "x": -91.89338049999999,
+ "y": -16.157995500000006
+ },
{
- "x": 85.9025065,
- "y": -15.3800745
+ "x": -91.90571249999999,
+ "y": -16.128474500000003
},
{
- "x": 85.9025065,
- "y": -14.330074500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1007",
- "pcb_component_id": "pcb_component_105",
- "layer": "bottom",
- "route": [
+ "x": -92.00304349999999,
+ "y": -15.969480500000003
+ },
{
- "x": 85.36250650000001,
- "y": -15.3800745
+ "x": -92.13074049999999,
+ "y": -15.844666500000002
},
{
- "x": 85.9025065,
- "y": -15.3800745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1008",
- "pcb_component_id": "pcb_component_106",
- "layer": "bottom",
- "route": [
+ "x": -92.2814375,
+ "y": -15.754197500000004
+ },
{
- "x": -80.25750149999999,
- "y": -9.1804105
+ "x": -92.44776549999999,
+ "y": -15.698240500000004
},
{
- "x": -80.25750149999999,
- "y": -8.964738500000003
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1009",
- "pcb_component_id": "pcb_component_106",
- "layer": "bottom",
- "route": [
+ "x": -92.62235949999999,
+ "y": -15.6769605
+ },
{
- "x": -79.53750149999999,
- "y": -9.1804105
+ "x": -92.79785249999999,
+ "y": -15.690523500000005
},
{
- "x": -79.53750149999999,
- "y": -8.964738500000003
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1010",
- "pcb_component_id": "pcb_component_106",
- "layer": "bottom",
- "route": [
+ "x": -92.9668775,
+ "y": -15.739096500000002
+ },
{
- "x": -80.35750149999998,
- "y": -9.982574499999998
+ "x": -93.1220675,
+ "y": -15.822844500000002
},
{
- "x": -79.4375015,
- "y": -9.982574499999998
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1011",
- "pcb_component_id": "pcb_component_106",
- "layer": "bottom",
- "route": [
+ "x": -93.2560565,
+ "y": -15.941934500000002
+ },
{
- "x": -79.4375015,
- "y": -9.982574499999998
+ "x": -93.3610365,
+ "y": -16.095675500000006
},
{
- "x": -79.4375015,
- "y": -8.162574500000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1012",
- "pcb_component_id": "pcb_component_106",
- "layer": "bottom",
- "route": [
+ "x": -93.4025825,
+ "y": -16.213381500000004
+ },
{
- "x": -80.35750149999998,
- "y": -8.162574500000002
+ "x": -93.42656849999999,
+ "y": -16.3601005
},
{
- "x": -80.35750149999998,
- "y": -9.982574499999998
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1013",
- "pcb_component_id": "pcb_component_106",
- "layer": "bottom",
- "route": [
+ "x": -93.4319275,
+ "y": -16.5167985
+ },
{
- "x": -79.4375015,
- "y": -8.162574500000002
+ "x": -93.8562535,
+ "y": -16.5167985
},
{
- "x": -80.35750149999998,
- "y": -8.162574500000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1014",
- "pcb_component_id": "pcb_component_106",
- "layer": "bottom",
- "route": [
+ "x": -93.8617635,
+ "y": -16.410810500000004
+ },
{
- "x": -80.14750149999999,
- "y": -9.572574500000002
+ "x": -93.82935149999999,
+ "y": -16.1762675
},
{
- "x": -79.64750149999999,
- "y": -9.572574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1015",
- "pcb_component_id": "pcb_component_106",
- "layer": "bottom",
- "route": [
+ "x": -93.75415149999999,
+ "y": -15.959626500000006
+ },
{
- "x": -79.64750149999999,
- "y": -9.572574500000002
+ "x": -93.6386445,
+ "y": -15.765939500000002
},
{
- "x": -79.64750149999999,
- "y": -8.572574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1016",
- "pcb_component_id": "pcb_component_106",
- "layer": "bottom",
- "route": [
+ "x": -93.48531449999999,
+ "y": -15.600261500000002
+ },
{
- "x": -80.14750149999999,
- "y": -8.572574500000002
+ "x": -93.29664149999999,
+ "y": -15.467643500000001
},
{
- "x": -80.14750149999999,
- "y": -9.572574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1017",
- "pcb_component_id": "pcb_component_106",
- "layer": "bottom",
- "route": [
+ "x": -93.25258249999999,
+ "y": -15.444377500000002
+ },
{
- "x": -79.64750149999999,
- "y": -8.572574500000002
+ "x": -93.0782965,
+ "y": -15.3696275
},
{
- "x": -80.14750149999999,
- "y": -8.572574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1018",
- "pcb_component_id": "pcb_component_107",
- "layer": "bottom",
- "route": [
+ "x": -92.9069715,
+ "y": -15.324855500000005
+ },
{
- "x": -80.2496635,
- "y": -11.031324499999997
+ "x": -92.72109649999999,
+ "y": -15.306721500000002
},
{
- "x": -80.46533550000001,
- "y": -11.031324499999997
+ "x": -92.54501549999999,
+ "y": -15.309414500000003
}
],
- "stroke_width": 0.12
+ "stroke_width": 0.01
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1019",
- "pcb_component_id": "pcb_component_107",
- "layer": "bottom",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_8",
+ "pcb_component_id": "pcb_component_8",
+ "layer": "top",
"route": [
{
- "x": -80.2496635,
- "y": -10.311324499999998
+ "x": -94.92795249999999,
+ "y": -15.323562500000001
},
{
- "x": -80.46533550000001,
- "y": -10.311324499999998
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1020",
- "pcb_component_id": "pcb_component_107",
- "layer": "bottom",
- "route": [
+ "x": -94.81325349999999,
+ "y": -15.349676500000001
+ },
{
- "x": -79.4474995,
- "y": -11.131324499999998
+ "x": -94.5921515,
+ "y": -15.440213500000006
},
{
- "x": -79.4474995,
- "y": -10.211324499999996
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1021",
- "pcb_component_id": "pcb_component_107",
- "layer": "bottom",
- "route": [
+ "x": -94.4007085,
+ "y": -15.566610500000003
+ },
{
- "x": -79.4474995,
- "y": -10.211324499999996
+ "x": -94.24377949999999,
+ "y": -15.724562500000005
},
{
- "x": -81.2674995,
- "y": -10.211324499999996
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1022",
- "pcb_component_id": "pcb_component_107",
- "layer": "bottom",
- "route": [
+ "x": -94.12621949999999,
+ "y": -15.909762500000006
+ },
{
- "x": -81.2674995,
- "y": -11.131324499999998
+ "x": -94.09156449999999,
+ "y": -15.989828500000002
},
{
- "x": -79.4474995,
- "y": -11.131324499999998
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1023",
- "pcb_component_id": "pcb_component_107",
- "layer": "bottom",
- "route": [
+ "x": -94.0575375,
+ "y": -16.0833055
+ },
{
- "x": -81.2674995,
- "y": -10.211324499999996
+ "x": -94.0459185,
+ "y": -16.1423355
},
{
- "x": -81.2674995,
- "y": -11.131324499999998
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1024",
- "pcb_component_id": "pcb_component_107",
- "layer": "bottom",
- "route": [
+ "x": -94.0632035,
+ "y": -16.1748355
+ },
{
- "x": -79.8574995,
- "y": -10.921324499999997
+ "x": -94.1158895,
+ "y": -16.188723500000002
},
{
- "x": -79.8574995,
- "y": -10.421324499999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1025",
- "pcb_component_id": "pcb_component_107",
- "layer": "bottom",
- "route": [
+ "x": -94.2104725,
+ "y": -16.191917500000002
+ },
{
- "x": -79.8574995,
- "y": -10.421324499999997
+ "x": -94.2574325,
+ "y": -16.1919745
},
{
- "x": -80.8574995,
- "y": -10.421324499999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1026",
- "pcb_component_id": "pcb_component_107",
- "layer": "bottom",
- "route": [
+ "x": -94.4713625,
+ "y": -16.191973500000003
+ },
{
- "x": -80.8574995,
- "y": -10.921324499999997
+ "x": -94.5022685,
+ "y": -16.0983285
},
{
- "x": -79.8574995,
- "y": -10.921324499999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1027",
- "pcb_component_id": "pcb_component_107",
- "layer": "bottom",
- "route": [
+ "x": -94.56885849999999,
+ "y": -15.972468500000005
+ },
{
- "x": -80.8574995,
- "y": -10.421324499999997
+ "x": -94.67536349999999,
+ "y": -15.8610775
},
{
- "x": -80.8574995,
- "y": -10.921324499999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1028",
- "pcb_component_id": "pcb_component_108",
- "layer": "bottom",
- "route": [
+ "x": -94.8115385,
+ "y": -15.7705865
+ },
{
- "x": -74.8453375,
- "y": -26.491274500000003
+ "x": -94.96713749999999,
+ "y": -15.707428500000006
},
{
- "x": -74.62966549999999,
- "y": -26.491274500000003
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1029",
- "pcb_component_id": "pcb_component_108",
- "layer": "bottom",
- "route": [
+ "x": -95.13191649999999,
+ "y": -15.6780355
+ },
{
- "x": -74.8453375,
- "y": -27.211274500000002
+ "x": -95.1738025,
+ "y": -15.676716500000005
},
{
- "x": -74.62966549999999,
- "y": -27.211274500000002
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1030",
- "pcb_component_id": "pcb_component_108",
- "layer": "bottom",
- "route": [
+ "x": -95.35613249999999,
+ "y": -15.699484500000004
+ },
{
- "x": -75.64750149999999,
- "y": -26.3912745
+ "x": -95.52643649999999,
+ "y": -15.7637955
},
{
- "x": -75.64750149999999,
- "y": -27.311274500000003
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1031",
- "pcb_component_id": "pcb_component_108",
- "layer": "bottom",
- "route": [
+ "x": -95.6759855,
+ "y": -15.863663500000001
+ },
{
- "x": -75.64750149999999,
- "y": -27.311274500000003
+ "x": -95.7960485,
+ "y": -15.993100500000004
},
{
- "x": -73.8275015,
- "y": -27.311274500000003
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1032",
- "pcb_component_id": "pcb_component_108",
- "layer": "bottom",
- "route": [
+ "x": -95.87789649999999,
+ "y": -16.146121500000007
+ },
{
- "x": -73.8275015,
- "y": -26.3912745
+ "x": -95.88409449999999,
+ "y": -16.163841500000004
},
{
- "x": -75.64750149999999,
- "y": -26.3912745
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1033",
- "pcb_component_id": "pcb_component_108",
- "layer": "bottom",
- "route": [
+ "x": -95.91764549999999,
+ "y": -16.322498500000002
+ },
{
- "x": -73.8275015,
- "y": -27.311274500000003
+ "x": -95.9234285,
+ "y": -16.4979765
},
{
- "x": -73.8275015,
- "y": -26.3912745
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1034",
- "pcb_component_id": "pcb_component_108",
- "layer": "bottom",
- "route": [
+ "x": -95.90274249999999,
+ "y": -16.671901500000004
+ },
{
- "x": -75.2375015,
- "y": -26.601274500000002
+ "x": -95.8568885,
+ "y": -16.825896500000006
},
{
- "x": -75.2375015,
- "y": -27.101274500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1035",
- "pcb_component_id": "pcb_component_108",
- "layer": "bottom",
- "route": [
+ "x": -95.83382649999999,
+ "y": -16.874105500000006
+ },
{
- "x": -75.2375015,
- "y": -27.101274500000002
+ "x": -95.72809749999999,
+ "y": -17.0247125
},
{
- "x": -74.2375015,
- "y": -27.101274500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1036",
- "pcb_component_id": "pcb_component_108",
- "layer": "bottom",
- "route": [
+ "x": -95.5932225,
+ "y": -17.136877500000004
+ },
{
- "x": -74.2375015,
- "y": -26.601274500000002
+ "x": -95.4458995,
+ "y": -17.208489500000006
},
{
- "x": -75.2375015,
- "y": -26.601274500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1037",
- "pcb_component_id": "pcb_component_108",
- "layer": "bottom",
- "route": [
+ "x": -95.2672125,
+ "y": -17.251500500000006
+ },
{
- "x": -74.2375015,
- "y": -27.101274500000002
+ "x": -95.08774249999999,
+ "y": -17.2513475
},
{
- "x": -74.2375015,
- "y": -26.601274500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1038",
- "pcb_component_id": "pcb_component_109",
- "layer": "top",
- "route": [
+ "x": -94.91592949999999,
+ "y": -17.2113595
+ },
{
- "x": 92.28750050000001,
- "y": 18.4774255
+ "x": -94.7602115,
+ "y": -17.134865500000004
},
{
- "x": 88.68750050000001,
- "y": 18.4774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1039",
- "pcb_component_id": "pcb_component_109",
- "layer": "top",
- "route": [
+ "x": -94.62902749999999,
+ "y": -17.0251965
+ },
{
- "x": 92.28750050000001,
- "y": 21.5774255
+ "x": -94.5308175,
+ "y": -16.885680500000007
},
{
- "x": 92.28750050000001,
- "y": 18.4774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1040",
- "pcb_component_id": "pcb_component_109",
- "layer": "top",
- "route": [
+ "x": -94.50923449999999,
+ "y": -16.838963500000006
+ },
{
- "x": 88.68750050000001,
- "y": 18.4774255
+ "x": -94.46260149999999,
+ "y": -16.725564500000004
},
{
- "x": 88.68750050000001,
- "y": 21.5774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1041",
- "pcb_component_id": "pcb_component_109",
- "layer": "top",
- "route": [
+ "x": -94.2530515,
+ "y": -16.725469500000003
+ },
{
- "x": 88.68750050000001,
- "y": 21.5774255
+ "x": -94.15033349999999,
+ "y": -16.726135500000005
},
{
- "x": 92.28750050000001,
- "y": 21.5774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1042",
- "pcb_component_id": "pcb_component_109",
- "layer": "bottom",
- "route": [
+ "x": -94.0882175,
+ "y": -16.730194500000003
+ },
{
- "x": 92.0875005,
- "y": 18.6274255
+ "x": -94.0565065,
+ "y": -16.7405665
},
{
- "x": 88.88750050000002,
- "y": 18.6274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1043",
- "pcb_component_id": "pcb_component_109",
- "layer": "bottom",
- "route": [
+ "x": -94.04500449999999,
+ "y": -16.760168500000006
+ },
{
- "x": 92.0875005,
- "y": 21.4274255
+ "x": -94.04350149999999,
+ "y": -16.785461500000004
},
{
- "x": 92.0875005,
- "y": 18.6274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1044",
- "pcb_component_id": "pcb_component_109",
- "layer": "bottom",
- "route": [
+ "x": -94.05902649999999,
+ "y": -16.860476500000004
+ },
{
- "x": 92.0875005,
- "y": 21.4274255
+ "x": -94.1005775,
+ "y": -16.960355500000006
},
{
- "x": 88.88750050000002,
- "y": 21.4274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1045",
- "pcb_component_id": "pcb_component_109",
- "layer": "bottom",
- "route": [
+ "x": -94.1606235,
+ "y": -17.0718265
+ },
{
- "x": 88.88750050000002,
- "y": 21.4274255
+ "x": -94.23163249999999,
+ "y": -17.181615500000007
},
{
- "x": 88.88750050000002,
- "y": 18.6274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1046",
- "pcb_component_id": "pcb_component_110",
- "layer": "top",
- "route": [
+ "x": -94.3060725,
+ "y": -17.276450500000003
+ },
{
- "x": 63.712500500000004,
- "y": -22.0038245
+ "x": -94.34496349999999,
+ "y": -17.316693500000007
},
{
- "x": 60.11250050000001,
- "y": -22.0038245
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1047",
- "pcb_component_id": "pcb_component_110",
- "layer": "top",
- "route": [
+ "x": -94.52473749999999,
+ "y": -17.451705500000003
+ },
{
- "x": 63.712500500000004,
- "y": -18.903824500000006
+ "x": -94.7335945,
+ "y": -17.5523855
},
{
- "x": 63.712500500000004,
- "y": -22.0038245
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1048",
- "pcb_component_id": "pcb_component_110",
- "layer": "top",
- "route": [
+ "x": -94.96044149999999,
+ "y": -17.6154875
+ },
{
- "x": 60.11250050000001,
- "y": -22.0038245
+ "x": -95.1941835,
+ "y": -17.6377685
},
{
- "x": 60.11250050000001,
- "y": -18.903824500000006
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1049",
- "pcb_component_id": "pcb_component_110",
- "layer": "top",
- "route": [
+ "x": -95.38970149999999,
+ "y": -17.6222385
+ },
{
- "x": 60.11250050000001,
- "y": -18.903824500000006
+ "x": -95.58291449999999,
+ "y": -17.571517500000006
},
{
- "x": 63.712500500000004,
- "y": -18.903824500000006
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1050",
- "pcb_component_id": "pcb_component_110",
- "layer": "bottom",
- "route": [
+ "x": -95.7705505,
+ "y": -17.488451500000004
+ },
{
- "x": 63.51250050000001,
- "y": -21.8538245
+ "x": -95.9402415,
+ "y": -17.3804345
},
{
- "x": 60.312500500000006,
- "y": -21.8538245
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1051",
- "pcb_component_id": "pcb_component_110",
- "layer": "bottom",
- "route": [
+ "x": -96.0796185,
+ "y": -17.254863500000006
+ },
{
- "x": 63.51250050000001,
- "y": -19.053824500000005
+ "x": -96.1465125,
+ "y": -17.169739500000006
},
{
- "x": 63.51250050000001,
- "y": -21.8538245
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1052",
- "pcb_component_id": "pcb_component_110",
- "layer": "bottom",
- "route": [
+ "x": -96.2278415,
+ "y": -17.035415500000006
+ },
{
- "x": 63.51250050000001,
- "y": -19.053824500000005
+ "x": -96.28373149999999,
+ "y": -16.910461500000004
},
{
- "x": 60.312500500000006,
- "y": -19.053824500000005
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1053",
- "pcb_component_id": "pcb_component_110",
- "layer": "bottom",
- "route": [
+ "x": -96.3183105,
+ "y": -16.779712500000002
+ },
{
- "x": 60.312500500000006,
- "y": -19.053824500000005
+ "x": -96.3357085,
+ "y": -16.628004500000003
},
{
- "x": 60.312500500000006,
- "y": -21.8538245
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1054",
- "pcb_component_id": "pcb_component_111",
- "layer": "top",
- "route": [
+ "x": -96.3400875,
+ "y": -16.4586745
+ },
{
- "x": -12.487501499999997,
- "y": 6.571175499999999
+ "x": -96.33858249999999,
+ "y": -16.3177685
},
{
- "x": -16.087501499999995,
- "y": 6.571175499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1055",
- "pcb_component_id": "pcb_component_111",
- "layer": "top",
- "route": [
+ "x": -96.33288049999999,
+ "y": -16.2137625
+ },
{
- "x": -12.487501499999995,
- "y": 9.6711755
+ "x": -96.3212035,
+ "y": -16.132810500000005
},
{
- "x": -12.487501499999997,
- "y": 6.571175499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1056",
- "pcb_component_id": "pcb_component_111",
- "layer": "top",
- "route": [
+ "x": -96.30177149999999,
+ "y": -16.061068500000005
+ },
{
- "x": -16.087501499999995,
- "y": 6.571175499999999
+ "x": -96.2821505,
+ "y": -16.007771500000004
},
{
- "x": -16.087501499999995,
- "y": 9.6711755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1057",
- "pcb_component_id": "pcb_component_111",
- "layer": "top",
- "route": [
+ "x": -96.1765045,
+ "y": -15.808117500000002
+ },
{
- "x": -16.087501499999995,
- "y": 9.6711755
+ "x": -96.0302395,
+ "y": -15.631600500000005
},
{
- "x": -12.487501499999995,
- "y": 9.6711755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1058",
- "pcb_component_id": "pcb_component_111",
- "layer": "bottom",
- "route": [
+ "x": -95.8511255,
+ "y": -15.485890500000004
+ },
{
- "x": -12.687501499999996,
- "y": 6.721175499999999
+ "x": -95.64693249999999,
+ "y": -15.378659500000005
},
{
- "x": -15.887501499999996,
- "y": 6.721175499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1059",
- "pcb_component_id": "pcb_component_111",
- "layer": "bottom",
- "route": [
+ "x": -95.64370149999999,
+ "y": -15.377376500000004
+ },
{
- "x": -12.687501499999996,
- "y": 9.5211755
+ "x": -95.4877185,
+ "y": -15.333488500000001
},
{
- "x": -12.687501499999996,
- "y": 6.721175499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1060",
- "pcb_component_id": "pcb_component_111",
- "layer": "bottom",
- "route": [
+ "x": -95.30374649999999,
+ "y": -15.309466500000006
+ },
{
- "x": -12.687501499999996,
- "y": 9.5211755
+ "x": -95.11081449999999,
+ "y": -15.305946500000005
},
{
- "x": -15.887501499999996,
- "y": 9.5211755
+ "x": -94.92795249999999,
+ "y": -15.323562500000001
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.01
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1061",
- "pcb_component_id": "pcb_component_111",
- "layer": "bottom",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_9",
+ "pcb_component_id": "pcb_component_8",
+ "layer": "top",
"route": [
{
- "x": -15.887501499999996,
- "y": 9.5211755
+ "x": -85.75347149999999,
+ "y": -15.3259805
},
{
- "x": -15.887501499999996,
- "y": 6.721175499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1062",
- "pcb_component_id": "pcb_component_112",
- "layer": "bottom",
- "route": [
+ "x": -85.53110749999999,
+ "y": -15.3922795
+ },
{
- "x": 67.62533450000001,
- "y": -16.1275745
+ "x": -85.33286849999999,
+ "y": -15.497787500000001
},
{
- "x": 67.4096625,
- "y": -16.1275745
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1063",
- "pcb_component_id": "pcb_component_112",
- "layer": "bottom",
- "route": [
+ "x": -85.1629225,
+ "y": -15.6384215
+ },
{
- "x": 67.62533450000001,
- "y": -15.407574500000003
+ "x": -85.0254425,
+ "y": -15.810098500000002
},
{
- "x": 67.4096625,
- "y": -15.407574500000003
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1064",
- "pcb_component_id": "pcb_component_112",
- "layer": "bottom",
- "route": [
+ "x": -84.92459749999999,
+ "y": -16.008736500000005
+ },
{
- "x": 68.4274985,
- "y": -16.227574500000003
+ "x": -84.86455849999999,
+ "y": -16.230252500000006
},
{
- "x": 68.4274985,
- "y": -15.307574500000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1065",
- "pcb_component_id": "pcb_component_112",
- "layer": "bottom",
- "route": [
+ "x": -84.84870149999999,
+ "y": -16.4259105
+ },
{
- "x": 68.4274985,
- "y": -15.307574500000001
+ "x": -84.84870149999999,
+ "y": -16.5729745
},
{
- "x": 66.6074985,
- "y": -15.307574500000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1066",
- "pcb_component_id": "pcb_component_112",
- "layer": "bottom",
- "route": [
+ "x": -86.75370149999999,
+ "y": -16.5729745
+ },
{
- "x": 66.6074985,
- "y": -16.227574500000003
+ "x": -86.75370149999999,
+ "y": -16.646072500000002
},
{
- "x": 68.4274985,
- "y": -16.227574500000003
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1067",
- "pcb_component_id": "pcb_component_112",
- "layer": "bottom",
- "route": [
+ "x": -86.7307845,
+ "y": -16.769223500000003
+ },
{
- "x": 66.6074985,
- "y": -15.307574500000001
+ "x": -86.6673465,
+ "y": -16.896746500000006
},
{
- "x": 66.6074985,
- "y": -16.227574500000003
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1068",
- "pcb_component_id": "pcb_component_112",
- "layer": "bottom",
- "route": [
+ "x": -86.57135849999999,
+ "y": -17.017872500000003
+ },
{
- "x": 68.0174985,
- "y": -16.017574500000002
+ "x": -86.4507905,
+ "y": -17.1218305
},
{
- "x": 68.0174985,
- "y": -15.517574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1069",
- "pcb_component_id": "pcb_component_112",
- "layer": "bottom",
- "route": [
+ "x": -86.36161349999999,
+ "y": -17.175813500000004
+ },
{
- "x": 68.0174985,
- "y": -15.517574500000002
+ "x": -86.2257595,
+ "y": -17.227221500000006
},
{
- "x": 67.0174985,
- "y": -15.517574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1070",
- "pcb_component_id": "pcb_component_112",
- "layer": "bottom",
- "route": [
+ "x": -86.0650975,
+ "y": -17.252257500000006
+ },
{
- "x": 67.0174985,
- "y": -16.017574500000002
+ "x": -86.05212949999999,
+ "y": -17.253170500000003
},
{
- "x": 68.0174985,
- "y": -16.017574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1071",
- "pcb_component_id": "pcb_component_112",
- "layer": "bottom",
- "route": [
+ "x": -85.8698725,
+ "y": -17.250701500000005
+ },
{
- "x": 67.0174985,
- "y": -15.517574500000002
+ "x": -85.71619849999999,
+ "y": -17.2139035
},
{
- "x": 67.0174985,
- "y": -16.017574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1072",
- "pcb_component_id": "pcb_component_113",
- "layer": "bottom",
- "route": [
+ "x": -85.57850649999999,
+ "y": -17.138188500000005
+ },
+ {
+ "x": -85.4638085,
+ "y": -17.038993500000004
+ },
{
- "x": -71.9375015,
- "y": -25.4712745
+ "x": -85.32798849999999,
+ "y": -16.903174500000006
},
{
- "x": -75.9375015,
- "y": -25.4712745
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1073",
- "pcb_component_id": "pcb_component_113",
- "layer": "bottom",
- "route": [
+ "x": -85.12473349999999,
+ "y": -16.903174500000006
+ },
{
- "x": -71.9375015,
- "y": -22.171274500000003
+ "x": -85.02419049999999,
+ "y": -16.903820500000002
},
{
- "x": -71.9375015,
- "y": -25.4712745
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1074",
- "pcb_component_id": "pcb_component_113",
- "layer": "bottom",
- "route": [
+ "x": -84.9649685,
+ "y": -16.9076965
+ },
{
- "x": -71.8375015,
- "y": -25.521274500000004
+ "x": -84.9375915,
+ "y": -16.917707500000006
},
{
- "x": -76.03750149999999,
- "y": -25.521274500000004
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1075",
- "pcb_component_id": "pcb_component_113",
- "layer": "bottom",
- "route": [
+ "x": -84.9325825,
+ "y": -16.9367565
+ },
{
- "x": -71.8375015,
- "y": -22.1212745
+ "x": -84.9382715,
+ "y": -16.960324500000006
},
{
- "x": -71.8375015,
- "y": -25.521274500000004
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1076",
- "pcb_component_id": "pcb_component_113",
- "layer": "bottom",
- "route": [
+ "x": -84.97658449999999,
+ "y": -17.045972500000005
+ },
{
- "x": -76.03750149999999,
- "y": -25.521274500000004
+ "x": -85.04150249999999,
+ "y": -17.148660500000005
},
{
- "x": -76.03750149999999,
- "y": -22.1212745
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1077",
- "pcb_component_id": "pcb_component_113",
- "layer": "bottom",
- "route": [
+ "x": -85.12122749999999,
+ "y": -17.2521805
+ },
{
- "x": -76.03750149999999,
- "y": -22.1212745
+ "x": -85.20395749999999,
+ "y": -17.340320500000004
},
{
- "x": -71.8375015,
- "y": -22.1212745
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1078",
- "pcb_component_id": "pcb_component_113",
- "layer": "bottom",
- "route": [
+ "x": -85.2341445,
+ "y": -17.366747500000002
+ },
{
- "x": -72.3375015,
- "y": -25.0712745
+ "x": -85.43301149999999,
+ "y": -17.496347500000006
},
{
- "x": -75.53750149999999,
- "y": -25.0712745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1079",
- "pcb_component_id": "pcb_component_113",
- "layer": "bottom",
- "route": [
+ "x": -85.6556995,
+ "y": -17.585811500000005
+ },
{
- "x": -72.3375015,
- "y": -24.0712745
+ "x": -85.8924055,
+ "y": -17.633083500000005
},
{
- "x": -73.3375015,
- "y": -25.0712745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1080",
- "pcb_component_id": "pcb_component_113",
- "layer": "bottom",
- "route": [
+ "x": -86.13332849999999,
+ "y": -17.636109500000003
+ },
{
- "x": -72.3375015,
- "y": -22.5712745
+ "x": -86.34464449999999,
+ "y": -17.5995785
},
{
- "x": -72.3375015,
- "y": -25.0712745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1081",
- "pcb_component_id": "pcb_component_113",
- "layer": "bottom",
- "route": [
+ "x": -86.56575649999999,
+ "y": -17.515453500000007
+ },
{
- "x": -75.53750149999999,
- "y": -25.0712745
+ "x": -86.7605765,
+ "y": -17.391597500000003
},
{
- "x": -75.53750149999999,
- "y": -22.5712745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1082",
- "pcb_component_id": "pcb_component_113",
- "layer": "bottom",
- "route": [
+ "x": -86.92417649999999,
+ "y": -17.233128500000007
+ },
{
- "x": -75.53750149999999,
- "y": -22.5712745
+ "x": -87.0516275,
+ "y": -17.045164500000006
},
{
- "x": -72.3375015,
- "y": -22.5712745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1083",
- "pcb_component_id": "pcb_component_114",
- "layer": "top",
- "route": [
+ "x": -87.13800049999999,
+ "y": -16.832823500000003
+ },
{
- "x": -60.1125015,
- "y": -21.992574499999996
+ "x": -87.1571575,
+ "y": -16.7558735
},
{
- "x": -63.712501499999995,
- "y": -21.992574499999996
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1084",
- "pcb_component_id": "pcb_component_114",
- "layer": "top",
- "route": [
+ "x": -87.1876935,
+ "y": -16.5058165
+ },
{
- "x": -60.1125015,
- "y": -18.892574500000002
+ "x": -87.17396049999999,
+ "y": -16.2662355
},
{
- "x": -60.1125015,
- "y": -21.992574499999996
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1085",
- "pcb_component_id": "pcb_component_114",
- "layer": "top",
- "route": [
+ "x": -87.1617795,
+ "y": -16.217374500000005
+ },
{
- "x": -63.712501499999995,
- "y": -21.992574499999996
+ "x": -86.7524445,
+ "y": -16.217374500000005
},
{
- "x": -63.712501499999995,
- "y": -18.892574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1086",
- "pcb_component_id": "pcb_component_114",
- "layer": "top",
- "route": [
+ "x": -86.0291735,
+ "y": -16.217374500000005
+ },
{
- "x": -63.712501499999995,
- "y": -18.892574500000002
+ "x": -85.8165875,
+ "y": -16.217102500000003
},
{
- "x": -60.1125015,
- "y": -18.892574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1087",
- "pcb_component_id": "pcb_component_114",
- "layer": "bottom",
- "route": [
+ "x": -85.6495025,
+ "y": -16.2160955
+ },
{
- "x": -60.312501499999996,
- "y": -21.842574499999998
+ "x": -85.5226225,
+ "y": -16.214068500000003
},
{
- "x": -63.5125015,
- "y": -21.842574499999998
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1088",
- "pcb_component_id": "pcb_component_114",
- "layer": "bottom",
- "route": [
+ "x": -85.4306505,
+ "y": -16.210732500000006
+ },
{
- "x": -60.312501499999996,
- "y": -19.0425745
+ "x": -85.36828949999999,
+ "y": -16.205803500000002
},
{
- "x": -60.312501499999996,
- "y": -21.842574499999998
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1089",
- "pcb_component_id": "pcb_component_114",
- "layer": "bottom",
- "route": [
+ "x": -85.3302425,
+ "y": -16.198994500000005
+ },
{
- "x": -60.312501499999996,
- "y": -19.0425745
+ "x": -85.3112135,
+ "y": -16.1900185
},
{
- "x": -63.5125015,
- "y": -19.0425745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1090",
- "pcb_component_id": "pcb_component_114",
- "layer": "bottom",
- "route": [
+ "x": -85.3059045,
+ "y": -16.178588500000004
+ },
{
- "x": -63.5125015,
- "y": -19.0425745
+ "x": -85.30590149999999,
+ "y": -16.178262500000002
},
{
- "x": -63.5125015,
- "y": -21.842574499999998
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1091",
- "pcb_component_id": "pcb_component_115",
- "layer": "bottom",
- "route": [
+ "x": -85.3262785,
+ "y": -16.096332500000003
+ },
{
- "x": 105.4374985,
- "y": -1.3275744999999972
+ "x": -85.38097649999999,
+ "y": -16.000747500000003
},
{
- "x": 105.4374985,
- "y": 1.332425500000003
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1092",
- "pcb_component_id": "pcb_component_115",
- "layer": "bottom",
- "route": [
+ "x": -85.46034949999999,
+ "y": -15.903296500000003
+ },
{
- "x": 110.5774985,
- "y": -1.3275744999999972
+ "x": -85.55475349999999,
+ "y": -15.815769500000002
},
{
- "x": 105.4374985,
- "y": -1.3275744999999972
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1093",
- "pcb_component_id": "pcb_component_115",
- "layer": "bottom",
- "route": [
+ "x": -85.6545405,
+ "y": -15.7499575
+ },
{
- "x": 110.5774985,
- "y": -1.3275744999999972
+ "x": -85.65759849999999,
+ "y": -15.748400500000002
},
{
- "x": 110.5774985,
- "y": 1.3324254999999994
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1094",
- "pcb_component_id": "pcb_component_115",
- "layer": "bottom",
- "route": [
+ "x": -85.79665449999999,
+ "y": -15.700851500000006
+ },
{
- "x": 111.8474985,
- "y": -1.3275744999999972
+ "x": -85.9607685,
+ "y": -15.679588500000001
},
{
- "x": 113.1774985,
- "y": -1.3275744999999972
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1095",
- "pcb_component_id": "pcb_component_115",
- "layer": "bottom",
- "route": [
+ "x": -86.13157349999999,
+ "y": -15.684534500000005
+ },
{
- "x": 113.1774985,
- "y": -1.3275744999999972
+ "x": -86.29070349999999,
+ "y": -15.715613500000003
},
{
- "x": 113.1774985,
- "y": 0.0024255000000010796
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1096",
- "pcb_component_id": "pcb_component_115",
- "layer": "bottom",
- "route": [
+ "x": -86.3824415,
+ "y": -15.7514185
+ },
{
- "x": 110.5774985,
- "y": 1.3324254999999994
+ "x": -86.52897549999999,
+ "y": -15.853060500000005
},
{
- "x": 105.4374985,
- "y": 1.332425500000003
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1097",
- "pcb_component_id": "pcb_component_115",
- "layer": "bottom",
- "route": [
+ "x": -86.6478525,
+ "y": -15.9943715
+ },
{
- "x": 104.9974985,
- "y": -1.7975744999999996
+ "x": -86.7282365,
+ "y": -16.153701500000004
},
{
- "x": 104.9974985,
- "y": 1.8024255000000018
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1098",
- "pcb_component_id": "pcb_component_115",
- "layer": "bottom",
- "route": [
+ "x": -86.7524445,
+ "y": -16.217374500000005
+ },
{
- "x": 113.6474985,
- "y": -1.7975744999999996
+ "x": -87.1617795,
+ "y": -16.217374500000005
},
{
- "x": 104.9974985,
- "y": -1.7975744999999996
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1099",
- "pcb_component_id": "pcb_component_115",
- "layer": "bottom",
- "route": [
+ "x": -87.1181345,
+ "y": -16.0423095
+ },
{
- "x": 104.9974985,
- "y": 1.8024255000000018
+ "x": -87.02239549999999,
+ "y": -15.839217500000004
},
{
- "x": 113.6474985,
- "y": 1.8024255000000018
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1100",
- "pcb_component_id": "pcb_component_115",
- "layer": "bottom",
- "route": [
+ "x": -86.88892249999999,
+ "y": -15.6621375
+ },
{
- "x": 113.6474985,
- "y": 1.8024255000000018
+ "x": -86.7198935,
+ "y": -15.516246500000001
},
{
- "x": 113.6474985,
- "y": -1.7975744999999996
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1101",
- "pcb_component_id": "pcb_component_115",
- "layer": "bottom",
- "route": [
+ "x": -86.6070025,
+ "y": -15.448263500000003
+ },
{
- "x": 105.4974985,
- "y": -1.2675744999999985
+ "x": -86.4123985,
+ "y": -15.364320500000005
},
{
- "x": 112.4824985,
- "y": -1.2675744999999985
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1102",
- "pcb_component_id": "pcb_component_115",
- "layer": "bottom",
- "route": [
+ "x": -86.2150755,
+ "y": -15.3174755
+ },
{
- "x": 112.4824985,
- "y": -1.2675744999999985
+ "x": -85.99578849999999,
+ "y": -15.302974500000005
},
{
- "x": 113.1174985,
- "y": -0.6325745000000005
+ "x": -85.75347149999999,
+ "y": -15.3259805
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.01
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1103",
- "pcb_component_id": "pcb_component_115",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_10",
+ "pcb_component_id": "pcb_component_12",
"layer": "bottom",
"route": [
{
- "x": 113.1174985,
- "y": -0.6325745000000005
+ "x": -72.46966549999999,
+ "y": -27.171274500000003
},
{
- "x": 113.1174985,
- "y": 1.2724255000000007
+ "x": -72.6853375,
+ "y": -27.171274500000003
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1104",
- "pcb_component_id": "pcb_component_115",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_11",
+ "pcb_component_id": "pcb_component_12",
"layer": "bottom",
"route": [
{
- "x": 105.4974985,
- "y": 1.2724255000000007
+ "x": -72.46966549999999,
+ "y": -26.451274500000004
},
{
- "x": 105.4974985,
- "y": -1.2675744999999985
+ "x": -72.6853375,
+ "y": -26.451274500000004
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1105",
- "pcb_component_id": "pcb_component_115",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_12",
+ "pcb_component_id": "pcb_component_13",
"layer": "bottom",
"route": [
{
- "x": 113.1174985,
- "y": 1.2724255000000007
+ "x": -113.2775015,
+ "y": -1.2725744999999975
},
{
- "x": 105.4974985,
- "y": 1.2724255000000007
+ "x": -113.2775015,
+ "y": 1.3874255000000026
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1106",
- "pcb_component_id": "pcb_component_116",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_13",
+ "pcb_component_id": "pcb_component_13",
"layer": "bottom",
"route": [
{
- "x": 65.8624985,
- "y": 5.922425499999999
+ "x": -108.1375015,
+ "y": -1.2725744999999975
},
{
- "x": 65.8624985,
- "y": 6.182425499999997
+ "x": -113.2775015,
+ "y": -1.2725744999999975
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1107",
- "pcb_component_id": "pcb_component_116",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_14",
+ "pcb_component_id": "pcb_component_13",
"layer": "bottom",
"route": [
{
- "x": 65.8624985,
- "y": 11.112425499999999
+ "x": -108.1375015,
+ "y": -1.2725744999999975
},
{
- "x": 67.53749850000001,
- "y": 11.112425499999999
+ "x": -108.1375015,
+ "y": 1.387425499999999
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1108",
- "pcb_component_id": "pcb_component_116",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_15",
+ "pcb_component_id": "pcb_component_13",
"layer": "bottom",
"route": [
{
- "x": 65.8624985,
- "y": 11.372425499999999
+ "x": -106.8675015,
+ "y": -1.2725744999999975
},
{
- "x": 65.8624985,
- "y": 11.112425499999999
+ "x": -105.5375015,
+ "y": -1.2725744999999975
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1109",
- "pcb_component_id": "pcb_component_116",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_16",
+ "pcb_component_id": "pcb_component_13",
"layer": "bottom",
"route": [
{
- "x": 63.13749850000001,
- "y": 5.922425499999999
+ "x": -105.5375015,
+ "y": -1.2725744999999975
},
{
- "x": 65.8624985,
- "y": 5.922425499999999
+ "x": -105.5375015,
+ "y": 0.057425500000000795
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1110",
- "pcb_component_id": "pcb_component_116",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_17",
+ "pcb_component_id": "pcb_component_13",
"layer": "bottom",
"route": [
{
- "x": 63.13749850000001,
- "y": 5.922425499999999
+ "x": -108.1375015,
+ "y": 1.387425499999999
},
{
- "x": 60.412498500000005,
- "y": 5.922425499999999
+ "x": -113.2775015,
+ "y": 1.3874255000000026
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1111",
- "pcb_component_id": "pcb_component_116",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_18",
+ "pcb_component_id": "pcb_component_14",
"layer": "bottom",
"route": [
{
- "x": 63.13749850000001,
- "y": 11.372425499999999
+ "x": 74.77033650000001,
+ "y": -27.211324499999996
},
{
- "x": 65.8624985,
- "y": 11.372425499999999
+ "x": 74.5546645,
+ "y": -27.211324499999996
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1112",
- "pcb_component_id": "pcb_component_116",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_19",
+ "pcb_component_id": "pcb_component_14",
"layer": "bottom",
"route": [
{
- "x": 63.13749850000001,
- "y": 11.372425499999999
+ "x": 74.77033650000001,
+ "y": -26.491324499999997
},
{
- "x": 60.412498500000005,
- "y": 11.372425499999999
+ "x": 74.5546645,
+ "y": -26.491324499999997
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1113",
- "pcb_component_id": "pcb_component_116",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_20",
+ "pcb_component_id": "pcb_component_15",
"layer": "bottom",
"route": [
{
- "x": 60.412498500000005,
- "y": 5.922425499999999
+ "x": -21.567493499999998,
+ "y": 38.2449255
},
{
- "x": 60.412498500000005,
- "y": 6.182425500000001
+ "x": -20.367493499999995,
+ "y": 38.2449255
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1114",
- "pcb_component_id": "pcb_component_116",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_21",
+ "pcb_component_id": "pcb_component_15",
"layer": "bottom",
"route": [
{
- "x": 60.412498500000005,
- "y": 11.372425499999999
+ "x": -20.367493499999995,
+ "y": 36.2849255
},
{
- "x": 60.412498500000005,
- "y": 11.112425499999999
+ "x": -20.367493499999995,
+ "y": 38.2449255
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1115",
- "pcb_component_id": "pcb_component_116",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_22",
+ "pcb_component_id": "pcb_component_15",
"layer": "bottom",
"route": [
{
- "x": 67.78749850000001,
- "y": 5.787425499999998
+ "x": -21.567493499999998,
+ "y": 36.2849255
},
{
- "x": 58.48749850000001,
- "y": 5.787425499999998
+ "x": -21.567493499999998,
+ "y": 38.2449255
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1116",
- "pcb_component_id": "pcb_component_116",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_23",
+ "pcb_component_id": "pcb_component_16",
"layer": "bottom",
"route": [
{
- "x": 67.78749850000001,
- "y": 11.507425499999998
+ "x": -35.13750149999999,
+ "y": 28.818675499999998
},
{
- "x": 67.78749850000001,
- "y": 5.787425499999998
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1117",
- "pcb_component_id": "pcb_component_116",
- "layer": "bottom",
- "route": [
+ "x": -35.447501499999994,
+ "y": 29.0986755
+ },
{
- "x": 58.48749850000001,
- "y": 5.787425499999998
+ "x": -35.6775015,
+ "y": 29.5386755
},
{
- "x": 58.48749850000001,
- "y": 11.5074255
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1118",
- "pcb_component_id": "pcb_component_116",
- "layer": "bottom",
- "route": [
+ "x": -35.81750149999999,
+ "y": 29.8486755
+ },
{
- "x": 58.48749850000001,
- "y": 11.5074255
+ "x": -35.9275015,
+ "y": 30.1286755
},
{
- "x": 67.78749850000001,
- "y": 11.507425499999998
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1119",
- "pcb_component_id": "pcb_component_116",
- "layer": "bottom",
- "route": [
+ "x": -36.09750149999999,
+ "y": 30.3186755
+ },
{
- "x": 65.7524985,
- "y": 6.032425499999999
+ "x": -36.27750149999999,
+ "y": 30.4286755
},
{
- "x": 65.7524985,
- "y": 10.262425499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1120",
- "pcb_component_id": "pcb_component_116",
- "layer": "bottom",
- "route": [
+ "x": -36.6075015,
+ "y": 30.508675500000003
+ },
{
- "x": 65.7524985,
- "y": 10.262425499999999
+ "x": -39.8575015,
+ "y": 30.4986755
},
{
- "x": 64.7524985,
- "y": 11.262425499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1121",
- "pcb_component_id": "pcb_component_116",
- "layer": "bottom",
- "route": [
+ "x": -40.7875015,
+ "y": 30.4786755
+ },
{
- "x": 64.7524985,
- "y": 11.262425499999999
+ "x": -41.047501499999996,
+ "y": 30.336765500000002
},
{
- "x": 60.522498500000005,
- "y": 11.262425499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1122",
- "pcb_component_id": "pcb_component_116",
- "layer": "bottom",
- "route": [
+ "x": -41.127501499999994,
+ "y": 30.148675500000003
+ },
{
- "x": 60.522498500000005,
- "y": 6.032425499999999
+ "x": -41.127501499999994,
+ "y": 29.8386755
},
{
- "x": 65.7524985,
- "y": 6.032425499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1123",
- "pcb_component_id": "pcb_component_116",
- "layer": "bottom",
- "route": [
+ "x": -40.0775015,
+ "y": 29.8386755
+ },
{
- "x": 60.522498500000005,
- "y": 11.262425499999999
+ "x": -40.0775015,
+ "y": 26.6786755
},
{
- "x": 60.522498500000005,
- "y": 6.032425499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1124",
- "pcb_component_id": "pcb_component_117",
- "layer": "bottom",
- "route": [
+ "x": -40.557501499999994,
+ "y": 26.6686755
+ },
{
- "x": 87.1725065,
- "y": -14.731433500000001
+ "x": -40.477501499999995,
+ "y": 26.3586755
},
{
- "x": 87.1725065,
- "y": -15.038715500000002
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1125",
- "pcb_component_id": "pcb_component_117",
- "layer": "bottom",
- "route": [
+ "x": -40.3175015,
+ "y": 26.1586755
+ },
{
- "x": 86.4125065,
- "y": -14.731433500000001
+ "x": -40.1075015,
+ "y": 26.028675500000002
},
{
- "x": 86.4125065,
- "y": -15.038715500000002
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1126",
- "pcb_component_id": "pcb_component_117",
- "layer": "bottom",
- "route": [
+ "x": -39.8175015,
+ "y": 25.9986755
+ },
{
- "x": 87.2625065,
- "y": -13.955074500000002
+ "x": -36.8175015,
+ "y": 25.9886755
},
{
- "x": 86.3225065,
- "y": -13.955074500000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1127",
- "pcb_component_id": "pcb_component_117",
- "layer": "bottom",
- "route": [
+ "x": -36.3875015,
+ "y": 25.888675499999998
+ },
{
- "x": 86.3225065,
- "y": -13.955074500000002
+ "x": -36.0775015,
+ "y": 25.6786755
},
{
- "x": 86.3225065,
- "y": -15.815074500000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1128",
- "pcb_component_id": "pcb_component_117",
- "layer": "bottom",
- "route": [
+ "x": -35.837501499999995,
+ "y": 25.3386755
+ },
{
- "x": 87.2625065,
- "y": -15.815074500000001
+ "x": -35.7475015,
+ "y": 24.9186755
},
{
- "x": 87.2625065,
- "y": -13.955074500000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1129",
- "pcb_component_id": "pcb_component_117",
- "layer": "bottom",
- "route": [
+ "x": -35.73750149999999,
+ "y": 24.5286755
+ },
{
- "x": 86.3225065,
- "y": -15.815074500000001
+ "x": -34.98750149999999,
+ "y": 23.818675499999998
},
{
- "x": 87.2625065,
- "y": -15.815074500000001
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1130",
- "pcb_component_id": "pcb_component_117",
- "layer": "bottom",
- "route": [
+ "x": -31.957501499999996,
+ "y": 23.818675499999998
+ },
{
- "x": 87.0625065,
- "y": -14.360074500000003
+ "x": -31.137501499999996,
+ "y": 24.5286755
},
{
- "x": 86.5225065,
- "y": -14.360074500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1131",
- "pcb_component_id": "pcb_component_117",
- "layer": "bottom",
- "route": [
+ "x": -31.597501499999996,
+ "y": 24.5286755
+ },
{
- "x": 86.5225065,
- "y": -14.360074500000003
+ "x": -31.597501499999996,
+ "y": 27.5886755
},
{
- "x": 86.5225065,
- "y": -15.4100745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1132",
- "pcb_component_id": "pcb_component_117",
- "layer": "bottom",
- "route": [
+ "x": -31.157501499999995,
+ "y": 27.5886755
+ },
+ {
+ "x": -31.947501499999994,
+ "y": 28.2986755
+ },
+ {
+ "x": -33.3575015,
+ "y": 28.2986755
+ },
+ {
+ "x": -33.81750149999999,
+ "y": 28.3286755
+ },
+ {
+ "x": -34.187501499999996,
+ "y": 28.388675499999998
+ },
{
- "x": 87.0625065,
- "y": -15.4100745
+ "x": -34.5375015,
+ "y": 28.4586755
},
{
- "x": 87.0625065,
- "y": -14.360074500000003
+ "x": -34.867501499999996,
+ "y": 28.6286755
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1133",
- "pcb_component_id": "pcb_component_117",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_24",
+ "pcb_component_id": "pcb_component_17",
"layer": "bottom",
"route": [
{
- "x": 86.5225065,
- "y": -15.4100745
+ "x": -16.087501499999995,
+ "y": 0.24367549999999838
},
{
- "x": 87.0625065,
- "y": -15.4100745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1134",
- "pcb_component_id": "pcb_component_118",
- "layer": "top",
- "route": [
+ "x": -16.397501499999997,
+ "y": 0.5236754999999995
+ },
{
- "x": 42.8624985,
- "y": -15.666324500000002
+ "x": -16.627501499999997,
+ "y": 0.9636755000000008
},
{
- "x": 23.8124985,
- "y": -15.666324499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1135",
- "pcb_component_id": "pcb_component_118",
- "layer": "top",
- "route": [
+ "x": -16.767501499999995,
+ "y": 1.2736754999999995
+ },
{
- "x": 42.8624985,
- "y": 3.383675499999999
+ "x": -16.877501499999997,
+ "y": 1.5536755000000007
},
{
- "x": 42.8624985,
- "y": -15.666324500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1136",
- "pcb_component_id": "pcb_component_118",
- "layer": "top",
- "route": [
+ "x": -17.047501499999996,
+ "y": 1.7436754999999984
+ },
{
- "x": 23.8124985,
- "y": -15.666324499999995
+ "x": -17.227501499999995,
+ "y": 1.8536754999999978
},
{
- "x": 23.812498500000004,
- "y": 3.3836755000000025
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1137",
- "pcb_component_id": "pcb_component_118",
- "layer": "top",
- "route": [
+ "x": -17.557501499999997,
+ "y": 1.9336754999999997
+ },
{
- "x": 23.812498500000004,
- "y": 3.3836755000000025
+ "x": -20.807501499999994,
+ "y": 1.9236755000000016
},
{
- "x": 42.8624985,
- "y": 3.383675499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1138",
- "pcb_component_id": "pcb_component_118",
- "layer": "top",
- "route": [
+ "x": -21.737501499999997,
+ "y": 1.9036754999999985
+ },
{
- "x": 40.3374985,
- "y": -13.141324500000003
+ "x": -21.997501499999995,
+ "y": 1.7617654999999992
},
{
- "x": 26.337498500000002,
- "y": -13.141324499999996
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1139",
- "pcb_component_id": "pcb_component_118",
- "layer": "top",
- "route": [
+ "x": -22.077501499999997,
+ "y": 1.5736755000000002
+ },
{
- "x": 40.3374985,
- "y": 0.8586755000000004
+ "x": -22.077501499999997,
+ "y": 1.263675499999998
},
{
- "x": 40.3374985,
- "y": -13.141324500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1140",
- "pcb_component_id": "pcb_component_118",
- "layer": "top",
- "route": [
+ "x": -21.027501499999996,
+ "y": 1.263675499999998
+ },
{
- "x": 26.337498500000002,
- "y": -13.141324499999996
+ "x": -21.027501499999996,
+ "y": -1.8963244999999986
},
{
- "x": 26.337498500000002,
- "y": 0.8586755000000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1141",
- "pcb_component_id": "pcb_component_118",
- "layer": "top",
- "route": [
+ "x": -21.507501499999996,
+ "y": -1.9063245000000002
+ },
{
- "x": 26.337498500000002,
- "y": 0.8586755000000004
+ "x": -21.427501499999998,
+ "y": -2.216324499999999
},
{
- "x": 40.3374985,
- "y": 0.8586755000000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1142",
- "pcb_component_id": "pcb_component_118",
- "layer": "top",
- "route": [
+ "x": -21.267501499999998,
+ "y": -2.4163245000000018
+ },
{
- "x": 35.1374985,
- "y": -2.9413245000000003
+ "x": -21.057501499999997,
+ "y": -2.5463245000000008
},
{
- "x": 35.13749850000001,
- "y": 0.15867550000000108
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1143",
- "pcb_component_id": "pcb_component_118",
- "layer": "top",
- "route": [
+ "x": -20.767501499999998,
+ "y": -2.5763244999999984
+ },
{
- "x": 35.1374985,
- "y": -2.9413245000000003
+ "x": -17.767501499999998,
+ "y": -2.5863245
},
{
- "x": 31.5374985,
- "y": -2.9413245000000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1144",
- "pcb_component_id": "pcb_component_118",
- "layer": "top",
- "route": [
+ "x": -17.337501499999995,
+ "y": -2.6863245000000013
+ },
{
- "x": 35.13749850000001,
- "y": 0.15867550000000108
+ "x": -17.027501499999996,
+ "y": -2.896324500000002
},
{
- "x": 31.5374985,
- "y": 0.15867550000000108
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1145",
- "pcb_component_id": "pcb_component_118",
- "layer": "top",
- "route": [
+ "x": -16.787501499999998,
+ "y": -3.236324500000002
+ },
{
- "x": 31.5374985,
- "y": -2.9413245000000003
+ "x": -16.697501499999998,
+ "y": -3.6563245
},
{
- "x": 31.5374985,
- "y": 0.15867550000000108
+ "x": -16.687501499999996,
+ "y": -4.046324500000001
+ },
+ {
+ "x": -15.937501499999996,
+ "y": -4.756324500000002
+ },
+ {
+ "x": -12.907501499999997,
+ "y": -4.756324500000002
+ },
+ {
+ "x": -12.087501499999997,
+ "y": -4.046324500000001
+ },
+ {
+ "x": -12.547501499999997,
+ "y": -4.046324500000001
+ },
+ {
+ "x": -12.547501499999996,
+ "y": -0.986324500000002
+ },
+ {
+ "x": -12.107501499999996,
+ "y": -0.986324500000002
+ },
+ {
+ "x": -12.897501499999997,
+ "y": -0.2763245000000012
+ },
+ {
+ "x": -14.307501499999995,
+ "y": -0.2763245000000012
+ },
+ {
+ "x": -14.767501499999996,
+ "y": -0.24632450000000006
+ },
+ {
+ "x": -15.137501499999996,
+ "y": -0.18632450000000134
+ },
+ {
+ "x": -15.487501499999997,
+ "y": -0.11632450000000105
+ },
+ {
+ "x": -15.817501499999997,
+ "y": 0.0536754999999971
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1146",
- "pcb_component_id": "pcb_component_119",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_25",
+ "pcb_component_id": "pcb_component_18",
"layer": "bottom",
"route": [
{
- "x": 59.27966250000001,
- "y": 12.577425499999999
+ "x": 71.4925005,
+ "y": -21.423488500000005
},
{
- "x": 59.495334500000006,
- "y": 12.577425499999999
+ "x": 71.4925005,
+ "y": -21.639160500000003
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1147",
- "pcb_component_id": "pcb_component_119",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_26",
+ "pcb_component_id": "pcb_component_18",
"layer": "bottom",
"route": [
{
- "x": 59.27966250000001,
- "y": 11.8574255
+ "x": 70.7725005,
+ "y": -21.423488500000005
},
{
- "x": 59.495334500000006,
- "y": 11.8574255
+ "x": 70.7725005,
+ "y": -21.639160500000003
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1148",
- "pcb_component_id": "pcb_component_119",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_27",
+ "pcb_component_id": "pcb_component_19",
"layer": "bottom",
"route": [
{
- "x": 58.47749850000001,
- "y": 12.6774255
+ "x": -105.4875015,
+ "y": -4.135074500000002
+ },
+ {
+ "x": -105.4875015,
+ "y": -5.2850745
},
{
- "x": 58.47749850000001,
- "y": 11.757425499999998
+ "x": -106.7375015,
+ "y": -5.2850745
}
],
"stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1149",
- "pcb_component_id": "pcb_component_119",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_28",
+ "pcb_component_id": "pcb_component_20",
"layer": "bottom",
"route": [
{
- "x": 58.47749850000001,
- "y": 11.757425499999998
+ "x": 107.7374985,
+ "y": 7.387425499999999
},
{
- "x": 60.2974985,
- "y": 11.757425499999998
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1150",
- "pcb_component_id": "pcb_component_119",
- "layer": "bottom",
- "route": [
+ "x": 107.4274985,
+ "y": 7.6674255
+ },
{
- "x": 60.2974985,
- "y": 12.6774255
+ "x": 107.1974985,
+ "y": 8.1074255
},
{
- "x": 58.47749850000001,
- "y": 12.6774255
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1151",
- "pcb_component_id": "pcb_component_119",
- "layer": "bottom",
- "route": [
+ "x": 107.0574985,
+ "y": 8.4174255
+ },
{
- "x": 60.2974985,
- "y": 11.757425499999998
+ "x": 106.9474985,
+ "y": 8.6974255
},
{
- "x": 60.2974985,
- "y": 12.6774255
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1152",
- "pcb_component_id": "pcb_component_119",
- "layer": "bottom",
- "route": [
+ "x": 106.7774985,
+ "y": 8.8874255
+ },
{
- "x": 58.88749850000001,
- "y": 12.4674255
+ "x": 106.5974985,
+ "y": 8.9974255
},
{
- "x": 58.88749850000001,
- "y": 11.9674255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1153",
- "pcb_component_id": "pcb_component_119",
- "layer": "bottom",
- "route": [
+ "x": 106.2674985,
+ "y": 9.0774255
+ },
{
- "x": 58.88749850000001,
- "y": 11.9674255
+ "x": 103.0174985,
+ "y": 9.0674255
},
{
- "x": 59.88749850000001,
- "y": 11.9674255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1154",
- "pcb_component_id": "pcb_component_119",
- "layer": "bottom",
- "route": [
+ "x": 102.0874985,
+ "y": 9.047425500000001
+ },
{
- "x": 59.88749850000001,
- "y": 12.4674255
+ "x": 101.8274985,
+ "y": 8.9055155
},
{
- "x": 58.88749850000001,
- "y": 12.4674255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1155",
- "pcb_component_id": "pcb_component_119",
- "layer": "bottom",
- "route": [
+ "x": 101.74749849999999,
+ "y": 8.717425500000001
+ },
{
- "x": 59.88749850000001,
- "y": 11.9674255
+ "x": 101.74749849999999,
+ "y": 8.4074255
},
{
- "x": 59.88749850000001,
- "y": 12.4674255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1156",
- "pcb_component_id": "pcb_component_120",
- "layer": "top",
- "route": [
+ "x": 102.7974985,
+ "y": 8.4074255
+ },
{
- "x": -12.487501499999997,
- "y": 25.6211755
+ "x": 102.7974985,
+ "y": 5.2474254999999985
},
{
- "x": -16.087501499999995,
- "y": 25.6211755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1157",
- "pcb_component_id": "pcb_component_120",
- "layer": "top",
- "route": [
+ "x": 102.3174985,
+ "y": 5.2374255000000005
+ },
{
- "x": -12.487501499999995,
- "y": 28.7211755
+ "x": 102.3974985,
+ "y": 4.927425500000002
},
{
- "x": -12.487501499999997,
- "y": 25.6211755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1158",
- "pcb_component_id": "pcb_component_120",
- "layer": "top",
- "route": [
+ "x": 102.5574985,
+ "y": 4.7274255000000025
+ },
{
- "x": -16.087501499999995,
- "y": 25.6211755
+ "x": 102.7674985,
+ "y": 4.5974255
},
{
- "x": -16.087501499999995,
- "y": 28.7211755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1159",
- "pcb_component_id": "pcb_component_120",
- "layer": "top",
- "route": [
+ "x": 103.0574985,
+ "y": 4.567425499999999
+ },
{
- "x": -16.087501499999995,
- "y": 28.7211755
+ "x": 106.0574985,
+ "y": 4.557425500000001
},
{
- "x": -12.487501499999995,
- "y": 28.7211755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1160",
- "pcb_component_id": "pcb_component_120",
- "layer": "bottom",
- "route": [
+ "x": 106.4874985,
+ "y": 4.457425499999999
+ },
{
- "x": -12.687501499999996,
- "y": 25.7711755
+ "x": 106.7974985,
+ "y": 4.2474254999999985
},
{
- "x": -15.887501499999996,
- "y": 25.7711755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1161",
- "pcb_component_id": "pcb_component_120",
- "layer": "bottom",
- "route": [
+ "x": 107.0374985,
+ "y": 3.9074254999999987
+ },
{
- "x": -12.687501499999996,
- "y": 28.5711755
+ "x": 107.1274985,
+ "y": 3.4874255000000005
},
{
- "x": -12.687501499999996,
- "y": 25.7711755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1162",
- "pcb_component_id": "pcb_component_120",
- "layer": "bottom",
- "route": [
+ "x": 107.13749849999999,
+ "y": 3.0974255
+ },
{
- "x": -12.687501499999996,
- "y": 28.5711755
+ "x": 107.88749849999999,
+ "y": 2.387425499999999
},
{
- "x": -15.887501499999996,
- "y": 28.5711755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1163",
- "pcb_component_id": "pcb_component_120",
- "layer": "bottom",
- "route": [
+ "x": 110.9174985,
+ "y": 2.387425499999999
+ },
{
- "x": -15.887501499999996,
- "y": 28.5711755
+ "x": 111.7374985,
+ "y": 3.0974255
},
{
- "x": -15.887501499999996,
- "y": 25.7711755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1164",
- "pcb_component_id": "pcb_component_121",
- "layer": "bottom",
- "route": [
+ "x": 111.2774985,
+ "y": 3.0974255
+ },
{
- "x": 20.342506500000002,
- "y": 38.3949255
+ "x": 111.2774985,
+ "y": 6.157425499999999
},
{
- "x": 21.542506500000005,
- "y": 38.3949255
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1165",
- "pcb_component_id": "pcb_component_121",
- "layer": "bottom",
- "route": [
+ "x": 111.7174985,
+ "y": 6.157425499999999
+ },
{
- "x": 21.542506500000005,
- "y": 36.4349255
+ "x": 110.9274985,
+ "y": 6.8674254999999995
+ },
+ {
+ "x": 109.5174985,
+ "y": 6.8674254999999995
+ },
+ {
+ "x": 109.0574985,
+ "y": 6.897425500000001
+ },
+ {
+ "x": 108.6874985,
+ "y": 6.957425499999999
+ },
+ {
+ "x": 108.3374985,
+ "y": 7.0274255
},
{
- "x": 21.542506500000005,
- "y": 38.3949255
+ "x": 108.0074985,
+ "y": 7.1974255
}
],
- "stroke_width": 0.12
+ "stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1166",
- "pcb_component_id": "pcb_component_121",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_29",
+ "pcb_component_id": "pcb_component_21",
"layer": "bottom",
"route": [
{
- "x": 20.342506500000002,
- "y": 36.4349255
+ "x": 113.5875005,
+ "y": -4.135074500000002
},
{
- "x": 20.342506500000002,
- "y": 38.3949255
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1167",
- "pcb_component_id": "pcb_component_121",
- "layer": "bottom",
- "route": [
- {
- "x": 21.642506500000003,
- "y": 38.3849255
+ "x": 113.5875005,
+ "y": -5.2850745
},
{
- "x": 20.242506500000005,
- "y": 38.3849255
+ "x": 112.3375005,
+ "y": -5.2850745
}
],
"stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1168",
- "pcb_component_id": "pcb_component_121",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_30",
+ "pcb_component_id": "pcb_component_22",
"layer": "bottom",
"route": [
{
- "x": 20.242506500000005,
- "y": 38.3849255
+ "x": -29.287501499999994,
+ "y": 17.2961755
+ },
+ {
+ "x": -29.287501499999994,
+ "y": 16.1461755
},
{
- "x": 20.242506500000005,
- "y": 35.8849255
+ "x": -30.537501499999994,
+ "y": 16.1461755
}
],
"stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1169",
- "pcb_component_id": "pcb_component_121",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_31",
+ "pcb_component_id": "pcb_component_23",
"layer": "bottom",
"route": [
{
- "x": 21.642506500000003,
- "y": 35.8849255
+ "x": 74.05385950000002,
+ "y": -20.492574499999996
},
{
- "x": 21.642506500000003,
- "y": 38.3849255
+ "x": 74.3611415,
+ "y": -20.492574499999996
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1170",
- "pcb_component_id": "pcb_component_121",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_32",
+ "pcb_component_id": "pcb_component_23",
"layer": "bottom",
"route": [
{
- "x": 20.242506500000005,
- "y": 35.8849255
+ "x": 74.05385950000002,
+ "y": -21.2525745
},
{
- "x": 21.642506500000003,
- "y": 35.8849255
+ "x": 74.3611415,
+ "y": -21.2525745
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1171",
- "pcb_component_id": "pcb_component_121",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_33",
+ "pcb_component_id": "pcb_component_24",
"layer": "bottom",
"route": [
{
- "x": 21.392506500000003,
- "y": 37.7849255
+ "x": -59.254665499999994,
+ "y": -15.891324500000003
},
{
- "x": 20.492506500000005,
- "y": 37.7849255
+ "x": -59.47033749999999,
+ "y": -15.891324500000003
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1172",
- "pcb_component_id": "pcb_component_121",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_34",
+ "pcb_component_id": "pcb_component_24",
"layer": "bottom",
"route": [
{
- "x": 20.492506500000005,
- "y": 37.7849255
+ "x": -59.254665499999994,
+ "y": -15.171324500000004
},
{
- "x": 20.492506500000005,
- "y": 36.4849255
+ "x": -59.47033749999999,
+ "y": -15.171324500000004
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1173",
- "pcb_component_id": "pcb_component_121",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_35",
+ "pcb_component_id": "pcb_component_25",
"layer": "bottom",
"route": [
{
- "x": 21.142506500000003,
- "y": 37.3349255
+ "x": 84.1525065,
+ "y": -14.952910500000002
},
{
- "x": 20.742506500000005,
- "y": 37.3349255
+ "x": 84.1525065,
+ "y": -14.737238500000004
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1174",
- "pcb_component_id": "pcb_component_121",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_36",
+ "pcb_component_id": "pcb_component_25",
"layer": "bottom",
"route": [
{
- "x": 20.942506500000004,
- "y": 37.3349255
+ "x": 84.8725065,
+ "y": -14.952910500000002
},
{
- "x": 20.942506500000004,
- "y": 37.4849255
+ "x": 84.8725065,
+ "y": -14.737238500000004
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1175",
- "pcb_component_id": "pcb_component_121",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_37",
+ "pcb_component_id": "pcb_component_26",
"layer": "bottom",
"route": [
{
- "x": 20.942506500000004,
- "y": 37.3349255
+ "x": 78.3274985,
+ "y": -8.640410499999998
},
{
- "x": 21.142506500000003,
- "y": 37.0349255
+ "x": 78.3274985,
+ "y": -8.4247385
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1176",
- "pcb_component_id": "pcb_component_121",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_38",
+ "pcb_component_id": "pcb_component_26",
"layer": "bottom",
"route": [
{
- "x": 21.142506500000003,
- "y": 37.0349255
+ "x": 79.0474985,
+ "y": -8.640410499999998
},
{
- "x": 20.742506500000005,
- "y": 37.0349255
+ "x": 79.0474985,
+ "y": -8.4247385
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1177",
- "pcb_component_id": "pcb_component_121",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_39",
+ "pcb_component_id": "pcb_component_27",
"layer": "bottom",
"route": [
{
- "x": 20.942506500000004,
- "y": 37.0349255
+ "x": -22.628860499999995,
+ "y": 35.8324255
},
{
- "x": 20.942506500000004,
- "y": 36.8849255
+ "x": -22.936142499999995,
+ "y": 35.8324255
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1178",
- "pcb_component_id": "pcb_component_121",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_40",
+ "pcb_component_id": "pcb_component_27",
"layer": "bottom",
"route": [
{
- "x": 20.742506500000005,
- "y": 37.0349255
+ "x": -22.628860499999995,
+ "y": 36.592425500000004
},
{
- "x": 20.942506500000004,
- "y": 37.3349255
+ "x": -22.936142499999995,
+ "y": 36.592425500000004
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1179",
- "pcb_component_id": "pcb_component_121",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_41",
+ "pcb_component_id": "pcb_component_28",
"layer": "bottom",
"route": [
{
- "x": 21.392506500000003,
- "y": 36.4849255
+ "x": 88.6874985,
+ "y": -6.900074500000002
},
{
- "x": 21.392506500000003,
- "y": 37.7849255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1180",
- "pcb_component_id": "pcb_component_121",
- "layer": "bottom",
- "route": [
+ "x": 88.3774985,
+ "y": -6.620074500000001
+ },
{
- "x": 20.492506500000005,
- "y": 36.4849255
+ "x": 88.1474985,
+ "y": -6.1800745
},
{
- "x": 21.392506500000003,
- "y": 36.4849255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1181",
- "pcb_component_id": "pcb_component_122",
- "layer": "top",
- "route": [
+ "x": 88.0074985,
+ "y": -5.870074500000001
+ },
{
- "x": -50.5875015,
- "y": 18.4774255
+ "x": 87.8974985,
+ "y": -5.5900745
},
{
- "x": -54.187501499999996,
- "y": 18.4774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1182",
- "pcb_component_id": "pcb_component_122",
- "layer": "top",
- "route": [
+ "x": 87.7274985,
+ "y": -5.400074500000002
+ },
{
- "x": -50.5875015,
- "y": 21.5774255
+ "x": 87.5474985,
+ "y": -5.290074500000003
},
{
- "x": -50.5875015,
- "y": 18.4774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1183",
- "pcb_component_id": "pcb_component_122",
- "layer": "top",
- "route": [
+ "x": 87.2174985,
+ "y": -5.210074500000001
+ },
{
- "x": -54.187501499999996,
- "y": 18.4774255
+ "x": 83.9674985,
+ "y": -5.220074500000003
},
{
- "x": -54.187501499999996,
- "y": 21.5774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1184",
- "pcb_component_id": "pcb_component_122",
- "layer": "top",
- "route": [
+ "x": 83.0374985,
+ "y": -5.240074500000002
+ },
{
- "x": -54.187501499999996,
- "y": 21.5774255
+ "x": 82.77749850000001,
+ "y": -5.3819845000000015
+ },
+ {
+ "x": 82.6974985,
+ "y": -5.5700745000000005
+ },
+ {
+ "x": 82.6974985,
+ "y": -5.880074499999999
+ },
+ {
+ "x": 83.7474985,
+ "y": -5.880074499999999
+ },
+ {
+ "x": 83.7474985,
+ "y": -9.040074500000003
+ },
+ {
+ "x": 83.2674985,
+ "y": -9.050074500000001
},
{
- "x": -50.5875015,
- "y": 21.5774255
+ "x": 83.3474985,
+ "y": -9.3600745
+ },
+ {
+ "x": 83.5074985,
+ "y": -9.560074499999999
+ },
+ {
+ "x": 83.7174985,
+ "y": -9.690074500000001
+ },
+ {
+ "x": 84.0074985,
+ "y": -9.720074500000003
+ },
+ {
+ "x": 87.0074985,
+ "y": -9.7300745
+ },
+ {
+ "x": 87.4374985,
+ "y": -9.830074500000002
+ },
+ {
+ "x": 87.7474985,
+ "y": -10.040074500000003
+ },
+ {
+ "x": 87.9874985,
+ "y": -10.3800745
+ },
+ {
+ "x": 88.0774985,
+ "y": -10.800074500000001
+ },
+ {
+ "x": 88.0874985,
+ "y": -11.190074500000001
+ },
+ {
+ "x": 88.8374985,
+ "y": -11.900074500000002
+ },
+ {
+ "x": 91.8674985,
+ "y": -11.900074500000002
+ },
+ {
+ "x": 92.6874985,
+ "y": -11.190074500000001
+ },
+ {
+ "x": 92.2274985,
+ "y": -11.190074500000001
+ },
+ {
+ "x": 92.2274985,
+ "y": -8.130074500000003
+ },
+ {
+ "x": 92.6674985,
+ "y": -8.130074500000003
+ },
+ {
+ "x": 91.8774985,
+ "y": -7.420074500000002
+ },
+ {
+ "x": 90.4674985,
+ "y": -7.420074500000002
+ },
+ {
+ "x": 90.0074985,
+ "y": -7.390074500000001
+ },
+ {
+ "x": 89.6374985,
+ "y": -7.330074500000002
+ },
+ {
+ "x": 89.2874985,
+ "y": -7.260074500000002
+ },
+ {
+ "x": 88.9574985,
+ "y": -7.0900745
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1185",
- "pcb_component_id": "pcb_component_122",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_42",
+ "pcb_component_id": "pcb_component_30",
"layer": "bottom",
"route": [
{
- "x": -50.7875015,
- "y": 18.6274255
+ "x": -85.3374995,
+ "y": -14.957683500000002
},
{
- "x": -53.9875015,
- "y": 18.6274255
+ "x": -85.3374995,
+ "y": -15.264965500000002
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1186",
- "pcb_component_id": "pcb_component_122",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_43",
+ "pcb_component_id": "pcb_component_30",
"layer": "bottom",
"route": [
{
- "x": -50.7875015,
- "y": 21.4274255
+ "x": -86.0974995,
+ "y": -14.957683500000002
},
{
- "x": -50.7875015,
- "y": 18.6274255
+ "x": -86.0974995,
+ "y": -15.264965500000002
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1187",
- "pcb_component_id": "pcb_component_122",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_44",
+ "pcb_component_id": "pcb_component_31",
"layer": "bottom",
"route": [
{
- "x": -50.7875015,
- "y": 21.4274255
+ "x": 70.41250050000001,
+ "y": -21.423488500000005
},
{
- "x": -53.9875015,
- "y": 21.4274255
+ "x": 70.41250050000001,
+ "y": -21.639160500000003
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1188",
- "pcb_component_id": "pcb_component_122",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_45",
+ "pcb_component_id": "pcb_component_31",
"layer": "bottom",
"route": [
{
- "x": -53.9875015,
- "y": 21.4274255
+ "x": 69.69250050000001,
+ "y": -21.423488500000005
},
{
- "x": -53.9875015,
- "y": 18.6274255
+ "x": 69.69250050000001,
+ "y": -21.639160500000003
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1189",
- "pcb_component_id": "pcb_component_123",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_46",
+ "pcb_component_id": "pcb_component_32",
+ "layer": "bottom",
"route": [
{
- "x": 52.387498297305584,
- "y": -34.71632493272748
+ "x": 60.11249850000001,
+ "y": -28.3313245
},
{
- "x": 33.74964906727252,
- "y": -38.65752729730558
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1190",
- "pcb_component_id": "pcb_component_123",
- "layer": "top",
- "route": [
+ "x": 59.802498500000006,
+ "y": -28.0513245
+ },
{
- "x": 48.44629593272749,
- "y": -16.07847570269442
+ "x": 59.5724985,
+ "y": -27.611324500000002
},
{
- "x": 52.387498297305584,
- "y": -34.71632493272748
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1191",
- "pcb_component_id": "pcb_component_123",
- "layer": "top",
- "route": [
+ "x": 59.43249850000001,
+ "y": -27.3013245
+ },
{
- "x": 33.74964906727252,
- "y": -38.65752729730558
+ "x": 59.3224985,
+ "y": -27.0213245
},
{
- "x": 29.808446702694425,
- "y": -20.019678067272515
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1192",
- "pcb_component_id": "pcb_component_123",
- "layer": "top",
- "route": [
+ "x": 59.15249850000001,
+ "y": -26.8313245
+ },
{
- "x": 29.808446702694425,
- "y": -20.019678067272515
+ "x": 58.97249850000001,
+ "y": -26.7213245
},
{
- "x": 48.44629593272749,
- "y": -16.07847570269442
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1193",
- "pcb_component_id": "pcb_component_123",
- "layer": "top",
- "route": [
+ "x": 58.6424985,
+ "y": -26.641324500000003
+ },
{
- "x": 49.394736865473924,
- "y": -32.76834418021967
+ "x": 55.3924985,
+ "y": -26.6513245
},
{
- "x": 35.69762981978033,
- "y": -35.66476586547392
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1194",
- "pcb_component_id": "pcb_component_123",
- "layer": "top",
- "route": [
+ "x": 54.4624985,
+ "y": -26.671324499999997
+ },
{
- "x": 46.49831518021968,
- "y": -19.07123713452608
+ "x": 54.202498500000004,
+ "y": -26.8132345
},
{
- "x": 49.394736865473924,
- "y": -32.76834418021967
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1195",
- "pcb_component_id": "pcb_component_123",
- "layer": "top",
- "route": [
+ "x": 54.122498500000006,
+ "y": -27.001324500000003
+ },
{
- "x": 35.69762981978033,
- "y": -35.66476586547392
+ "x": 54.122498500000006,
+ "y": -27.311324499999998
},
{
- "x": 32.801208134526085,
- "y": -21.967658819780326
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1196",
- "pcb_component_id": "pcb_component_123",
- "layer": "top",
- "route": [
+ "x": 55.1724985,
+ "y": -27.311324499999998
+ },
{
- "x": 32.801208134526085,
- "y": -21.967658819780326
+ "x": 55.1724985,
+ "y": -30.4713245
},
{
- "x": 46.49831518021968,
- "y": -19.07123713452608
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1197",
- "pcb_component_id": "pcb_component_123",
- "layer": "top",
- "route": [
+ "x": 54.692498500000006,
+ "y": -30.4813245
+ },
{
- "x": 42.19698987781678,
- "y": -23.864837101451634
+ "x": 54.772498500000005,
+ "y": -30.7913245
},
{
- "x": 41.555639361796196,
- "y": -20.83190625561948
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1198",
- "pcb_component_id": "pcb_component_123",
- "layer": "top",
- "route": [
+ "x": 54.9324985,
+ "y": -30.991324499999997
+ },
{
- "x": 42.19698987781678,
- "y": -23.864837101451634
+ "x": 55.1424985,
+ "y": -31.1213245
},
{
- "x": 38.67487663749557,
- "y": -24.609631249088437
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1199",
- "pcb_component_id": "pcb_component_123",
- "layer": "top",
- "route": [
+ "x": 55.4324985,
+ "y": -31.1513245
+ },
{
- "x": 41.555639361796196,
- "y": -20.83190625561948
+ "x": 58.4324985,
+ "y": -31.1613245
},
{
- "x": 38.03352612147499,
- "y": -21.57670040325629
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1200",
- "pcb_component_id": "pcb_component_123",
- "layer": "top",
- "route": [
+ "x": 58.8624985,
+ "y": -31.2613245
+ },
{
- "x": 38.67487663749557,
- "y": -24.609631249088437
+ "x": 59.1724985,
+ "y": -31.4713245
},
{
- "x": 38.03352612147499,
- "y": -21.57670040325629
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1201",
- "pcb_component_id": "pcb_component_124",
- "layer": "bottom",
- "route": [
+ "x": 59.412498500000005,
+ "y": -31.811324499999998
+ },
{
- "x": 89.5724985,
- "y": -13.000324499999998
+ "x": 59.5024985,
+ "y": -32.2313245
},
{
- "x": 92.5024985,
- "y": -13.000324499999998
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1202",
- "pcb_component_id": "pcb_component_124",
- "layer": "bottom",
- "route": [
+ "x": 59.51249850000001,
+ "y": -32.6213245
+ },
{
- "x": 89.5724985,
- "y": -13.000324499999998
+ "x": 60.26249850000001,
+ "y": -33.3313245
},
{
- "x": 89.5724985,
- "y": -16.900324500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1203",
- "pcb_component_id": "pcb_component_124",
- "layer": "bottom",
- "route": [
+ "x": 63.29249850000001,
+ "y": -33.3313245
+ },
+ {
+ "x": 64.1124985,
+ "y": -32.6213245
+ },
+ {
+ "x": 63.65249850000001,
+ "y": -32.6213245
+ },
+ {
+ "x": 63.65249850000001,
+ "y": -29.561324499999998
+ },
+ {
+ "x": 64.0924985,
+ "y": -29.561324499999998
+ },
+ {
+ "x": 63.302498500000006,
+ "y": -28.851324499999997
+ },
+ {
+ "x": 61.8924985,
+ "y": -28.851324499999997
+ },
+ {
+ "x": 61.43249850000001,
+ "y": -28.821324500000003
+ },
+ {
+ "x": 61.062498500000004,
+ "y": -28.7613245
+ },
{
- "x": 92.5024985,
- "y": -16.900324500000004
+ "x": 60.7124985,
+ "y": -28.6913245
},
{
- "x": 92.5024985,
- "y": -13.000324499999998
+ "x": 60.382498500000004,
+ "y": -28.5213245
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1204",
- "pcb_component_id": "pcb_component_124",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_47",
+ "pcb_component_id": "pcb_component_33",
"layer": "bottom",
"route": [
{
- "x": 89.5724985,
- "y": -16.900324500000004
+ "x": 12.487498500000003,
+ "y": 0.24367549999999838
},
{
- "x": 92.5024985,
- "y": -16.900324500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1205",
- "pcb_component_id": "pcb_component_125",
- "layer": "top",
- "route": [
+ "x": 12.177498500000002,
+ "y": 0.5236754999999995
+ },
{
- "x": -61.9125015,
- "y": -10.903824500000006
+ "x": 11.947498500000004,
+ "y": 0.9636755000000008
},
{
- "x": -80.9625015,
- "y": -10.903824499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1206",
- "pcb_component_id": "pcb_component_125",
- "layer": "top",
- "route": [
+ "x": 11.807498500000003,
+ "y": 1.2736754999999995
+ },
{
- "x": -61.91250149999999,
- "y": 8.146175499999998
+ "x": 11.697498500000004,
+ "y": 1.5536755000000007
},
{
- "x": -61.9125015,
- "y": -10.903824500000006
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1207",
- "pcb_component_id": "pcb_component_125",
- "layer": "top",
- "route": [
+ "x": 11.527498500000004,
+ "y": 1.7436754999999984
+ },
{
- "x": -80.9625015,
- "y": -10.903824499999999
+ "x": 11.347498500000004,
+ "y": 1.8536754999999978
},
{
- "x": -80.9625015,
- "y": 8.146175500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1208",
- "pcb_component_id": "pcb_component_125",
- "layer": "top",
- "route": [
+ "x": 11.017498500000004,
+ "y": 1.9336754999999997
+ },
{
- "x": -80.9625015,
- "y": 8.146175500000002
+ "x": 7.767498500000004,
+ "y": 1.9236755000000016
},
{
- "x": -61.91250149999999,
- "y": 8.146175499999998
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1209",
- "pcb_component_id": "pcb_component_125",
- "layer": "top",
- "route": [
+ "x": 6.837498500000003,
+ "y": 1.9036754999999985
+ },
{
- "x": -64.4375015,
- "y": -8.3788245
+ "x": 6.5774985000000035,
+ "y": 1.7617654999999992
},
{
- "x": -78.4375015,
- "y": -8.3788245
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1210",
- "pcb_component_id": "pcb_component_125",
- "layer": "top",
- "route": [
+ "x": 6.497498500000003,
+ "y": 1.5736755000000002
+ },
{
- "x": -64.4375015,
- "y": 5.6211755
+ "x": 6.497498500000003,
+ "y": 1.263675499999998
},
{
- "x": -64.4375015,
- "y": -8.3788245
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1211",
- "pcb_component_id": "pcb_component_125",
- "layer": "top",
- "route": [
+ "x": 7.547498500000003,
+ "y": 1.263675499999998
+ },
{
- "x": -78.4375015,
- "y": -8.3788245
+ "x": 7.547498500000002,
+ "y": -1.8963244999999986
},
{
- "x": -78.4375015,
- "y": 5.6211755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1212",
- "pcb_component_id": "pcb_component_125",
- "layer": "top",
- "route": [
+ "x": 7.067498500000003,
+ "y": -1.9063245000000002
+ },
{
- "x": -78.4375015,
- "y": 5.6211755
+ "x": 7.147498500000003,
+ "y": -2.216324499999999
},
{
- "x": -64.4375015,
- "y": 5.6211755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1213",
- "pcb_component_id": "pcb_component_125",
- "layer": "top",
- "route": [
+ "x": 7.307498500000002,
+ "y": -2.4163245000000018
+ },
{
- "x": -69.6375015,
- "y": 1.821175499999999
+ "x": 7.517498500000003,
+ "y": -2.5463245000000008
},
{
- "x": -69.6375015,
- "y": 4.9211755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1214",
- "pcb_component_id": "pcb_component_125",
- "layer": "top",
- "route": [
+ "x": 7.807498500000002,
+ "y": -2.5763244999999984
+ },
{
- "x": -69.6375015,
- "y": 1.821175499999999
+ "x": 10.807498500000003,
+ "y": -2.5863245
},
{
- "x": -73.2375015,
- "y": 1.821175499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1215",
- "pcb_component_id": "pcb_component_125",
- "layer": "top",
- "route": [
+ "x": 11.237498500000003,
+ "y": -2.6863245000000013
+ },
{
- "x": -69.6375015,
- "y": 4.9211755
+ "x": 11.547498500000003,
+ "y": -2.896324500000002
},
{
- "x": -73.2375015,
- "y": 4.9211755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1216",
- "pcb_component_id": "pcb_component_125",
- "layer": "top",
- "route": [
+ "x": 11.787498500000002,
+ "y": -3.236324500000002
+ },
{
- "x": -73.2375015,
- "y": 1.821175499999999
+ "x": 11.877498500000002,
+ "y": -3.6563245
},
{
- "x": -73.2375015,
- "y": 4.9211755
+ "x": 11.887498500000003,
+ "y": -4.046324500000001
+ },
+ {
+ "x": 12.637498500000003,
+ "y": -4.756324500000002
+ },
+ {
+ "x": 15.667498500000002,
+ "y": -4.756324500000002
+ },
+ {
+ "x": 16.4874985,
+ "y": -4.046324500000001
+ },
+ {
+ "x": 16.027498500000004,
+ "y": -4.046324500000001
+ },
+ {
+ "x": 16.027498500000004,
+ "y": -0.986324500000002
+ },
+ {
+ "x": 16.467498500000005,
+ "y": -0.986324500000002
+ },
+ {
+ "x": 15.677498500000002,
+ "y": -0.2763245000000012
+ },
+ {
+ "x": 14.267498500000004,
+ "y": -0.2763245000000012
+ },
+ {
+ "x": 13.807498500000003,
+ "y": -0.24632450000000006
+ },
+ {
+ "x": 13.437498500000004,
+ "y": -0.18632450000000134
+ },
+ {
+ "x": 13.087498500000002,
+ "y": -0.11632450000000105
+ },
+ {
+ "x": 12.757498500000002,
+ "y": 0.0536754999999971
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1217",
- "pcb_component_id": "pcb_component_126",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_48",
+ "pcb_component_id": "pcb_component_34",
"layer": "bottom",
"route": [
{
- "x": 65.6424985,
- "y": -8.8462155
+ "x": 63.4453345,
+ "y": -9.8325745
},
{
- "x": 65.6424985,
- "y": -8.538933499999999
+ "x": 63.2296625,
+ "y": -9.8325745
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1218",
- "pcb_component_id": "pcb_component_126",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_49",
+ "pcb_component_id": "pcb_component_34",
"layer": "bottom",
"route": [
{
- "x": 66.4024985,
- "y": -8.8462155
+ "x": 63.4453345,
+ "y": -9.112574500000001
},
{
- "x": 66.4024985,
- "y": -8.538933499999999
+ "x": 63.2296625,
+ "y": -9.112574500000001
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1219",
- "pcb_component_id": "pcb_component_126",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_50",
+ "pcb_component_id": "pcb_component_35",
"layer": "bottom",
"route": [
{
- "x": 65.5524985,
- "y": -9.622574499999999
+ "x": -63.712501499999995,
+ "y": -28.3313245
},
{
- "x": 66.4924985,
- "y": -9.622574499999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1220",
- "pcb_component_id": "pcb_component_126",
- "layer": "bottom",
- "route": [
+ "x": -64.0225015,
+ "y": -28.0513245
+ },
{
- "x": 66.4924985,
- "y": -9.622574499999999
+ "x": -64.2525015,
+ "y": -27.611324500000002
},
{
- "x": 66.4924985,
- "y": -7.7625744999999995
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1221",
- "pcb_component_id": "pcb_component_126",
- "layer": "bottom",
- "route": [
+ "x": -64.3925015,
+ "y": -27.3013245
+ },
{
- "x": 65.5524985,
- "y": -7.7625744999999995
+ "x": -64.5025015,
+ "y": -27.0213245
},
{
- "x": 65.5524985,
- "y": -9.622574499999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1222",
- "pcb_component_id": "pcb_component_126",
- "layer": "bottom",
- "route": [
+ "x": -64.6725015,
+ "y": -26.8313245
+ },
{
- "x": 66.4924985,
- "y": -7.7625744999999995
+ "x": -64.8525015,
+ "y": -26.7213245
},
{
- "x": 65.5524985,
- "y": -7.7625744999999995
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1223",
- "pcb_component_id": "pcb_component_126",
- "layer": "bottom",
- "route": [
+ "x": -65.1825015,
+ "y": -26.641324500000003
+ },
{
- "x": 65.7524985,
- "y": -9.217574499999998
+ "x": -68.4325015,
+ "y": -26.6513245
},
{
- "x": 66.2924985,
- "y": -9.217574499999998
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1224",
- "pcb_component_id": "pcb_component_126",
- "layer": "bottom",
- "route": [
+ "x": -69.3625015,
+ "y": -26.671324499999997
+ },
{
- "x": 66.2924985,
- "y": -9.217574499999998
+ "x": -69.6225015,
+ "y": -26.8132345
},
{
- "x": 66.2924985,
- "y": -8.1675745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1225",
- "pcb_component_id": "pcb_component_126",
- "layer": "bottom",
- "route": [
+ "x": -69.7025015,
+ "y": -27.001324500000003
+ },
{
- "x": 65.7524985,
- "y": -8.1675745
+ "x": -69.7025015,
+ "y": -27.311324499999998
},
{
- "x": 65.7524985,
- "y": -9.217574499999998
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1226",
- "pcb_component_id": "pcb_component_126",
- "layer": "bottom",
- "route": [
+ "x": -68.6525015,
+ "y": -27.311324499999998
+ },
{
- "x": 66.2924985,
- "y": -8.1675745
+ "x": -68.6525015,
+ "y": -30.4713245
},
{
- "x": 65.7524985,
- "y": -8.1675745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1227",
- "pcb_component_id": "pcb_component_127",
- "layer": "top",
- "route": [
+ "x": -69.1325015,
+ "y": -30.4813245
+ },
{
- "x": 73.2375005,
- "y": 1.8086754999999997
+ "x": -69.0525015,
+ "y": -30.7913245
},
{
- "x": 69.6375005,
- "y": 1.8086754999999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1228",
- "pcb_component_id": "pcb_component_127",
- "layer": "top",
- "route": [
+ "x": -68.8925015,
+ "y": -30.991324499999997
+ },
{
- "x": 73.2375005,
- "y": 4.908675500000001
+ "x": -68.6825015,
+ "y": -31.1213245
},
{
- "x": 73.2375005,
- "y": 1.8086754999999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1229",
- "pcb_component_id": "pcb_component_127",
- "layer": "top",
- "route": [
+ "x": -68.3925015,
+ "y": -31.1513245
+ },
{
- "x": 69.6375005,
- "y": 1.8086754999999997
+ "x": -65.3925015,
+ "y": -31.1613245
},
{
- "x": 69.6375005,
- "y": 4.908675500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1230",
- "pcb_component_id": "pcb_component_127",
- "layer": "top",
- "route": [
+ "x": -64.9625015,
+ "y": -31.2613245
+ },
{
- "x": 69.6375005,
- "y": 4.908675500000001
+ "x": -64.6525015,
+ "y": -31.4713245
},
{
- "x": 73.2375005,
- "y": 4.908675500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1231",
- "pcb_component_id": "pcb_component_127",
- "layer": "bottom",
- "route": [
+ "x": -64.4125015,
+ "y": -31.811324499999998
+ },
{
- "x": 73.0375005,
- "y": 1.9586755000000018
+ "x": -64.3225015,
+ "y": -32.2313245
},
{
- "x": 69.8375005,
- "y": 1.9586755000000018
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1232",
- "pcb_component_id": "pcb_component_127",
- "layer": "bottom",
- "route": [
+ "x": -64.3125015,
+ "y": -32.6213245
+ },
{
- "x": 73.0375005,
- "y": 4.758675499999999
+ "x": -63.562501499999996,
+ "y": -33.3313245
},
{
- "x": 73.0375005,
- "y": 1.9586755000000018
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1233",
- "pcb_component_id": "pcb_component_127",
- "layer": "bottom",
- "route": [
+ "x": -60.532501499999995,
+ "y": -33.3313245
+ },
{
- "x": 73.0375005,
- "y": 4.758675499999999
+ "x": -59.7125015,
+ "y": -32.6213245
},
{
- "x": 69.8375005,
- "y": 4.758675499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1234",
- "pcb_component_id": "pcb_component_127",
- "layer": "bottom",
- "route": [
+ "x": -60.172501499999996,
+ "y": -32.6213245
+ },
+ {
+ "x": -60.172501499999996,
+ "y": -29.561324499999998
+ },
+ {
+ "x": -59.7325015,
+ "y": -29.561324499999998
+ },
+ {
+ "x": -60.5225015,
+ "y": -28.851324499999997
+ },
+ {
+ "x": -61.9325015,
+ "y": -28.851324499999997
+ },
+ {
+ "x": -62.392501499999995,
+ "y": -28.821324500000003
+ },
+ {
+ "x": -62.7625015,
+ "y": -28.7613245
+ },
{
- "x": 69.8375005,
- "y": 4.758675499999999
+ "x": -63.1125015,
+ "y": -28.6913245
},
{
- "x": 69.8375005,
- "y": 1.9586755000000018
+ "x": -63.4425015,
+ "y": -28.5213245
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1235",
- "pcb_component_id": "pcb_component_128",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_51",
+ "pcb_component_id": "pcb_component_36",
"layer": "bottom",
"route": [
{
- "x": -76.35249950000001,
- "y": -8.938933500000001
+ "x": 78.2174985,
+ "y": -18.8162745
},
{
- "x": -76.35249950000001,
- "y": -9.246215500000002
+ "x": 78.2174985,
+ "y": -18.1662745
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1236",
- "pcb_component_id": "pcb_component_128",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_52",
+ "pcb_component_id": "pcb_component_36",
"layer": "bottom",
"route": [
{
- "x": -77.1124995,
- "y": -8.938933500000001
+ "x": 77.5674985,
+ "y": -18.8162745
},
{
- "x": -77.1124995,
- "y": -9.246215500000002
+ "x": 78.2174985,
+ "y": -18.8162745
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1237",
- "pcb_component_id": "pcb_component_128",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_53",
+ "pcb_component_id": "pcb_component_36",
"layer": "bottom",
"route": [
{
- "x": -76.2624995,
- "y": -8.162574500000002
+ "x": 77.5674985,
+ "y": -11.5962745
},
{
- "x": -77.2024995,
- "y": -8.162574500000002
+ "x": 78.2174985,
+ "y": -11.5962745
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1238",
- "pcb_component_id": "pcb_component_128",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_54",
+ "pcb_component_id": "pcb_component_36",
"layer": "bottom",
"route": [
{
- "x": -77.2024995,
- "y": -8.162574500000002
+ "x": 71.64749850000001,
+ "y": -18.8162745
},
{
- "x": -77.2024995,
- "y": -10.022574500000005
+ "x": 70.9974985,
+ "y": -18.8162745
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1239",
- "pcb_component_id": "pcb_component_128",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_55",
+ "pcb_component_id": "pcb_component_36",
"layer": "bottom",
"route": [
{
- "x": -76.2624995,
- "y": -10.022574500000005
+ "x": 71.64749850000001,
+ "y": -11.5962745
},
{
- "x": -76.2624995,
- "y": -8.162574500000002
+ "x": 70.9974985,
+ "y": -11.5962745
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1240",
- "pcb_component_id": "pcb_component_128",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_56",
+ "pcb_component_id": "pcb_component_36",
"layer": "bottom",
"route": [
{
- "x": -77.2024995,
- "y": -10.022574500000005
+ "x": 70.9974985,
+ "y": -18.8162745
},
{
- "x": -76.2624995,
- "y": -10.022574500000005
+ "x": 70.9974985,
+ "y": -18.1662745
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1241",
- "pcb_component_id": "pcb_component_128",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_57",
+ "pcb_component_id": "pcb_component_36",
"layer": "bottom",
"route": [
{
- "x": -76.4624995,
- "y": -8.567574500000003
+ "x": 70.9974985,
+ "y": -11.5962745
},
{
- "x": -77.0024995,
- "y": -8.567574500000003
+ "x": 70.9974985,
+ "y": -12.246274499999998
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1242",
- "pcb_component_id": "pcb_component_128",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_58",
+ "pcb_component_id": "pcb_component_37",
"layer": "bottom",
"route": [
{
- "x": -77.0024995,
- "y": -8.567574500000003
+ "x": -54.187501499999996,
+ "y": 31.1999255
},
{
- "x": -77.0024995,
- "y": -9.617574500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1243",
- "pcb_component_id": "pcb_component_128",
- "layer": "bottom",
- "route": [
+ "x": -54.4975015,
+ "y": 31.4799255
+ },
+ {
+ "x": -54.7275015,
+ "y": 31.919925499999998
+ },
+ {
+ "x": -54.8675015,
+ "y": 32.2299255
+ },
+ {
+ "x": -54.9775015,
+ "y": 32.5099255
+ },
+ {
+ "x": -55.1475015,
+ "y": 32.6999255
+ },
+ {
+ "x": -55.3275015,
+ "y": 32.8099255
+ },
+ {
+ "x": -55.6575015,
+ "y": 32.889925500000004
+ },
+ {
+ "x": -58.907501499999995,
+ "y": 32.8799255
+ },
+ {
+ "x": -59.8375015,
+ "y": 32.8599255
+ },
+ {
+ "x": -60.0975015,
+ "y": 32.7180155
+ },
+ {
+ "x": -60.1775015,
+ "y": 32.529925500000004
+ },
+ {
+ "x": -60.1775015,
+ "y": 32.2199255
+ },
+ {
+ "x": -59.1275015,
+ "y": 32.2199255
+ },
{
- "x": -76.4624995,
- "y": -9.617574500000003
+ "x": -59.1275015,
+ "y": 29.0599255
},
{
- "x": -76.4624995,
- "y": -8.567574500000003
+ "x": -59.6075015,
+ "y": 29.0499255
+ },
+ {
+ "x": -59.5275015,
+ "y": 28.739925500000002
+ },
+ {
+ "x": -59.3675015,
+ "y": 28.539925500000003
+ },
+ {
+ "x": -59.1575015,
+ "y": 28.4099255
+ },
+ {
+ "x": -58.8675015,
+ "y": 28.3799255
+ },
+ {
+ "x": -55.8675015,
+ "y": 28.3699255
+ },
+ {
+ "x": -55.437501499999996,
+ "y": 28.2699255
+ },
+ {
+ "x": -55.1275015,
+ "y": 28.0599255
+ },
+ {
+ "x": -54.8875015,
+ "y": 27.7199255
+ },
+ {
+ "x": -54.7975015,
+ "y": 27.2999255
+ },
+ {
+ "x": -54.7875015,
+ "y": 26.9099255
+ },
+ {
+ "x": -54.0375015,
+ "y": 26.1999255
+ },
+ {
+ "x": -51.007501500000004,
+ "y": 26.1999255
+ },
+ {
+ "x": -50.187501499999996,
+ "y": 26.9099255
+ },
+ {
+ "x": -50.6475015,
+ "y": 26.9099255
+ },
+ {
+ "x": -50.6475015,
+ "y": 29.9699255
+ },
+ {
+ "x": -50.2075015,
+ "y": 29.9699255
+ },
+ {
+ "x": -50.9975015,
+ "y": 30.6799255
+ },
+ {
+ "x": -52.4075015,
+ "y": 30.6799255
+ },
+ {
+ "x": -52.8675015,
+ "y": 30.7099255
+ },
+ {
+ "x": -53.2375015,
+ "y": 30.7699255
+ },
+ {
+ "x": -53.5875015,
+ "y": 30.8399255
+ },
+ {
+ "x": -53.9175015,
+ "y": 31.0099255
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1244",
- "pcb_component_id": "pcb_component_128",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_59",
+ "pcb_component_id": "pcb_component_38",
"layer": "bottom",
"route": [
{
- "x": -77.0024995,
- "y": -9.617574500000003
+ "x": 69.6374985,
+ "y": -4.518824500000001
},
{
- "x": -76.4624995,
- "y": -9.617574500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1245",
- "pcb_component_id": "pcb_component_129",
- "layer": "top",
- "route": [
+ "x": 69.3274985,
+ "y": -4.2388245
+ },
{
- "x": 73.2375005,
- "y": 39.9086755
+ "x": 69.0974985,
+ "y": -3.7988244999999985
},
{
- "x": 69.6375005,
- "y": 39.9086755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1246",
- "pcb_component_id": "pcb_component_129",
- "layer": "top",
- "route": [
+ "x": 68.9574985,
+ "y": -3.4888244999999998
+ },
{
- "x": 73.2375005,
- "y": 43.008675499999995
+ "x": 68.8474985,
+ "y": -3.2088244999999986
},
{
- "x": 73.2375005,
- "y": 39.9086755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1247",
- "pcb_component_id": "pcb_component_129",
- "layer": "top",
- "route": [
+ "x": 68.6774985,
+ "y": -3.018824500000001
+ },
+ {
+ "x": 68.4974985,
+ "y": -2.9088245000000015
+ },
+ {
+ "x": 68.16749850000001,
+ "y": -2.8288244999999996
+ },
+ {
+ "x": 64.91749850000001,
+ "y": -2.838824500000001
+ },
+ {
+ "x": 63.9874985,
+ "y": -2.8588245000000008
+ },
+ {
+ "x": 63.7274985,
+ "y": -3.0007345
+ },
+ {
+ "x": 63.647498500000005,
+ "y": -3.188824499999999
+ },
+ {
+ "x": 63.647498500000005,
+ "y": -3.498824499999998
+ },
+ {
+ "x": 64.69749850000001,
+ "y": -3.498824499999998
+ },
+ {
+ "x": 64.69749850000001,
+ "y": -6.6588245000000015
+ },
+ {
+ "x": 64.2174985,
+ "y": -6.6688244999999995
+ },
+ {
+ "x": 64.2974985,
+ "y": -6.978824499999998
+ },
+ {
+ "x": 64.4574985,
+ "y": -7.1788244999999975
+ },
+ {
+ "x": 64.66749850000001,
+ "y": -7.3088245
+ },
+ {
+ "x": 64.9574985,
+ "y": -7.338824500000001
+ },
+ {
+ "x": 67.9574985,
+ "y": -7.348824499999999
+ },
+ {
+ "x": 68.3874985,
+ "y": -7.448824500000001
+ },
+ {
+ "x": 68.69749850000001,
+ "y": -7.6588245000000015
+ },
+ {
+ "x": 68.9374985,
+ "y": -7.998824500000001
+ },
+ {
+ "x": 69.02749850000001,
+ "y": -8.4188245
+ },
+ {
+ "x": 69.0374985,
+ "y": -8.8088245
+ },
+ {
+ "x": 69.7874985,
+ "y": -9.518824500000001
+ },
+ {
+ "x": 72.8174985,
+ "y": -9.518824500000001
+ },
+ {
+ "x": 73.6374985,
+ "y": -8.8088245
+ },
+ {
+ "x": 73.1774985,
+ "y": -8.8088245
+ },
{
- "x": 69.6375005,
- "y": 39.9086755
+ "x": 73.1774985,
+ "y": -5.748824500000001
},
{
- "x": 69.6375005,
- "y": 43.008675499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1248",
- "pcb_component_id": "pcb_component_129",
- "layer": "top",
- "route": [
+ "x": 73.61749850000001,
+ "y": -5.748824500000001
+ },
+ {
+ "x": 72.8274985,
+ "y": -5.0388245000000005
+ },
+ {
+ "x": 71.41749850000001,
+ "y": -5.0388245000000005
+ },
+ {
+ "x": 70.9574985,
+ "y": -5.008824499999999
+ },
{
- "x": 69.6375005,
- "y": 43.008675499999995
+ "x": 70.58749850000001,
+ "y": -4.948824500000001
},
{
- "x": 73.2375005,
- "y": 43.008675499999995
+ "x": 70.2374985,
+ "y": -4.8788245
+ },
+ {
+ "x": 69.9074985,
+ "y": -4.708824499999999
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1249",
- "pcb_component_id": "pcb_component_129",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_60",
+ "pcb_component_id": "pcb_component_39",
"layer": "bottom",
"route": [
{
- "x": 73.0375005,
- "y": 40.0586755
+ "x": 37.3874985,
+ "y": 36.3461755
+ },
+ {
+ "x": 37.3874985,
+ "y": 35.196175499999995
},
{
- "x": 69.8375005,
- "y": 40.0586755
+ "x": 36.1374985,
+ "y": 35.196175499999995
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1250",
- "pcb_component_id": "pcb_component_129",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_61",
+ "pcb_component_id": "pcb_component_40",
"layer": "bottom",
"route": [
{
- "x": 73.0375005,
- "y": 42.8586755
+ "x": -75.0024995,
+ "y": -9.190410499999999
},
{
- "x": 73.0375005,
- "y": 40.0586755
+ "x": -75.0024995,
+ "y": -8.9747385
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1251",
- "pcb_component_id": "pcb_component_129",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_62",
+ "pcb_component_id": "pcb_component_40",
"layer": "bottom",
"route": [
{
- "x": 73.0375005,
- "y": 42.8586755
+ "x": -74.2824995,
+ "y": -9.190410499999999
},
{
- "x": 69.8375005,
- "y": 42.8586755
+ "x": -74.2824995,
+ "y": -8.9747385
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1252",
- "pcb_component_id": "pcb_component_129",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_63",
+ "pcb_component_id": "pcb_component_42",
"layer": "bottom",
"route": [
{
- "x": 69.8375005,
- "y": 42.8586755
+ "x": -105.4875015,
+ "y": 14.914925499999999
+ },
+ {
+ "x": -105.4875015,
+ "y": 13.764925499999999
},
{
- "x": 69.8375005,
- "y": 40.0586755
+ "x": -106.7375015,
+ "y": 13.764925499999999
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1253",
- "pcb_component_id": "pcb_component_130",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_64",
+ "pcb_component_id": "pcb_component_43",
"layer": "bottom",
"route": [
{
- "x": -77.7524995,
- "y": -20.9147385
+ "x": -84.9674995,
+ "y": -15.209110500000001
},
{
- "x": -77.7524995,
- "y": -21.130410499999996
+ "x": -84.9674995,
+ "y": -14.993438500000003
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1254",
- "pcb_component_id": "pcb_component_130",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_65",
+ "pcb_component_id": "pcb_component_43",
"layer": "bottom",
"route": [
{
- "x": -78.4724995,
- "y": -20.9147385
+ "x": -84.2474995,
+ "y": -15.209110500000001
},
{
- "x": -78.4724995,
- "y": -21.130410499999996
+ "x": -84.2474995,
+ "y": -14.993438500000003
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1255",
- "pcb_component_id": "pcb_component_130",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_66",
+ "pcb_component_id": "pcb_component_45",
"layer": "bottom",
"route": [
{
- "x": -77.6524995,
- "y": -20.1125745
+ "x": 56.4375005,
+ "y": 19.6774255
},
{
- "x": -78.57249949999999,
- "y": -20.1125745
+ "x": 56.4375005,
+ "y": 18.5274255
+ },
+ {
+ "x": 55.1875005,
+ "y": 18.5274255
}
],
"stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1256",
- "pcb_component_id": "pcb_component_130",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_67",
+ "pcb_component_id": "pcb_component_46",
"layer": "bottom",
"route": [
{
- "x": -78.57249949999999,
- "y": -20.1125745
+ "x": -48.3375015,
+ "y": 38.727425499999995
+ },
+ {
+ "x": -48.3375015,
+ "y": 37.577425500000004
},
{
- "x": -78.57249949999999,
- "y": -21.932574499999994
+ "x": -49.5875015,
+ "y": 37.577425500000004
}
],
"stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1257",
- "pcb_component_id": "pcb_component_130",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_68",
+ "pcb_component_id": "pcb_component_47",
"layer": "bottom",
"route": [
{
- "x": -77.6524995,
- "y": -21.932574499999994
+ "x": -79.2175015,
+ "y": -9.1804105
},
{
- "x": -77.6524995,
- "y": -20.1125745
+ "x": -79.2175015,
+ "y": -8.964738500000003
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1258",
- "pcb_component_id": "pcb_component_130",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_69",
+ "pcb_component_id": "pcb_component_47",
"layer": "bottom",
"route": [
{
- "x": -78.57249949999999,
- "y": -21.932574499999994
+ "x": -78.4975015,
+ "y": -9.1804105
},
{
- "x": -77.6524995,
- "y": -21.932574499999994
+ "x": -78.4975015,
+ "y": -8.964738500000003
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1259",
- "pcb_component_id": "pcb_component_130",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_70",
+ "pcb_component_id": "pcb_component_48",
"layer": "bottom",
"route": [
{
- "x": -77.8624995,
- "y": -20.522574499999997
+ "x": -76.0275015,
+ "y": -9.190410499999999
},
{
- "x": -78.3624995,
- "y": -20.522574499999997
+ "x": -76.0275015,
+ "y": -8.9747385
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1260",
- "pcb_component_id": "pcb_component_130",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_71",
+ "pcb_component_id": "pcb_component_48",
"layer": "bottom",
"route": [
{
- "x": -78.3624995,
- "y": -20.522574499999997
+ "x": -75.3075015,
+ "y": -9.190410499999999
},
{
- "x": -78.3624995,
- "y": -21.522574499999997
+ "x": -75.3075015,
+ "y": -8.9747385
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1261",
- "pcb_component_id": "pcb_component_130",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_72",
+ "pcb_component_id": "pcb_component_49",
"layer": "bottom",
"route": [
{
- "x": -77.8624995,
- "y": -21.522574499999997
+ "x": 69.6374985,
+ "y": 14.5311755
},
{
- "x": -77.8624995,
- "y": -20.522574499999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1262",
- "pcb_component_id": "pcb_component_130",
- "layer": "bottom",
- "route": [
+ "x": 69.3274985,
+ "y": 14.811175500000001
+ },
{
- "x": -78.3624995,
- "y": -21.522574499999997
+ "x": 69.0974985,
+ "y": 15.2511755
},
{
- "x": -77.8624995,
- "y": -21.522574499999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1263",
- "pcb_component_id": "pcb_component_131",
- "layer": "top",
- "route": [
+ "x": 68.9574985,
+ "y": 15.561175500000001
+ },
{
- "x": 138.11249850000002,
- "y": -18.047574500000003
+ "x": 68.8474985,
+ "y": 15.841175499999999
},
{
- "x": 119.0624985,
- "y": -18.047574500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1264",
- "pcb_component_id": "pcb_component_131",
- "layer": "top",
- "route": [
+ "x": 68.6774985,
+ "y": 16.0311755
+ },
{
- "x": 138.11249850000002,
- "y": 1.0024254999999975
+ "x": 68.4974985,
+ "y": 16.1411755
},
{
- "x": 138.11249850000002,
- "y": -18.047574500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1265",
- "pcb_component_id": "pcb_component_131",
- "layer": "top",
- "route": [
+ "x": 68.16749850000001,
+ "y": 16.2211755
+ },
{
- "x": 119.0624985,
- "y": -18.047574500000003
+ "x": 64.91749850000001,
+ "y": 16.2111755
},
{
- "x": 119.0624985,
- "y": 1.002425500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1266",
- "pcb_component_id": "pcb_component_131",
- "layer": "top",
- "route": [
+ "x": 63.9874985,
+ "y": 16.1911755
+ },
{
- "x": 119.0624985,
- "y": 1.002425500000001
+ "x": 63.7274985,
+ "y": 16.0492655
},
{
- "x": 138.11249850000002,
- "y": 1.0024254999999975
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1267",
- "pcb_component_id": "pcb_component_131",
- "layer": "top",
- "route": [
+ "x": 63.647498500000005,
+ "y": 15.8611755
+ },
{
- "x": 135.5874985,
- "y": -15.522574500000005
+ "x": 63.647498500000005,
+ "y": 15.5511755
},
{
- "x": 121.58749850000001,
- "y": -15.522574499999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1268",
- "pcb_component_id": "pcb_component_131",
- "layer": "top",
- "route": [
+ "x": 64.69749850000001,
+ "y": 15.5511755
+ },
{
- "x": 135.5874985,
- "y": -1.522574500000001
+ "x": 64.69749850000001,
+ "y": 12.3911755
},
{
- "x": 135.5874985,
- "y": -15.522574500000005
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1269",
- "pcb_component_id": "pcb_component_131",
- "layer": "top",
- "route": [
+ "x": 64.2174985,
+ "y": 12.381175500000001
+ },
{
- "x": 121.58749850000001,
- "y": -15.522574499999997
+ "x": 64.2974985,
+ "y": 12.0711755
},
{
- "x": 121.58749850000001,
- "y": -1.522574500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1270",
- "pcb_component_id": "pcb_component_131",
- "layer": "top",
- "route": [
+ "x": 64.4574985,
+ "y": 11.8711755
+ },
{
- "x": 121.58749850000001,
- "y": -1.522574500000001
+ "x": 64.66749850000001,
+ "y": 11.7411755
},
{
- "x": 135.5874985,
- "y": -1.522574500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1271",
- "pcb_component_id": "pcb_component_131",
- "layer": "top",
- "route": [
+ "x": 64.9574985,
+ "y": 11.7111755
+ },
{
- "x": 130.38749850000002,
- "y": -5.322574500000002
+ "x": 67.9574985,
+ "y": 11.7011755
},
{
- "x": 130.38749850000002,
- "y": -2.2225745000000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1272",
- "pcb_component_id": "pcb_component_131",
- "layer": "top",
- "route": [
+ "x": 68.3874985,
+ "y": 11.6011755
+ },
{
- "x": 130.38749850000002,
- "y": -5.322574500000002
+ "x": 68.69749850000001,
+ "y": 11.3911755
},
{
- "x": 126.78749850000001,
- "y": -5.322574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1273",
- "pcb_component_id": "pcb_component_131",
- "layer": "top",
- "route": [
+ "x": 68.9374985,
+ "y": 11.0511755
+ },
{
- "x": 130.38749850000002,
- "y": -2.2225745000000003
+ "x": 69.02749850000001,
+ "y": 10.6311755
},
{
- "x": 126.78749850000001,
- "y": -2.2225745000000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1274",
- "pcb_component_id": "pcb_component_131",
- "layer": "top",
- "route": [
+ "x": 69.0374985,
+ "y": 10.2411755
+ },
{
- "x": 126.78749850000001,
- "y": -5.322574500000002
+ "x": 69.7874985,
+ "y": 9.5311755
},
{
- "x": 126.78749850000001,
- "y": -2.2225745000000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1275",
- "pcb_component_id": "pcb_component_132",
- "layer": "top",
- "route": [
+ "x": 72.8174985,
+ "y": 9.5311755
+ },
{
- "x": 73.2375005,
- "y": 20.8586755
+ "x": 73.6374985,
+ "y": 10.2411755
},
{
- "x": 69.6375005,
- "y": 20.8586755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1276",
- "pcb_component_id": "pcb_component_132",
- "layer": "top",
- "route": [
+ "x": 73.1774985,
+ "y": 10.2411755
+ },
{
- "x": 73.2375005,
- "y": 23.9586755
+ "x": 73.1774985,
+ "y": 13.3011755
},
{
- "x": 73.2375005,
- "y": 20.8586755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1277",
- "pcb_component_id": "pcb_component_132",
- "layer": "top",
- "route": [
+ "x": 73.61749850000001,
+ "y": 13.3011755
+ },
{
- "x": 69.6375005,
- "y": 20.8586755
+ "x": 72.8274985,
+ "y": 14.0111755
},
{
- "x": 69.6375005,
- "y": 23.9586755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1278",
- "pcb_component_id": "pcb_component_132",
- "layer": "top",
- "route": [
+ "x": 71.41749850000001,
+ "y": 14.0111755
+ },
+ {
+ "x": 70.9574985,
+ "y": 14.0411755
+ },
{
- "x": 69.6375005,
- "y": 23.9586755
+ "x": 70.58749850000001,
+ "y": 14.1011755
},
{
- "x": 73.2375005,
- "y": 23.9586755
+ "x": 70.2374985,
+ "y": 14.1711755
+ },
+ {
+ "x": 69.9074985,
+ "y": 14.341175499999999
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1279",
- "pcb_component_id": "pcb_component_132",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_73",
+ "pcb_component_id": "pcb_component_50",
"layer": "bottom",
"route": [
{
- "x": 73.0375005,
- "y": 21.0086755
+ "x": -22.152501499999996,
+ "y": 35.3437255
},
{
- "x": 69.8375005,
- "y": 21.0086755
+ "x": -23.152501499999996,
+ "y": 35.3437255
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1280",
- "pcb_component_id": "pcb_component_132",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_74",
+ "pcb_component_id": "pcb_component_50",
"layer": "bottom",
"route": [
{
- "x": 73.0375005,
- "y": 23.8086755
+ "x": -22.152501499999996,
+ "y": 32.5437255
},
{
- "x": 73.0375005,
- "y": 21.0086755
+ "x": -23.452501499999997,
+ "y": 32.5437255
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1281",
- "pcb_component_id": "pcb_component_132",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_75",
+ "pcb_component_id": "pcb_component_51",
"layer": "bottom",
"route": [
{
- "x": 73.0375005,
- "y": 23.8086755
+ "x": 37.3874985,
+ "y": -1.7538245000000003
+ },
+ {
+ "x": 37.3874985,
+ "y": -2.903824499999999
},
{
- "x": 69.8375005,
- "y": 23.8086755
+ "x": 36.1374985,
+ "y": -2.903824499999999
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1282",
- "pcb_component_id": "pcb_component_132",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_76",
+ "pcb_component_id": "pcb_component_52",
"layer": "bottom",
"route": [
{
- "x": 69.8375005,
- "y": 23.8086755
+ "x": -36.227534646769996,
+ "y": -23.902895592233747
+ },
+ {
+ "x": -36.46545499948731,
+ "y": -25.02801509955858
},
{
- "x": 69.8375005,
- "y": 21.0086755
+ "x": -37.68841098570995,
+ "y": -24.76940602051802
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1283",
- "pcb_component_id": "pcb_component_133",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_77",
+ "pcb_component_id": "pcb_component_53",
+ "layer": "bottom",
"route": [
{
- "x": -80.9625015,
- "y": -13.2850745
+ "x": -45.74750149999999,
+ "y": -12.636274500000006
},
{
- "x": -100.0125015,
- "y": -13.2850745
+ "x": -51.75750149999999,
+ "y": -12.636274499999999
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1284",
- "pcb_component_id": "pcb_component_133",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_78",
+ "pcb_component_id": "pcb_component_53",
+ "layer": "bottom",
"route": [
{
- "x": -80.96250149999999,
- "y": 5.764925499999997
+ "x": -47.99750149999999,
+ "y": -19.456274500000006
},
{
- "x": -80.9625015,
- "y": -13.2850745
+ "x": -51.7575015,
+ "y": -19.4562745
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1285",
- "pcb_component_id": "pcb_component_133",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_79",
+ "pcb_component_id": "pcb_component_53",
+ "layer": "bottom",
"route": [
{
- "x": -100.0125015,
- "y": -13.2850745
+ "x": -51.7575015,
+ "y": -19.4562745
},
{
- "x": -100.01250149999998,
- "y": 5.7649255
+ "x": -51.75750149999999,
+ "y": -18.1962745
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1286",
- "pcb_component_id": "pcb_component_133",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_80",
+ "pcb_component_id": "pcb_component_53",
+ "layer": "bottom",
"route": [
{
- "x": -100.01250149999998,
- "y": 5.7649255
+ "x": -51.75750149999999,
+ "y": -12.636274499999999
},
{
- "x": -80.96250149999999,
- "y": 5.764925499999997
+ "x": -51.75750149999999,
+ "y": -13.896274500000004
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1287",
- "pcb_component_id": "pcb_component_133",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_81",
+ "pcb_component_id": "pcb_component_54",
+ "layer": "bottom",
"route": [
{
- "x": -83.4875015,
- "y": -10.760074500000002
+ "x": 107.7374985,
+ "y": -11.662574499999998
},
{
- "x": -97.4875015,
- "y": -10.760074500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1288",
- "pcb_component_id": "pcb_component_133",
- "layer": "top",
- "route": [
+ "x": 107.4274985,
+ "y": -11.382574499999997
+ },
{
- "x": -83.4875015,
- "y": 3.2399254999999982
+ "x": 107.1974985,
+ "y": -10.9425745
},
{
- "x": -83.4875015,
- "y": -10.760074500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1289",
- "pcb_component_id": "pcb_component_133",
- "layer": "top",
- "route": [
+ "x": 107.0574985,
+ "y": -10.632574499999997
+ },
{
- "x": -97.4875015,
- "y": -10.760074500000002
+ "x": 106.9474985,
+ "y": -10.352574500000003
},
{
- "x": -97.4875015,
- "y": 3.2399254999999982
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1290",
- "pcb_component_id": "pcb_component_133",
- "layer": "top",
- "route": [
+ "x": 106.7774985,
+ "y": -10.162574499999998
+ },
{
- "x": -97.4875015,
- "y": 3.2399254999999982
+ "x": 106.5974985,
+ "y": -10.052574499999999
},
{
- "x": -83.4875015,
- "y": 3.2399254999999982
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1291",
- "pcb_component_id": "pcb_component_133",
- "layer": "top",
- "route": [
+ "x": 106.2674985,
+ "y": -9.9725745
+ },
{
- "x": -88.6875015,
- "y": -0.5600745000000025
+ "x": 103.0174985,
+ "y": -9.982574499999998
},
{
- "x": -88.6875015,
- "y": 2.539925499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1292",
- "pcb_component_id": "pcb_component_133",
- "layer": "top",
- "route": [
+ "x": 102.0874985,
+ "y": -10.002574500000001
+ },
{
- "x": -88.6875015,
- "y": -0.5600745000000025
+ "x": 101.8274985,
+ "y": -10.144484499999997
},
{
- "x": -92.28750149999999,
- "y": -0.5600745000000025
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1293",
- "pcb_component_id": "pcb_component_133",
- "layer": "top",
- "route": [
+ "x": 101.74749849999999,
+ "y": -10.3325745
+ },
{
- "x": -88.6875015,
- "y": 2.539925499999999
+ "x": 101.74749849999999,
+ "y": -10.642574500000002
},
{
- "x": -92.28750149999999,
- "y": 2.539925499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1294",
- "pcb_component_id": "pcb_component_133",
- "layer": "top",
- "route": [
+ "x": 102.7974985,
+ "y": -10.642574500000002
+ },
{
- "x": -92.28750149999999,
- "y": -0.5600745000000025
+ "x": 102.7974985,
+ "y": -13.802574499999999
},
{
- "x": -92.28750149999999,
- "y": 2.539925499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1295",
- "pcb_component_id": "pcb_component_134",
- "layer": "top",
- "route": [
+ "x": 102.3174985,
+ "y": -13.812574500000004
+ },
{
- "x": -119.0625015,
- "y": 20.0524255
+ "x": 102.3974985,
+ "y": -14.122574499999999
},
{
- "x": -138.1125015,
- "y": 20.052425500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1296",
- "pcb_component_id": "pcb_component_134",
- "layer": "top",
- "route": [
+ "x": 102.5574985,
+ "y": -14.322574500000002
+ },
{
- "x": -119.0625015,
- "y": 39.102425499999995
+ "x": 102.7674985,
+ "y": -14.452574499999997
},
{
- "x": -119.0625015,
- "y": 20.0524255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1297",
- "pcb_component_id": "pcb_component_134",
- "layer": "top",
- "route": [
+ "x": 103.0574985,
+ "y": -14.482574499999998
+ },
{
- "x": -138.1125015,
- "y": 20.052425500000002
+ "x": 106.0574985,
+ "y": -14.492574500000003
},
{
- "x": -138.1125015,
- "y": 39.1024255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1298",
- "pcb_component_id": "pcb_component_134",
- "layer": "top",
- "route": [
+ "x": 106.4874985,
+ "y": -14.592574500000005
+ },
{
- "x": -138.1125015,
- "y": 39.1024255
+ "x": 106.7974985,
+ "y": -14.802574499999999
},
{
- "x": -119.0625015,
- "y": 39.102425499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1299",
- "pcb_component_id": "pcb_component_134",
- "layer": "top",
- "route": [
+ "x": 107.0374985,
+ "y": -15.142574500000002
+ },
{
- "x": -121.5875015,
- "y": 22.577425499999997
+ "x": 107.1274985,
+ "y": -15.562574500000004
},
{
- "x": -135.5875015,
- "y": 22.5774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1300",
- "pcb_component_id": "pcb_component_134",
- "layer": "top",
- "route": [
+ "x": 107.13749849999999,
+ "y": -15.952574500000004
+ },
{
- "x": -121.5875015,
- "y": 36.5774255
+ "x": 107.88749849999999,
+ "y": -16.662574499999998
},
{
- "x": -121.5875015,
- "y": 22.577425499999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1301",
- "pcb_component_id": "pcb_component_134",
- "layer": "top",
- "route": [
+ "x": 110.9174985,
+ "y": -16.662574499999998
+ },
{
- "x": -135.5875015,
- "y": 22.5774255
+ "x": 111.7374985,
+ "y": -15.952574500000004
},
{
- "x": -135.5875015,
- "y": 36.577425500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1302",
- "pcb_component_id": "pcb_component_134",
- "layer": "top",
- "route": [
+ "x": 111.2774985,
+ "y": -15.952574500000004
+ },
{
- "x": -135.5875015,
- "y": 36.577425500000004
+ "x": 111.2774985,
+ "y": -12.892574500000002
},
{
- "x": -121.5875015,
- "y": 36.5774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1303",
- "pcb_component_id": "pcb_component_134",
- "layer": "top",
- "route": [
+ "x": 111.7174985,
+ "y": -12.892574500000002
+ },
{
- "x": -126.7875015,
- "y": 32.7774255
+ "x": 110.9274985,
+ "y": -12.182574500000001
},
{
- "x": -126.7875015,
- "y": 35.8774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1304",
- "pcb_component_id": "pcb_component_134",
- "layer": "top",
- "route": [
+ "x": 109.5174985,
+ "y": -12.182574500000001
+ },
{
- "x": -126.7875015,
- "y": 32.7774255
+ "x": 109.0574985,
+ "y": -12.1525745
},
{
- "x": -130.3875015,
- "y": 32.7774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1305",
- "pcb_component_id": "pcb_component_134",
- "layer": "top",
- "route": [
+ "x": 108.6874985,
+ "y": -12.092574499999998
+ },
{
- "x": -126.7875015,
- "y": 35.8774255
+ "x": 108.3374985,
+ "y": -12.022574499999997
},
{
- "x": -130.3875015,
- "y": 35.8774255
+ "x": 108.0074985,
+ "y": -11.852574500000003
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1306",
- "pcb_component_id": "pcb_component_134",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_82",
+ "pcb_component_id": "pcb_component_55",
+ "layer": "bottom",
"route": [
{
- "x": -130.3875015,
- "y": 32.7774255
+ "x": -92.28750149999999,
+ "y": 31.1999255
},
{
- "x": -130.3875015,
- "y": 35.8774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1307",
- "pcb_component_id": "pcb_component_135",
- "layer": "top",
- "route": [
+ "x": -92.59750149999999,
+ "y": 31.4799255
+ },
{
- "x": 80.96249850000001,
- "y": 27.196175499999995
+ "x": -92.8275015,
+ "y": 31.919925499999998
},
{
- "x": 61.9124985,
- "y": 27.196175500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1308",
- "pcb_component_id": "pcb_component_135",
- "layer": "top",
- "route": [
+ "x": -92.9675015,
+ "y": 32.2299255
+ },
{
- "x": 80.96249850000001,
- "y": 46.2461755
+ "x": -93.0775015,
+ "y": 32.5099255
},
{
- "x": 80.96249850000001,
- "y": 27.196175499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1309",
- "pcb_component_id": "pcb_component_135",
- "layer": "top",
- "route": [
+ "x": -93.2475015,
+ "y": 32.6999255
+ },
{
- "x": 61.9124985,
- "y": 27.196175500000003
+ "x": -93.42750149999999,
+ "y": 32.8099255
},
{
- "x": 61.912498500000005,
- "y": 46.2461755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1310",
- "pcb_component_id": "pcb_component_135",
- "layer": "top",
- "route": [
+ "x": -93.75750149999999,
+ "y": 32.889925500000004
+ },
{
- "x": 61.912498500000005,
- "y": 46.2461755
+ "x": -97.00750149999999,
+ "y": 32.8799255
},
{
- "x": 80.96249850000001,
- "y": 46.2461755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1311",
- "pcb_component_id": "pcb_component_135",
- "layer": "top",
- "route": [
+ "x": -97.9375015,
+ "y": 32.8599255
+ },
{
- "x": 78.4374985,
- "y": 29.721175499999998
+ "x": -98.19750149999999,
+ "y": 32.7180155
},
{
- "x": 64.4374985,
- "y": 29.7211755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1312",
- "pcb_component_id": "pcb_component_135",
- "layer": "top",
- "route": [
+ "x": -98.2775015,
+ "y": 32.529925500000004
+ },
{
- "x": 78.4374985,
- "y": 43.7211755
+ "x": -98.2775015,
+ "y": 32.2199255
},
{
- "x": 78.4374985,
- "y": 29.721175499999998
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1313",
- "pcb_component_id": "pcb_component_135",
- "layer": "top",
- "route": [
+ "x": -97.22750149999999,
+ "y": 32.2199255
+ },
{
- "x": 64.4374985,
- "y": 29.7211755
+ "x": -97.22750149999999,
+ "y": 29.0599255
},
{
- "x": 64.4374985,
- "y": 43.7211755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1314",
- "pcb_component_id": "pcb_component_135",
- "layer": "top",
- "route": [
+ "x": -97.70750149999999,
+ "y": 29.0499255
+ },
{
- "x": 64.4374985,
- "y": 43.7211755
+ "x": -97.6275015,
+ "y": 28.739925500000002
},
{
- "x": 78.4374985,
- "y": 43.7211755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1315",
- "pcb_component_id": "pcb_component_135",
- "layer": "top",
- "route": [
+ "x": -97.4675015,
+ "y": 28.539925500000003
+ },
{
- "x": 73.2374985,
- "y": 39.921175500000004
+ "x": -97.25750149999999,
+ "y": 28.4099255
},
{
- "x": 73.2374985,
- "y": 43.0211755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1316",
- "pcb_component_id": "pcb_component_135",
- "layer": "top",
- "route": [
+ "x": -96.9675015,
+ "y": 28.3799255
+ },
{
- "x": 73.2374985,
- "y": 39.921175500000004
+ "x": -93.9675015,
+ "y": 28.3699255
},
{
- "x": 69.6374985,
- "y": 39.921175500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1317",
- "pcb_component_id": "pcb_component_135",
- "layer": "top",
- "route": [
+ "x": -93.53750149999999,
+ "y": 28.2699255
+ },
{
- "x": 73.2374985,
- "y": 43.0211755
+ "x": -93.22750149999999,
+ "y": 28.0599255
},
{
- "x": 69.6374985,
- "y": 43.0211755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1318",
- "pcb_component_id": "pcb_component_135",
- "layer": "top",
- "route": [
+ "x": -92.9875015,
+ "y": 27.7199255
+ },
{
- "x": 69.6374985,
- "y": 39.921175500000004
+ "x": -92.89750149999999,
+ "y": 27.2999255
},
{
- "x": 69.6374985,
- "y": 43.0211755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1319",
- "pcb_component_id": "pcb_component_136",
- "layer": "top",
- "route": [
+ "x": -92.8875015,
+ "y": 26.9099255
+ },
{
- "x": 130.38750050000002,
- "y": -5.335074500000001
+ "x": -92.1375015,
+ "y": 26.1999255
},
{
- "x": 126.78750050000001,
- "y": -5.335074500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1320",
- "pcb_component_id": "pcb_component_136",
- "layer": "top",
- "route": [
+ "x": -89.1075015,
+ "y": 26.1999255
+ },
{
- "x": 130.38750050000002,
- "y": -2.2350744999999996
+ "x": -88.28750149999999,
+ "y": 26.9099255
},
{
- "x": 130.38750050000002,
- "y": -5.335074500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1321",
- "pcb_component_id": "pcb_component_136",
- "layer": "top",
- "route": [
+ "x": -88.7475015,
+ "y": 26.9099255
+ },
{
- "x": 126.78750050000001,
- "y": -5.335074500000001
+ "x": -88.7475015,
+ "y": 29.9699255
},
{
- "x": 126.78750050000001,
- "y": -2.2350744999999996
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1322",
- "pcb_component_id": "pcb_component_136",
- "layer": "top",
- "route": [
+ "x": -88.3075015,
+ "y": 29.9699255
+ },
+ {
+ "x": -89.09750149999999,
+ "y": 30.6799255
+ },
+ {
+ "x": -90.50750149999999,
+ "y": 30.6799255
+ },
+ {
+ "x": -90.9675015,
+ "y": 30.7099255
+ },
+ {
+ "x": -91.33750149999999,
+ "y": 30.7699255
+ },
{
- "x": 126.78750050000001,
- "y": -2.2350744999999996
+ "x": -91.6875015,
+ "y": 30.8399255
},
{
- "x": 130.38750050000002,
- "y": -2.2350744999999996
+ "x": -92.0175015,
+ "y": 31.0099255
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1323",
- "pcb_component_id": "pcb_component_136",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_83",
+ "pcb_component_id": "pcb_component_56",
"layer": "bottom",
"route": [
{
- "x": 130.1875005,
- "y": -5.185074499999999
+ "x": -73.2375015,
+ "y": 14.5311755
+ },
+ {
+ "x": -73.5475015,
+ "y": 14.811175500000001
+ },
+ {
+ "x": -73.7775015,
+ "y": 15.2511755
+ },
+ {
+ "x": -73.9175015,
+ "y": 15.561175500000001
+ },
+ {
+ "x": -74.0275015,
+ "y": 15.841175499999999
+ },
+ {
+ "x": -74.1975015,
+ "y": 16.0311755
+ },
+ {
+ "x": -74.3775015,
+ "y": 16.1411755
+ },
+ {
+ "x": -74.70750149999999,
+ "y": 16.2211755
+ },
+ {
+ "x": -77.95750149999999,
+ "y": 16.2111755
+ },
+ {
+ "x": -78.8875015,
+ "y": 16.1911755
+ },
+ {
+ "x": -79.14750149999999,
+ "y": 16.0492655
+ },
+ {
+ "x": -79.2275015,
+ "y": 15.8611755
+ },
+ {
+ "x": -79.2275015,
+ "y": 15.5511755
+ },
+ {
+ "x": -78.17750149999999,
+ "y": 15.5511755
+ },
+ {
+ "x": -78.17750149999999,
+ "y": 12.3911755
+ },
+ {
+ "x": -78.6575015,
+ "y": 12.381175500000001
+ },
+ {
+ "x": -78.5775015,
+ "y": 12.0711755
+ },
+ {
+ "x": -78.4175015,
+ "y": 11.8711755
+ },
+ {
+ "x": -78.20750149999999,
+ "y": 11.7411755
+ },
+ {
+ "x": -77.9175015,
+ "y": 11.7111755
+ },
+ {
+ "x": -74.9175015,
+ "y": 11.7011755
+ },
+ {
+ "x": -74.4875015,
+ "y": 11.6011755
+ },
+ {
+ "x": -74.17750149999999,
+ "y": 11.3911755
+ },
+ {
+ "x": -73.9375015,
+ "y": 11.0511755
+ },
+ {
+ "x": -73.84750149999999,
+ "y": 10.6311755
+ },
+ {
+ "x": -73.8375015,
+ "y": 10.2411755
+ },
+ {
+ "x": -73.0875015,
+ "y": 9.5311755
+ },
+ {
+ "x": -70.0575015,
+ "y": 9.5311755
+ },
+ {
+ "x": -69.2375015,
+ "y": 10.2411755
+ },
+ {
+ "x": -69.6975015,
+ "y": 10.2411755
+ },
+ {
+ "x": -69.6975015,
+ "y": 13.3011755
},
{
- "x": 126.98750050000001,
- "y": -5.185074499999999
+ "x": -69.25750149999999,
+ "y": 13.3011755
+ },
+ {
+ "x": -70.0475015,
+ "y": 14.0111755
+ },
+ {
+ "x": -71.45750149999999,
+ "y": 14.0111755
+ },
+ {
+ "x": -71.9175015,
+ "y": 14.0411755
+ },
+ {
+ "x": -72.28750149999999,
+ "y": 14.1011755
+ },
+ {
+ "x": -72.6375015,
+ "y": 14.1711755
+ },
+ {
+ "x": -72.9675015,
+ "y": 14.341175499999999
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1324",
- "pcb_component_id": "pcb_component_136",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_84",
+ "pcb_component_id": "pcb_component_57",
"layer": "bottom",
"route": [
{
- "x": 130.1875005,
- "y": -2.3850745000000018
+ "x": -67.3875015,
+ "y": 3.008675499999999
+ },
+ {
+ "x": -67.3875015,
+ "y": 1.8586755000000004
},
{
- "x": 130.1875005,
- "y": -5.185074499999999
+ "x": -68.6375015,
+ "y": 1.8586755000000004
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1325",
- "pcb_component_id": "pcb_component_136",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_85",
+ "pcb_component_id": "pcb_component_58",
"layer": "bottom",
"route": [
{
- "x": 130.1875005,
- "y": -2.3850745000000018
+ "x": -92.28750149999999,
+ "y": 12.1499255
+ },
+ {
+ "x": -92.59750149999999,
+ "y": 12.4299255
+ },
+ {
+ "x": -92.8275015,
+ "y": 12.8699255
+ },
+ {
+ "x": -92.9675015,
+ "y": 13.1799255
+ },
+ {
+ "x": -93.0775015,
+ "y": 13.4599255
+ },
+ {
+ "x": -93.2475015,
+ "y": 13.6499255
+ },
+ {
+ "x": -93.42750149999999,
+ "y": 13.7599255
+ },
+ {
+ "x": -93.75750149999999,
+ "y": 13.8399255
+ },
+ {
+ "x": -97.00750149999999,
+ "y": 13.829925500000002
+ },
+ {
+ "x": -97.9375015,
+ "y": 13.8099255
+ },
+ {
+ "x": -98.19750149999999,
+ "y": 13.668015500000001
+ },
+ {
+ "x": -98.2775015,
+ "y": 13.4799255
+ },
+ {
+ "x": -98.2775015,
+ "y": 13.169925500000002
},
{
- "x": 126.98750050000001,
- "y": -2.3850745000000018
+ "x": -97.22750149999999,
+ "y": 13.169925500000002
+ },
+ {
+ "x": -97.22750149999999,
+ "y": 10.009925500000001
+ },
+ {
+ "x": -97.70750149999999,
+ "y": 9.9999255
+ },
+ {
+ "x": -97.6275015,
+ "y": 9.689925500000001
+ },
+ {
+ "x": -97.4675015,
+ "y": 9.489925500000002
+ },
+ {
+ "x": -97.25750149999999,
+ "y": 9.359925500000001
+ },
+ {
+ "x": -96.9675015,
+ "y": 9.329925500000002
+ },
+ {
+ "x": -93.9675015,
+ "y": 9.3199255
+ },
+ {
+ "x": -93.53750149999999,
+ "y": 9.219925499999999
+ },
+ {
+ "x": -93.22750149999999,
+ "y": 9.0099255
+ },
+ {
+ "x": -92.9875015,
+ "y": 8.6699255
+ },
+ {
+ "x": -92.89750149999999,
+ "y": 8.2499255
+ },
+ {
+ "x": -92.8875015,
+ "y": 7.859925499999999
+ },
+ {
+ "x": -92.1375015,
+ "y": 7.149925499999998
+ },
+ {
+ "x": -89.1075015,
+ "y": 7.149925499999998
+ },
+ {
+ "x": -88.28750149999999,
+ "y": 7.859925499999999
+ },
+ {
+ "x": -88.7475015,
+ "y": 7.859925499999999
+ },
+ {
+ "x": -88.7475015,
+ "y": 10.9199255
+ },
+ {
+ "x": -88.3075015,
+ "y": 10.9199255
+ },
+ {
+ "x": -89.09750149999999,
+ "y": 11.629925499999999
+ },
+ {
+ "x": -90.50750149999999,
+ "y": 11.629925499999999
+ },
+ {
+ "x": -90.9675015,
+ "y": 11.6599255
+ },
+ {
+ "x": -91.33750149999999,
+ "y": 11.7199255
+ },
+ {
+ "x": -91.6875015,
+ "y": 11.789925499999999
+ },
+ {
+ "x": -92.0175015,
+ "y": 11.9599255
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1326",
- "pcb_component_id": "pcb_component_136",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_86",
+ "pcb_component_id": "pcb_component_59",
"layer": "bottom",
"route": [
{
- "x": 126.98750050000001,
- "y": -2.3850745000000018
+ "x": 107.7374985,
+ "y": 26.4374255
},
{
- "x": 126.98750050000001,
- "y": -5.185074499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1327",
- "pcb_component_id": "pcb_component_137",
- "layer": "top",
- "route": [
+ "x": 107.4274985,
+ "y": 26.7174255
+ },
+ {
+ "x": 107.1974985,
+ "y": 27.157425500000002
+ },
+ {
+ "x": 107.0574985,
+ "y": 27.4674255
+ },
+ {
+ "x": 106.9474985,
+ "y": 27.7474255
+ },
+ {
+ "x": 106.7774985,
+ "y": 27.9374255
+ },
+ {
+ "x": 106.5974985,
+ "y": 28.0474255
+ },
+ {
+ "x": 106.2674985,
+ "y": 28.1274255
+ },
+ {
+ "x": 103.0174985,
+ "y": 28.1174255
+ },
+ {
+ "x": 102.0874985,
+ "y": 28.0974255
+ },
+ {
+ "x": 101.8274985,
+ "y": 27.9555155
+ },
+ {
+ "x": 101.74749849999999,
+ "y": 27.7674255
+ },
+ {
+ "x": 101.74749849999999,
+ "y": 27.4574255
+ },
+ {
+ "x": 102.7974985,
+ "y": 27.4574255
+ },
+ {
+ "x": 102.7974985,
+ "y": 24.2974255
+ },
+ {
+ "x": 102.3174985,
+ "y": 24.2874255
+ },
+ {
+ "x": 102.3974985,
+ "y": 23.977425500000003
+ },
+ {
+ "x": 102.5574985,
+ "y": 23.7774255
+ },
+ {
+ "x": 102.7674985,
+ "y": 23.6474255
+ },
+ {
+ "x": 103.0574985,
+ "y": 23.6174255
+ },
+ {
+ "x": 106.0574985,
+ "y": 23.607425499999998
+ },
+ {
+ "x": 106.4874985,
+ "y": 23.5074255
+ },
+ {
+ "x": 106.7974985,
+ "y": 23.2974255
+ },
+ {
+ "x": 107.0374985,
+ "y": 22.9574255
+ },
+ {
+ "x": 107.1274985,
+ "y": 22.537425499999998
+ },
+ {
+ "x": 107.13749849999999,
+ "y": 22.1474255
+ },
+ {
+ "x": 107.88749849999999,
+ "y": 21.4374255
+ },
+ {
+ "x": 110.9174985,
+ "y": 21.4374255
+ },
+ {
+ "x": 111.7374985,
+ "y": 22.1474255
+ },
+ {
+ "x": 111.2774985,
+ "y": 22.1474255
+ },
+ {
+ "x": 111.2774985,
+ "y": 25.2074255
+ },
+ {
+ "x": 111.7174985,
+ "y": 25.2074255
+ },
+ {
+ "x": 110.9274985,
+ "y": 25.9174255
+ },
+ {
+ "x": 109.5174985,
+ "y": 25.9174255
+ },
+ {
+ "x": 109.0574985,
+ "y": 25.9474255
+ },
{
- "x": -119.0625015,
- "y": 1.0024254999999975
+ "x": 108.6874985,
+ "y": 26.0074255
},
{
- "x": -138.1125015,
- "y": 1.002425500000001
+ "x": 108.3374985,
+ "y": 26.0774255
+ },
+ {
+ "x": 108.0074985,
+ "y": 26.2474255
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1328",
- "pcb_component_id": "pcb_component_137",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_87",
+ "pcb_component_id": "pcb_component_60",
+ "layer": "bottom",
"route": [
{
- "x": -119.0625015,
- "y": 20.0524255
+ "x": -55.2175015,
+ "y": -15.669110500000002
},
{
- "x": -119.0625015,
- "y": 1.0024254999999975
+ "x": -55.2175015,
+ "y": -15.453438500000004
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1329",
- "pcb_component_id": "pcb_component_137",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_88",
+ "pcb_component_id": "pcb_component_60",
+ "layer": "bottom",
"route": [
{
- "x": -138.1125015,
- "y": 1.002425500000001
+ "x": -54.4975015,
+ "y": -15.669110500000002
},
{
- "x": -138.1125015,
- "y": 20.052425500000002
+ "x": -54.4975015,
+ "y": -15.453438500000004
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1330",
- "pcb_component_id": "pcb_component_137",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_89",
+ "pcb_component_id": "pcb_component_61",
+ "layer": "bottom",
"route": [
{
- "x": -138.1125015,
- "y": 20.052425500000002
+ "x": 126.78749850000001,
+ "y": 26.4374255
},
{
- "x": -119.0625015,
- "y": 20.0524255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1331",
- "pcb_component_id": "pcb_component_137",
- "layer": "top",
- "route": [
+ "x": 126.47749850000001,
+ "y": 26.7174255
+ },
{
- "x": -121.5875015,
- "y": 3.5274254999999997
+ "x": 126.2474985,
+ "y": 27.157425500000002
},
{
- "x": -135.5875015,
- "y": 3.5274254999999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1332",
- "pcb_component_id": "pcb_component_137",
- "layer": "top",
- "route": [
+ "x": 126.1074985,
+ "y": 27.4674255
+ },
{
- "x": -121.5875015,
- "y": 17.5274255
+ "x": 125.9974985,
+ "y": 27.7474255
},
{
- "x": -121.5875015,
- "y": 3.5274254999999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1333",
- "pcb_component_id": "pcb_component_137",
- "layer": "top",
- "route": [
+ "x": 125.8274985,
+ "y": 27.9374255
+ },
{
- "x": -135.5875015,
- "y": 3.5274254999999997
+ "x": 125.64749850000001,
+ "y": 28.0474255
},
{
- "x": -135.5875015,
- "y": 17.5274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1334",
- "pcb_component_id": "pcb_component_137",
- "layer": "top",
- "route": [
+ "x": 125.31749850000001,
+ "y": 28.1274255
+ },
{
- "x": -135.5875015,
- "y": 17.5274255
+ "x": 122.06749850000001,
+ "y": 28.1174255
},
{
- "x": -121.5875015,
- "y": 17.5274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1335",
- "pcb_component_id": "pcb_component_137",
- "layer": "top",
- "route": [
+ "x": 121.1374985,
+ "y": 28.0974255
+ },
{
- "x": -126.7875015,
- "y": 13.727425499999999
+ "x": 120.87749850000002,
+ "y": 27.9555155
},
{
- "x": -126.7875015,
- "y": 16.8274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1336",
- "pcb_component_id": "pcb_component_137",
- "layer": "top",
- "route": [
+ "x": 120.7974985,
+ "y": 27.7674255
+ },
{
- "x": -126.7875015,
- "y": 13.727425499999999
+ "x": 120.7974985,
+ "y": 27.4574255
},
{
- "x": -130.3875015,
- "y": 13.727425499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1337",
- "pcb_component_id": "pcb_component_137",
- "layer": "top",
- "route": [
+ "x": 121.84749850000001,
+ "y": 27.4574255
+ },
{
- "x": -126.7875015,
- "y": 16.8274255
+ "x": 121.84749850000001,
+ "y": 24.2974255
},
{
- "x": -130.3875015,
- "y": 16.8274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1338",
- "pcb_component_id": "pcb_component_137",
- "layer": "top",
- "route": [
+ "x": 121.36749850000001,
+ "y": 24.2874255
+ },
{
- "x": -130.3875015,
- "y": 13.727425499999999
+ "x": 121.44749850000001,
+ "y": 23.977425500000003
},
{
- "x": -130.3875015,
- "y": 16.8274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1339",
- "pcb_component_id": "pcb_component_138",
- "layer": "top",
- "route": [
+ "x": 121.6074985,
+ "y": 23.7774255
+ },
{
- "x": -100.01250149999998,
- "y": 20.0524255
+ "x": 121.81749850000001,
+ "y": 23.6474255
},
{
- "x": -119.0625015,
- "y": 20.052425500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1340",
- "pcb_component_id": "pcb_component_138",
- "layer": "top",
- "route": [
+ "x": 122.1074985,
+ "y": 23.6174255
+ },
{
- "x": -100.01250149999998,
- "y": 39.102425499999995
+ "x": 125.1074985,
+ "y": 23.607425499999998
},
{
- "x": -100.01250149999998,
- "y": 20.0524255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1341",
- "pcb_component_id": "pcb_component_138",
- "layer": "top",
- "route": [
+ "x": 125.53749850000001,
+ "y": 23.5074255
+ },
{
- "x": -119.0625015,
- "y": 20.052425500000002
+ "x": 125.84749850000001,
+ "y": 23.2974255
},
{
- "x": -119.0625015,
- "y": 39.1024255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1342",
- "pcb_component_id": "pcb_component_138",
- "layer": "top",
- "route": [
+ "x": 126.08749850000001,
+ "y": 22.9574255
+ },
{
- "x": -119.0625015,
- "y": 39.1024255
+ "x": 126.17749850000001,
+ "y": 22.537425499999998
},
{
- "x": -100.01250149999998,
- "y": 39.102425499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1343",
- "pcb_component_id": "pcb_component_138",
- "layer": "top",
- "route": [
+ "x": 126.1874985,
+ "y": 22.1474255
+ },
{
- "x": -102.53750149999999,
- "y": 22.577425499999997
+ "x": 126.9374985,
+ "y": 21.4374255
},
{
- "x": -116.53750149999999,
- "y": 22.5774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1344",
- "pcb_component_id": "pcb_component_138",
- "layer": "top",
- "route": [
+ "x": 129.9674985,
+ "y": 21.4374255
+ },
{
- "x": -102.53750149999999,
- "y": 36.5774255
+ "x": 130.7874985,
+ "y": 22.1474255
},
{
- "x": -102.53750149999999,
- "y": 22.577425499999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1345",
- "pcb_component_id": "pcb_component_138",
- "layer": "top",
- "route": [
+ "x": 130.32749850000002,
+ "y": 22.1474255
+ },
{
- "x": -116.53750149999999,
- "y": 22.5774255
+ "x": 130.32749850000002,
+ "y": 25.2074255
},
{
- "x": -116.53750149999999,
- "y": 36.577425500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1346",
- "pcb_component_id": "pcb_component_138",
- "layer": "top",
- "route": [
+ "x": 130.76749850000002,
+ "y": 25.2074255
+ },
{
- "x": -116.53750149999999,
- "y": 36.577425500000004
+ "x": 129.9774985,
+ "y": 25.9174255
},
{
- "x": -102.53750149999999,
- "y": 36.5774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1347",
- "pcb_component_id": "pcb_component_138",
- "layer": "top",
- "route": [
+ "x": 128.5674985,
+ "y": 25.9174255
+ },
{
- "x": -107.7375015,
- "y": 32.7774255
+ "x": 128.10749850000002,
+ "y": 25.9474255
},
{
- "x": -107.7375015,
- "y": 35.8774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1348",
- "pcb_component_id": "pcb_component_138",
- "layer": "top",
- "route": [
+ "x": 127.73749850000002,
+ "y": 26.0074255
+ },
{
- "x": -107.7375015,
- "y": 32.7774255
+ "x": 127.3874985,
+ "y": 26.0774255
},
{
- "x": -111.33750149999999,
- "y": 32.7774255
+ "x": 127.05749850000001,
+ "y": 26.2474255
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1349",
- "pcb_component_id": "pcb_component_138",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_90",
+ "pcb_component_id": "pcb_component_62",
+ "layer": "bottom",
"route": [
{
- "x": -107.7375015,
- "y": 35.8774255
+ "x": -43.50861100824166,
+ "y": -30.067711937510744
},
{
- "x": -111.33750149999999,
- "y": 35.8774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1350",
- "pcb_component_id": "pcb_component_138",
- "layer": "top",
- "route": [
+ "x": -43.753981559642554,
+ "y": -29.72963902746733
+ },
{
- "x": -111.33750149999999,
- "y": 32.7774255
+ "x": -43.887983409065754,
+ "y": -29.25157678847416
},
{
- "x": -111.33750149999999,
- "y": 35.8774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1351",
- "pcb_component_id": "pcb_component_139",
- "layer": "bottom",
- "route": [
+ "x": -43.96082522689341,
+ "y": -28.919320758317355
+ },
{
- "x": 63.4553345,
- "y": -10.892574500000002
+ "x": -44.0105220983557,
+ "y": -28.62262188577676
},
{
- "x": 63.2396625,
- "y": -10.892574500000002
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1352",
- "pcb_component_id": "pcb_component_139",
- "layer": "bottom",
- "route": [
+ "x": -44.13753939067584,
+ "y": -28.40156395795769
+ },
{
- "x": 63.4553345,
- "y": -10.172574500000003
+ "x": -44.290889981994034,
+ "y": -28.256706800238923
},
{
- "x": 63.2396625,
- "y": -10.172574500000003
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1353",
- "pcb_component_id": "pcb_component_139",
- "layer": "bottom",
- "route": [
+ "x": -44.5972019388916,
+ "y": -28.11017016638383
+ },
{
- "x": 64.2574985,
- "y": -10.992574500000003
+ "x": -47.778967939769075,
+ "y": -27.447625740959992
},
{
- "x": 64.2574985,
- "y": -10.072574500000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1354",
- "pcb_component_id": "pcb_component_139",
- "layer": "bottom",
- "route": [
+ "x": -48.69298795523387,
+ "y": -27.27480383456576
+ },
{
- "x": 64.2574985,
- "y": -10.072574500000002
+ "x": -48.97672068746418,
+ "y": -27.359857845412535
},
{
- "x": 62.437498500000004,
- "y": -10.072574500000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1355",
- "pcb_component_id": "pcb_component_139",
- "layer": "bottom",
- "route": [
+ "x": -49.09390037300914,
+ "y": -27.527329542709666
+ },
{
- "x": 62.437498500000004,
- "y": -10.992574500000003
+ "x": -49.1580301311385,
+ "y": -27.8306237466145
},
{
- "x": 64.2574985,
- "y": -10.992574500000003
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1356",
- "pcb_component_id": "pcb_component_139",
- "layer": "bottom",
- "route": [
+ "x": -48.13074331146083,
+ "y": -28.047837443504292
+ },
{
- "x": 62.437498500000004,
- "y": -10.072574500000002
+ "x": -48.78445310400534,
+ "y": -31.139481586534245
},
{
- "x": 62.437498500000004,
- "y": -10.992574500000003
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1357",
- "pcb_component_id": "pcb_component_139",
- "layer": "bottom",
- "route": [
+ "x": -49.25613863773313,
+ "y": -31.049967580524417
+ },
{
- "x": 63.8474985,
- "y": -10.782574500000003
+ "x": -49.24199892388705,
+ "y": -31.369811399430382
},
{
- "x": 63.8474985,
- "y": -10.282574500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1358",
- "pcb_component_id": "pcb_component_139",
- "layer": "bottom",
- "route": [
+ "x": -49.12683401743898,
+ "y": -31.59858430937124
+ },
{
- "x": 63.8474985,
- "y": -10.282574500000003
+ "x": -48.94826977788028,
+ "y": -31.76921494070929
},
{
- "x": 62.8474985,
- "y": -10.282574500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1359",
- "pcb_component_id": "pcb_component_139",
- "layer": "bottom",
- "route": [
+ "x": -48.670749047594725,
+ "y": -31.85855834707916
+ },
{
- "x": 62.8474985,
- "y": -10.782574500000003
+ "x": -45.737712550390796,
+ "y": -32.48895259361834
},
{
- "x": 63.8474985,
- "y": -10.782574500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1360",
- "pcb_component_id": "pcb_component_139",
- "layer": "bottom",
- "route": [
+ "x": -45.3377011572742,
+ "y": -32.675743614218696
+ },
{
- "x": 62.8474985,
- "y": -10.282574500000003
+ "x": -45.07784969274732,
+ "y": -32.9453307362836
},
{
- "x": 62.8474985,
- "y": -10.782574500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1361",
- "pcb_component_id": "pcb_component_140",
- "layer": "top",
- "route": [
+ "x": -44.91337714057578,
+ "y": -33.327624837182604
+ },
{
- "x": 35.1374985,
- "y": 16.0961755
+ "x": -44.912209463359325,
+ "y": -33.75715788192995
},
{
- "x": 31.5374985,
- "y": 16.0961755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1362",
- "pcb_component_id": "pcb_component_140",
- "layer": "top",
- "route": [
+ "x": -44.98310515249289,
+ "y": -34.14079025968537
+ },
{
- "x": 35.1374985,
- "y": 19.1961755
+ "x": -44.39620668585812,
+ "y": -34.99058446410297
},
{
- "x": 35.1374985,
- "y": 16.0961755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1363",
- "pcb_component_id": "pcb_component_140",
- "layer": "top",
- "route": [
+ "x": -41.431750434788256,
+ "y": -35.61740113227065
+ },
{
- "x": 31.5374985,
- "y": 16.0961755
+ "x": -40.48261051390498,
+ "y": -35.092393122250144
},
{
- "x": 31.5374985,
- "y": 19.1961755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1364",
- "pcb_component_id": "pcb_component_140",
- "layer": "top",
- "route": [
+ "x": -40.93265997776377,
+ "y": -34.997232835993664
+ },
{
- "x": 31.5374985,
- "y": 19.1961755
+ "x": -40.299637203970676,
+ "y": -32.003425532933015
},
{
- "x": 35.1374985,
- "y": 19.1961755
+ "x": -39.869155108105744,
+ "y": -32.09444841543921
+ },
+ {
+ "x": -40.49518831072824,
+ "y": -31.236379403521042
+ },
+ {
+ "x": -41.8746877542954,
+ "y": -30.944692439126186
+ },
+ {
+ "x": -42.31853111252877,
+ "y": -30.820181100878912
+ },
+ {
+ "x": -42.66811520916434,
+ "y": -30.684937027517122
+ },
+ {
+ "x": -42.99606323593092,
+ "y": -30.54404667390868
+ },
+ {
+ "x": -43.28375687595222,
+ "y": -30.30945688408122
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1365",
- "pcb_component_id": "pcb_component_140",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_91",
+ "pcb_component_id": "pcb_component_63",
"layer": "bottom",
"route": [
{
- "x": 34.937498500000004,
- "y": 16.2461755
+ "x": 132.63750050000002,
+ "y": 14.914925499999999
+ },
+ {
+ "x": 132.63750050000002,
+ "y": 13.764925499999999
},
{
- "x": 31.7374985,
- "y": 16.2461755
+ "x": 131.38750050000002,
+ "y": 13.764925499999999
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1366",
- "pcb_component_id": "pcb_component_140",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_92",
+ "pcb_component_id": "pcb_component_64",
"layer": "bottom",
"route": [
{
- "x": 34.937498500000004,
- "y": 19.0461755
+ "x": -67.3875015,
+ "y": 41.1086755
+ },
+ {
+ "x": -67.3875015,
+ "y": 39.9586755
},
{
- "x": 34.937498500000004,
- "y": 16.2461755
+ "x": -68.6375015,
+ "y": 39.9586755
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1367",
- "pcb_component_id": "pcb_component_140",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_93",
+ "pcb_component_id": "pcb_component_65",
"layer": "bottom",
"route": [
{
- "x": 34.937498500000004,
- "y": 19.0461755
+ "x": 94.53750050000001,
+ "y": 0.6274254999999975
+ },
+ {
+ "x": 94.53750050000001,
+ "y": -0.522574500000001
},
{
- "x": 31.7374985,
- "y": 19.0461755
+ "x": 93.28750050000001,
+ "y": -0.522574500000001
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1368",
- "pcb_component_id": "pcb_component_140",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_94",
+ "pcb_component_id": "pcb_component_66",
"layer": "bottom",
"route": [
{
- "x": 31.7374985,
- "y": 19.0461755
+ "x": 19.802500500000004,
+ "y": 37.8823165
},
{
- "x": 31.7374985,
- "y": 16.2461755
+ "x": 19.802500500000004,
+ "y": 37.5750345
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1369",
- "pcb_component_id": "pcb_component_141",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_95",
+ "pcb_component_id": "pcb_component_66",
+ "layer": "bottom",
"route": [
{
- "x": -69.6375015,
- "y": 20.8586755
+ "x": 19.042500500000006,
+ "y": 37.8823165
},
{
- "x": -73.2375015,
- "y": 20.8586755
+ "x": 19.042500500000006,
+ "y": 37.5750345
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1370",
- "pcb_component_id": "pcb_component_141",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_96",
+ "pcb_component_id": "pcb_component_67",
+ "layer": "bottom",
"route": [
{
- "x": -69.6375015,
- "y": 23.9586755
+ "x": 31.5374985,
+ "y": 28.818675499999998
},
{
- "x": -69.6375015,
- "y": 20.8586755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1371",
- "pcb_component_id": "pcb_component_141",
- "layer": "top",
- "route": [
+ "x": 31.227498500000003,
+ "y": 29.0986755
+ },
{
- "x": -73.2375015,
- "y": 20.8586755
+ "x": 30.997498500000003,
+ "y": 29.5386755
},
{
- "x": -73.2375015,
- "y": 23.9586755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1372",
- "pcb_component_id": "pcb_component_141",
- "layer": "top",
- "route": [
+ "x": 30.857498500000002,
+ "y": 29.8486755
+ },
{
- "x": -73.2375015,
- "y": 23.9586755
+ "x": 30.747498500000003,
+ "y": 30.1286755
},
{
- "x": -69.6375015,
- "y": 23.9586755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1373",
- "pcb_component_id": "pcb_component_141",
- "layer": "bottom",
- "route": [
+ "x": 30.577498500000004,
+ "y": 30.3186755
+ },
{
- "x": -69.8375015,
- "y": 21.0086755
+ "x": 30.3974985,
+ "y": 30.4286755
},
{
- "x": -73.03750149999999,
- "y": 21.0086755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1374",
- "pcb_component_id": "pcb_component_141",
- "layer": "bottom",
- "route": [
+ "x": 30.067498500000003,
+ "y": 30.508675500000003
+ },
{
- "x": -69.8375015,
- "y": 23.8086755
+ "x": 26.817498500000003,
+ "y": 30.4986755
},
{
- "x": -69.8375015,
- "y": 21.0086755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1375",
- "pcb_component_id": "pcb_component_141",
- "layer": "bottom",
- "route": [
+ "x": 25.887498500000003,
+ "y": 30.4786755
+ },
{
- "x": -69.8375015,
- "y": 23.8086755
+ "x": 25.6274985,
+ "y": 30.336765500000002
},
{
- "x": -73.03750149999999,
- "y": 23.8086755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1376",
- "pcb_component_id": "pcb_component_141",
- "layer": "bottom",
- "route": [
+ "x": 25.547498500000003,
+ "y": 30.148675500000003
+ },
{
- "x": -73.03750149999999,
- "y": 23.8086755
+ "x": 25.547498500000003,
+ "y": 29.8386755
},
{
- "x": -73.03750149999999,
- "y": 21.0086755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1377",
- "pcb_component_id": "pcb_component_142",
- "layer": "top",
- "route": [
+ "x": 26.5974985,
+ "y": 29.8386755
+ },
{
- "x": 16.087498500000002,
- "y": 6.571175499999999
+ "x": 26.5974985,
+ "y": 26.6786755
},
{
- "x": 12.487498500000003,
- "y": 6.571175499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1378",
- "pcb_component_id": "pcb_component_142",
- "layer": "top",
- "route": [
+ "x": 26.117498500000004,
+ "y": 26.6686755
+ },
{
- "x": 16.087498500000002,
- "y": 9.6711755
+ "x": 26.197498500000002,
+ "y": 26.3586755
},
{
- "x": 16.087498500000002,
- "y": 6.571175499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1379",
- "pcb_component_id": "pcb_component_142",
- "layer": "top",
- "route": [
+ "x": 26.357498500000002,
+ "y": 26.1586755
+ },
{
- "x": 12.487498500000003,
- "y": 6.571175499999999
+ "x": 26.567498500000003,
+ "y": 26.028675500000002
},
{
- "x": 12.487498500000004,
- "y": 9.6711755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1380",
- "pcb_component_id": "pcb_component_142",
- "layer": "top",
- "route": [
+ "x": 26.857498500000002,
+ "y": 25.9986755
+ },
{
- "x": 12.487498500000004,
- "y": 9.6711755
+ "x": 29.857498500000002,
+ "y": 25.9886755
},
{
- "x": 16.087498500000002,
- "y": 9.6711755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1381",
- "pcb_component_id": "pcb_component_142",
- "layer": "bottom",
- "route": [
+ "x": 30.2874985,
+ "y": 25.888675499999998
+ },
{
- "x": 15.887498500000003,
- "y": 6.721175499999999
+ "x": 30.5974985,
+ "y": 25.6786755
},
{
- "x": 12.687498500000004,
- "y": 6.721175499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1382",
- "pcb_component_id": "pcb_component_142",
- "layer": "bottom",
- "route": [
+ "x": 30.837498500000002,
+ "y": 25.3386755
+ },
{
- "x": 15.887498500000003,
- "y": 9.5211755
+ "x": 30.927498500000002,
+ "y": 24.9186755
},
{
- "x": 15.887498500000003,
- "y": 6.721175499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1383",
- "pcb_component_id": "pcb_component_142",
- "layer": "bottom",
- "route": [
+ "x": 30.9374985,
+ "y": 24.5286755
+ },
{
- "x": 15.887498500000003,
- "y": 9.5211755
+ "x": 31.6874985,
+ "y": 23.818675499999998
},
{
- "x": 12.687498500000004,
- "y": 9.5211755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1384",
- "pcb_component_id": "pcb_component_142",
- "layer": "bottom",
- "route": [
+ "x": 34.717498500000005,
+ "y": 23.818675499999998
+ },
+ {
+ "x": 35.5374985,
+ "y": 24.5286755
+ },
+ {
+ "x": 35.077498500000004,
+ "y": 24.5286755
+ },
+ {
+ "x": 35.077498500000004,
+ "y": 27.5886755
+ },
+ {
+ "x": 35.5174985,
+ "y": 27.5886755
+ },
+ {
+ "x": 34.7274985,
+ "y": 28.2986755
+ },
+ {
+ "x": 33.3174985,
+ "y": 28.2986755
+ },
+ {
+ "x": 32.857498500000005,
+ "y": 28.3286755
+ },
+ {
+ "x": 32.4874985,
+ "y": 28.388675499999998
+ },
{
- "x": 12.687498500000004,
- "y": 9.5211755
+ "x": 32.1374985,
+ "y": 28.4586755
},
{
- "x": 12.687498500000004,
- "y": 6.721175499999999
+ "x": 31.8074985,
+ "y": 28.6286755
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1385",
- "pcb_component_id": "pcb_component_143",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_97",
+ "pcb_component_id": "pcb_component_68",
"layer": "bottom",
"route": [
{
- "x": -22.976142499999998,
- "y": 38.2324255
+ "x": -19.037501499999998,
+ "y": 37.9010665
},
{
- "x": -22.668860499999997,
- "y": 38.2324255
+ "x": -19.037501499999998,
+ "y": 37.5937845
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1386",
- "pcb_component_id": "pcb_component_143",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_98",
+ "pcb_component_id": "pcb_component_68",
"layer": "bottom",
"route": [
{
- "x": -22.976142499999998,
- "y": 37.4724255
+ "x": -19.797501499999996,
+ "y": 37.9010665
},
{
- "x": -22.668860499999997,
- "y": 37.4724255
+ "x": -19.797501499999996,
+ "y": 37.5937845
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1387",
- "pcb_component_id": "pcb_component_143",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_99",
+ "pcb_component_id": "pcb_component_69",
"layer": "bottom",
"route": [
{
- "x": -23.752501499999997,
- "y": 38.3224255
+ "x": -73.2375015,
+ "y": 33.5811755
},
{
- "x": -23.752501499999997,
- "y": 37.3824255
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1388",
- "pcb_component_id": "pcb_component_143",
- "layer": "bottom",
- "route": [
+ "x": -73.5475015,
+ "y": 33.8611755
+ },
{
- "x": -23.752501499999997,
- "y": 37.3824255
+ "x": -73.7775015,
+ "y": 34.3011755
},
{
- "x": -21.892501499999998,
- "y": 37.3824255
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1389",
- "pcb_component_id": "pcb_component_143",
- "layer": "bottom",
- "route": [
+ "x": -73.9175015,
+ "y": 34.6111755
+ },
{
- "x": -21.892501499999998,
- "y": 38.3224255
+ "x": -74.0275015,
+ "y": 34.8911755
},
{
- "x": -23.752501499999997,
- "y": 38.3224255
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1390",
- "pcb_component_id": "pcb_component_143",
- "layer": "bottom",
- "route": [
+ "x": -74.1975015,
+ "y": 35.0811755
+ },
{
- "x": -21.892501499999998,
- "y": 37.3824255
+ "x": -74.3775015,
+ "y": 35.1911755
},
{
- "x": -21.892501499999998,
- "y": 38.3224255
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1391",
- "pcb_component_id": "pcb_component_143",
- "layer": "bottom",
- "route": [
+ "x": -74.70750149999999,
+ "y": 35.2711755
+ },
{
- "x": -23.347501499999996,
- "y": 38.1224255
+ "x": -77.95750149999999,
+ "y": 35.2611755
},
{
- "x": -23.347501499999996,
- "y": 37.5824255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1392",
- "pcb_component_id": "pcb_component_143",
- "layer": "bottom",
- "route": [
+ "x": -78.8875015,
+ "y": 35.2411755
+ },
{
- "x": -23.347501499999996,
- "y": 37.5824255
+ "x": -79.14750149999999,
+ "y": 35.0992655
},
{
- "x": -22.2975015,
- "y": 37.5824255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1393",
- "pcb_component_id": "pcb_component_143",
- "layer": "bottom",
- "route": [
+ "x": -79.2275015,
+ "y": 34.9111755
+ },
{
- "x": -22.2975015,
- "y": 38.1224255
+ "x": -79.2275015,
+ "y": 34.6011755
},
{
- "x": -23.347501499999996,
- "y": 38.1224255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1394",
- "pcb_component_id": "pcb_component_143",
- "layer": "bottom",
- "route": [
+ "x": -78.17750149999999,
+ "y": 34.6011755
+ },
{
- "x": -22.2975015,
- "y": 37.5824255
+ "x": -78.17750149999999,
+ "y": 31.4411755
},
{
- "x": -22.2975015,
- "y": 38.1224255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1395",
- "pcb_component_id": "pcb_component_144",
- "layer": "bottom",
- "route": [
+ "x": -78.6575015,
+ "y": 31.431175500000002
+ },
{
- "x": -69.3953375,
- "y": -11.586274500000002
+ "x": -78.5775015,
+ "y": 31.1211755
},
{
- "x": -69.17966549999998,
- "y": -11.586274500000002
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1396",
- "pcb_component_id": "pcb_component_144",
- "layer": "bottom",
- "route": [
+ "x": -78.4175015,
+ "y": 30.9211755
+ },
{
- "x": -69.3953375,
- "y": -12.3062745
+ "x": -78.20750149999999,
+ "y": 30.7911755
},
{
- "x": -69.17966549999998,
- "y": -12.3062745
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1397",
- "pcb_component_id": "pcb_component_144",
- "layer": "bottom",
- "route": [
+ "x": -77.9175015,
+ "y": 30.7611755
+ },
{
- "x": -70.19750149999999,
- "y": -11.4862745
+ "x": -74.9175015,
+ "y": 30.7511755
},
{
- "x": -70.19750149999999,
- "y": -12.406274500000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1398",
- "pcb_component_id": "pcb_component_144",
- "layer": "bottom",
- "route": [
+ "x": -74.4875015,
+ "y": 30.6511755
+ },
{
- "x": -70.19750149999999,
- "y": -12.406274500000002
+ "x": -74.17750149999999,
+ "y": 30.4411755
},
{
- "x": -68.3775015,
- "y": -12.406274500000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1399",
- "pcb_component_id": "pcb_component_144",
- "layer": "bottom",
- "route": [
+ "x": -73.9375015,
+ "y": 30.1011755
+ },
+ {
+ "x": -73.84750149999999,
+ "y": 29.6811755
+ },
+ {
+ "x": -73.8375015,
+ "y": 29.2911755
+ },
+ {
+ "x": -73.0875015,
+ "y": 28.5811755
+ },
+ {
+ "x": -70.0575015,
+ "y": 28.5811755
+ },
+ {
+ "x": -69.2375015,
+ "y": 29.2911755
+ },
+ {
+ "x": -69.6975015,
+ "y": 29.2911755
+ },
+ {
+ "x": -69.6975015,
+ "y": 32.3511755
+ },
+ {
+ "x": -69.25750149999999,
+ "y": 32.3511755
+ },
+ {
+ "x": -70.0475015,
+ "y": 33.0611755
+ },
+ {
+ "x": -71.45750149999999,
+ "y": 33.0611755
+ },
+ {
+ "x": -71.9175015,
+ "y": 33.0911755
+ },
+ {
+ "x": -72.28750149999999,
+ "y": 33.1511755
+ },
{
- "x": -68.3775015,
- "y": -11.4862745
+ "x": -72.6375015,
+ "y": 33.2211755
},
{
- "x": -70.19750149999999,
- "y": -11.4862745
+ "x": -72.9675015,
+ "y": 33.3911755
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1400",
- "pcb_component_id": "pcb_component_144",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_100",
+ "pcb_component_id": "pcb_component_70",
"layer": "bottom",
"route": [
{
- "x": -68.3775015,
- "y": -12.406274500000002
+ "x": -124.5375015,
+ "y": 14.914925499999999
},
{
- "x": -68.3775015,
- "y": -11.4862745
+ "x": -124.5375015,
+ "y": 13.764925499999999
+ },
+ {
+ "x": -125.7875015,
+ "y": 13.764925499999999
}
],
"stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1401",
- "pcb_component_id": "pcb_component_144",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_101",
+ "pcb_component_id": "pcb_component_71",
"layer": "bottom",
"route": [
{
- "x": -69.78750149999999,
- "y": -11.696274500000001
+ "x": -75.29114249999999,
+ "y": -20.9312745
},
{
- "x": -69.78750149999999,
- "y": -12.196274500000001
+ "x": -74.9838605,
+ "y": -20.9312745
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1402",
- "pcb_component_id": "pcb_component_144",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_102",
+ "pcb_component_id": "pcb_component_71",
"layer": "bottom",
"route": [
{
- "x": -69.78750149999999,
- "y": -12.196274500000001
+ "x": -75.29114249999999,
+ "y": -21.691274500000006
},
{
- "x": -68.78750149999999,
- "y": -12.196274500000001
+ "x": -74.9838605,
+ "y": -21.691274500000006
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1403",
- "pcb_component_id": "pcb_component_144",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_103",
+ "pcb_component_id": "pcb_component_72",
"layer": "bottom",
"route": [
{
- "x": -68.78750149999999,
- "y": -11.696274500000001
+ "x": 18.337498500000002,
+ "y": 26.8211755
+ },
+ {
+ "x": 18.337498500000002,
+ "y": 25.6711755
},
{
- "x": -69.78750149999999,
- "y": -11.696274500000001
+ "x": 17.087498500000002,
+ "y": 25.6711755
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1404",
- "pcb_component_id": "pcb_component_144",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_104",
+ "pcb_component_id": "pcb_component_73",
"layer": "bottom",
"route": [
{
- "x": -68.78750149999999,
- "y": -12.196274500000001
+ "x": 50.58749850000001,
+ "y": 12.1499255
},
{
- "x": -68.78750149999999,
- "y": -11.696274500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1405",
- "pcb_component_id": "pcb_component_145",
- "layer": "top",
- "route": [
+ "x": 50.27749850000001,
+ "y": 12.4299255
+ },
{
- "x": 138.11249850000002,
- "y": 1.0024254999999975
+ "x": 50.0474985,
+ "y": 12.8699255
},
{
- "x": 119.0624985,
- "y": 1.002425500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1406",
- "pcb_component_id": "pcb_component_145",
- "layer": "top",
- "route": [
+ "x": 49.9074985,
+ "y": 13.1799255
+ },
{
- "x": 138.11249850000002,
- "y": 20.0524255
+ "x": 49.7974985,
+ "y": 13.4599255
},
{
- "x": 138.11249850000002,
- "y": 1.0024254999999975
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1407",
- "pcb_component_id": "pcb_component_145",
- "layer": "top",
- "route": [
+ "x": 49.62749850000001,
+ "y": 13.6499255
+ },
{
- "x": 119.0624985,
- "y": 1.002425500000001
+ "x": 49.44749850000001,
+ "y": 13.7599255
},
{
- "x": 119.0624985,
- "y": 20.052425500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1408",
- "pcb_component_id": "pcb_component_145",
- "layer": "top",
- "route": [
+ "x": 49.1174985,
+ "y": 13.8399255
+ },
{
- "x": 119.0624985,
- "y": 20.052425500000002
+ "x": 45.86749850000001,
+ "y": 13.829925500000002
},
{
- "x": 138.11249850000002,
- "y": 20.0524255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1409",
- "pcb_component_id": "pcb_component_145",
- "layer": "top",
- "route": [
+ "x": 44.937498500000004,
+ "y": 13.8099255
+ },
{
- "x": 135.5874985,
- "y": 3.5274254999999997
+ "x": 44.677498500000006,
+ "y": 13.668015500000001
},
{
- "x": 121.58749850000001,
- "y": 3.5274254999999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1410",
- "pcb_component_id": "pcb_component_145",
- "layer": "top",
- "route": [
+ "x": 44.59749850000001,
+ "y": 13.4799255
+ },
{
- "x": 135.5874985,
- "y": 17.5274255
+ "x": 44.59749850000001,
+ "y": 13.169925500000002
},
{
- "x": 135.5874985,
- "y": 3.5274254999999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1411",
- "pcb_component_id": "pcb_component_145",
- "layer": "top",
- "route": [
+ "x": 45.647498500000005,
+ "y": 13.169925500000002
+ },
{
- "x": 121.58749850000001,
- "y": 3.5274254999999997
+ "x": 45.647498500000005,
+ "y": 10.009925500000001
},
{
- "x": 121.58749850000001,
- "y": 17.5274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1412",
- "pcb_component_id": "pcb_component_145",
- "layer": "top",
- "route": [
+ "x": 45.16749850000001,
+ "y": 9.9999255
+ },
{
- "x": 121.58749850000001,
- "y": 17.5274255
+ "x": 45.247498500000006,
+ "y": 9.689925500000001
},
{
- "x": 135.5874985,
- "y": 17.5274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1413",
- "pcb_component_id": "pcb_component_145",
- "layer": "top",
- "route": [
+ "x": 45.4074985,
+ "y": 9.489925500000002
+ },
{
- "x": 130.38749850000002,
- "y": 13.727425499999999
+ "x": 45.6174985,
+ "y": 9.359925500000001
},
{
- "x": 130.38749850000002,
- "y": 16.8274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1414",
- "pcb_component_id": "pcb_component_145",
- "layer": "top",
- "route": [
+ "x": 45.9074985,
+ "y": 9.329925500000002
+ },
{
- "x": 130.38749850000002,
- "y": 13.727425499999999
+ "x": 48.9074985,
+ "y": 9.3199255
},
{
- "x": 126.78749850000001,
- "y": 13.727425499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1415",
- "pcb_component_id": "pcb_component_145",
- "layer": "top",
- "route": [
+ "x": 49.33749850000001,
+ "y": 9.219925499999999
+ },
{
- "x": 130.38749850000002,
- "y": 16.8274255
+ "x": 49.647498500000005,
+ "y": 9.0099255
},
{
- "x": 126.78749850000001,
- "y": 16.8274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1416",
- "pcb_component_id": "pcb_component_145",
- "layer": "top",
- "route": [
+ "x": 49.88749850000001,
+ "y": 8.6699255
+ },
{
- "x": 126.78749850000001,
- "y": 13.727425499999999
+ "x": 49.9774985,
+ "y": 8.2499255
},
{
- "x": 126.78749850000001,
- "y": 16.8274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1417",
- "pcb_component_id": "pcb_component_146",
- "layer": "bottom",
- "route": [
+ "x": 49.98749850000001,
+ "y": 7.859925499999999
+ },
{
- "x": -16.807501499999994,
- "y": 33.8974255
+ "x": 50.73749850000001,
+ "y": 7.149925499999998
},
{
- "x": -16.807501499999994,
- "y": 40.3974255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1418",
- "pcb_component_id": "pcb_component_146",
- "layer": "bottom",
- "route": [
+ "x": 53.7674985,
+ "y": 7.149925499999998
+ },
{
- "x": -7.767501499999996,
- "y": 40.3974255
+ "x": 54.58749850000001,
+ "y": 7.859925499999999
},
{
- "x": -16.807501499999994,
- "y": 40.3974255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1419",
- "pcb_component_id": "pcb_component_146",
- "layer": "bottom",
- "route": [
+ "x": 54.12749850000001,
+ "y": 7.859925499999999
+ },
{
- "x": -7.767501499999996,
- "y": 33.8974255
+ "x": 54.12749850000001,
+ "y": 10.9199255
},
{
- "x": -16.807501499999994,
- "y": 33.8974255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1420",
- "pcb_component_id": "pcb_component_146",
- "layer": "bottom",
- "route": [
+ "x": 54.567498500000006,
+ "y": 10.9199255
+ },
+ {
+ "x": 53.77749850000001,
+ "y": 11.629925499999999
+ },
+ {
+ "x": 52.3674985,
+ "y": 11.629925499999999
+ },
+ {
+ "x": 51.9074985,
+ "y": 11.6599255
+ },
+ {
+ "x": 51.537498500000005,
+ "y": 11.7199255
+ },
{
- "x": -7.767501499999996,
- "y": 33.8974255
+ "x": 51.187498500000004,
+ "y": 11.789925499999999
},
{
- "x": -7.767501499999996,
- "y": 40.3974255
+ "x": 50.857498500000005,
+ "y": 11.9599255
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1421",
- "pcb_component_id": "pcb_component_146",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_105",
+ "pcb_component_id": "pcb_component_75",
+ "layer": "bottom",
"route": [
{
- "x": -16.807501499999994,
- "y": 33.8974255
+ "x": 28.407498500000006,
+ "y": 20.1674255
},
{
- "x": -16.807501499999994,
- "y": 40.3974255
+ "x": 28.407498500000006,
+ "y": 18.9674255
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1422",
- "pcb_component_id": "pcb_component_146",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_106",
+ "pcb_component_id": "pcb_component_75",
+ "layer": "bottom",
"route": [
{
- "x": -7.767501499999996,
- "y": 40.3974255
+ "x": 26.447498500000005,
+ "y": 18.9674255
},
{
- "x": -16.807501499999994,
- "y": 40.3974255
+ "x": 28.407498500000006,
+ "y": 18.9674255
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1423",
- "pcb_component_id": "pcb_component_146",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_107",
+ "pcb_component_id": "pcb_component_75",
+ "layer": "bottom",
"route": [
{
- "x": -7.767501499999996,
- "y": 33.8974255
+ "x": 26.447498500000005,
+ "y": 20.1674255
},
{
- "x": -16.807501499999994,
- "y": 33.8974255
+ "x": 28.407498500000006,
+ "y": 20.1674255
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1424",
- "pcb_component_id": "pcb_component_146",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_108",
+ "pcb_component_id": "pcb_component_76",
+ "layer": "bottom",
"route": [
{
- "x": -7.767501499999996,
- "y": 33.8974255
+ "x": 113.5875005,
+ "y": 14.914925499999999
+ },
+ {
+ "x": 113.5875005,
+ "y": 13.764925499999999
},
{
- "x": -7.767501499999996,
- "y": 40.3974255
+ "x": 112.3375005,
+ "y": 13.764925499999999
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1425",
- "pcb_component_id": "pcb_component_146",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_109",
+ "pcb_component_id": "pcb_component_77",
"layer": "bottom",
"route": [
{
- "x": -16.807501499999994,
- "y": 40.3974255
+ "x": 22.152498500000004,
+ "y": 32.5437255
},
{
- "x": -16.807501499999994,
- "y": 41.9974255
+ "x": 23.152498500000004,
+ "y": 32.5437255
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1426",
- "pcb_component_id": "pcb_component_146",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_110",
+ "pcb_component_id": "pcb_component_77",
"layer": "bottom",
"route": [
{
- "x": -16.807501499999994,
- "y": 40.3974255
+ "x": 22.152498500000004,
+ "y": 35.3437255
},
{
- "x": -7.767501499999996,
- "y": 40.3974255
+ "x": 23.452498500000004,
+ "y": 35.3437255
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1427",
- "pcb_component_id": "pcb_component_146",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_111",
+ "pcb_component_id": "pcb_component_78",
"layer": "bottom",
"route": [
{
- "x": -7.767501499999996,
- "y": 41.9974255
+ "x": -78.17750149999999,
+ "y": -9.246215500000002
},
{
- "x": -16.807501499999994,
- "y": 41.9974255
+ "x": -78.17750149999999,
+ "y": -8.938933500000001
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1428",
- "pcb_component_id": "pcb_component_146",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_112",
+ "pcb_component_id": "pcb_component_78",
"layer": "bottom",
"route": [
{
- "x": -7.767501499999996,
- "y": 40.3974255
+ "x": -77.4175015,
+ "y": -9.246215500000002
},
{
- "x": -7.767501499999996,
- "y": 41.9974255
+ "x": -77.4175015,
+ "y": -8.938933500000001
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1429",
- "pcb_component_id": "pcb_component_147",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_113",
+ "pcb_component_id": "pcb_component_79",
"layer": "bottom",
"route": [
{
- "x": -40.27750149999999,
- "y": -18.4291105
+ "x": 132.63750050000002,
+ "y": 33.9649255
},
{
- "x": -40.27750149999999,
- "y": -18.213438500000002
+ "x": 132.63750050000002,
+ "y": 32.8149255
+ },
+ {
+ "x": 131.38750050000002,
+ "y": 32.8149255
}
],
- "stroke_width": 0.12
+ "stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1430",
- "pcb_component_id": "pcb_component_147",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_114",
+ "pcb_component_id": "pcb_component_80",
"layer": "bottom",
"route": [
{
- "x": -39.557501499999994,
- "y": -18.4291105
+ "x": -111.33750149999999,
+ "y": 7.387425499999999
},
{
- "x": -39.557501499999994,
- "y": -18.213438500000002
+ "x": -111.64750149999999,
+ "y": 7.6674255
+ },
+ {
+ "x": -111.8775015,
+ "y": 8.1074255
+ },
+ {
+ "x": -112.0175015,
+ "y": 8.4174255
+ },
+ {
+ "x": -112.1275015,
+ "y": 8.6974255
+ },
+ {
+ "x": -112.2975015,
+ "y": 8.8874255
+ },
+ {
+ "x": -112.47750149999999,
+ "y": 8.9974255
+ },
+ {
+ "x": -112.80750149999999,
+ "y": 9.0774255
+ },
+ {
+ "x": -116.05750149999999,
+ "y": 9.0674255
+ },
+ {
+ "x": -116.9875015,
+ "y": 9.047425500000001
+ },
+ {
+ "x": -117.24750149999998,
+ "y": 8.9055155
+ },
+ {
+ "x": -117.3275015,
+ "y": 8.717425500000001
+ },
+ {
+ "x": -117.3275015,
+ "y": 8.4074255
+ },
+ {
+ "x": -116.27750149999999,
+ "y": 8.4074255
+ },
+ {
+ "x": -116.27750149999999,
+ "y": 5.2474254999999985
+ },
+ {
+ "x": -116.75750149999999,
+ "y": 5.2374255000000005
+ },
+ {
+ "x": -116.67750149999999,
+ "y": 4.927425500000002
+ },
+ {
+ "x": -116.5175015,
+ "y": 4.7274255000000025
+ },
+ {
+ "x": -116.30750149999999,
+ "y": 4.5974255
+ },
+ {
+ "x": -116.0175015,
+ "y": 4.567425499999999
+ },
+ {
+ "x": -113.0175015,
+ "y": 4.557425500000001
+ },
+ {
+ "x": -112.58750149999999,
+ "y": 4.457425499999999
+ },
+ {
+ "x": -112.27750149999999,
+ "y": 4.2474254999999985
+ },
+ {
+ "x": -112.03750149999999,
+ "y": 3.9074254999999987
+ },
+ {
+ "x": -111.94750149999999,
+ "y": 3.4874255000000005
+ },
+ {
+ "x": -111.9375015,
+ "y": 3.0974255
+ },
+ {
+ "x": -111.1875015,
+ "y": 2.387425499999999
+ },
+ {
+ "x": -108.1575015,
+ "y": 2.387425499999999
+ },
+ {
+ "x": -107.33750149999999,
+ "y": 3.0974255
+ },
+ {
+ "x": -107.7975015,
+ "y": 3.0974255
+ },
+ {
+ "x": -107.7975015,
+ "y": 6.157425499999999
+ },
+ {
+ "x": -107.35750149999998,
+ "y": 6.157425499999999
+ },
+ {
+ "x": -108.14750149999999,
+ "y": 6.8674254999999995
+ },
+ {
+ "x": -109.55750149999999,
+ "y": 6.8674254999999995
+ },
+ {
+ "x": -110.0175015,
+ "y": 6.897425500000001
+ },
+ {
+ "x": -110.38750149999998,
+ "y": 6.957425499999999
+ },
+ {
+ "x": -110.7375015,
+ "y": 7.0274255
+ },
+ {
+ "x": -111.06750149999999,
+ "y": 7.1974255
}
],
- "stroke_width": 0.12
+ "stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1431",
- "pcb_component_id": "pcb_component_147",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_115",
+ "pcb_component_id": "pcb_component_81",
"layer": "bottom",
"route": [
{
- "x": -40.377501499999994,
- "y": -19.231274499999998
+ "x": 57.062500500000006,
+ "y": -14.9134885
},
{
- "x": -39.45750149999999,
- "y": -19.231274499999998
+ "x": 57.062500500000006,
+ "y": -15.129160499999998
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1432",
- "pcb_component_id": "pcb_component_147",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_116",
+ "pcb_component_id": "pcb_component_81",
"layer": "bottom",
"route": [
{
- "x": -39.45750149999999,
- "y": -19.231274499999998
+ "x": 56.34250050000001,
+ "y": -14.9134885
},
{
- "x": -39.45750149999999,
- "y": -17.411274500000005
+ "x": 56.34250050000001,
+ "y": -15.129160499999998
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1433",
- "pcb_component_id": "pcb_component_147",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_117",
+ "pcb_component_id": "pcb_component_82",
"layer": "bottom",
"route": [
{
- "x": -40.377501499999994,
- "y": -17.411274500000005
+ "x": -86.4375015,
+ "y": 0.6274254999999975
+ },
+ {
+ "x": -86.4375015,
+ "y": -0.522574500000001
},
{
- "x": -40.377501499999994,
- "y": -19.231274499999998
+ "x": -87.6875015,
+ "y": -0.522574500000001
}
],
"stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1434",
- "pcb_component_id": "pcb_component_147",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_118",
+ "pcb_component_id": "pcb_component_83",
"layer": "bottom",
"route": [
{
- "x": -39.45750149999999,
- "y": -17.411274500000005
+ "x": -21.637932307340627,
+ "y": -23.960961301015537
},
{
- "x": -40.377501499999994,
- "y": -17.411274500000005
+ "x": -20.586377688622594,
+ "y": -24.42650709237528
+ },
+ {
+ "x": -21.092405722709273,
+ "y": -25.569501243155756
}
],
"stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1435",
- "pcb_component_id": "pcb_component_147",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_119",
+ "pcb_component_id": "pcb_component_84",
"layer": "bottom",
"route": [
{
- "x": -40.16750149999999,
- "y": -18.8212745
+ "x": -67.1203375,
+ "y": -17.8225745
},
{
- "x": -39.66750149999999,
- "y": -18.8212745
+ "x": -66.9046655,
+ "y": -17.8225745
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1436",
- "pcb_component_id": "pcb_component_147",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_120",
+ "pcb_component_id": "pcb_component_84",
"layer": "bottom",
"route": [
{
- "x": -39.66750149999999,
- "y": -18.8212745
+ "x": -67.1203375,
+ "y": -18.5425745
},
{
- "x": -39.66750149999999,
- "y": -17.8212745
+ "x": -66.9046655,
+ "y": -18.5425745
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1437",
- "pcb_component_id": "pcb_component_147",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_121",
+ "pcb_component_id": "pcb_component_85",
"layer": "bottom",
"route": [
{
- "x": -40.16750149999999,
- "y": -17.8212745
+ "x": 76.30250050000001,
+ "y": -25.4813245
},
{
- "x": -40.16750149999999,
- "y": -18.8212745
+ "x": 72.30250050000001,
+ "y": -25.4813245
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1438",
- "pcb_component_id": "pcb_component_147",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_122",
+ "pcb_component_id": "pcb_component_85",
"layer": "bottom",
"route": [
{
- "x": -39.66750149999999,
- "y": -17.8212745
+ "x": 76.30250050000001,
+ "y": -22.181324500000002
},
{
- "x": -40.16750149999999,
- "y": -17.8212745
+ "x": 76.30250050000001,
+ "y": -25.4813245
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1439",
- "pcb_component_id": "pcb_component_148",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_123",
+ "pcb_component_id": "pcb_component_86",
"layer": "bottom",
"route": [
{
- "x": 104.14749850000001,
- "y": 33.7574255
+ "x": 56.4375005,
+ "y": 38.727425499999995
},
{
- "x": 104.14749850000001,
- "y": 34.3574255
+ "x": 56.4375005,
+ "y": 37.577425500000004
+ },
+ {
+ "x": 55.1875005,
+ "y": 37.577425500000004
}
],
- "stroke_width": 0.12
+ "stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1440",
- "pcb_component_id": "pcb_component_148",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_124",
+ "pcb_component_id": "pcb_component_87",
"layer": "bottom",
"route": [
{
- "x": 103.44749850000001,
- "y": 35.0574255
+ "x": -130.3875015,
+ "y": -11.662574499999998
},
{
- "x": 102.0474985,
- "y": 35.0574255
+ "x": -130.69750150000002,
+ "y": -11.382574499999997
+ },
+ {
+ "x": -130.9275015,
+ "y": -10.9425745
+ },
+ {
+ "x": -131.0675015,
+ "y": -10.632574499999997
+ },
+ {
+ "x": -131.1775015,
+ "y": -10.352574500000003
+ },
+ {
+ "x": -131.3475015,
+ "y": -10.162574499999998
+ },
+ {
+ "x": -131.5275015,
+ "y": -10.052574499999999
+ },
+ {
+ "x": -131.8575015,
+ "y": -9.9725745
+ },
+ {
+ "x": -135.1075015,
+ "y": -9.982574499999998
+ },
+ {
+ "x": -136.0375015,
+ "y": -10.002574500000001
+ },
+ {
+ "x": -136.2975015,
+ "y": -10.144484499999997
+ },
+ {
+ "x": -136.3775015,
+ "y": -10.3325745
+ },
+ {
+ "x": -136.3775015,
+ "y": -10.642574500000002
+ },
+ {
+ "x": -135.3275015,
+ "y": -10.642574500000002
+ },
+ {
+ "x": -135.3275015,
+ "y": -13.802574499999999
+ },
+ {
+ "x": -135.8075015,
+ "y": -13.812574500000004
+ },
+ {
+ "x": -135.72750150000002,
+ "y": -14.122574499999999
+ },
+ {
+ "x": -135.5675015,
+ "y": -14.322574500000002
+ },
+ {
+ "x": -135.3575015,
+ "y": -14.452574499999997
+ },
+ {
+ "x": -135.0675015,
+ "y": -14.482574499999998
+ },
+ {
+ "x": -132.0675015,
+ "y": -14.492574500000003
+ },
+ {
+ "x": -131.6375015,
+ "y": -14.592574500000005
+ },
+ {
+ "x": -131.3275015,
+ "y": -14.802574499999999
+ },
+ {
+ "x": -131.0875015,
+ "y": -15.142574500000002
+ },
+ {
+ "x": -130.9975015,
+ "y": -15.562574500000004
+ },
+ {
+ "x": -130.9875015,
+ "y": -15.952574500000004
+ },
+ {
+ "x": -130.2375015,
+ "y": -16.662574499999998
+ },
+ {
+ "x": -127.2075015,
+ "y": -16.662574499999998
+ },
+ {
+ "x": -126.3875015,
+ "y": -15.952574500000004
+ },
+ {
+ "x": -126.8475015,
+ "y": -15.952574500000004
+ },
+ {
+ "x": -126.8475015,
+ "y": -12.892574500000002
+ },
+ {
+ "x": -126.4075015,
+ "y": -12.892574500000002
+ },
+ {
+ "x": -127.1975015,
+ "y": -12.182574500000001
+ },
+ {
+ "x": -128.6075015,
+ "y": -12.182574500000001
+ },
+ {
+ "x": -129.0675015,
+ "y": -12.1525745
+ },
+ {
+ "x": -129.4375015,
+ "y": -12.092574499999998
+ },
+ {
+ "x": -129.7875015,
+ "y": -12.022574499999997
+ },
+ {
+ "x": -130.1175015,
+ "y": -11.852574500000003
}
],
- "stroke_width": 0.12
+ "stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1441",
- "pcb_component_id": "pcb_component_148",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_125",
+ "pcb_component_id": "pcb_component_88",
"layer": "bottom",
"route": [
{
- "x": 102.0474985,
- "y": 33.0574255
+ "x": 67.8424985,
+ "y": -8.8104105
},
{
- "x": 103.44749850000001,
- "y": 33.0574255
+ "x": 67.8424985,
+ "y": -8.594738500000002
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1442",
- "pcb_component_id": "pcb_component_148",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_126",
+ "pcb_component_id": "pcb_component_88",
"layer": "bottom",
"route": [
{
- "x": 101.3474985,
- "y": 34.3574255
+ "x": 68.5624985,
+ "y": -8.8104105
},
{
- "x": 101.3474985,
- "y": 33.7574255
+ "x": 68.5624985,
+ "y": -8.594738500000002
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1443",
- "pcb_component_id": "pcb_component_148",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_127",
+ "pcb_component_id": "pcb_component_89",
"layer": "bottom",
"route": [
{
- "x": 104.39749850000001,
- "y": 35.3074255
+ "x": 31.5374985,
+ "y": 9.768675499999999
+ },
+ {
+ "x": 31.227498500000003,
+ "y": 10.0486755
+ },
+ {
+ "x": 30.997498500000003,
+ "y": 10.4886755
+ },
+ {
+ "x": 30.857498500000002,
+ "y": 10.7986755
+ },
+ {
+ "x": 30.747498500000003,
+ "y": 11.0786755
+ },
+ {
+ "x": 30.577498500000004,
+ "y": 11.2686755
+ },
+ {
+ "x": 30.3974985,
+ "y": 11.3786755
+ },
+ {
+ "x": 30.067498500000003,
+ "y": 11.4586755
+ },
+ {
+ "x": 26.817498500000003,
+ "y": 11.4486755
+ },
+ {
+ "x": 25.887498500000003,
+ "y": 11.4286755
+ },
+ {
+ "x": 25.6274985,
+ "y": 11.2867655
+ },
+ {
+ "x": 25.547498500000003,
+ "y": 11.0986755
+ },
+ {
+ "x": 25.547498500000003,
+ "y": 10.7886755
+ },
+ {
+ "x": 26.5974985,
+ "y": 10.7886755
+ },
+ {
+ "x": 26.5974985,
+ "y": 7.6286755
+ },
+ {
+ "x": 26.117498500000004,
+ "y": 7.6186755
+ },
+ {
+ "x": 26.197498500000002,
+ "y": 7.3086755
+ },
+ {
+ "x": 26.357498500000002,
+ "y": 7.1086755
+ },
+ {
+ "x": 26.567498500000003,
+ "y": 6.978675500000001
+ },
+ {
+ "x": 26.857498500000002,
+ "y": 6.9486755
+ },
+ {
+ "x": 29.857498500000002,
+ "y": 6.938675499999999
+ },
+ {
+ "x": 30.2874985,
+ "y": 6.838675499999999
+ },
+ {
+ "x": 30.5974985,
+ "y": 6.6286755
+ },
+ {
+ "x": 30.837498500000002,
+ "y": 6.2886755
+ },
+ {
+ "x": 30.927498500000002,
+ "y": 5.868675499999998
+ },
+ {
+ "x": 30.9374985,
+ "y": 5.478675500000001
+ },
+ {
+ "x": 31.6874985,
+ "y": 4.7686755000000005
+ },
+ {
+ "x": 34.717498500000005,
+ "y": 4.7686755000000005
+ },
+ {
+ "x": 35.5374985,
+ "y": 5.478675500000001
},
{
- "x": 104.39749850000001,
- "y": 32.8074255
+ "x": 35.077498500000004,
+ "y": 5.478675500000001
+ },
+ {
+ "x": 35.077498500000004,
+ "y": 8.5386755
+ },
+ {
+ "x": 35.5174985,
+ "y": 8.5386755
+ },
+ {
+ "x": 34.7274985,
+ "y": 9.2486755
+ },
+ {
+ "x": 33.3174985,
+ "y": 9.2486755
+ },
+ {
+ "x": 32.857498500000005,
+ "y": 9.278675499999999
+ },
+ {
+ "x": 32.4874985,
+ "y": 9.338675499999999
+ },
+ {
+ "x": 32.1374985,
+ "y": 9.4086755
+ },
+ {
+ "x": 31.8074985,
+ "y": 9.5786755
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1444",
- "pcb_component_id": "pcb_component_148",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_128",
+ "pcb_component_id": "pcb_component_90",
"layer": "bottom",
"route": [
{
- "x": 104.39749850000001,
- "y": 35.3074255
+ "x": 15.656251824154642,
+ "y": -29.07426834450186
+ },
+ {
+ "x": 15.786787561475972,
+ "y": -28.677455515472886
+ },
+ {
+ "x": 16.09601234427875,
+ "y": -28.289022723730767
+ },
+ {
+ "x": 16.3227997538546,
+ "y": -28.035512426389857
+ },
+ {
+ "x": 16.534299976629796,
+ "y": -27.82157866148576
+ },
+ {
+ "x": 16.63921527491264,
+ "y": -27.589215195798445
+ },
+ {
+ "x": 16.66693072327284,
+ "y": -27.380093571086427
+ },
+ {
+ "x": 16.60649094792391,
+ "y": -27.045957321098832
+ },
+ {
+ "x": 15.281674106092302,
+ "y": -24.0782207533423
+ },
+ {
+ "x": 14.886901342319327,
+ "y": -23.235929553707017
+ },
+ {
+ "x": 14.65188567127949,
+ "y": -23.055635120998467
+ },
+ {
+ "x": 14.447511261241704,
+ "y": -23.058626545693613
+ },
+ {
+ "x": 14.164048711848148,
+ "y": -23.184121498147107
+ },
+ {
+ "x": 14.589112260480956,
+ "y": -24.144236584802705
+ },
+ {
+ "x": 11.699623047307924,
+ "y": -25.423475454973826
+ },
+ {
+ "x": 11.496164329012396,
+ "y": -24.98861392534682
+ },
+ {
+ "x": 11.245087573800387,
+ "y": -25.18726050345026
+ },
+ {
+ "x": 11.126980098038606,
+ "y": -25.414528240204028
+ },
+ {
+ "x": 11.093121416084,
+ "y": -25.659178173080164
+ },
+ {
+ "x": 11.183088060373377,
+ "y": -25.93649748887932
+ },
+ {
+ "x": 12.38841138897516,
+ "y": -28.683731675025143
+ },
+ {
+ "x": 12.471045500638539,
+ "y": -29.117403905620556
+ },
+ {
+ "x": 12.404517435760916,
+ "y": -29.48587916474068
+ },
+ {
+ "x": 12.19078040929327,
+ "y": -29.842973666962102
+ },
+ {
+ "x": 11.843168393085271,
+ "y": -30.095294665271425
+ },
+ {
+ "x": 11.490602442314458,
+ "y": -30.26231936511271
+ },
+ {
+ "x": 11.144998585123156,
+ "y": -31.235539778942226
+ },
+ {
+ "x": 12.371610539749263,
+ "y": -34.006157600434086
+ },
+ {
+ "x": 13.352785607753432,
+ "y": -34.46853783998485
+ },
+ {
+ "x": 13.166567291209535,
+ "y": -34.04791599249763
+ },
+ {
+ "x": 15.96461697232013,
+ "y": -32.809159365053446
+ },
+ {
+ "x": 16.14273884031864,
+ "y": -33.21149330612817
+ },
+ {
+ "x": 16.472149800419167,
+ "y": -32.20169707947368
+ },
+ {
+ "x": 15.901350177969395,
+ "y": -30.91239967739331
+ },
+ {
+ "x": 15.74256372104423,
+ "y": -30.479633157088017
+ },
+ {
+ "x": 15.647643142192036,
+ "y": -30.117017542820832
+ },
+ {
+ "x": 15.569962965091472,
+ "y": -29.76864161069345
},
{
- "x": 101.0974985,
- "y": 35.3074255
+ "x": 15.591818768598733,
+ "y": -29.398071342251612
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1445",
- "pcb_component_id": "pcb_component_148",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_129",
+ "pcb_component_id": "pcb_component_91",
"layer": "bottom",
"route": [
{
- "x": 101.0974985,
- "y": 32.8074255
+ "x": 44.15304443749272,
+ "y": -22.231537760050934
+ },
+ {
+ "x": 44.39096479021003,
+ "y": -23.356657267375766
},
{
- "x": 104.39749850000001,
- "y": 32.8074255
+ "x": 43.16800880398739,
+ "y": -23.61526634641632
}
],
"stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1446",
- "pcb_component_id": "pcb_component_148",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_130",
+ "pcb_component_id": "pcb_component_92",
"layer": "bottom",
"route": [
{
- "x": 101.0974985,
- "y": 32.8074255
+ "x": 94.53750050000001,
+ "y": 38.727425499999995
+ },
+ {
+ "x": 94.53750050000001,
+ "y": 37.577425500000004
},
{
- "x": 101.0974985,
- "y": 35.3074255
+ "x": 93.28750050000001,
+ "y": 37.577425500000004
}
],
"stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1447",
- "pcb_component_id": "pcb_component_148",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_131",
+ "pcb_component_id": "pcb_component_93",
"layer": "bottom",
"route": [
{
- "x": 104.14749850000001,
- "y": 33.7574255
+ "x": -16.087501499999995,
+ "y": 19.2936755
},
{
- "x": 104.14037361876198,
- "y": 33.657805071864665
+ "x": -16.397501499999997,
+ "y": 19.5736755
},
{
- "x": 104.11914377151219,
- "y": 33.560212617134425
+ "x": -16.627501499999997,
+ "y": 20.0136755
},
{
- "x": 104.08424113807543,
- "y": 33.46663484299066
+ "x": -16.767501499999995,
+ "y": 20.3236755
},
{
- "x": 104.036376237648,
- "y": 33.378976729038804
+ "x": -16.877501499999997,
+ "y": 20.6036755
},
{
- "x": 103.97652346463035,
- "y": 33.299022747295425
+ "x": -17.047501499999996,
+ "y": 20.7936755
},
{
- "x": 103.90590125270474,
- "y": 33.22840053536988
+ "x": -17.227501499999995,
+ "y": 20.9036755
},
{
- "x": 103.82594727096131,
- "y": 33.1685477623523
+ "x": -17.557501499999997,
+ "y": 20.9836755
},
{
- "x": 103.7382891570094,
- "y": 33.120682861924955
+ "x": -20.807501499999994,
+ "y": 20.9736755
},
{
- "x": 103.64471138286561,
- "y": 33.08578022848829
+ "x": -21.737501499999997,
+ "y": 20.9536755
},
{
- "x": 103.54711892813535,
- "y": 33.064550381238575
+ "x": -21.997501499999995,
+ "y": 20.8117655
},
{
- "x": 103.44749850000001,
- "y": 33.05742550000064
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1448",
- "pcb_component_id": "pcb_component_148",
- "layer": "bottom",
- "route": [
+ "x": -22.077501499999997,
+ "y": 20.6236755
+ },
{
- "x": 103.44749850000001,
- "y": 35.0574255
+ "x": -22.077501499999997,
+ "y": 20.313675500000002
},
{
- "x": 103.54711892813533,
- "y": 35.050300618761895
+ "x": -21.027501499999996,
+ "y": 20.313675500000002
},
{
- "x": 103.64471138286554,
- "y": 35.02907077151203
+ "x": -21.027501499999996,
+ "y": 17.1536755
},
{
- "x": 103.73828915700929,
- "y": 34.994168138075246
+ "x": -21.507501499999996,
+ "y": 17.1436755
},
{
- "x": 103.82594727096114,
- "y": 34.94630323764781
+ "x": -21.427501499999998,
+ "y": 16.833675500000002
},
{
- "x": 103.90590125270451,
- "y": 34.886450464630165
+ "x": -21.267501499999998,
+ "y": 16.633675500000003
},
{
- "x": 103.97652346463006,
- "y": 34.81582825270458
+ "x": -21.057501499999997,
+ "y": 16.5036755
},
{
- "x": 104.03637623764767,
- "y": 34.735874270961176
+ "x": -20.767501499999998,
+ "y": 16.4736755
},
{
- "x": 104.08424113807506,
- "y": 34.648216157009315
+ "x": -17.767501499999998,
+ "y": 16.4636755
},
{
- "x": 104.1191437715118,
- "y": 34.55463838286555
+ "x": -17.337501499999995,
+ "y": 16.3636755
},
{
- "x": 104.14037361876161,
- "y": 34.45704592813532
+ "x": -17.027501499999996,
+ "y": 16.1536755
},
{
- "x": 104.14749849999967,
- "y": 34.3574255
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1449",
- "pcb_component_id": "pcb_component_148",
- "layer": "bottom",
- "route": [
+ "x": -16.787501499999998,
+ "y": 15.813675499999999
+ },
{
- "x": 102.0474985,
- "y": 33.0574255
+ "x": -16.697501499999998,
+ "y": 15.3936755
},
{
- "x": 101.94787807186462,
- "y": 33.06455038123799
+ "x": -16.687501499999996,
+ "y": 15.0036755
},
{
- "x": 101.85028561713435,
- "y": 33.085780228487764
+ "x": -15.937501499999996,
+ "y": 14.293675499999999
},
{
- "x": 101.75670784299051,
- "y": 33.12068286192449
+ "x": -12.907501499999997,
+ "y": 14.293675499999999
},
{
- "x": 101.6690497290386,
- "y": 33.1685477623519
+ "x": -12.087501499999997,
+ "y": 15.0036755
},
{
- "x": 101.58909574729518,
- "y": 33.228400535369545
+ "x": -12.547501499999997,
+ "y": 15.0036755
},
{
- "x": 101.51847353536957,
- "y": 33.299022747295155
+ "x": -12.547501499999996,
+ "y": 18.0636755
},
{
- "x": 101.45862076235193,
- "y": 33.3789767290386
+ "x": -12.107501499999996,
+ "y": 18.0636755
},
{
- "x": 101.41075586192451,
- "y": 33.46663484299051
+ "x": -12.897501499999997,
+ "y": 18.7736755
},
{
- "x": 101.3758532284878,
- "y": 33.56021261713434
+ "x": -14.307501499999995,
+ "y": 18.7736755
},
{
- "x": 101.35462338123803,
- "y": 33.65780507186462
+ "x": -14.767501499999996,
+ "y": 18.8036755
},
{
- "x": 101.34749850000004,
- "y": 33.7574255
+ "x": -15.137501499999996,
+ "y": 18.8636755
+ },
+ {
+ "x": -15.487501499999997,
+ "y": 18.9336755
+ },
+ {
+ "x": -15.817501499999997,
+ "y": 19.1036755
}
],
- "stroke_width": 0.12
+ "stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1450",
- "pcb_component_id": "pcb_component_148",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_132",
+ "pcb_component_id": "pcb_component_94",
"layer": "bottom",
"route": [
{
- "x": 101.3474985,
- "y": 34.3574255
+ "x": -54.187501499999996,
+ "y": -6.900074500000002
},
{
- "x": 101.35462338123817,
- "y": 34.45704592813528
+ "x": -54.4975015,
+ "y": -6.620074500000001
},
{
- "x": 101.37585322848807,
- "y": 34.55463838286545
+ "x": -54.7275015,
+ "y": -6.1800745
},
{
- "x": 101.4107558619249,
- "y": 34.64821615700916
+ "x": -54.8675015,
+ "y": -5.870074500000001
},
{
- "x": 101.45862076235234,
- "y": 34.73587427096095
+ "x": -54.9775015,
+ "y": -5.5900745
},
{
- "x": 101.51847353536999,
- "y": 34.81582825270427
+ "x": -55.1475015,
+ "y": -5.400074500000002
},
{
- "x": 101.58909574729557,
- "y": 34.886450464629796
+ "x": -55.3275015,
+ "y": -5.290074500000003
},
{
- "x": 101.66904972903896,
- "y": 34.94630323764737
+ "x": -55.6575015,
+ "y": -5.210074500000001
},
{
- "x": 101.75670784299079,
- "y": 34.99416813807475
+ "x": -58.907501499999995,
+ "y": -5.220074500000003
},
{
- "x": 101.85028561713453,
- "y": 35.029070771511485
+ "x": -59.8375015,
+ "y": -5.240074500000002
},
{
- "x": 101.94787807186472,
- "y": 35.050300618761305
+ "x": -60.0975015,
+ "y": -5.3819845000000015
},
{
- "x": 102.0474985,
- "y": 35.05742549999938
+ "x": -60.1775015,
+ "y": -5.5700745000000005
+ },
+ {
+ "x": -60.1775015,
+ "y": -5.880074499999999
+ },
+ {
+ "x": -59.1275015,
+ "y": -5.880074499999999
+ },
+ {
+ "x": -59.1275015,
+ "y": -9.040074500000003
+ },
+ {
+ "x": -59.6075015,
+ "y": -9.050074500000001
+ },
+ {
+ "x": -59.5275015,
+ "y": -9.3600745
+ },
+ {
+ "x": -59.3675015,
+ "y": -9.560074499999999
+ },
+ {
+ "x": -59.1575015,
+ "y": -9.690074500000001
+ },
+ {
+ "x": -58.8675015,
+ "y": -9.720074500000003
+ },
+ {
+ "x": -55.8675015,
+ "y": -9.7300745
+ },
+ {
+ "x": -55.437501499999996,
+ "y": -9.830074500000002
+ },
+ {
+ "x": -55.1275015,
+ "y": -10.040074500000003
+ },
+ {
+ "x": -54.8875015,
+ "y": -10.3800745
+ },
+ {
+ "x": -54.7975015,
+ "y": -10.800074500000001
+ },
+ {
+ "x": -54.7875015,
+ "y": -11.190074500000001
+ },
+ {
+ "x": -54.0375015,
+ "y": -11.900074500000002
+ },
+ {
+ "x": -51.007501500000004,
+ "y": -11.900074500000002
+ },
+ {
+ "x": -50.187501499999996,
+ "y": -11.190074500000001
+ },
+ {
+ "x": -50.6475015,
+ "y": -11.190074500000001
+ },
+ {
+ "x": -50.6475015,
+ "y": -8.130074500000003
+ },
+ {
+ "x": -50.2075015,
+ "y": -8.130074500000003
+ },
+ {
+ "x": -50.9975015,
+ "y": -7.420074500000002
+ },
+ {
+ "x": -52.4075015,
+ "y": -7.420074500000002
+ },
+ {
+ "x": -52.8675015,
+ "y": -7.390074500000001
+ },
+ {
+ "x": -53.2375015,
+ "y": -7.330074500000002
+ },
+ {
+ "x": -53.5875015,
+ "y": -7.260074500000002
+ },
+ {
+ "x": -53.9175015,
+ "y": -7.0900745
}
],
- "stroke_width": 0.12
+ "stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1451",
- "pcb_component_id": "pcb_component_149",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_133",
+ "pcb_component_id": "pcb_component_95",
+ "layer": "bottom",
"route": [
{
- "x": 100.01249849999999,
- "y": 5.764925499999997
+ "x": 64.57249850000001,
+ "y": -8.8104105
},
{
- "x": 80.9624985,
- "y": 5.7649255
+ "x": 64.57249850000001,
+ "y": -8.594738500000002
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1452",
- "pcb_component_id": "pcb_component_149",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_134",
+ "pcb_component_id": "pcb_component_95",
+ "layer": "bottom",
"route": [
{
- "x": 100.0124985,
- "y": 24.814925499999998
+ "x": 65.29249850000001,
+ "y": -8.8104105
},
{
- "x": 100.01249849999999,
- "y": 5.764925499999997
+ "x": 65.29249850000001,
+ "y": -8.594738500000002
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1453",
- "pcb_component_id": "pcb_component_149",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_135",
+ "pcb_component_id": "pcb_component_96",
+ "layer": "bottom",
"route": [
{
- "x": 80.9624985,
- "y": 5.7649255
+ "x": 74.4846625,
+ "y": -9.392574500000002
},
{
- "x": 80.96249850000001,
- "y": 24.8149255
+ "x": 74.70033450000001,
+ "y": -9.392574500000002
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1454",
- "pcb_component_id": "pcb_component_149",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_136",
+ "pcb_component_id": "pcb_component_96",
+ "layer": "bottom",
"route": [
{
- "x": 80.96249850000001,
- "y": 24.8149255
+ "x": 74.4846625,
+ "y": -10.112574500000001
},
{
- "x": 100.0124985,
- "y": 24.814925499999998
+ "x": 74.70033450000001,
+ "y": -10.112574500000001
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1455",
- "pcb_component_id": "pcb_component_149",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_137",
+ "pcb_component_id": "pcb_component_97",
+ "layer": "bottom",
"route": [
{
- "x": 97.4874985,
- "y": 8.289925499999999
+ "x": -86.4375015,
+ "y": 38.727425499999995
+ },
+ {
+ "x": -86.4375015,
+ "y": 37.577425500000004
},
{
- "x": 83.4874985,
- "y": 8.2899255
+ "x": -87.6875015,
+ "y": 37.577425500000004
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1456",
- "pcb_component_id": "pcb_component_149",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_138",
+ "pcb_component_id": "pcb_component_99",
+ "layer": "bottom",
"route": [
{
- "x": 97.4874985,
- "y": 22.2899255
+ "x": -124.5375015,
+ "y": -4.135074500000002
},
{
- "x": 97.4874985,
- "y": 8.289925499999999
+ "x": -124.5375015,
+ "y": -5.2850745
+ },
+ {
+ "x": -125.7875015,
+ "y": -5.2850745
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1457",
- "pcb_component_id": "pcb_component_149",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_139",
+ "pcb_component_id": "pcb_component_100",
+ "layer": "bottom",
"route": [
{
- "x": 83.4874985,
- "y": 8.2899255
+ "x": -65.2175015,
+ "y": -9.4813245
},
{
- "x": 83.4874985,
- "y": 22.289925500000003
+ "x": -65.2175015,
+ "y": -9.741324499999997
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1458",
- "pcb_component_id": "pcb_component_149",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_140",
+ "pcb_component_id": "pcb_component_100",
+ "layer": "bottom",
"route": [
{
- "x": 83.4874985,
- "y": 22.289925500000003
+ "x": -65.2175015,
+ "y": -14.671324500000004
},
{
- "x": 97.4874985,
- "y": 22.2899255
+ "x": -66.8925015,
+ "y": -14.671324500000004
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1459",
- "pcb_component_id": "pcb_component_149",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_141",
+ "pcb_component_id": "pcb_component_100",
+ "layer": "bottom",
"route": [
{
- "x": 92.2874985,
- "y": 18.4899255
+ "x": -65.2175015,
+ "y": -14.931324500000002
},
{
- "x": 92.2874985,
- "y": 21.5899255
+ "x": -65.2175015,
+ "y": -14.671324500000004
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1460",
- "pcb_component_id": "pcb_component_149",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_142",
+ "pcb_component_id": "pcb_component_100",
+ "layer": "bottom",
"route": [
{
- "x": 92.2874985,
- "y": 18.4899255
+ "x": -62.492501499999996,
+ "y": -9.4813245
},
{
- "x": 88.6874985,
- "y": 18.4899255
+ "x": -65.2175015,
+ "y": -9.4813245
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1461",
- "pcb_component_id": "pcb_component_149",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_143",
+ "pcb_component_id": "pcb_component_100",
+ "layer": "bottom",
"route": [
{
- "x": 92.2874985,
- "y": 21.5899255
+ "x": -62.492501499999996,
+ "y": -9.4813245
},
{
- "x": 88.6874985,
- "y": 21.5899255
+ "x": -59.767501499999995,
+ "y": -9.4813245
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1462",
- "pcb_component_id": "pcb_component_149",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_144",
+ "pcb_component_id": "pcb_component_100",
+ "layer": "bottom",
"route": [
{
- "x": 88.6874985,
- "y": 18.4899255
+ "x": -62.492501499999996,
+ "y": -14.931324500000002
},
{
- "x": 88.6874985,
- "y": 21.5899255
+ "x": -65.2175015,
+ "y": -14.931324500000002
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1463",
- "pcb_component_id": "pcb_component_150",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_145",
+ "pcb_component_id": "pcb_component_100",
+ "layer": "bottom",
"route": [
{
- "x": -100.01250149999998,
- "y": -18.047574500000003
+ "x": -62.492501499999996,
+ "y": -14.931324500000002
},
{
- "x": -119.0625015,
- "y": -18.047574500000003
+ "x": -59.767501499999995,
+ "y": -14.931324500000002
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1464",
- "pcb_component_id": "pcb_component_150",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_146",
+ "pcb_component_id": "pcb_component_100",
+ "layer": "bottom",
"route": [
{
- "x": -100.01250149999998,
- "y": 1.0024254999999975
+ "x": -59.767501499999995,
+ "y": -9.4813245
},
{
- "x": -100.01250149999998,
- "y": -18.047574500000003
+ "x": -59.767501499999995,
+ "y": -9.741324499999997
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1465",
- "pcb_component_id": "pcb_component_150",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_147",
+ "pcb_component_id": "pcb_component_100",
+ "layer": "bottom",
"route": [
{
- "x": -119.0625015,
- "y": -18.047574500000003
+ "x": -59.767501499999995,
+ "y": -14.931324500000002
},
{
- "x": -119.0625015,
- "y": 1.002425500000001
+ "x": -59.767501499999995,
+ "y": -14.671324500000004
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1466",
- "pcb_component_id": "pcb_component_150",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_148",
+ "pcb_component_id": "pcb_component_101",
+ "layer": "bottom",
"route": [
{
- "x": -119.0625015,
- "y": 1.002425500000001
+ "x": -27.022501499999997,
+ "y": 27.5686755
},
{
- "x": -100.01250149999998,
- "y": 1.0024254999999975
+ "x": -27.022501499999997,
+ "y": 28.7686755
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1467",
- "pcb_component_id": "pcb_component_150",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_149",
+ "pcb_component_id": "pcb_component_101",
+ "layer": "bottom",
"route": [
{
- "x": -102.53750149999999,
- "y": -15.522574500000005
+ "x": -25.062501499999996,
+ "y": 28.7686755
},
{
- "x": -116.53750149999999,
- "y": -15.522574499999997
+ "x": -27.022501499999997,
+ "y": 28.7686755
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1468",
- "pcb_component_id": "pcb_component_150",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_150",
+ "pcb_component_id": "pcb_component_101",
+ "layer": "bottom",
"route": [
{
- "x": -102.53750149999999,
- "y": -1.522574500000001
+ "x": -25.062501499999996,
+ "y": 27.5686755
},
{
- "x": -102.53750149999999,
- "y": -15.522574500000005
+ "x": -27.022501499999997,
+ "y": 27.5686755
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1469",
- "pcb_component_id": "pcb_component_150",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_151",
+ "pcb_component_id": "pcb_component_102",
+ "layer": "bottom",
"route": [
{
- "x": -116.53750149999999,
- "y": -15.522574499999997
+ "x": -124.5375015,
+ "y": 33.9649255
+ },
+ {
+ "x": -124.5375015,
+ "y": 32.8149255
},
{
- "x": -116.53750149999999,
- "y": -1.522574500000001
+ "x": -125.7875015,
+ "y": 32.8149255
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1470",
- "pcb_component_id": "pcb_component_150",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_152",
+ "pcb_component_id": "pcb_component_103",
+ "layer": "bottom",
"route": [
{
- "x": -116.53750149999999,
- "y": -1.522574500000001
+ "x": 88.6874985,
+ "y": 31.1999255
+ },
+ {
+ "x": 88.3774985,
+ "y": 31.4799255
+ },
+ {
+ "x": 88.1474985,
+ "y": 31.919925499999998
+ },
+ {
+ "x": 88.0074985,
+ "y": 32.2299255
+ },
+ {
+ "x": 87.8974985,
+ "y": 32.5099255
+ },
+ {
+ "x": 87.7274985,
+ "y": 32.6999255
+ },
+ {
+ "x": 87.5474985,
+ "y": 32.8099255
+ },
+ {
+ "x": 87.2174985,
+ "y": 32.889925500000004
+ },
+ {
+ "x": 83.9674985,
+ "y": 32.8799255
+ },
+ {
+ "x": 83.0374985,
+ "y": 32.8599255
+ },
+ {
+ "x": 82.77749850000001,
+ "y": 32.7180155
+ },
+ {
+ "x": 82.6974985,
+ "y": 32.529925500000004
+ },
+ {
+ "x": 82.6974985,
+ "y": 32.2199255
+ },
+ {
+ "x": 83.7474985,
+ "y": 32.2199255
+ },
+ {
+ "x": 83.7474985,
+ "y": 29.0599255
+ },
+ {
+ "x": 83.2674985,
+ "y": 29.0499255
+ },
+ {
+ "x": 83.3474985,
+ "y": 28.739925500000002
+ },
+ {
+ "x": 83.5074985,
+ "y": 28.539925500000003
+ },
+ {
+ "x": 83.7174985,
+ "y": 28.4099255
+ },
+ {
+ "x": 84.0074985,
+ "y": 28.3799255
+ },
+ {
+ "x": 87.0074985,
+ "y": 28.3699255
+ },
+ {
+ "x": 87.4374985,
+ "y": 28.2699255
+ },
+ {
+ "x": 87.7474985,
+ "y": 28.0599255
+ },
+ {
+ "x": 87.9874985,
+ "y": 27.7199255
+ },
+ {
+ "x": 88.0774985,
+ "y": 27.2999255
+ },
+ {
+ "x": 88.0874985,
+ "y": 26.9099255
+ },
+ {
+ "x": 88.8374985,
+ "y": 26.1999255
+ },
+ {
+ "x": 91.8674985,
+ "y": 26.1999255
+ },
+ {
+ "x": 92.6874985,
+ "y": 26.9099255
+ },
+ {
+ "x": 92.2274985,
+ "y": 26.9099255
+ },
+ {
+ "x": 92.2274985,
+ "y": 29.9699255
+ },
+ {
+ "x": 92.6674985,
+ "y": 29.9699255
+ },
+ {
+ "x": 91.8774985,
+ "y": 30.6799255
+ },
+ {
+ "x": 90.4674985,
+ "y": 30.6799255
+ },
+ {
+ "x": 90.0074985,
+ "y": 30.7099255
+ },
+ {
+ "x": 89.6374985,
+ "y": 30.7699255
+ },
+ {
+ "x": 89.2874985,
+ "y": 30.8399255
},
{
- "x": -102.53750149999999,
- "y": -1.522574500000001
+ "x": 88.9574985,
+ "y": 31.0099255
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1471",
- "pcb_component_id": "pcb_component_150",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_153",
+ "pcb_component_id": "pcb_component_104",
+ "layer": "bottom",
"route": [
{
- "x": -107.7375015,
- "y": -5.322574500000002
+ "x": -48.3375015,
+ "y": 0.6274254999999975
},
{
- "x": -107.7375015,
- "y": -2.2225745000000003
+ "x": -48.3375015,
+ "y": -0.522574500000001
+ },
+ {
+ "x": -49.5875015,
+ "y": -0.522574500000001
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1472",
- "pcb_component_id": "pcb_component_150",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_154",
+ "pcb_component_id": "pcb_component_105",
+ "layer": "bottom",
"route": [
{
- "x": -107.7375015,
- "y": -5.322574500000002
+ "x": 86.0125065,
+ "y": -14.7014335
},
{
- "x": -111.33750149999999,
- "y": -5.322574500000002
+ "x": 86.0125065,
+ "y": -15.008715500000001
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1473",
- "pcb_component_id": "pcb_component_150",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_155",
+ "pcb_component_id": "pcb_component_105",
+ "layer": "bottom",
"route": [
{
- "x": -107.7375015,
- "y": -2.2225745000000003
+ "x": 85.25250650000001,
+ "y": -14.7014335
},
{
- "x": -111.33750149999999,
- "y": -2.2225745000000003
+ "x": 85.25250650000001,
+ "y": -15.008715500000001
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1474",
- "pcb_component_id": "pcb_component_150",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_156",
+ "pcb_component_id": "pcb_component_106",
+ "layer": "bottom",
"route": [
{
- "x": -111.33750149999999,
- "y": -5.322574500000002
+ "x": -80.25750149999999,
+ "y": -9.1804105
},
{
- "x": -111.33750149999999,
- "y": -2.2225745000000003
+ "x": -80.25750149999999,
+ "y": -8.964738500000003
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1475",
- "pcb_component_id": "pcb_component_151",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_157",
+ "pcb_component_id": "pcb_component_106",
"layer": "bottom",
"route": [
{
- "x": 22.693857500000004,
- "y": 36.733675500000004
+ "x": -79.53750149999999,
+ "y": -9.1804105
},
{
- "x": 23.001139500000004,
- "y": 36.733675500000004
+ "x": -79.53750149999999,
+ "y": -8.964738500000003
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1476",
- "pcb_component_id": "pcb_component_151",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_158",
+ "pcb_component_id": "pcb_component_107",
"layer": "bottom",
"route": [
{
- "x": 22.693857500000004,
- "y": 35.9736755
+ "x": -80.2496635,
+ "y": -11.031324499999997
},
{
- "x": 23.001139500000004,
- "y": 35.9736755
+ "x": -80.46533550000001,
+ "y": -11.031324499999997
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1477",
- "pcb_component_id": "pcb_component_151",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_159",
+ "pcb_component_id": "pcb_component_107",
"layer": "bottom",
"route": [
{
- "x": 21.917498500000004,
- "y": 36.8236755
+ "x": -80.2496635,
+ "y": -10.311324499999998
},
{
- "x": 21.917498500000004,
- "y": 35.883675499999995
+ "x": -80.46533550000001,
+ "y": -10.311324499999998
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1478",
- "pcb_component_id": "pcb_component_151",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_160",
+ "pcb_component_id": "pcb_component_108",
"layer": "bottom",
"route": [
{
- "x": 21.917498500000004,
- "y": 35.883675499999995
+ "x": -74.8453375,
+ "y": -26.491274500000003
},
{
- "x": 23.777498500000004,
- "y": 35.883675499999995
+ "x": -74.62966549999999,
+ "y": -26.491274500000003
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1479",
- "pcb_component_id": "pcb_component_151",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_161",
+ "pcb_component_id": "pcb_component_108",
"layer": "bottom",
"route": [
{
- "x": 23.777498500000004,
- "y": 36.8236755
+ "x": -74.8453375,
+ "y": -27.211274500000002
},
{
- "x": 21.917498500000004,
- "y": 36.8236755
+ "x": -74.62966549999999,
+ "y": -27.211274500000002
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1480",
- "pcb_component_id": "pcb_component_151",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_162",
+ "pcb_component_id": "pcb_component_109",
"layer": "bottom",
"route": [
{
- "x": 23.777498500000004,
- "y": 35.883675499999995
+ "x": 94.53750050000001,
+ "y": 19.6774255
+ },
+ {
+ "x": 94.53750050000001,
+ "y": 18.5274255
},
{
- "x": 23.777498500000004,
- "y": 36.8236755
+ "x": 93.28750050000001,
+ "y": 18.5274255
}
],
"stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1481",
- "pcb_component_id": "pcb_component_151",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_163",
+ "pcb_component_id": "pcb_component_110",
"layer": "bottom",
"route": [
{
- "x": 22.322498500000005,
- "y": 36.6236755
+ "x": 65.9625005,
+ "y": -20.803824500000005
+ },
+ {
+ "x": 65.9625005,
+ "y": -21.953824500000003
},
{
- "x": 22.322498500000005,
- "y": 36.0836755
+ "x": 64.7125005,
+ "y": -21.953824500000003
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1482",
- "pcb_component_id": "pcb_component_151",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_164",
+ "pcb_component_id": "pcb_component_111",
"layer": "bottom",
"route": [
{
- "x": 22.322498500000005,
- "y": 36.0836755
+ "x": -10.237501499999997,
+ "y": 7.7711755
+ },
+ {
+ "x": -10.237501499999997,
+ "y": 6.6211755
},
{
- "x": 23.372498500000003,
- "y": 36.0836755
+ "x": -11.487501499999997,
+ "y": 6.6211755
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1483",
- "pcb_component_id": "pcb_component_151",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_165",
+ "pcb_component_id": "pcb_component_112",
"layer": "bottom",
"route": [
{
- "x": 23.372498500000003,
- "y": 36.6236755
+ "x": 67.62533450000001,
+ "y": -16.1275745
},
{
- "x": 22.322498500000005,
- "y": 36.6236755
+ "x": 67.4096625,
+ "y": -16.1275745
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1484",
- "pcb_component_id": "pcb_component_151",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_166",
+ "pcb_component_id": "pcb_component_112",
"layer": "bottom",
"route": [
{
- "x": 23.372498500000003,
- "y": 36.0836755
+ "x": 67.62533450000001,
+ "y": -15.407574500000003
},
{
- "x": 23.372498500000003,
- "y": 36.6236755
+ "x": 67.4096625,
+ "y": -15.407574500000003
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1485",
- "pcb_component_id": "pcb_component_152",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_167",
+ "pcb_component_id": "pcb_component_113",
"layer": "bottom",
"route": [
{
- "x": -80.2496635,
- "y": -12.101324499999997
+ "x": -71.9375015,
+ "y": -25.4712745
},
{
- "x": -80.46533550000001,
- "y": -12.101324499999997
+ "x": -75.9375015,
+ "y": -25.4712745
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1486",
- "pcb_component_id": "pcb_component_152",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_168",
+ "pcb_component_id": "pcb_component_113",
"layer": "bottom",
"route": [
{
- "x": -80.2496635,
- "y": -11.381324499999998
+ "x": -71.9375015,
+ "y": -22.171274500000003
},
{
- "x": -80.46533550000001,
- "y": -11.381324499999998
+ "x": -71.9375015,
+ "y": -25.4712745
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1487",
- "pcb_component_id": "pcb_component_152",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_169",
+ "pcb_component_id": "pcb_component_114",
"layer": "bottom",
"route": [
{
- "x": -79.4474995,
- "y": -12.201324499999998
+ "x": -57.8625015,
+ "y": -20.7925745
+ },
+ {
+ "x": -57.8625015,
+ "y": -21.9425745
},
{
- "x": -79.4474995,
- "y": -11.281324499999997
+ "x": -59.1125015,
+ "y": -21.9425745
}
],
"stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1488",
- "pcb_component_id": "pcb_component_152",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_170",
+ "pcb_component_id": "pcb_component_115",
"layer": "bottom",
"route": [
{
- "x": -79.4474995,
- "y": -11.281324499999997
+ "x": 105.4374985,
+ "y": -1.3275744999999972
},
{
- "x": -81.2674995,
- "y": -11.281324499999997
+ "x": 105.4374985,
+ "y": 1.332425500000003
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1489",
- "pcb_component_id": "pcb_component_152",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_171",
+ "pcb_component_id": "pcb_component_115",
"layer": "bottom",
"route": [
{
- "x": -81.2674995,
- "y": -12.201324499999998
+ "x": 110.5774985,
+ "y": -1.3275744999999972
},
{
- "x": -79.4474995,
- "y": -12.201324499999998
+ "x": 105.4374985,
+ "y": -1.3275744999999972
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1490",
- "pcb_component_id": "pcb_component_152",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_172",
+ "pcb_component_id": "pcb_component_115",
"layer": "bottom",
"route": [
{
- "x": -81.2674995,
- "y": -11.281324499999997
+ "x": 110.5774985,
+ "y": -1.3275744999999972
},
{
- "x": -81.2674995,
- "y": -12.201324499999998
+ "x": 110.5774985,
+ "y": 1.3324254999999994
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1491",
- "pcb_component_id": "pcb_component_152",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_173",
+ "pcb_component_id": "pcb_component_115",
"layer": "bottom",
"route": [
{
- "x": -79.8574995,
- "y": -11.991324499999997
+ "x": 111.8474985,
+ "y": -1.3275744999999972
},
{
- "x": -79.8574995,
- "y": -11.491324499999997
+ "x": 113.1774985,
+ "y": -1.3275744999999972
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1492",
- "pcb_component_id": "pcb_component_152",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_174",
+ "pcb_component_id": "pcb_component_115",
"layer": "bottom",
"route": [
{
- "x": -79.8574995,
- "y": -11.491324499999997
+ "x": 113.1774985,
+ "y": -1.3275744999999972
},
{
- "x": -80.8574995,
- "y": -11.491324499999997
+ "x": 113.1774985,
+ "y": 0.0024255000000010796
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1493",
- "pcb_component_id": "pcb_component_152",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_175",
+ "pcb_component_id": "pcb_component_115",
"layer": "bottom",
"route": [
{
- "x": -80.8574995,
- "y": -11.991324499999997
+ "x": 110.5774985,
+ "y": 1.3324254999999994
},
{
- "x": -79.8574995,
- "y": -11.991324499999997
+ "x": 105.4374985,
+ "y": 1.332425500000003
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1494",
- "pcb_component_id": "pcb_component_152",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_176",
+ "pcb_component_id": "pcb_component_116",
"layer": "bottom",
"route": [
{
- "x": -80.8574995,
- "y": -11.491324499999997
+ "x": 65.8624985,
+ "y": 5.922425499999999
},
{
- "x": -80.8574995,
- "y": -11.991324499999997
+ "x": 65.8624985,
+ "y": 6.182425499999997
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1495",
- "pcb_component_id": "pcb_component_153",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_177",
+ "pcb_component_id": "pcb_component_116",
"layer": "bottom",
"route": [
{
- "x": 47.2824985,
- "y": -19.122574500000006
+ "x": 65.8624985,
+ "y": 11.112425499999999
},
{
- "x": 53.2924985,
- "y": -19.122574500000006
+ "x": 67.53749850000001,
+ "y": 11.112425499999999
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1496",
- "pcb_component_id": "pcb_component_153",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_178",
+ "pcb_component_id": "pcb_component_116",
"layer": "bottom",
"route": [
{
- "x": 49.5324985,
- "y": -12.302574499999999
+ "x": 65.8624985,
+ "y": 11.372425499999999
},
{
- "x": 53.2924985,
- "y": -12.302574499999999
+ "x": 65.8624985,
+ "y": 11.112425499999999
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1497",
- "pcb_component_id": "pcb_component_153",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_179",
+ "pcb_component_id": "pcb_component_116",
"layer": "bottom",
"route": [
{
- "x": 53.2924985,
- "y": -12.302574499999999
+ "x": 63.13749850000001,
+ "y": 5.922425499999999
},
{
- "x": 53.2924985,
- "y": -13.562574500000004
+ "x": 65.8624985,
+ "y": 5.922425499999999
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1498",
- "pcb_component_id": "pcb_component_153",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_180",
+ "pcb_component_id": "pcb_component_116",
"layer": "bottom",
"route": [
{
- "x": 53.2924985,
- "y": -19.122574500000006
+ "x": 63.13749850000001,
+ "y": 5.922425499999999
},
{
- "x": 53.2924985,
- "y": -17.8625745
+ "x": 60.412498500000005,
+ "y": 5.922425499999999
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1499",
- "pcb_component_id": "pcb_component_153",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_181",
+ "pcb_component_id": "pcb_component_116",
"layer": "bottom",
"route": [
{
- "x": 46.982498500000005,
- "y": -12.112574500000001
+ "x": 63.13749850000001,
+ "y": 11.372425499999999
},
{
- "x": 55.7824985,
- "y": -12.112574500000001
+ "x": 65.8624985,
+ "y": 11.372425499999999
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1500",
- "pcb_component_id": "pcb_component_153",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_182",
+ "pcb_component_id": "pcb_component_116",
"layer": "bottom",
"route": [
{
- "x": 46.982498500000005,
- "y": -19.312574500000004
+ "x": 63.13749850000001,
+ "y": 11.372425499999999
},
{
- "x": 46.982498500000005,
- "y": -12.112574500000001
+ "x": 60.412498500000005,
+ "y": 11.372425499999999
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1501",
- "pcb_component_id": "pcb_component_153",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_183",
+ "pcb_component_id": "pcb_component_116",
"layer": "bottom",
"route": [
{
- "x": 55.7824985,
- "y": -12.112574500000001
+ "x": 60.412498500000005,
+ "y": 5.922425499999999
},
{
- "x": 55.7824985,
- "y": -19.312574500000004
+ "x": 60.412498500000005,
+ "y": 6.182425500000001
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1502",
- "pcb_component_id": "pcb_component_153",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_184",
+ "pcb_component_id": "pcb_component_116",
"layer": "bottom",
"route": [
{
- "x": 55.7824985,
- "y": -19.312574500000004
+ "x": 60.412498500000005,
+ "y": 11.372425499999999
},
{
- "x": 46.982498500000005,
- "y": -19.312574500000004
+ "x": 60.412498500000005,
+ "y": 11.112425499999999
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1503",
- "pcb_component_id": "pcb_component_153",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_185",
+ "pcb_component_id": "pcb_component_117",
"layer": "bottom",
"route": [
{
- "x": 49.5324985,
- "y": -12.362574500000001
+ "x": 87.1725065,
+ "y": -14.731433500000001
},
{
- "x": 53.232498500000005,
- "y": -12.362574500000001
+ "x": 87.1725065,
+ "y": -15.038715500000002
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1504",
- "pcb_component_id": "pcb_component_153",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_186",
+ "pcb_component_id": "pcb_component_117",
"layer": "bottom",
"route": [
{
- "x": 49.5324985,
- "y": -18.062574500000004
+ "x": 86.4125065,
+ "y": -14.731433500000001
},
{
- "x": 49.5324985,
- "y": -12.362574500000001
+ "x": 86.4125065,
+ "y": -15.038715500000002
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1505",
- "pcb_component_id": "pcb_component_153",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_187",
+ "pcb_component_id": "pcb_component_118",
"layer": "bottom",
"route": [
{
- "x": 49.5324985,
- "y": -18.062574500000004
+ "x": 31.5374985,
+ "y": -9.2813245
+ },
+ {
+ "x": 31.227498500000003,
+ "y": -9.001324499999999
+ },
+ {
+ "x": 30.997498500000003,
+ "y": -8.561324499999998
+ },
+ {
+ "x": 30.857498500000002,
+ "y": -8.251324499999999
+ },
+ {
+ "x": 30.747498500000003,
+ "y": -7.971324499999998
+ },
+ {
+ "x": 30.577498500000004,
+ "y": -7.7813245
+ },
+ {
+ "x": 30.3974985,
+ "y": -7.671324500000001
+ },
+ {
+ "x": 30.067498500000003,
+ "y": -7.591324499999999
+ },
+ {
+ "x": 26.817498500000003,
+ "y": -7.601324499999997
+ },
+ {
+ "x": 25.887498500000003,
+ "y": -7.6213245
+ },
+ {
+ "x": 25.6274985,
+ "y": -7.763234499999999
+ },
+ {
+ "x": 25.547498500000003,
+ "y": -7.951324499999998
+ },
+ {
+ "x": 25.547498500000003,
+ "y": -8.2613245
+ },
+ {
+ "x": 26.5974985,
+ "y": -8.2613245
+ },
+ {
+ "x": 26.5974985,
+ "y": -11.421324499999997
+ },
+ {
+ "x": 26.117498500000004,
+ "y": -11.431324499999995
+ },
+ {
+ "x": 26.197498500000002,
+ "y": -11.741324499999997
+ },
+ {
+ "x": 26.357498500000002,
+ "y": -11.9413245
+ },
+ {
+ "x": 26.567498500000003,
+ "y": -12.071324499999996
+ },
+ {
+ "x": 26.857498500000002,
+ "y": -12.101324499999997
+ },
+ {
+ "x": 29.857498500000002,
+ "y": -12.111324500000002
+ },
+ {
+ "x": 30.2874985,
+ "y": -12.211324499999996
+ },
+ {
+ "x": 30.5974985,
+ "y": -12.421324499999997
+ },
+ {
+ "x": 30.837498500000002,
+ "y": -12.7613245
+ },
+ {
+ "x": 30.927498500000002,
+ "y": -13.181324500000002
+ },
+ {
+ "x": 30.9374985,
+ "y": -13.571324499999996
+ },
+ {
+ "x": 31.6874985,
+ "y": -14.281324500000004
+ },
+ {
+ "x": 34.717498500000005,
+ "y": -14.281324500000004
+ },
+ {
+ "x": 35.5374985,
+ "y": -13.571324499999996
+ },
+ {
+ "x": 35.077498500000004,
+ "y": -13.571324499999996
+ },
+ {
+ "x": 35.077498500000004,
+ "y": -10.5113245
+ },
+ {
+ "x": 35.5174985,
+ "y": -10.5113245
+ },
+ {
+ "x": 34.7274985,
+ "y": -9.8013245
+ },
+ {
+ "x": 33.3174985,
+ "y": -9.8013245
+ },
+ {
+ "x": 32.857498500000005,
+ "y": -9.771324499999999
+ },
+ {
+ "x": 32.4874985,
+ "y": -9.711324499999996
+ },
+ {
+ "x": 32.1374985,
+ "y": -9.641324500000003
},
{
- "x": 50.5324985,
- "y": -19.062574500000004
+ "x": 31.8074985,
+ "y": -9.471324500000001
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1506",
- "pcb_component_id": "pcb_component_153",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_188",
+ "pcb_component_id": "pcb_component_119",
"layer": "bottom",
"route": [
{
- "x": 50.5324985,
- "y": -19.062574500000004
+ "x": 59.27966250000001,
+ "y": 12.577425499999999
},
{
- "x": 53.232498500000005,
- "y": -19.062574500000004
+ "x": 59.495334500000006,
+ "y": 12.577425499999999
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1507",
- "pcb_component_id": "pcb_component_153",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_189",
+ "pcb_component_id": "pcb_component_119",
"layer": "bottom",
"route": [
{
- "x": 53.232498500000005,
- "y": -19.062574500000004
+ "x": 59.27966250000001,
+ "y": 11.8574255
},
{
- "x": 53.232498500000005,
- "y": -12.362574500000001
+ "x": 59.495334500000006,
+ "y": 11.8574255
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1508",
- "pcb_component_id": "pcb_component_154",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_190",
+ "pcb_component_id": "pcb_component_120",
+ "layer": "bottom",
"route": [
{
- "x": -4.762620641442073,
- "y": -20.240547976319696
+ "x": -10.237501499999997,
+ "y": 26.8211755
},
{
- "x": -16.330421500663526,
- "y": -46.36939426316129
+ "x": -10.237501499999997,
+ "y": 25.6711755
+ },
+ {
+ "x": -11.487501499999997,
+ "y": 25.6711755
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1509",
- "pcb_component_id": "pcb_component_154",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_191",
+ "pcb_component_id": "pcb_component_121",
+ "layer": "bottom",
"route": [
{
- "x": -22.181851499336467,
- "y": -12.528680736838723
+ "x": 20.342506500000002,
+ "y": 38.3949255
},
{
- "x": -4.762620641442073,
- "y": -20.240547976319696
+ "x": 21.542506500000005,
+ "y": 38.3949255
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1510",
- "pcb_component_id": "pcb_component_154",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_192",
+ "pcb_component_id": "pcb_component_121",
+ "layer": "bottom",
"route": [
{
- "x": -16.330421500663526,
- "y": -46.36939426316129
+ "x": 21.542506500000005,
+ "y": 36.4349255
},
{
- "x": -33.749652358557924,
- "y": -38.65752702368031
+ "x": 21.542506500000005,
+ "y": 38.3949255
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1511",
- "pcb_component_id": "pcb_component_154",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_193",
+ "pcb_component_id": "pcb_component_121",
+ "layer": "bottom",
"route": [
{
- "x": -33.749652358557924,
- "y": -38.65752702368031
+ "x": 20.342506500000002,
+ "y": 36.4349255
},
{
- "x": -22.181851499336467,
- "y": -12.528680736838723
+ "x": 20.342506500000002,
+ "y": 38.3949255
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1512",
- "pcb_component_id": "pcb_component_154",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_194",
+ "pcb_component_id": "pcb_component_122",
+ "layer": "bottom",
"route": [
{
- "x": -10.021612264743958,
- "y": -25.882027246514753
+ "x": -48.3375015,
+ "y": 19.6774255
+ },
+ {
+ "x": -48.3375015,
+ "y": 18.5274255
},
{
- "x": -15.68912624651475,
- "y": -38.68356173525604
+ "x": -49.5875015,
+ "y": 18.5274255
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1513",
- "pcb_component_id": "pcb_component_154",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_195",
+ "pcb_component_id": "pcb_component_123",
+ "layer": "bottom",
"route": [
{
- "x": -22.823146753485243,
- "y": -20.214513264743964
+ "x": 39.98654188638928,
+ "y": -30.812464011209677
+ },
+ {
+ "x": 39.62532036810098,
+ "y": -30.602656921897868
+ },
+ {
+ "x": 39.30926607081374,
+ "y": -30.219760485290955
+ },
+ {
+ "x": 39.108159948754746,
+ "y": -29.94543161756028
+ },
+ {
+ "x": 38.942611388262065,
+ "y": -29.69424707560198
+ },
+ {
+ "x": 38.73698079412162,
+ "y": -29.543528600445654
+ },
+ {
+ "x": 38.53811753314999,
+ "y": -29.473148181039903
+ },
+ {
+ "x": 38.19870617172862,
+ "y": -29.46315179478836
+ },
+ {
+ "x": 35.02108948018208,
+ "y": -30.145319048183595
+ },
+ {
+ "x": 34.115347971697076,
+ "y": -30.357291498769328
+ },
+ {
+ "x": 33.890332498088085,
+ "y": -30.549921934413653
+ },
+ {
+ "x": 33.850976740311225,
+ "y": -30.75049354863114
+ },
+ {
+ "x": 33.91511179191329,
+ "y": -31.053786633214358
+ },
+ {
+ "x": 34.942394820340304,
+ "y": -30.836555006820284
+ },
+ {
+ "x": 35.596158572154835,
+ "y": -33.928187739991124
+ },
+ {
+ "x": 35.12861234607767,
+ "y": -34.03727727423248
+ },
+ {
+ "x": 35.271016580797976,
+ "y": -34.3240193777571
+ },
+ {
+ "x": 35.46893239968096,
+ "y": -34.48659037343553
+ },
+ {
+ "x": 35.70128434958658,
+ "y": -34.57033147072387
+ },
+ {
+ "x": 35.99121675628721,
+ "y": -34.53968510805581
+ },
+ {
+ "x": 38.928379995853874,
+ "y": -33.928806966248246
+ },
+ {
+ "x": 39.369765581437704,
+ "y": -33.937681921956106
+ },
+ {
+ "x": 39.716504991299736,
+ "y": -34.07900347603945
+ },
+ {
+ "x": 40.021654210153514,
+ "y": -34.36199456111623
+ },
+ {
+ "x": 40.19659969171917,
+ "y": -34.754287918796116
+ },
+ {
+ "x": 40.287069372269606,
+ "y": -35.13378131386525
+ },
+ {
+ "x": 41.16773292089823,
+ "y": -35.67325486661538
},
{
- "x": -10.021612264743958,
- "y": -25.882027246514753
+ "x": 44.13217823150191,
+ "y": -35.046386459021065
+ },
+ {
+ "x": 44.78754740156893,
+ "y": -34.182099902996
+ },
+ {
+ "x": 44.337499598639,
+ "y": -34.27726804408292
+ },
+ {
+ "x": 43.70442457314771,
+ "y": -31.2834717898099
+ },
+ {
+ "x": 44.13490508029808,
+ "y": -31.19244139398762
+ },
+ {
+ "x": 43.21510694011034,
+ "y": -30.66124333176679
+ },
+ {
+ "x": 41.8356125876512,
+ "y": -30.952954372924545
+ },
+ {
+ "x": 41.37935816682429,
+ "y": -31.018771570342125
+ },
+ {
+ "x": 41.004949959108444,
+ "y": -31.03661797039944
+ },
+ {
+ "x": 40.64804017453983,
+ "y": -31.04054297730233
+ },
+ {
+ "x": 40.29000895942754,
+ "y": -30.94249376004276
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1514",
- "pcb_component_id": "pcb_component_154",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_196",
+ "pcb_component_id": "pcb_component_125",
+ "layer": "bottom",
"route": [
{
- "x": -15.68912624651475,
- "y": -38.68356173525604
+ "x": -73.2375015,
+ "y": -4.518824500000001
+ },
+ {
+ "x": -73.5475015,
+ "y": -4.2388245
+ },
+ {
+ "x": -73.7775015,
+ "y": -3.7988244999999985
+ },
+ {
+ "x": -73.9175015,
+ "y": -3.4888244999999998
+ },
+ {
+ "x": -74.0275015,
+ "y": -3.2088244999999986
+ },
+ {
+ "x": -74.1975015,
+ "y": -3.018824500000001
+ },
+ {
+ "x": -74.3775015,
+ "y": -2.9088245000000015
+ },
+ {
+ "x": -74.70750149999999,
+ "y": -2.8288244999999996
+ },
+ {
+ "x": -77.95750149999999,
+ "y": -2.838824500000001
+ },
+ {
+ "x": -78.8875015,
+ "y": -2.8588245000000008
+ },
+ {
+ "x": -79.14750149999999,
+ "y": -3.0007345
+ },
+ {
+ "x": -79.2275015,
+ "y": -3.188824499999999
+ },
+ {
+ "x": -79.2275015,
+ "y": -3.498824499999998
+ },
+ {
+ "x": -78.17750149999999,
+ "y": -3.498824499999998
+ },
+ {
+ "x": -78.17750149999999,
+ "y": -6.6588245000000015
+ },
+ {
+ "x": -78.6575015,
+ "y": -6.6688244999999995
+ },
+ {
+ "x": -78.5775015,
+ "y": -6.978824499999998
+ },
+ {
+ "x": -78.4175015,
+ "y": -7.1788244999999975
+ },
+ {
+ "x": -78.20750149999999,
+ "y": -7.3088245
},
{
- "x": -28.490660735256036,
- "y": -33.01604775348525
+ "x": -77.9175015,
+ "y": -7.338824500000001
+ },
+ {
+ "x": -74.9175015,
+ "y": -7.348824499999999
+ },
+ {
+ "x": -74.4875015,
+ "y": -7.448824500000001
+ },
+ {
+ "x": -74.17750149999999,
+ "y": -7.6588245000000015
+ },
+ {
+ "x": -73.9375015,
+ "y": -7.998824500000001
+ },
+ {
+ "x": -73.84750149999999,
+ "y": -8.4188245
+ },
+ {
+ "x": -73.8375015,
+ "y": -8.8088245
+ },
+ {
+ "x": -73.0875015,
+ "y": -9.518824500000001
+ },
+ {
+ "x": -70.0575015,
+ "y": -9.518824500000001
+ },
+ {
+ "x": -69.2375015,
+ "y": -8.8088245
+ },
+ {
+ "x": -69.6975015,
+ "y": -8.8088245
+ },
+ {
+ "x": -69.6975015,
+ "y": -5.748824500000001
+ },
+ {
+ "x": -69.25750149999999,
+ "y": -5.748824500000001
+ },
+ {
+ "x": -70.0475015,
+ "y": -5.0388245000000005
+ },
+ {
+ "x": -71.45750149999999,
+ "y": -5.0388245000000005
+ },
+ {
+ "x": -71.9175015,
+ "y": -5.008824499999999
+ },
+ {
+ "x": -72.28750149999999,
+ "y": -4.948824500000001
+ },
+ {
+ "x": -72.6375015,
+ "y": -4.8788245
+ },
+ {
+ "x": -72.9675015,
+ "y": -4.708824499999999
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1515",
- "pcb_component_id": "pcb_component_154",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_197",
+ "pcb_component_id": "pcb_component_126",
+ "layer": "bottom",
"route": [
{
- "x": -28.490660735256036,
- "y": -33.01604775348525
+ "x": 65.6424985,
+ "y": -8.8462155
},
{
- "x": -22.823146753485243,
- "y": -20.214513264743964
+ "x": 65.6424985,
+ "y": -8.538933499999999
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1516",
- "pcb_component_id": "pcb_component_154",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_198",
+ "pcb_component_id": "pcb_component_126",
+ "layer": "bottom",
"route": [
{
- "x": -21.45352115691319,
- "y": -26.507694155614224
+ "x": 66.4024985,
+ "y": -8.8462155
},
{
- "x": -24.28814665084876,
- "y": -25.252744631079267
+ "x": 66.4024985,
+ "y": -8.538933499999999
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1517",
- "pcb_component_id": "pcb_component_154",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_199",
+ "pcb_component_id": "pcb_component_127",
+ "layer": "bottom",
"route": [
{
- "x": -21.45352115691319,
- "y": -26.507694155614224
+ "x": 75.4875005,
+ "y": 3.008675499999999
+ },
+ {
+ "x": 75.4875005,
+ "y": 1.8586755000000004
},
{
- "x": -22.91088189508282,
- "y": -29.79951730986199
+ "x": 74.2375005,
+ "y": 1.8586755000000004
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1518",
- "pcb_component_id": "pcb_component_154",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_200",
+ "pcb_component_id": "pcb_component_128",
+ "layer": "bottom",
"route": [
{
- "x": -24.28814665084876,
- "y": -25.252744631079267
+ "x": -76.35249950000001,
+ "y": -8.938933500000001
},
{
- "x": -25.745507389018393,
- "y": -28.544567785327025
+ "x": -76.35249950000001,
+ "y": -9.246215500000002
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1519",
- "pcb_component_id": "pcb_component_154",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_201",
+ "pcb_component_id": "pcb_component_128",
+ "layer": "bottom",
"route": [
{
- "x": -22.91088189508282,
- "y": -29.79951730986199
+ "x": -77.1124995,
+ "y": -8.938933500000001
},
{
- "x": -25.745507389018393,
- "y": -28.544567785327025
+ "x": -77.1124995,
+ "y": -9.246215500000002
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1520",
- "pcb_component_id": "pcb_component_155",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_202",
+ "pcb_component_id": "pcb_component_129",
+ "layer": "bottom",
"route": [
{
- "x": 61.912498500000005,
- "y": 24.814925499999998
+ "x": 75.4875005,
+ "y": 41.1086755
},
{
- "x": 42.8624985,
- "y": 24.8149255
+ "x": 75.4875005,
+ "y": 39.9586755
+ },
+ {
+ "x": 74.2375005,
+ "y": 39.9586755
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1521",
- "pcb_component_id": "pcb_component_155",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_203",
+ "pcb_component_id": "pcb_component_130",
+ "layer": "bottom",
"route": [
{
- "x": 61.91249850000001,
- "y": 43.8649255
+ "x": -77.7524995,
+ "y": -20.9147385
},
{
- "x": 61.912498500000005,
- "y": 24.814925499999998
+ "x": -77.7524995,
+ "y": -21.130410499999996
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1522",
- "pcb_component_id": "pcb_component_155",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_204",
+ "pcb_component_id": "pcb_component_130",
+ "layer": "bottom",
"route": [
{
- "x": 42.8624985,
- "y": 24.8149255
+ "x": -78.4724995,
+ "y": -20.9147385
},
{
- "x": 42.86249850000001,
- "y": 43.8649255
+ "x": -78.4724995,
+ "y": -21.130410499999996
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1523",
- "pcb_component_id": "pcb_component_155",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_205",
+ "pcb_component_id": "pcb_component_131",
+ "layer": "bottom",
"route": [
{
- "x": 42.86249850000001,
- "y": 43.8649255
+ "x": 126.78749850000001,
+ "y": -11.662574499999998
+ },
+ {
+ "x": 126.47749850000001,
+ "y": -11.382574499999997
+ },
+ {
+ "x": 126.2474985,
+ "y": -10.9425745
+ },
+ {
+ "x": 126.1074985,
+ "y": -10.632574499999997
+ },
+ {
+ "x": 125.9974985,
+ "y": -10.352574500000003
+ },
+ {
+ "x": 125.8274985,
+ "y": -10.162574499999998
+ },
+ {
+ "x": 125.64749850000001,
+ "y": -10.052574499999999
+ },
+ {
+ "x": 125.31749850000001,
+ "y": -9.9725745
+ },
+ {
+ "x": 122.06749850000001,
+ "y": -9.982574499999998
+ },
+ {
+ "x": 121.1374985,
+ "y": -10.002574500000001
+ },
+ {
+ "x": 120.87749850000002,
+ "y": -10.144484499999997
+ },
+ {
+ "x": 120.7974985,
+ "y": -10.3325745
+ },
+ {
+ "x": 120.7974985,
+ "y": -10.642574500000002
+ },
+ {
+ "x": 121.84749850000001,
+ "y": -10.642574500000002
+ },
+ {
+ "x": 121.84749850000001,
+ "y": -13.802574499999999
+ },
+ {
+ "x": 121.36749850000001,
+ "y": -13.812574500000004
+ },
+ {
+ "x": 121.44749850000001,
+ "y": -14.122574499999999
+ },
+ {
+ "x": 121.6074985,
+ "y": -14.322574500000002
+ },
+ {
+ "x": 121.81749850000001,
+ "y": -14.452574499999997
+ },
+ {
+ "x": 122.1074985,
+ "y": -14.482574499999998
+ },
+ {
+ "x": 125.1074985,
+ "y": -14.492574500000003
+ },
+ {
+ "x": 125.53749850000001,
+ "y": -14.592574500000005
+ },
+ {
+ "x": 125.84749850000001,
+ "y": -14.802574499999999
+ },
+ {
+ "x": 126.08749850000001,
+ "y": -15.142574500000002
+ },
+ {
+ "x": 126.17749850000001,
+ "y": -15.562574500000004
+ },
+ {
+ "x": 126.1874985,
+ "y": -15.952574500000004
+ },
+ {
+ "x": 126.9374985,
+ "y": -16.662574499999998
+ },
+ {
+ "x": 129.9674985,
+ "y": -16.662574499999998
+ },
+ {
+ "x": 130.7874985,
+ "y": -15.952574500000004
+ },
+ {
+ "x": 130.32749850000002,
+ "y": -15.952574500000004
+ },
+ {
+ "x": 130.32749850000002,
+ "y": -12.892574500000002
+ },
+ {
+ "x": 130.76749850000002,
+ "y": -12.892574500000002
+ },
+ {
+ "x": 129.9774985,
+ "y": -12.182574500000001
+ },
+ {
+ "x": 128.5674985,
+ "y": -12.182574500000001
+ },
+ {
+ "x": 128.10749850000002,
+ "y": -12.1525745
+ },
+ {
+ "x": 127.73749850000002,
+ "y": -12.092574499999998
+ },
+ {
+ "x": 127.3874985,
+ "y": -12.022574499999997
},
{
- "x": 61.91249850000001,
- "y": 43.8649255
+ "x": 127.05749850000001,
+ "y": -11.852574500000003
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1524",
- "pcb_component_id": "pcb_component_155",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_206",
+ "pcb_component_id": "pcb_component_132",
+ "layer": "bottom",
"route": [
{
- "x": 59.38749850000001,
- "y": 27.3399255
+ "x": 75.4875005,
+ "y": 22.0586755
},
{
- "x": 45.38749850000001,
- "y": 27.3399255
+ "x": 75.4875005,
+ "y": 20.9086755
+ },
+ {
+ "x": 74.2375005,
+ "y": 20.9086755
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1525",
- "pcb_component_id": "pcb_component_155",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_207",
+ "pcb_component_id": "pcb_component_133",
+ "layer": "bottom",
"route": [
{
- "x": 59.38749850000001,
- "y": 41.3399255
+ "x": -92.28750149999999,
+ "y": -6.900074500000002
+ },
+ {
+ "x": -92.59750149999999,
+ "y": -6.620074500000001
+ },
+ {
+ "x": -92.8275015,
+ "y": -6.1800745
+ },
+ {
+ "x": -92.9675015,
+ "y": -5.870074500000001
+ },
+ {
+ "x": -93.0775015,
+ "y": -5.5900745
+ },
+ {
+ "x": -93.2475015,
+ "y": -5.400074500000002
+ },
+ {
+ "x": -93.42750149999999,
+ "y": -5.290074500000003
+ },
+ {
+ "x": -93.75750149999999,
+ "y": -5.210074500000001
+ },
+ {
+ "x": -97.00750149999999,
+ "y": -5.220074500000003
+ },
+ {
+ "x": -97.9375015,
+ "y": -5.240074500000002
+ },
+ {
+ "x": -98.19750149999999,
+ "y": -5.3819845000000015
+ },
+ {
+ "x": -98.2775015,
+ "y": -5.5700745000000005
+ },
+ {
+ "x": -98.2775015,
+ "y": -5.880074499999999
+ },
+ {
+ "x": -97.22750149999999,
+ "y": -5.880074499999999
+ },
+ {
+ "x": -97.22750149999999,
+ "y": -9.040074500000003
+ },
+ {
+ "x": -97.70750149999999,
+ "y": -9.050074500000001
+ },
+ {
+ "x": -97.6275015,
+ "y": -9.3600745
+ },
+ {
+ "x": -97.4675015,
+ "y": -9.560074499999999
+ },
+ {
+ "x": -97.25750149999999,
+ "y": -9.690074500000001
+ },
+ {
+ "x": -96.9675015,
+ "y": -9.720074500000003
+ },
+ {
+ "x": -93.9675015,
+ "y": -9.7300745
+ },
+ {
+ "x": -93.53750149999999,
+ "y": -9.830074500000002
+ },
+ {
+ "x": -93.22750149999999,
+ "y": -10.040074500000003
+ },
+ {
+ "x": -92.9875015,
+ "y": -10.3800745
+ },
+ {
+ "x": -92.89750149999999,
+ "y": -10.800074500000001
+ },
+ {
+ "x": -92.8875015,
+ "y": -11.190074500000001
+ },
+ {
+ "x": -92.1375015,
+ "y": -11.900074500000002
+ },
+ {
+ "x": -89.1075015,
+ "y": -11.900074500000002
+ },
+ {
+ "x": -88.28750149999999,
+ "y": -11.190074500000001
+ },
+ {
+ "x": -88.7475015,
+ "y": -11.190074500000001
+ },
+ {
+ "x": -88.7475015,
+ "y": -8.130074500000003
+ },
+ {
+ "x": -88.3075015,
+ "y": -8.130074500000003
+ },
+ {
+ "x": -89.09750149999999,
+ "y": -7.420074500000002
+ },
+ {
+ "x": -90.50750149999999,
+ "y": -7.420074500000002
+ },
+ {
+ "x": -90.9675015,
+ "y": -7.390074500000001
+ },
+ {
+ "x": -91.33750149999999,
+ "y": -7.330074500000002
+ },
+ {
+ "x": -91.6875015,
+ "y": -7.260074500000002
},
{
- "x": 59.38749850000001,
- "y": 27.3399255
+ "x": -92.0175015,
+ "y": -7.0900745
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1526",
- "pcb_component_id": "pcb_component_155",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_208",
+ "pcb_component_id": "pcb_component_134",
+ "layer": "bottom",
"route": [
{
- "x": 45.38749850000001,
- "y": 27.3399255
+ "x": -130.3875015,
+ "y": 26.4374255
+ },
+ {
+ "x": -130.69750150000002,
+ "y": 26.7174255
+ },
+ {
+ "x": -130.9275015,
+ "y": 27.157425500000002
+ },
+ {
+ "x": -131.0675015,
+ "y": 27.4674255
+ },
+ {
+ "x": -131.1775015,
+ "y": 27.7474255
+ },
+ {
+ "x": -131.3475015,
+ "y": 27.9374255
+ },
+ {
+ "x": -131.5275015,
+ "y": 28.0474255
+ },
+ {
+ "x": -131.8575015,
+ "y": 28.1274255
+ },
+ {
+ "x": -135.1075015,
+ "y": 28.1174255
+ },
+ {
+ "x": -136.0375015,
+ "y": 28.0974255
+ },
+ {
+ "x": -136.2975015,
+ "y": 27.9555155
+ },
+ {
+ "x": -136.3775015,
+ "y": 27.7674255
+ },
+ {
+ "x": -136.3775015,
+ "y": 27.4574255
+ },
+ {
+ "x": -135.3275015,
+ "y": 27.4574255
+ },
+ {
+ "x": -135.3275015,
+ "y": 24.2974255
+ },
+ {
+ "x": -135.8075015,
+ "y": 24.2874255
+ },
+ {
+ "x": -135.72750150000002,
+ "y": 23.977425500000003
+ },
+ {
+ "x": -135.5675015,
+ "y": 23.7774255
+ },
+ {
+ "x": -135.3575015,
+ "y": 23.6474255
+ },
+ {
+ "x": -135.0675015,
+ "y": 23.6174255
+ },
+ {
+ "x": -132.0675015,
+ "y": 23.607425499999998
+ },
+ {
+ "x": -131.6375015,
+ "y": 23.5074255
+ },
+ {
+ "x": -131.3275015,
+ "y": 23.2974255
+ },
+ {
+ "x": -131.0875015,
+ "y": 22.9574255
+ },
+ {
+ "x": -130.9975015,
+ "y": 22.537425499999998
+ },
+ {
+ "x": -130.9875015,
+ "y": 22.1474255
+ },
+ {
+ "x": -130.2375015,
+ "y": 21.4374255
+ },
+ {
+ "x": -127.2075015,
+ "y": 21.4374255
+ },
+ {
+ "x": -126.3875015,
+ "y": 22.1474255
+ },
+ {
+ "x": -126.8475015,
+ "y": 22.1474255
+ },
+ {
+ "x": -126.8475015,
+ "y": 25.2074255
+ },
+ {
+ "x": -126.4075015,
+ "y": 25.2074255
+ },
+ {
+ "x": -127.1975015,
+ "y": 25.9174255
+ },
+ {
+ "x": -128.6075015,
+ "y": 25.9174255
+ },
+ {
+ "x": -129.0675015,
+ "y": 25.9474255
+ },
+ {
+ "x": -129.4375015,
+ "y": 26.0074255
+ },
+ {
+ "x": -129.7875015,
+ "y": 26.0774255
},
{
- "x": 45.38749850000001,
- "y": 41.3399255
+ "x": -130.1175015,
+ "y": 26.2474255
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1527",
- "pcb_component_id": "pcb_component_155",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_209",
+ "pcb_component_id": "pcb_component_135",
+ "layer": "bottom",
"route": [
{
- "x": 45.38749850000001,
- "y": 41.3399255
+ "x": 69.6374985,
+ "y": 33.5811755
+ },
+ {
+ "x": 69.3274985,
+ "y": 33.8611755
+ },
+ {
+ "x": 69.0974985,
+ "y": 34.3011755
+ },
+ {
+ "x": 68.9574985,
+ "y": 34.6111755
+ },
+ {
+ "x": 68.8474985,
+ "y": 34.8911755
+ },
+ {
+ "x": 68.6774985,
+ "y": 35.0811755
+ },
+ {
+ "x": 68.4974985,
+ "y": 35.1911755
+ },
+ {
+ "x": 68.16749850000001,
+ "y": 35.2711755
+ },
+ {
+ "x": 64.91749850000001,
+ "y": 35.2611755
+ },
+ {
+ "x": 63.9874985,
+ "y": 35.2411755
+ },
+ {
+ "x": 63.7274985,
+ "y": 35.0992655
+ },
+ {
+ "x": 63.647498500000005,
+ "y": 34.9111755
+ },
+ {
+ "x": 63.647498500000005,
+ "y": 34.6011755
+ },
+ {
+ "x": 64.69749850000001,
+ "y": 34.6011755
+ },
+ {
+ "x": 64.69749850000001,
+ "y": 31.4411755
+ },
+ {
+ "x": 64.2174985,
+ "y": 31.431175500000002
+ },
+ {
+ "x": 64.2974985,
+ "y": 31.1211755
+ },
+ {
+ "x": 64.4574985,
+ "y": 30.9211755
+ },
+ {
+ "x": 64.66749850000001,
+ "y": 30.7911755
+ },
+ {
+ "x": 64.9574985,
+ "y": 30.7611755
+ },
+ {
+ "x": 67.9574985,
+ "y": 30.7511755
+ },
+ {
+ "x": 68.3874985,
+ "y": 30.6511755
+ },
+ {
+ "x": 68.69749850000001,
+ "y": 30.4411755
+ },
+ {
+ "x": 68.9374985,
+ "y": 30.1011755
+ },
+ {
+ "x": 69.02749850000001,
+ "y": 29.6811755
+ },
+ {
+ "x": 69.0374985,
+ "y": 29.2911755
+ },
+ {
+ "x": 69.7874985,
+ "y": 28.5811755
+ },
+ {
+ "x": 72.8174985,
+ "y": 28.5811755
+ },
+ {
+ "x": 73.6374985,
+ "y": 29.2911755
+ },
+ {
+ "x": 73.1774985,
+ "y": 29.2911755
+ },
+ {
+ "x": 73.1774985,
+ "y": 32.3511755
+ },
+ {
+ "x": 73.61749850000001,
+ "y": 32.3511755
+ },
+ {
+ "x": 72.8274985,
+ "y": 33.0611755
+ },
+ {
+ "x": 71.41749850000001,
+ "y": 33.0611755
+ },
+ {
+ "x": 70.9574985,
+ "y": 33.0911755
+ },
+ {
+ "x": 70.58749850000001,
+ "y": 33.1511755
+ },
+ {
+ "x": 70.2374985,
+ "y": 33.2211755
},
{
- "x": 59.38749850000001,
- "y": 41.3399255
+ "x": 69.9074985,
+ "y": 33.3911755
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1528",
- "pcb_component_id": "pcb_component_155",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_210",
+ "pcb_component_id": "pcb_component_136",
+ "layer": "bottom",
"route": [
{
- "x": 54.187498500000004,
- "y": 37.539925499999995
+ "x": 132.63750050000002,
+ "y": -4.135074500000002
+ },
+ {
+ "x": 132.63750050000002,
+ "y": -5.2850745
},
{
- "x": 54.187498500000004,
- "y": 40.639925500000004
+ "x": 131.38750050000002,
+ "y": -5.2850745
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1529",
- "pcb_component_id": "pcb_component_155",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_211",
+ "pcb_component_id": "pcb_component_137",
+ "layer": "bottom",
"route": [
{
- "x": 54.187498500000004,
- "y": 37.539925499999995
+ "x": -130.3875015,
+ "y": 7.387425499999999
},
{
- "x": 50.58749850000001,
- "y": 37.539925499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1530",
- "pcb_component_id": "pcb_component_155",
- "layer": "top",
- "route": [
+ "x": -130.69750150000002,
+ "y": 7.6674255
+ },
{
- "x": 54.187498500000004,
- "y": 40.639925500000004
+ "x": -130.9275015,
+ "y": 8.1074255
},
{
- "x": 50.58749850000001,
- "y": 40.639925500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1531",
- "pcb_component_id": "pcb_component_155",
- "layer": "top",
- "route": [
+ "x": -131.0675015,
+ "y": 8.4174255
+ },
{
- "x": 50.58749850000001,
- "y": 37.539925499999995
+ "x": -131.1775015,
+ "y": 8.6974255
},
{
- "x": 50.58749850000001,
- "y": 40.639925500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1532",
- "pcb_component_id": "pcb_component_156",
- "layer": "bottom",
- "route": [
+ "x": -131.3475015,
+ "y": 8.8874255
+ },
{
- "x": 22.991139500000003,
- "y": 37.5536755
+ "x": -131.5275015,
+ "y": 8.9974255
},
{
- "x": 22.683857500000002,
- "y": 37.5536755
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1533",
- "pcb_component_id": "pcb_component_156",
- "layer": "bottom",
- "route": [
+ "x": -131.8575015,
+ "y": 9.0774255
+ },
{
- "x": 22.991139500000003,
- "y": 38.3136755
+ "x": -135.1075015,
+ "y": 9.0674255
},
{
- "x": 22.683857500000002,
- "y": 38.3136755
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1534",
- "pcb_component_id": "pcb_component_156",
- "layer": "bottom",
- "route": [
+ "x": -136.0375015,
+ "y": 9.047425500000001
+ },
{
- "x": 23.767498500000002,
- "y": 37.4636755
+ "x": -136.2975015,
+ "y": 8.9055155
},
{
- "x": 23.767498500000002,
- "y": 38.4036755
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1535",
- "pcb_component_id": "pcb_component_156",
- "layer": "bottom",
- "route": [
+ "x": -136.3775015,
+ "y": 8.717425500000001
+ },
{
- "x": 23.767498500000002,
- "y": 38.4036755
+ "x": -136.3775015,
+ "y": 8.4074255
},
{
- "x": 21.907498500000003,
- "y": 38.4036755
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1536",
- "pcb_component_id": "pcb_component_156",
- "layer": "bottom",
- "route": [
+ "x": -135.3275015,
+ "y": 8.4074255
+ },
{
- "x": 21.907498500000003,
- "y": 37.4636755
+ "x": -135.3275015,
+ "y": 5.2474254999999985
},
{
- "x": 23.767498500000002,
- "y": 37.4636755
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1537",
- "pcb_component_id": "pcb_component_156",
- "layer": "bottom",
- "route": [
+ "x": -135.8075015,
+ "y": 5.2374255000000005
+ },
{
- "x": 21.907498500000003,
- "y": 38.4036755
+ "x": -135.72750150000002,
+ "y": 4.927425500000002
},
{
- "x": 21.907498500000003,
- "y": 37.4636755
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1538",
- "pcb_component_id": "pcb_component_156",
- "layer": "bottom",
- "route": [
+ "x": -135.5675015,
+ "y": 4.7274255000000025
+ },
{
- "x": 23.3624985,
- "y": 37.6636755
+ "x": -135.3575015,
+ "y": 4.5974255
},
{
- "x": 23.3624985,
- "y": 38.2036755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1539",
- "pcb_component_id": "pcb_component_156",
- "layer": "bottom",
- "route": [
+ "x": -135.0675015,
+ "y": 4.567425499999999
+ },
{
- "x": 23.3624985,
- "y": 38.2036755
+ "x": -132.0675015,
+ "y": 4.557425500000001
},
{
- "x": 22.312498500000004,
- "y": 38.2036755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1540",
- "pcb_component_id": "pcb_component_156",
- "layer": "bottom",
- "route": [
+ "x": -131.6375015,
+ "y": 4.457425499999999
+ },
+ {
+ "x": -131.3275015,
+ "y": 4.2474254999999985
+ },
+ {
+ "x": -131.0875015,
+ "y": 3.9074254999999987
+ },
+ {
+ "x": -130.9975015,
+ "y": 3.4874255000000005
+ },
+ {
+ "x": -130.9875015,
+ "y": 3.0974255
+ },
+ {
+ "x": -130.2375015,
+ "y": 2.387425499999999
+ },
+ {
+ "x": -127.2075015,
+ "y": 2.387425499999999
+ },
+ {
+ "x": -126.3875015,
+ "y": 3.0974255
+ },
+ {
+ "x": -126.8475015,
+ "y": 3.0974255
+ },
+ {
+ "x": -126.8475015,
+ "y": 6.157425499999999
+ },
+ {
+ "x": -126.4075015,
+ "y": 6.157425499999999
+ },
+ {
+ "x": -127.1975015,
+ "y": 6.8674254999999995
+ },
+ {
+ "x": -128.6075015,
+ "y": 6.8674254999999995
+ },
+ {
+ "x": -129.0675015,
+ "y": 6.897425500000001
+ },
+ {
+ "x": -129.4375015,
+ "y": 6.957425499999999
+ },
{
- "x": 22.312498500000004,
- "y": 37.6636755
+ "x": -129.7875015,
+ "y": 7.0274255
},
{
- "x": 23.3624985,
- "y": 37.6636755
+ "x": -130.1175015,
+ "y": 7.1974255
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1541",
- "pcb_component_id": "pcb_component_156",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_212",
+ "pcb_component_id": "pcb_component_138",
"layer": "bottom",
"route": [
{
- "x": 22.312498500000004,
- "y": 38.2036755
+ "x": -111.33750149999999,
+ "y": 26.4374255
},
{
- "x": 22.312498500000004,
- "y": 37.6636755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1542",
- "pcb_component_id": "pcb_component_157",
- "layer": "top",
- "route": [
+ "x": -111.64750149999999,
+ "y": 26.7174255
+ },
{
- "x": -23.812501499999996,
- "y": -15.666324500000002
+ "x": -111.8775015,
+ "y": 27.157425500000002
},
{
- "x": -42.86250149999999,
- "y": -15.666324499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1543",
- "pcb_component_id": "pcb_component_157",
- "layer": "top",
- "route": [
+ "x": -112.0175015,
+ "y": 27.4674255
+ },
{
- "x": -23.812501499999993,
- "y": 3.383675499999999
+ "x": -112.1275015,
+ "y": 27.7474255
},
{
- "x": -23.812501499999996,
- "y": -15.666324500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1544",
- "pcb_component_id": "pcb_component_157",
- "layer": "top",
- "route": [
+ "x": -112.2975015,
+ "y": 27.9374255
+ },
{
- "x": -42.86250149999999,
- "y": -15.666324499999995
+ "x": -112.47750149999999,
+ "y": 28.0474255
},
{
- "x": -42.86250149999999,
- "y": 3.3836755000000025
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1545",
- "pcb_component_id": "pcb_component_157",
- "layer": "top",
- "route": [
+ "x": -112.80750149999999,
+ "y": 28.1274255
+ },
{
- "x": -42.86250149999999,
- "y": 3.3836755000000025
+ "x": -116.05750149999999,
+ "y": 28.1174255
},
{
- "x": -23.812501499999993,
- "y": 3.383675499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1546",
- "pcb_component_id": "pcb_component_157",
- "layer": "top",
- "route": [
+ "x": -116.9875015,
+ "y": 28.0974255
+ },
{
- "x": -26.337501499999995,
- "y": -13.141324500000003
+ "x": -117.24750149999998,
+ "y": 27.9555155
},
{
- "x": -40.337501499999995,
- "y": -13.141324499999996
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1547",
- "pcb_component_id": "pcb_component_157",
- "layer": "top",
- "route": [
+ "x": -117.3275015,
+ "y": 27.7674255
+ },
{
- "x": -26.337501499999995,
- "y": 0.8586755000000004
+ "x": -117.3275015,
+ "y": 27.4574255
},
{
- "x": -26.337501499999995,
- "y": -13.141324500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1548",
- "pcb_component_id": "pcb_component_157",
- "layer": "top",
- "route": [
+ "x": -116.27750149999999,
+ "y": 27.4574255
+ },
{
- "x": -40.337501499999995,
- "y": -13.141324499999996
+ "x": -116.27750149999999,
+ "y": 24.2974255
},
{
- "x": -40.337501499999995,
- "y": 0.8586755000000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1549",
- "pcb_component_id": "pcb_component_157",
- "layer": "top",
- "route": [
+ "x": -116.75750149999999,
+ "y": 24.2874255
+ },
{
- "x": -40.337501499999995,
- "y": 0.8586755000000004
+ "x": -116.67750149999999,
+ "y": 23.977425500000003
},
{
- "x": -26.337501499999995,
- "y": 0.8586755000000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1550",
- "pcb_component_id": "pcb_component_157",
- "layer": "top",
- "route": [
+ "x": -116.5175015,
+ "y": 23.7774255
+ },
{
- "x": -31.537501499999994,
- "y": -2.9413245000000003
+ "x": -116.30750149999999,
+ "y": 23.6474255
},
{
- "x": -31.537501499999994,
- "y": 0.15867550000000108
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1551",
- "pcb_component_id": "pcb_component_157",
- "layer": "top",
- "route": [
+ "x": -116.0175015,
+ "y": 23.6174255
+ },
{
- "x": -31.537501499999994,
- "y": -2.9413245000000003
+ "x": -113.0175015,
+ "y": 23.607425499999998
},
{
- "x": -35.13750149999999,
- "y": -2.9413245000000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1552",
- "pcb_component_id": "pcb_component_157",
- "layer": "top",
- "route": [
+ "x": -112.58750149999999,
+ "y": 23.5074255
+ },
{
- "x": -31.537501499999994,
- "y": 0.15867550000000108
+ "x": -112.27750149999999,
+ "y": 23.2974255
},
{
- "x": -35.13750149999999,
- "y": 0.15867550000000108
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1553",
- "pcb_component_id": "pcb_component_157",
- "layer": "top",
- "route": [
+ "x": -112.03750149999999,
+ "y": 22.9574255
+ },
{
- "x": -35.13750149999999,
- "y": -2.9413245000000003
+ "x": -111.94750149999999,
+ "y": 22.537425499999998
},
{
- "x": -35.13750149999999,
- "y": 0.15867550000000108
+ "x": -111.9375015,
+ "y": 22.1474255
+ },
+ {
+ "x": -111.1875015,
+ "y": 21.4374255
+ },
+ {
+ "x": -108.1575015,
+ "y": 21.4374255
+ },
+ {
+ "x": -107.33750149999999,
+ "y": 22.1474255
+ },
+ {
+ "x": -107.7975015,
+ "y": 22.1474255
+ },
+ {
+ "x": -107.7975015,
+ "y": 25.2074255
+ },
+ {
+ "x": -107.35750149999998,
+ "y": 25.2074255
+ },
+ {
+ "x": -108.14750149999999,
+ "y": 25.9174255
+ },
+ {
+ "x": -109.55750149999999,
+ "y": 25.9174255
+ },
+ {
+ "x": -110.0175015,
+ "y": 25.9474255
+ },
+ {
+ "x": -110.38750149999998,
+ "y": 26.0074255
+ },
+ {
+ "x": -110.7375015,
+ "y": 26.0774255
+ },
+ {
+ "x": -111.06750149999999,
+ "y": 26.2474255
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1554",
- "pcb_component_id": "pcb_component_158",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_213",
+ "pcb_component_id": "pcb_component_139",
"layer": "bottom",
"route": [
{
- "x": 46.5724985,
- "y": -13.094738499999998
+ "x": 63.4553345,
+ "y": -10.892574500000002
},
{
- "x": 46.5724985,
- "y": -13.310410499999996
+ "x": 63.2396625,
+ "y": -10.892574500000002
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1555",
- "pcb_component_id": "pcb_component_158",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_214",
+ "pcb_component_id": "pcb_component_139",
"layer": "bottom",
"route": [
{
- "x": 45.8524985,
- "y": -13.094738499999998
+ "x": 63.4553345,
+ "y": -10.172574500000003
},
{
- "x": 45.8524985,
- "y": -13.310410499999996
+ "x": 63.2396625,
+ "y": -10.172574500000003
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1556",
- "pcb_component_id": "pcb_component_158",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_215",
+ "pcb_component_id": "pcb_component_140",
"layer": "bottom",
"route": [
{
- "x": 46.6724985,
- "y": -12.2925745
+ "x": 37.3874985,
+ "y": 17.2961755
},
{
- "x": 45.7524985,
- "y": -12.2925745
+ "x": 37.3874985,
+ "y": 16.1461755
+ },
+ {
+ "x": 36.1374985,
+ "y": 16.1461755
}
],
"stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1557",
- "pcb_component_id": "pcb_component_158",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_216",
+ "pcb_component_id": "pcb_component_141",
"layer": "bottom",
"route": [
{
- "x": 45.7524985,
- "y": -12.2925745
+ "x": -67.3875015,
+ "y": 22.0586755
+ },
+ {
+ "x": -67.3875015,
+ "y": 20.9086755
},
{
- "x": 45.7524985,
- "y": -14.112574499999994
+ "x": -68.6375015,
+ "y": 20.9086755
}
],
"stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1558",
- "pcb_component_id": "pcb_component_158",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_217",
+ "pcb_component_id": "pcb_component_142",
"layer": "bottom",
"route": [
{
- "x": 46.6724985,
- "y": -14.112574499999994
+ "x": 18.337498500000002,
+ "y": 7.7711755
+ },
+ {
+ "x": 18.337498500000002,
+ "y": 6.6211755
},
{
- "x": 46.6724985,
- "y": -12.2925745
+ "x": 17.087498500000002,
+ "y": 6.6211755
}
],
"stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1559",
- "pcb_component_id": "pcb_component_158",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_218",
+ "pcb_component_id": "pcb_component_143",
"layer": "bottom",
"route": [
{
- "x": 45.7524985,
- "y": -14.112574499999994
+ "x": -22.976142499999998,
+ "y": 38.2324255
},
{
- "x": 46.6724985,
- "y": -14.112574499999994
+ "x": -22.668860499999997,
+ "y": 38.2324255
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1560",
- "pcb_component_id": "pcb_component_158",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_219",
+ "pcb_component_id": "pcb_component_143",
"layer": "bottom",
"route": [
{
- "x": 46.4624985,
- "y": -12.702574499999997
+ "x": -22.976142499999998,
+ "y": 37.4724255
},
{
- "x": 45.9624985,
- "y": -12.702574499999997
+ "x": -22.668860499999997,
+ "y": 37.4724255
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1561",
- "pcb_component_id": "pcb_component_158",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_220",
+ "pcb_component_id": "pcb_component_144",
"layer": "bottom",
"route": [
{
- "x": 45.9624985,
- "y": -12.702574499999997
+ "x": -69.3953375,
+ "y": -11.586274500000002
},
{
- "x": 45.9624985,
- "y": -13.702574499999997
+ "x": -69.17966549999998,
+ "y": -11.586274500000002
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1562",
- "pcb_component_id": "pcb_component_158",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_221",
+ "pcb_component_id": "pcb_component_144",
"layer": "bottom",
"route": [
{
- "x": 46.4624985,
- "y": -13.702574499999997
+ "x": -69.3953375,
+ "y": -12.3062745
},
{
- "x": 46.4624985,
- "y": -12.702574499999997
+ "x": -69.17966549999998,
+ "y": -12.3062745
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1563",
- "pcb_component_id": "pcb_component_158",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_222",
+ "pcb_component_id": "pcb_component_145",
"layer": "bottom",
"route": [
{
- "x": 45.9624985,
- "y": -13.702574499999997
+ "x": 126.78749850000001,
+ "y": 7.387425499999999
},
{
- "x": 46.4624985,
- "y": -13.702574499999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1564",
- "pcb_component_id": "pcb_component_159",
- "layer": "top",
- "route": [
+ "x": 126.47749850000001,
+ "y": 7.6674255
+ },
{
- "x": -42.8625015,
- "y": 5.764925499999997
+ "x": 126.2474985,
+ "y": 8.1074255
},
{
- "x": -61.912501500000005,
- "y": 5.7649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1565",
- "pcb_component_id": "pcb_component_159",
- "layer": "top",
- "route": [
+ "x": 126.1074985,
+ "y": 8.4174255
+ },
{
- "x": -42.86250149999999,
- "y": 24.814925499999998
+ "x": 125.9974985,
+ "y": 8.6974255
},
{
- "x": -42.8625015,
- "y": 5.764925499999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1566",
- "pcb_component_id": "pcb_component_159",
- "layer": "top",
- "route": [
+ "x": 125.8274985,
+ "y": 8.8874255
+ },
{
- "x": -61.912501500000005,
- "y": 5.7649255
+ "x": 125.64749850000001,
+ "y": 8.9974255
},
{
- "x": -61.9125015,
- "y": 24.8149255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1567",
- "pcb_component_id": "pcb_component_159",
- "layer": "top",
- "route": [
+ "x": 125.31749850000001,
+ "y": 9.0774255
+ },
{
- "x": -61.9125015,
- "y": 24.8149255
+ "x": 122.06749850000001,
+ "y": 9.0674255
},
{
- "x": -42.86250149999999,
- "y": 24.814925499999998
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1568",
- "pcb_component_id": "pcb_component_159",
- "layer": "top",
- "route": [
+ "x": 121.1374985,
+ "y": 9.047425500000001
+ },
{
- "x": -45.3875015,
- "y": 8.289925499999999
+ "x": 120.87749850000002,
+ "y": 8.9055155
},
{
- "x": -59.3875015,
- "y": 8.2899255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1569",
- "pcb_component_id": "pcb_component_159",
- "layer": "top",
- "route": [
+ "x": 120.7974985,
+ "y": 8.717425500000001
+ },
{
- "x": -45.3875015,
- "y": 22.2899255
+ "x": 120.7974985,
+ "y": 8.4074255
},
{
- "x": -45.3875015,
- "y": 8.289925499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1570",
- "pcb_component_id": "pcb_component_159",
- "layer": "top",
- "route": [
+ "x": 121.84749850000001,
+ "y": 8.4074255
+ },
{
- "x": -59.3875015,
- "y": 8.2899255
+ "x": 121.84749850000001,
+ "y": 5.2474254999999985
},
{
- "x": -59.3875015,
- "y": 22.289925500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1571",
- "pcb_component_id": "pcb_component_159",
- "layer": "top",
- "route": [
+ "x": 121.36749850000001,
+ "y": 5.2374255000000005
+ },
{
- "x": -59.3875015,
- "y": 22.289925500000003
+ "x": 121.44749850000001,
+ "y": 4.927425500000002
},
{
- "x": -45.3875015,
- "y": 22.2899255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1572",
- "pcb_component_id": "pcb_component_159",
- "layer": "top",
- "route": [
+ "x": 121.6074985,
+ "y": 4.7274255000000025
+ },
{
- "x": -50.5875015,
- "y": 18.4899255
+ "x": 121.81749850000001,
+ "y": 4.5974255
},
{
- "x": -50.5875015,
- "y": 21.5899255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1573",
- "pcb_component_id": "pcb_component_159",
- "layer": "top",
- "route": [
+ "x": 122.1074985,
+ "y": 4.567425499999999
+ },
{
- "x": -50.5875015,
- "y": 18.4899255
+ "x": 125.1074985,
+ "y": 4.557425500000001
},
{
- "x": -54.187501499999996,
- "y": 18.4899255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1574",
- "pcb_component_id": "pcb_component_159",
- "layer": "top",
- "route": [
+ "x": 125.53749850000001,
+ "y": 4.457425499999999
+ },
{
- "x": -50.5875015,
- "y": 21.5899255
+ "x": 125.84749850000001,
+ "y": 4.2474254999999985
},
{
- "x": -54.187501499999996,
- "y": 21.5899255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1575",
- "pcb_component_id": "pcb_component_159",
- "layer": "top",
- "route": [
+ "x": 126.08749850000001,
+ "y": 3.9074254999999987
+ },
{
- "x": -54.187501499999996,
- "y": 18.4899255
+ "x": 126.17749850000001,
+ "y": 3.4874255000000005
},
{
- "x": -54.187501499999996,
- "y": 21.5899255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1576",
- "pcb_component_id": "pcb_component_160",
- "layer": "top",
- "route": [
+ "x": 126.1874985,
+ "y": 3.0974255
+ },
{
- "x": -31.537501499999994,
- "y": -2.9538244999999996
+ "x": 126.9374985,
+ "y": 2.387425499999999
},
{
- "x": -35.13750149999999,
- "y": -2.9538244999999996
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1577",
- "pcb_component_id": "pcb_component_160",
- "layer": "top",
- "route": [
+ "x": 129.9674985,
+ "y": 2.387425499999999
+ },
{
- "x": -31.537501499999994,
- "y": 0.1461755000000018
+ "x": 130.7874985,
+ "y": 3.0974255
},
{
- "x": -31.537501499999994,
- "y": -2.9538244999999996
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1578",
- "pcb_component_id": "pcb_component_160",
- "layer": "top",
- "route": [
+ "x": 130.32749850000002,
+ "y": 3.0974255
+ },
{
- "x": -35.13750149999999,
- "y": -2.9538244999999996
+ "x": 130.32749850000002,
+ "y": 6.157425499999999
},
{
- "x": -35.13750149999999,
- "y": 0.1461755000000018
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1579",
- "pcb_component_id": "pcb_component_160",
- "layer": "top",
- "route": [
+ "x": 130.76749850000002,
+ "y": 6.157425499999999
+ },
{
- "x": -35.13750149999999,
- "y": 0.1461755000000018
+ "x": 129.9774985,
+ "y": 6.8674254999999995
},
{
- "x": -31.537501499999994,
- "y": 0.1461755000000018
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1580",
- "pcb_component_id": "pcb_component_160",
- "layer": "bottom",
- "route": [
+ "x": 128.5674985,
+ "y": 6.8674254999999995
+ },
{
- "x": -31.737501499999993,
- "y": -2.8038244999999975
+ "x": 128.10749850000002,
+ "y": 6.897425500000001
},
{
- "x": -34.937501499999996,
- "y": -2.8038244999999975
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1581",
- "pcb_component_id": "pcb_component_160",
- "layer": "bottom",
- "route": [
+ "x": 127.73749850000002,
+ "y": 6.957425499999999
+ },
{
- "x": -31.737501499999993,
- "y": -0.0038245000000003415
+ "x": 127.3874985,
+ "y": 7.0274255
},
{
- "x": -31.737501499999993,
- "y": -2.8038244999999975
+ "x": 127.05749850000001,
+ "y": 7.1974255
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1582",
- "pcb_component_id": "pcb_component_160",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_223",
+ "pcb_component_id": "pcb_component_147",
"layer": "bottom",
"route": [
{
- "x": -31.737501499999993,
- "y": -0.0038245000000003415
+ "x": -40.27750149999999,
+ "y": -18.4291105
},
{
- "x": -34.937501499999996,
- "y": -0.0038245000000003415
+ "x": -40.27750149999999,
+ "y": -18.213438500000002
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1583",
- "pcb_component_id": "pcb_component_160",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_224",
+ "pcb_component_id": "pcb_component_147",
"layer": "bottom",
"route": [
{
- "x": -34.937501499999996,
- "y": -0.0038245000000003415
+ "x": -39.557501499999994,
+ "y": -18.4291105
},
{
- "x": -34.937501499999996,
- "y": -2.8038244999999975
+ "x": -39.557501499999994,
+ "y": -18.213438500000002
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1584",
- "pcb_component_id": "pcb_component_161",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_225",
+ "pcb_component_id": "pcb_component_148",
"layer": "bottom",
"route": [
{
- "x": -70.9975015,
- "y": -18.8162745
+ "x": 104.14749850000001,
+ "y": 33.7574255
},
{
- "x": -70.9975015,
- "y": -18.1662745
+ "x": 104.14749850000001,
+ "y": 34.3574255
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1585",
- "pcb_component_id": "pcb_component_161",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_226",
+ "pcb_component_id": "pcb_component_148",
"layer": "bottom",
"route": [
{
- "x": -71.6475015,
- "y": -18.8162745
+ "x": 103.44749850000001,
+ "y": 35.0574255
},
{
- "x": -70.9975015,
- "y": -18.8162745
+ "x": 102.0474985,
+ "y": 35.0574255
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1586",
- "pcb_component_id": "pcb_component_161",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_227",
+ "pcb_component_id": "pcb_component_148",
"layer": "bottom",
"route": [
{
- "x": -71.6475015,
- "y": -11.5962745
+ "x": 102.0474985,
+ "y": 33.0574255
},
{
- "x": -70.9975015,
- "y": -11.5962745
+ "x": 103.44749850000001,
+ "y": 33.0574255
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1587",
- "pcb_component_id": "pcb_component_161",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_228",
+ "pcb_component_id": "pcb_component_148",
"layer": "bottom",
"route": [
{
- "x": -77.56750149999999,
- "y": -18.8162745
+ "x": 101.3474985,
+ "y": 34.3574255
},
{
- "x": -78.2175015,
- "y": -18.8162745
+ "x": 101.3474985,
+ "y": 33.7574255
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1588",
- "pcb_component_id": "pcb_component_161",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_229",
+ "pcb_component_id": "pcb_component_148",
"layer": "bottom",
"route": [
{
- "x": -77.56750149999999,
- "y": -11.5962745
+ "x": 104.14749850000001,
+ "y": 33.7574255
},
{
- "x": -78.2175015,
- "y": -11.5962745
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1589",
- "pcb_component_id": "pcb_component_161",
- "layer": "bottom",
- "route": [
+ "x": 104.14037361876198,
+ "y": 33.657805071864665
+ },
{
- "x": -78.2175015,
- "y": -18.8162745
+ "x": 104.11914377151219,
+ "y": 33.560212617134425
},
{
- "x": -78.2175015,
- "y": -18.1662745
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1590",
- "pcb_component_id": "pcb_component_161",
- "layer": "bottom",
- "route": [
+ "x": 104.08424113807543,
+ "y": 33.46663484299066
+ },
{
- "x": -78.2175015,
- "y": -11.5962745
+ "x": 104.036376237648,
+ "y": 33.378976729038804
},
{
- "x": -78.2175015,
- "y": -12.246274499999998
+ "x": 103.97652346463035,
+ "y": 33.299022747295425
+ },
+ {
+ "x": 103.90590125270474,
+ "y": 33.22840053536988
+ },
+ {
+ "x": 103.82594727096131,
+ "y": 33.1685477623523
+ },
+ {
+ "x": 103.7382891570094,
+ "y": 33.120682861924955
+ },
+ {
+ "x": 103.64471138286561,
+ "y": 33.08578022848829
+ },
+ {
+ "x": 103.54711892813535,
+ "y": 33.064550381238575
+ },
+ {
+ "x": 103.44749850000001,
+ "y": 33.05742550000064
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1591",
- "pcb_component_id": "pcb_component_161",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_230",
+ "pcb_component_id": "pcb_component_148",
"layer": "bottom",
"route": [
{
- "x": -70.4875015,
- "y": -19.326274500000004
+ "x": 103.44749850000001,
+ "y": 35.0574255
},
{
- "x": -78.7275015,
- "y": -19.326274499999997
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1592",
- "pcb_component_id": "pcb_component_161",
- "layer": "bottom",
- "route": [
+ "x": 103.54711892813533,
+ "y": 35.050300618761895
+ },
{
- "x": -70.4875015,
- "y": -11.086274500000002
+ "x": 103.64471138286554,
+ "y": 35.02907077151203
},
{
- "x": -70.4875015,
- "y": -19.326274500000004
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1593",
- "pcb_component_id": "pcb_component_161",
- "layer": "bottom",
- "route": [
+ "x": 103.73828915700929,
+ "y": 34.994168138075246
+ },
{
- "x": -78.7275015,
- "y": -19.326274499999997
+ "x": 103.82594727096114,
+ "y": 34.94630323764781
},
{
- "x": -78.7275015,
- "y": -11.086274499999995
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1594",
- "pcb_component_id": "pcb_component_161",
- "layer": "bottom",
- "route": [
+ "x": 103.90590125270451,
+ "y": 34.886450464630165
+ },
{
- "x": -78.7275015,
- "y": -11.086274499999995
+ "x": 103.97652346463006,
+ "y": 34.81582825270458
},
{
- "x": -70.4875015,
- "y": -11.086274500000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1595",
- "pcb_component_id": "pcb_component_161",
- "layer": "bottom",
- "route": [
+ "x": 104.03637623764767,
+ "y": 34.735874270961176
+ },
{
- "x": -71.1075015,
- "y": -18.7062745
+ "x": 104.08424113807506,
+ "y": 34.648216157009315
},
{
- "x": -71.1075015,
- "y": -12.7062745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1596",
- "pcb_component_id": "pcb_component_161",
- "layer": "bottom",
- "route": [
+ "x": 104.1191437715118,
+ "y": 34.55463838286555
+ },
{
- "x": -71.1075015,
- "y": -12.7062745
+ "x": 104.14037361876161,
+ "y": 34.45704592813532
},
{
- "x": -72.1075015,
- "y": -11.7062745
+ "x": 104.14749849999967,
+ "y": 34.3574255
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1597",
- "pcb_component_id": "pcb_component_161",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_231",
+ "pcb_component_id": "pcb_component_148",
"layer": "bottom",
"route": [
{
- "x": -72.1075015,
- "y": -11.7062745
+ "x": 102.0474985,
+ "y": 33.0574255
},
{
- "x": -78.1075015,
- "y": -11.7062745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1598",
- "pcb_component_id": "pcb_component_161",
- "layer": "bottom",
- "route": [
+ "x": 101.94787807186462,
+ "y": 33.06455038123799
+ },
{
- "x": -78.1075015,
- "y": -18.7062745
+ "x": 101.85028561713435,
+ "y": 33.085780228487764
},
{
- "x": -71.1075015,
- "y": -18.7062745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1599",
- "pcb_component_id": "pcb_component_161",
- "layer": "bottom",
- "route": [
+ "x": 101.75670784299051,
+ "y": 33.12068286192449
+ },
{
- "x": -78.1075015,
- "y": -11.7062745
+ "x": 101.6690497290386,
+ "y": 33.1685477623519
},
{
- "x": -78.1075015,
- "y": -18.7062745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1600",
- "pcb_component_id": "pcb_component_162",
- "layer": "bottom",
- "route": [
+ "x": 101.58909574729518,
+ "y": 33.228400535369545
+ },
{
- "x": -4.747501499999997,
- "y": 37.8610665
+ "x": 101.51847353536957,
+ "y": 33.299022747295155
},
{
- "x": -4.747501499999997,
- "y": 37.5537845
+ "x": 101.45862076235193,
+ "y": 33.3789767290386
+ },
+ {
+ "x": 101.41075586192451,
+ "y": 33.46663484299051
+ },
+ {
+ "x": 101.3758532284878,
+ "y": 33.56021261713434
+ },
+ {
+ "x": 101.35462338123803,
+ "y": 33.65780507186462
+ },
+ {
+ "x": 101.34749850000004,
+ "y": 33.7574255
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1601",
- "pcb_component_id": "pcb_component_162",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_232",
+ "pcb_component_id": "pcb_component_148",
"layer": "bottom",
"route": [
{
- "x": -5.5075014999999965,
- "y": 37.8610665
+ "x": 101.3474985,
+ "y": 34.3574255
},
{
- "x": -5.5075014999999965,
- "y": 37.5537845
+ "x": 101.35462338123817,
+ "y": 34.45704592813528
+ },
+ {
+ "x": 101.37585322848807,
+ "y": 34.55463838286545
+ },
+ {
+ "x": 101.4107558619249,
+ "y": 34.64821615700916
+ },
+ {
+ "x": 101.45862076235234,
+ "y": 34.73587427096095
+ },
+ {
+ "x": 101.51847353536999,
+ "y": 34.81582825270427
+ },
+ {
+ "x": 101.58909574729557,
+ "y": 34.886450464629796
+ },
+ {
+ "x": 101.66904972903896,
+ "y": 34.94630323764737
+ },
+ {
+ "x": 101.75670784299079,
+ "y": 34.99416813807475
+ },
+ {
+ "x": 101.85028561713453,
+ "y": 35.029070771511485
+ },
+ {
+ "x": 101.94787807186472,
+ "y": 35.050300618761305
+ },
+ {
+ "x": 102.0474985,
+ "y": 35.05742549999938
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1602",
- "pcb_component_id": "pcb_component_162",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_233",
+ "pcb_component_id": "pcb_component_149",
"layer": "bottom",
"route": [
{
- "x": -4.657501499999997,
- "y": 38.6374255
+ "x": 88.6874985,
+ "y": 12.1499255
},
{
- "x": -5.597501499999996,
- "y": 38.6374255
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1603",
- "pcb_component_id": "pcb_component_162",
- "layer": "bottom",
- "route": [
+ "x": 88.3774985,
+ "y": 12.4299255
+ },
{
- "x": -5.597501499999996,
- "y": 38.6374255
+ "x": 88.1474985,
+ "y": 12.8699255
},
{
- "x": -5.597501499999996,
- "y": 36.7774255
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1604",
- "pcb_component_id": "pcb_component_162",
- "layer": "bottom",
- "route": [
+ "x": 88.0074985,
+ "y": 13.1799255
+ },
{
- "x": -4.657501499999997,
- "y": 36.7774255
+ "x": 87.8974985,
+ "y": 13.4599255
},
{
- "x": -4.657501499999997,
- "y": 38.6374255
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1605",
- "pcb_component_id": "pcb_component_162",
- "layer": "bottom",
- "route": [
+ "x": 87.7274985,
+ "y": 13.6499255
+ },
{
- "x": -5.597501499999996,
- "y": 36.7774255
+ "x": 87.5474985,
+ "y": 13.7599255
},
{
- "x": -4.657501499999997,
- "y": 36.7774255
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1606",
- "pcb_component_id": "pcb_component_162",
- "layer": "bottom",
- "route": [
+ "x": 87.2174985,
+ "y": 13.8399255
+ },
{
- "x": -4.857501499999997,
- "y": 38.2324255
+ "x": 83.9674985,
+ "y": 13.829925500000002
},
{
- "x": -5.397501499999997,
- "y": 38.2324255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1607",
- "pcb_component_id": "pcb_component_162",
- "layer": "bottom",
- "route": [
+ "x": 83.0374985,
+ "y": 13.8099255
+ },
+ {
+ "x": 82.77749850000001,
+ "y": 13.668015500000001
+ },
+ {
+ "x": 82.6974985,
+ "y": 13.4799255
+ },
+ {
+ "x": 82.6974985,
+ "y": 13.169925500000002
+ },
+ {
+ "x": 83.7474985,
+ "y": 13.169925500000002
+ },
+ {
+ "x": 83.7474985,
+ "y": 10.009925500000001
+ },
+ {
+ "x": 83.2674985,
+ "y": 9.9999255
+ },
+ {
+ "x": 83.3474985,
+ "y": 9.689925500000001
+ },
+ {
+ "x": 83.5074985,
+ "y": 9.489925500000002
+ },
+ {
+ "x": 83.7174985,
+ "y": 9.359925500000001
+ },
+ {
+ "x": 84.0074985,
+ "y": 9.329925500000002
+ },
+ {
+ "x": 87.0074985,
+ "y": 9.3199255
+ },
+ {
+ "x": 87.4374985,
+ "y": 9.219925499999999
+ },
+ {
+ "x": 87.7474985,
+ "y": 9.0099255
+ },
+ {
+ "x": 87.9874985,
+ "y": 8.6699255
+ },
+ {
+ "x": 88.0774985,
+ "y": 8.2499255
+ },
+ {
+ "x": 88.0874985,
+ "y": 7.859925499999999
+ },
+ {
+ "x": 88.8374985,
+ "y": 7.149925499999998
+ },
+ {
+ "x": 91.8674985,
+ "y": 7.149925499999998
+ },
+ {
+ "x": 92.6874985,
+ "y": 7.859925499999999
+ },
{
- "x": -5.397501499999997,
- "y": 38.2324255
+ "x": 92.2274985,
+ "y": 7.859925499999999
},
{
- "x": -5.397501499999996,
- "y": 37.1824255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1608",
- "pcb_component_id": "pcb_component_162",
- "layer": "bottom",
- "route": [
+ "x": 92.2274985,
+ "y": 10.9199255
+ },
{
- "x": -4.857501499999996,
- "y": 37.1824255
+ "x": 92.6674985,
+ "y": 10.9199255
},
{
- "x": -4.857501499999997,
- "y": 38.2324255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1609",
- "pcb_component_id": "pcb_component_162",
- "layer": "bottom",
- "route": [
+ "x": 91.8774985,
+ "y": 11.629925499999999
+ },
{
- "x": -5.397501499999996,
- "y": 37.1824255
+ "x": 90.4674985,
+ "y": 11.629925499999999
},
{
- "x": -4.857501499999996,
- "y": 37.1824255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1610",
- "pcb_component_id": "pcb_component_163",
- "layer": "top",
- "route": [
+ "x": 90.0074985,
+ "y": 11.6599255
+ },
{
- "x": -88.6875015,
- "y": 18.4774255
+ "x": 89.6374985,
+ "y": 11.7199255
},
{
- "x": -92.28750149999999,
- "y": 18.4774255
+ "x": 89.2874985,
+ "y": 11.789925499999999
+ },
+ {
+ "x": 88.9574985,
+ "y": 11.9599255
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1611",
- "pcb_component_id": "pcb_component_163",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_234",
+ "pcb_component_id": "pcb_component_150",
+ "layer": "bottom",
"route": [
{
- "x": -88.6875015,
- "y": 21.5774255
+ "x": -111.33750149999999,
+ "y": -11.662574499999998
},
{
- "x": -88.6875015,
- "y": 18.4774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1612",
- "pcb_component_id": "pcb_component_163",
- "layer": "top",
- "route": [
+ "x": -111.64750149999999,
+ "y": -11.382574499999997
+ },
{
- "x": -92.28750149999999,
- "y": 18.4774255
+ "x": -111.8775015,
+ "y": -10.9425745
},
{
- "x": -92.28750149999999,
- "y": 21.5774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1613",
- "pcb_component_id": "pcb_component_163",
- "layer": "top",
- "route": [
+ "x": -112.0175015,
+ "y": -10.632574499999997
+ },
{
- "x": -92.28750149999999,
- "y": 21.5774255
+ "x": -112.1275015,
+ "y": -10.352574500000003
},
{
- "x": -88.6875015,
- "y": 21.5774255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1614",
- "pcb_component_id": "pcb_component_163",
- "layer": "bottom",
- "route": [
+ "x": -112.2975015,
+ "y": -10.162574499999998
+ },
{
- "x": -88.8875015,
- "y": 18.6274255
+ "x": -112.47750149999999,
+ "y": -10.052574499999999
},
{
- "x": -92.08750149999999,
- "y": 18.6274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1615",
- "pcb_component_id": "pcb_component_163",
- "layer": "bottom",
- "route": [
+ "x": -112.80750149999999,
+ "y": -9.9725745
+ },
{
- "x": -88.8875015,
- "y": 21.4274255
+ "x": -116.05750149999999,
+ "y": -9.982574499999998
},
{
- "x": -88.8875015,
- "y": 18.6274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1616",
- "pcb_component_id": "pcb_component_163",
- "layer": "bottom",
- "route": [
+ "x": -116.9875015,
+ "y": -10.002574500000001
+ },
{
- "x": -88.8875015,
- "y": 21.4274255
+ "x": -117.24750149999998,
+ "y": -10.144484499999997
},
{
- "x": -92.08750149999999,
- "y": 21.4274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1617",
- "pcb_component_id": "pcb_component_163",
- "layer": "bottom",
- "route": [
+ "x": -117.3275015,
+ "y": -10.3325745
+ },
{
- "x": -92.08750149999999,
- "y": 21.4274255
+ "x": -117.3275015,
+ "y": -10.642574500000002
},
{
- "x": -92.08750149999999,
- "y": 18.6274255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1618",
- "pcb_component_id": "pcb_component_164",
- "layer": "top",
- "route": [
+ "x": -116.27750149999999,
+ "y": -10.642574500000002
+ },
{
- "x": -23.812501499999996,
- "y": 3.3836754999999954
+ "x": -116.27750149999999,
+ "y": -13.802574499999999
},
{
- "x": -42.86250149999999,
- "y": 3.3836755000000025
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1619",
- "pcb_component_id": "pcb_component_164",
- "layer": "top",
- "route": [
+ "x": -116.75750149999999,
+ "y": -13.812574500000004
+ },
{
- "x": -23.812501499999993,
- "y": 22.4336755
+ "x": -116.67750149999999,
+ "y": -14.122574499999999
},
{
- "x": -23.812501499999996,
- "y": 3.3836754999999954
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1620",
- "pcb_component_id": "pcb_component_164",
- "layer": "top",
- "route": [
+ "x": -116.5175015,
+ "y": -14.322574500000002
+ },
{
- "x": -42.86250149999999,
- "y": 3.3836755000000025
+ "x": -116.30750149999999,
+ "y": -14.452574499999997
},
{
- "x": -42.86250149999999,
- "y": 22.4336755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1621",
- "pcb_component_id": "pcb_component_164",
- "layer": "top",
- "route": [
+ "x": -116.0175015,
+ "y": -14.482574499999998
+ },
{
- "x": -42.86250149999999,
- "y": 22.4336755
+ "x": -113.0175015,
+ "y": -14.492574500000003
},
{
- "x": -23.812501499999993,
- "y": 22.4336755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1622",
- "pcb_component_id": "pcb_component_164",
- "layer": "top",
- "route": [
+ "x": -112.58750149999999,
+ "y": -14.592574500000005
+ },
{
- "x": -26.337501499999995,
- "y": 5.9086754999999975
+ "x": -112.27750149999999,
+ "y": -14.802574499999999
},
{
- "x": -40.337501499999995,
- "y": 5.908675500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1623",
- "pcb_component_id": "pcb_component_164",
- "layer": "top",
- "route": [
+ "x": -112.03750149999999,
+ "y": -15.142574500000002
+ },
{
- "x": -26.337501499999995,
- "y": 19.908675499999998
+ "x": -111.94750149999999,
+ "y": -15.562574500000004
},
{
- "x": -26.337501499999995,
- "y": 5.9086754999999975
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1624",
- "pcb_component_id": "pcb_component_164",
- "layer": "top",
- "route": [
+ "x": -111.9375015,
+ "y": -15.952574500000004
+ },
{
- "x": -40.337501499999995,
- "y": 5.908675500000001
+ "x": -111.1875015,
+ "y": -16.662574499999998
},
{
- "x": -40.337501499999995,
- "y": 19.9086755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1625",
- "pcb_component_id": "pcb_component_164",
- "layer": "top",
- "route": [
+ "x": -108.1575015,
+ "y": -16.662574499999998
+ },
{
- "x": -40.337501499999995,
- "y": 19.9086755
+ "x": -107.33750149999999,
+ "y": -15.952574500000004
},
{
- "x": -26.337501499999995,
- "y": 19.908675499999998
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1626",
- "pcb_component_id": "pcb_component_164",
- "layer": "top",
- "route": [
+ "x": -107.7975015,
+ "y": -15.952574500000004
+ },
{
- "x": -31.537501499999994,
- "y": 16.1086755
+ "x": -107.7975015,
+ "y": -12.892574500000002
},
{
- "x": -31.537501499999994,
- "y": 19.2086755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1627",
- "pcb_component_id": "pcb_component_164",
- "layer": "top",
- "route": [
+ "x": -107.35750149999998,
+ "y": -12.892574500000002
+ },
{
- "x": -31.537501499999994,
- "y": 16.1086755
+ "x": -108.14750149999999,
+ "y": -12.182574500000001
},
{
- "x": -35.13750149999999,
- "y": 16.1086755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1628",
- "pcb_component_id": "pcb_component_164",
- "layer": "top",
- "route": [
+ "x": -109.55750149999999,
+ "y": -12.182574500000001
+ },
{
- "x": -31.537501499999994,
- "y": 19.2086755
+ "x": -110.0175015,
+ "y": -12.1525745
},
{
- "x": -35.13750149999999,
- "y": 19.2086755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1629",
- "pcb_component_id": "pcb_component_164",
- "layer": "top",
- "route": [
+ "x": -110.38750149999998,
+ "y": -12.092574499999998
+ },
{
- "x": -35.13750149999999,
- "y": 16.1086755
+ "x": -110.7375015,
+ "y": -12.022574499999997
},
{
- "x": -35.13750149999999,
- "y": 19.2086755
+ "x": -111.06750149999999,
+ "y": -11.852574500000003
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1630",
- "pcb_component_id": "pcb_component_165",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_235",
+ "pcb_component_id": "pcb_component_151",
"layer": "bottom",
"route": [
{
- "x": -114.94250149999999,
- "y": 33.7574255
+ "x": 22.693857500000004,
+ "y": 36.733675500000004
},
{
- "x": -114.94250149999999,
- "y": 34.3574255
+ "x": 23.001139500000004,
+ "y": 36.733675500000004
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1631",
- "pcb_component_id": "pcb_component_165",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_236",
+ "pcb_component_id": "pcb_component_151",
"layer": "bottom",
"route": [
{
- "x": -115.6425015,
- "y": 35.0574255
+ "x": 22.693857500000004,
+ "y": 35.9736755
},
{
- "x": -117.0425015,
- "y": 35.0574255
+ "x": 23.001139500000004,
+ "y": 35.9736755
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1632",
- "pcb_component_id": "pcb_component_165",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_237",
+ "pcb_component_id": "pcb_component_152",
"layer": "bottom",
"route": [
{
- "x": -117.0425015,
- "y": 33.0574255
+ "x": -80.2496635,
+ "y": -12.101324499999997
},
{
- "x": -115.6425015,
- "y": 33.0574255
+ "x": -80.46533550000001,
+ "y": -12.101324499999997
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1633",
- "pcb_component_id": "pcb_component_165",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_238",
+ "pcb_component_id": "pcb_component_152",
"layer": "bottom",
"route": [
{
- "x": -117.7425015,
- "y": 34.3574255
+ "x": -80.2496635,
+ "y": -11.381324499999998
},
{
- "x": -117.7425015,
- "y": 33.7574255
+ "x": -80.46533550000001,
+ "y": -11.381324499999998
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1634",
- "pcb_component_id": "pcb_component_165",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_239",
+ "pcb_component_id": "pcb_component_153",
"layer": "bottom",
"route": [
{
- "x": -114.69250149999999,
- "y": 35.3074255
+ "x": 47.2824985,
+ "y": -19.122574500000006
},
{
- "x": -114.69250149999999,
- "y": 32.8074255
+ "x": 53.2924985,
+ "y": -19.122574500000006
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1635",
- "pcb_component_id": "pcb_component_165",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_240",
+ "pcb_component_id": "pcb_component_153",
"layer": "bottom",
"route": [
{
- "x": -114.69250149999999,
- "y": 35.3074255
+ "x": 49.5324985,
+ "y": -12.302574499999999
},
{
- "x": -117.9925015,
- "y": 35.3074255
+ "x": 53.2924985,
+ "y": -12.302574499999999
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1636",
- "pcb_component_id": "pcb_component_165",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_241",
+ "pcb_component_id": "pcb_component_153",
"layer": "bottom",
"route": [
{
- "x": -117.9925015,
- "y": 32.8074255
+ "x": 53.2924985,
+ "y": -12.302574499999999
},
{
- "x": -114.69250149999999,
- "y": 32.8074255
+ "x": 53.2924985,
+ "y": -13.562574500000004
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1637",
- "pcb_component_id": "pcb_component_165",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_242",
+ "pcb_component_id": "pcb_component_153",
"layer": "bottom",
"route": [
{
- "x": -117.9925015,
- "y": 32.8074255
+ "x": 53.2924985,
+ "y": -19.122574500000006
},
{
- "x": -117.9925015,
- "y": 35.3074255
+ "x": 53.2924985,
+ "y": -17.8625745
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1638",
- "pcb_component_id": "pcb_component_165",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_243",
+ "pcb_component_id": "pcb_component_154",
"layer": "bottom",
"route": [
{
- "x": -114.94250149999999,
- "y": 33.7574255
+ "x": -17.113615562324267,
+ "y": -32.36609149874962
},
{
- "x": -114.94962638123798,
- "y": 33.65780507186461
+ "x": -17.49514120455259,
+ "y": -32.53620376850776
},
{
- "x": -114.97085622848775,
- "y": 33.56021261713431
+ "x": -17.990584303899265,
+ "y": -32.568392824252854
},
{
- "x": -115.00575886192448,
- "y": 33.46663484299047
+ "x": -18.33072199311053,
+ "y": -32.57091321668677
},
{
- "x": -115.05362376235188,
- "y": 33.37897672903855
+ "x": -18.631283149884982,
+ "y": -32.558146422320036
},
{
- "x": -115.11347653536951,
- "y": 33.2990227472951
+ "x": -18.8738380734394,
+ "y": -32.636677365645006
},
{
- "x": -115.18409874729512,
- "y": 33.228400535369474
+ "x": -19.047289595616565,
+ "y": -32.75673805635777
},
{
- "x": -115.26405272903857,
- "y": 33.16854776235181
+ "x": -19.2540326222654,
+ "y": -33.02610271798226
},
{
- "x": -115.35171084299049,
- "y": 33.120682861924394
+ "x": -20.560561557684515,
+ "y": -36.00193573428418
},
{
- "x": -115.44528861713431,
- "y": 33.08578022848765
+ "x": -20.918758508632518,
+ "y": -36.86041983101024
},
{
- "x": -115.54288107186461,
- "y": 33.06455038123785
+ "x": -20.894250499772742,
+ "y": -37.155610965026376
},
{
- "x": -115.6425015,
- "y": 33.057425499999844
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1639",
- "pcb_component_id": "pcb_component_165",
- "layer": "bottom",
- "route": [
+ "x": -20.75464767809805,
+ "y": -37.30490564102141
+ },
{
- "x": -115.6425015,
- "y": 35.0574255
+ "x": -20.47118512870449,
+ "y": -37.43040059347491
},
{
- "x": -115.54288107186474,
- "y": 35.050300618761824
+ "x": -20.046121580071684,
+ "y": -36.470285506819316
},
{
- "x": -115.4452886171346,
- "y": 35.02907077151191
+ "x": -17.15663236689865,
+ "y": -37.749524376990436
},
{
- "x": -115.35171084299093,
- "y": 34.99416813807508
+ "x": -17.34180317878169,
+ "y": -38.19248235516283
},
{
- "x": -115.26405272903918,
- "y": 34.946303237647626
+ "x": -17.025954835206587,
+ "y": -38.244825681966375
},
{
- "x": -115.18409874729589,
- "y": 34.88645046462997
+ "x": -16.778304182718614,
+ "y": -38.17948691612035
},
{
- "x": -115.11347653537041,
- "y": 34.81582825270438
+ "x": -16.574420081310883,
+ "y": -38.040090814334235
},
{
- "x": -115.05362376235288,
- "y": 34.73587427096099
+ "x": -16.429589717784044,
+ "y": -37.78706084417125
},
{
- "x": -115.00575886192556,
- "y": 34.648216157009166
+ "x": -15.205978482769774,
+ "y": -35.04792310657081
},
{
- "x": -114.97085622848888,
- "y": 34.554638382865434
+ "x": -14.940465306981519,
+ "y": -34.69521536142926
},
{
- "x": -114.94962638123913,
- "y": 34.457045928135265
+ "x": -14.622947337196903,
+ "y": -34.49676552176226
},
{
- "x": -114.94250150000111,
- "y": 34.3574255
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1640",
- "pcb_component_id": "pcb_component_165",
- "layer": "bottom",
- "route": [
+ "x": -14.214895545639973,
+ "y": -34.41495027008399
+ },
{
- "x": -117.0425015,
- "y": 33.0574255
+ "x": -13.794415492523493,
+ "y": -34.50268011068092
},
{
- "x": -117.14212192813527,
- "y": 33.064550381238206
+ "x": -13.433753093207294,
+ "y": -34.65141690410972
},
{
- "x": -117.23971438286543,
- "y": 33.08578022848815
+ "x": -12.480915595111977,
+ "y": -34.25304433700267
},
{
- "x": -117.33329215700911,
- "y": 33.12068286192498
+ "x": -11.25430364048587,
+ "y": -31.48242651551081
},
{
- "x": -117.42095027096089,
- "y": 33.168547762352446
+ "x": -11.57156992776832,
+ "y": -30.445198429237585
},
{
- "x": -117.5009042527042,
- "y": 33.22840053537009
+ "x": -11.757788244312216,
+ "y": -30.865820276724797
},
{
- "x": -117.57152646462973,
- "y": 33.299022747295666
+ "x": -14.55583792542281,
+ "y": -29.627063649280615
},
{
- "x": -117.63137923764731,
- "y": 33.37897672903903
+ "x": -14.377716057424301,
+ "y": -29.224729708205885
},
{
- "x": -117.6792441380747,
- "y": 33.46663484299084
+ "x": -15.34674645261039,
+ "y": -29.65967808813791
},
{
- "x": -117.71414677151147,
- "y": 33.56021261713455
+ "x": -15.917546075060162,
+ "y": -30.94897549021828
},
{
- "x": -117.73537661876134,
- "y": 33.65780507186473
+ "x": -16.13119625122279,
+ "y": -31.35745266488742
},
{
- "x": -117.74250149999946,
- "y": 33.7574255
+ "x": -16.33584426854991,
+ "y": -31.671489587882277
+ },
+ {
+ "x": -16.541539790537886,
+ "y": -31.963190380191953
+ },
+ {
+ "x": -16.830578396042913,
+ "y": -32.19612102336221
}
],
- "stroke_width": 0.12
+ "stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1641",
- "pcb_component_id": "pcb_component_165",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_244",
+ "pcb_component_id": "pcb_component_155",
"layer": "bottom",
"route": [
{
- "x": -117.7425015,
- "y": 34.3574255
+ "x": 50.58749850000001,
+ "y": 31.1999255
},
{
- "x": -117.73537661876169,
- "y": 34.45704592813525
+ "x": 50.27749850000001,
+ "y": 31.4799255
},
{
- "x": -117.71414677151166,
- "y": 34.55463838286538
+ "x": 50.0474985,
+ "y": 31.919925499999998
},
{
- "x": -117.67924413807478,
- "y": 34.64821615700903
+ "x": 49.9074985,
+ "y": 32.2299255
},
{
- "x": -117.63137923764731,
- "y": 34.73587427096078
+ "x": 49.7974985,
+ "y": 32.5099255
},
{
- "x": -117.57152646462967,
- "y": 34.815828252704094
+ "x": 49.62749850000001,
+ "y": 32.6999255
},
{
- "x": -117.50090425270413,
- "y": 34.88645046462962
+ "x": 49.44749850000001,
+ "y": 32.8099255
},
{
- "x": -117.4209502709608,
- "y": 34.94630323764724
+ "x": 49.1174985,
+ "y": 32.889925500000004
},
{
- "x": -117.33329215700904,
- "y": 34.994168138074706
+ "x": 45.86749850000001,
+ "y": 32.8799255
},
{
- "x": -117.23971438286539,
- "y": 35.02907077151157
+ "x": 44.937498500000004,
+ "y": 32.8599255
},
{
- "x": -117.14212192813525,
- "y": 35.05030061876157
+ "x": 44.677498500000006,
+ "y": 32.7180155
},
{
- "x": -117.0425015,
- "y": 35.057425499999866
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1642",
- "pcb_component_id": "pcb_component_166",
- "layer": "bottom",
- "route": [
+ "x": 44.59749850000001,
+ "y": 32.529925500000004
+ },
{
- "x": 67.5024985,
- "y": -8.538933499999999
+ "x": 44.59749850000001,
+ "y": 32.2199255
},
{
- "x": 67.5024985,
- "y": -8.8462155
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1643",
- "pcb_component_id": "pcb_component_166",
- "layer": "bottom",
- "route": [
+ "x": 45.647498500000005,
+ "y": 32.2199255
+ },
{
- "x": 66.74249850000001,
- "y": -8.538933499999999
+ "x": 45.647498500000005,
+ "y": 29.0599255
},
{
- "x": 66.74249850000001,
- "y": -8.8462155
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1644",
- "pcb_component_id": "pcb_component_166",
- "layer": "bottom",
- "route": [
+ "x": 45.16749850000001,
+ "y": 29.0499255
+ },
{
- "x": 67.5924985,
- "y": -7.7625744999999995
+ "x": 45.247498500000006,
+ "y": 28.739925500000002
},
{
- "x": 66.65249850000001,
- "y": -7.7625744999999995
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1645",
- "pcb_component_id": "pcb_component_166",
- "layer": "bottom",
- "route": [
+ "x": 45.4074985,
+ "y": 28.539925500000003
+ },
{
- "x": 66.65249850000001,
- "y": -7.7625744999999995
+ "x": 45.6174985,
+ "y": 28.4099255
},
{
- "x": 66.65249850000001,
- "y": -9.622574499999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1646",
- "pcb_component_id": "pcb_component_166",
- "layer": "bottom",
- "route": [
+ "x": 45.9074985,
+ "y": 28.3799255
+ },
{
- "x": 67.5924985,
- "y": -9.622574499999999
+ "x": 48.9074985,
+ "y": 28.3699255
},
{
- "x": 67.5924985,
- "y": -7.7625744999999995
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1647",
- "pcb_component_id": "pcb_component_166",
- "layer": "bottom",
- "route": [
+ "x": 49.33749850000001,
+ "y": 28.2699255
+ },
{
- "x": 66.65249850000001,
- "y": -9.622574499999999
+ "x": 49.647498500000005,
+ "y": 28.0599255
},
{
- "x": 67.5924985,
- "y": -9.622574499999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1648",
- "pcb_component_id": "pcb_component_166",
- "layer": "bottom",
- "route": [
+ "x": 49.88749850000001,
+ "y": 27.7199255
+ },
{
- "x": 67.3924985,
- "y": -8.1675745
+ "x": 49.9774985,
+ "y": 27.2999255
},
{
- "x": 66.85249850000001,
- "y": -8.1675745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1649",
- "pcb_component_id": "pcb_component_166",
- "layer": "bottom",
- "route": [
+ "x": 49.98749850000001,
+ "y": 26.9099255
+ },
{
- "x": 66.85249850000001,
- "y": -8.1675745
+ "x": 50.73749850000001,
+ "y": 26.1999255
},
{
- "x": 66.85249850000001,
- "y": -9.217574499999998
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1650",
- "pcb_component_id": "pcb_component_166",
- "layer": "bottom",
- "route": [
+ "x": 53.7674985,
+ "y": 26.1999255
+ },
{
- "x": 67.3924985,
- "y": -9.217574499999998
+ "x": 54.58749850000001,
+ "y": 26.9099255
},
{
- "x": 67.3924985,
- "y": -8.1675745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1651",
- "pcb_component_id": "pcb_component_166",
- "layer": "bottom",
- "route": [
+ "x": 54.12749850000001,
+ "y": 26.9099255
+ },
{
- "x": 66.85249850000001,
- "y": -9.217574499999998
+ "x": 54.12749850000001,
+ "y": 29.9699255
},
{
- "x": 67.3924985,
- "y": -9.217574499999998
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1652",
- "pcb_component_id": "pcb_component_167",
- "layer": "bottom",
- "route": [
+ "x": 54.567498500000006,
+ "y": 29.9699255
+ },
{
- "x": 72.3946645,
- "y": -26.531324500000004
+ "x": 53.77749850000001,
+ "y": 30.6799255
},
{
- "x": 72.61033650000002,
- "y": -26.531324500000004
+ "x": 52.3674985,
+ "y": 30.6799255
+ },
+ {
+ "x": 51.9074985,
+ "y": 30.7099255
+ },
+ {
+ "x": 51.537498500000005,
+ "y": 30.7699255
+ },
+ {
+ "x": 51.187498500000004,
+ "y": 30.8399255
+ },
+ {
+ "x": 50.857498500000005,
+ "y": 31.0099255
}
],
- "stroke_width": 0.12
+ "stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1653",
- "pcb_component_id": "pcb_component_167",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_245",
+ "pcb_component_id": "pcb_component_156",
"layer": "bottom",
"route": [
{
- "x": 72.3946645,
- "y": -27.251324500000003
+ "x": 22.991139500000003,
+ "y": 37.5536755
},
{
- "x": 72.61033650000002,
- "y": -27.251324500000003
+ "x": 22.683857500000002,
+ "y": 37.5536755
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1654",
- "pcb_component_id": "pcb_component_167",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_246",
+ "pcb_component_id": "pcb_component_156",
"layer": "bottom",
"route": [
{
- "x": 71.59250050000001,
- "y": -26.431324500000002
+ "x": 22.991139500000003,
+ "y": 38.3136755
},
{
- "x": 71.59250050000001,
- "y": -27.351324500000004
+ "x": 22.683857500000002,
+ "y": 38.3136755
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1655",
- "pcb_component_id": "pcb_component_167",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_247",
+ "pcb_component_id": "pcb_component_157",
"layer": "bottom",
"route": [
{
- "x": 71.59250050000001,
- "y": -27.351324500000004
+ "x": -35.13750149999999,
+ "y": -9.2813245
},
{
- "x": 73.41250050000001,
- "y": -27.351324500000004
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1656",
- "pcb_component_id": "pcb_component_167",
- "layer": "bottom",
- "route": [
+ "x": -35.447501499999994,
+ "y": -9.001324499999999
+ },
{
- "x": 73.41250050000001,
- "y": -26.431324500000002
+ "x": -35.6775015,
+ "y": -8.561324499999998
},
{
- "x": 71.59250050000001,
- "y": -26.431324500000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1657",
- "pcb_component_id": "pcb_component_167",
- "layer": "bottom",
- "route": [
+ "x": -35.81750149999999,
+ "y": -8.251324499999999
+ },
{
- "x": 73.41250050000001,
- "y": -27.351324500000004
+ "x": -35.9275015,
+ "y": -7.971324499999998
},
{
- "x": 73.41250050000001,
- "y": -26.431324500000002
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1658",
- "pcb_component_id": "pcb_component_167",
- "layer": "bottom",
- "route": [
+ "x": -36.09750149999999,
+ "y": -7.7813245
+ },
{
- "x": 72.00250050000001,
- "y": -26.641324500000003
+ "x": -36.27750149999999,
+ "y": -7.671324500000001
},
{
- "x": 72.00250050000001,
- "y": -27.141324500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1659",
- "pcb_component_id": "pcb_component_167",
- "layer": "bottom",
- "route": [
+ "x": -36.6075015,
+ "y": -7.591324499999999
+ },
{
- "x": 72.00250050000001,
- "y": -27.141324500000003
+ "x": -39.8575015,
+ "y": -7.601324499999997
},
{
- "x": 73.00250050000001,
- "y": -27.141324500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1660",
- "pcb_component_id": "pcb_component_167",
- "layer": "bottom",
- "route": [
+ "x": -40.7875015,
+ "y": -7.6213245
+ },
{
- "x": 73.00250050000001,
- "y": -26.641324500000003
+ "x": -41.047501499999996,
+ "y": -7.763234499999999
},
{
- "x": 72.00250050000001,
- "y": -26.641324500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1661",
- "pcb_component_id": "pcb_component_167",
- "layer": "bottom",
- "route": [
+ "x": -41.127501499999994,
+ "y": -7.951324499999998
+ },
{
- "x": 73.00250050000001,
- "y": -27.141324500000003
+ "x": -41.127501499999994,
+ "y": -8.2613245
},
{
- "x": 73.00250050000001,
- "y": -26.641324500000003
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1662",
- "pcb_component_id": "pcb_component_168",
- "layer": "top",
- "route": [
+ "x": -40.0775015,
+ "y": -8.2613245
+ },
{
- "x": 22.910286122117036,
- "y": -29.78902983939136
+ "x": -40.0775015,
+ "y": -11.421324499999997
},
{
- "x": 21.452925383947402,
- "y": -26.497206685143603
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1663",
- "pcb_component_id": "pcb_component_168",
- "layer": "top",
- "route": [
+ "x": -40.557501499999994,
+ "y": -11.431324499999995
+ },
{
- "x": 25.744911616052605,
- "y": -28.534080314856404
+ "x": -40.477501499999995,
+ "y": -11.741324499999997
},
{
- "x": 22.910286122117036,
- "y": -29.78902983939136
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1664",
- "pcb_component_id": "pcb_component_168",
- "layer": "top",
- "route": [
+ "x": -40.3175015,
+ "y": -11.9413245
+ },
{
- "x": 21.452925383947402,
- "y": -26.497206685143603
+ "x": -40.1075015,
+ "y": -12.071324499999996
},
{
- "x": 24.28755087788297,
- "y": -25.242257160608645
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1665",
- "pcb_component_id": "pcb_component_168",
- "layer": "top",
- "route": [
+ "x": -39.8175015,
+ "y": -12.101324499999997
+ },
{
- "x": 24.28755087788297,
- "y": -25.242257160608645
+ "x": -36.8175015,
+ "y": -12.111324500000002
},
{
- "x": 25.744911616052605,
- "y": -28.534080314856404
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1666",
- "pcb_component_id": "pcb_component_168",
- "layer": "bottom",
- "route": [
+ "x": -36.3875015,
+ "y": -12.211324499999996
+ },
{
- "x": 22.966480934756824,
- "y": -29.545427411176085
+ "x": -36.0775015,
+ "y": -12.421324499999997
},
{
- "x": 21.671049167494928,
- "y": -26.61936238517808
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1667",
- "pcb_component_id": "pcb_component_168",
- "layer": "bottom",
- "route": [
+ "x": -35.837501499999995,
+ "y": -12.7613245
+ },
{
- "x": 25.52678783250508,
- "y": -28.411924614821928
+ "x": -35.7475015,
+ "y": -13.181324500000002
},
{
- "x": 22.966480934756824,
- "y": -29.545427411176085
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1668",
- "pcb_component_id": "pcb_component_168",
- "layer": "bottom",
- "route": [
+ "x": -35.73750149999999,
+ "y": -13.571324499999996
+ },
{
- "x": 25.52678783250508,
- "y": -28.411924614821928
+ "x": -34.98750149999999,
+ "y": -14.281324500000004
},
{
- "x": 24.231356065243183,
- "y": -25.48585958882392
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1669",
- "pcb_component_id": "pcb_component_168",
- "layer": "bottom",
- "route": [
+ "x": -31.957501499999996,
+ "y": -14.281324500000004
+ },
{
- "x": 24.231356065243183,
- "y": -25.48585958882392
+ "x": -31.137501499999996,
+ "y": -13.571324499999996
},
{
- "x": 21.671049167494928,
- "y": -26.61936238517808
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1670",
- "pcb_component_id": "pcb_component_169",
- "layer": "top",
- "route": [
+ "x": -31.597501499999996,
+ "y": -13.571324499999996
+ },
{
- "x": -107.7375015,
- "y": 32.7649255
+ "x": -31.597501499999996,
+ "y": -10.5113245
},
{
- "x": -111.33750149999999,
- "y": 32.764925500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1671",
- "pcb_component_id": "pcb_component_169",
- "layer": "top",
- "route": [
+ "x": -31.157501499999995,
+ "y": -10.5113245
+ },
{
- "x": -107.7375015,
- "y": 35.8649255
+ "x": -31.947501499999994,
+ "y": -9.8013245
},
{
- "x": -107.7375015,
- "y": 32.7649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1672",
- "pcb_component_id": "pcb_component_169",
- "layer": "top",
- "route": [
+ "x": -33.3575015,
+ "y": -9.8013245
+ },
{
- "x": -111.33750149999999,
- "y": 32.764925500000004
+ "x": -33.81750149999999,
+ "y": -9.771324499999999
},
{
- "x": -111.33750149999999,
- "y": 35.8649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1673",
- "pcb_component_id": "pcb_component_169",
- "layer": "top",
- "route": [
+ "x": -34.187501499999996,
+ "y": -9.711324499999996
+ },
{
- "x": -111.33750149999999,
- "y": 35.8649255
+ "x": -34.5375015,
+ "y": -9.641324500000003
},
{
- "x": -107.7375015,
- "y": 35.8649255
+ "x": -34.867501499999996,
+ "y": -9.471324500000001
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1674",
- "pcb_component_id": "pcb_component_169",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_248",
+ "pcb_component_id": "pcb_component_158",
"layer": "bottom",
"route": [
{
- "x": -107.9375015,
- "y": 32.914925499999995
+ "x": 46.5724985,
+ "y": -13.094738499999998
},
{
- "x": -111.13750149999998,
- "y": 32.914925499999995
+ "x": 46.5724985,
+ "y": -13.310410499999996
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1675",
- "pcb_component_id": "pcb_component_169",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_249",
+ "pcb_component_id": "pcb_component_158",
"layer": "bottom",
"route": [
{
- "x": -107.9375015,
- "y": 35.7149255
+ "x": 45.8524985,
+ "y": -13.094738499999998
},
{
- "x": -107.9375015,
- "y": 32.914925499999995
+ "x": 45.8524985,
+ "y": -13.310410499999996
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1676",
- "pcb_component_id": "pcb_component_169",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_250",
+ "pcb_component_id": "pcb_component_159",
"layer": "bottom",
"route": [
{
- "x": -107.9375015,
- "y": 35.7149255
+ "x": -54.187501499999996,
+ "y": 12.1499255
},
{
- "x": -111.13750149999998,
- "y": 35.7149255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1677",
- "pcb_component_id": "pcb_component_169",
- "layer": "bottom",
- "route": [
+ "x": -54.4975015,
+ "y": 12.4299255
+ },
{
- "x": -111.13750149999998,
- "y": 35.7149255
+ "x": -54.7275015,
+ "y": 12.8699255
},
{
- "x": -111.13750149999998,
- "y": 32.914925499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1678",
- "pcb_component_id": "pcb_component_170",
- "layer": "top",
- "route": [
+ "x": -54.8675015,
+ "y": 13.1799255
+ },
{
- "x": -31.537501499999994,
- "y": 35.1461755
+ "x": -54.9775015,
+ "y": 13.4599255
},
{
- "x": -35.13750149999999,
- "y": 35.1461755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1679",
- "pcb_component_id": "pcb_component_170",
- "layer": "top",
- "route": [
+ "x": -55.1475015,
+ "y": 13.6499255
+ },
{
- "x": -31.537501499999994,
- "y": 38.2461755
+ "x": -55.3275015,
+ "y": 13.7599255
},
{
- "x": -31.537501499999994,
- "y": 35.1461755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1680",
- "pcb_component_id": "pcb_component_170",
- "layer": "top",
- "route": [
+ "x": -55.6575015,
+ "y": 13.8399255
+ },
{
- "x": -35.13750149999999,
- "y": 35.1461755
+ "x": -58.907501499999995,
+ "y": 13.829925500000002
},
{
- "x": -35.13750149999999,
- "y": 38.2461755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1681",
- "pcb_component_id": "pcb_component_170",
- "layer": "top",
- "route": [
+ "x": -59.8375015,
+ "y": 13.8099255
+ },
{
- "x": -35.13750149999999,
- "y": 38.2461755
+ "x": -60.0975015,
+ "y": 13.668015500000001
},
{
- "x": -31.537501499999994,
- "y": 38.2461755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1682",
- "pcb_component_id": "pcb_component_170",
- "layer": "bottom",
- "route": [
+ "x": -60.1775015,
+ "y": 13.4799255
+ },
{
- "x": -31.737501499999993,
- "y": 35.2961755
+ "x": -60.1775015,
+ "y": 13.169925500000002
},
{
- "x": -34.937501499999996,
- "y": 35.2961755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1683",
- "pcb_component_id": "pcb_component_170",
- "layer": "bottom",
- "route": [
+ "x": -59.1275015,
+ "y": 13.169925500000002
+ },
{
- "x": -31.737501499999993,
- "y": 38.0961755
+ "x": -59.1275015,
+ "y": 10.009925500000001
},
{
- "x": -31.737501499999993,
- "y": 35.2961755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1684",
- "pcb_component_id": "pcb_component_170",
- "layer": "bottom",
- "route": [
+ "x": -59.6075015,
+ "y": 9.9999255
+ },
{
- "x": -31.737501499999993,
- "y": 38.0961755
+ "x": -59.5275015,
+ "y": 9.689925500000001
},
{
- "x": -34.937501499999996,
- "y": 38.0961755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1685",
- "pcb_component_id": "pcb_component_170",
- "layer": "bottom",
- "route": [
+ "x": -59.3675015,
+ "y": 9.489925500000002
+ },
{
- "x": -34.937501499999996,
- "y": 38.0961755
+ "x": -59.1575015,
+ "y": 9.359925500000001
},
{
- "x": -34.937501499999996,
- "y": 35.2961755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1686",
- "pcb_component_id": "pcb_component_171",
- "layer": "bottom",
- "route": [
+ "x": -58.8675015,
+ "y": 9.329925500000002
+ },
{
- "x": -76.6024995,
- "y": -20.9147385
+ "x": -55.8675015,
+ "y": 9.3199255
},
{
- "x": -76.6024995,
- "y": -21.130410499999996
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1687",
- "pcb_component_id": "pcb_component_171",
- "layer": "bottom",
- "route": [
+ "x": -55.437501499999996,
+ "y": 9.219925499999999
+ },
{
- "x": -77.32249949999999,
- "y": -20.9147385
+ "x": -55.1275015,
+ "y": 9.0099255
},
{
- "x": -77.32249949999999,
- "y": -21.130410499999996
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1688",
- "pcb_component_id": "pcb_component_171",
- "layer": "bottom",
- "route": [
+ "x": -54.8875015,
+ "y": 8.6699255
+ },
{
- "x": -76.5024995,
- "y": -20.1125745
+ "x": -54.7975015,
+ "y": 8.2499255
},
{
- "x": -77.42249949999999,
- "y": -20.1125745
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1689",
- "pcb_component_id": "pcb_component_171",
- "layer": "bottom",
- "route": [
+ "x": -54.7875015,
+ "y": 7.859925499999999
+ },
{
- "x": -77.42249949999999,
- "y": -20.1125745
+ "x": -54.0375015,
+ "y": 7.149925499999998
},
{
- "x": -77.42249949999999,
- "y": -21.932574499999994
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1690",
- "pcb_component_id": "pcb_component_171",
- "layer": "bottom",
- "route": [
+ "x": -51.007501500000004,
+ "y": 7.149925499999998
+ },
{
- "x": -76.5024995,
- "y": -21.932574499999994
+ "x": -50.187501499999996,
+ "y": 7.859925499999999
},
{
- "x": -76.5024995,
- "y": -20.1125745
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1691",
- "pcb_component_id": "pcb_component_171",
- "layer": "bottom",
- "route": [
+ "x": -50.6475015,
+ "y": 7.859925499999999
+ },
{
- "x": -77.42249949999999,
- "y": -21.932574499999994
+ "x": -50.6475015,
+ "y": 10.9199255
},
{
- "x": -76.5024995,
- "y": -21.932574499999994
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1692",
- "pcb_component_id": "pcb_component_171",
- "layer": "bottom",
- "route": [
+ "x": -50.2075015,
+ "y": 10.9199255
+ },
{
- "x": -76.71249949999999,
- "y": -20.522574499999997
+ "x": -50.9975015,
+ "y": 11.629925499999999
},
{
- "x": -77.21249949999999,
- "y": -20.522574499999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1693",
- "pcb_component_id": "pcb_component_171",
- "layer": "bottom",
- "route": [
+ "x": -52.4075015,
+ "y": 11.629925499999999
+ },
{
- "x": -77.21249949999999,
- "y": -20.522574499999997
+ "x": -52.8675015,
+ "y": 11.6599255
},
{
- "x": -77.21249949999999,
- "y": -21.522574499999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1694",
- "pcb_component_id": "pcb_component_171",
- "layer": "bottom",
- "route": [
+ "x": -53.2375015,
+ "y": 11.7199255
+ },
{
- "x": -76.71249949999999,
- "y": -21.522574499999997
+ "x": -53.5875015,
+ "y": 11.789925499999999
},
{
- "x": -76.71249949999999,
- "y": -20.522574499999997
+ "x": -53.9175015,
+ "y": 11.9599255
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1695",
- "pcb_component_id": "pcb_component_171",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_251",
+ "pcb_component_id": "pcb_component_160",
"layer": "bottom",
"route": [
{
- "x": -77.21249949999999,
- "y": -21.522574499999997
+ "x": -29.287501499999994,
+ "y": -1.7538245000000003
},
{
- "x": -76.71249949999999,
- "y": -21.522574499999997
+ "x": -29.287501499999994,
+ "y": -2.903824499999999
+ },
+ {
+ "x": -30.537501499999994,
+ "y": -2.903824499999999
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1696",
- "pcb_component_id": "pcb_component_172",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_252",
+ "pcb_component_id": "pcb_component_161",
"layer": "bottom",
"route": [
{
- "x": 63.4553345,
- "y": -11.9425745
+ "x": -70.9975015,
+ "y": -18.8162745
},
{
- "x": 63.2396625,
- "y": -11.9425745
+ "x": -70.9975015,
+ "y": -18.1662745
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1697",
- "pcb_component_id": "pcb_component_172",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_253",
+ "pcb_component_id": "pcb_component_161",
"layer": "bottom",
"route": [
{
- "x": 63.4553345,
- "y": -11.2225745
+ "x": -71.6475015,
+ "y": -18.8162745
},
{
- "x": 63.2396625,
- "y": -11.2225745
+ "x": -70.9975015,
+ "y": -18.8162745
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1698",
- "pcb_component_id": "pcb_component_172",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_254",
+ "pcb_component_id": "pcb_component_161",
"layer": "bottom",
"route": [
{
- "x": 64.2574985,
- "y": -12.0425745
+ "x": -71.6475015,
+ "y": -11.5962745
},
{
- "x": 64.2574985,
- "y": -11.122574499999999
+ "x": -70.9975015,
+ "y": -11.5962745
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1699",
- "pcb_component_id": "pcb_component_172",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_255",
+ "pcb_component_id": "pcb_component_161",
"layer": "bottom",
"route": [
{
- "x": 64.2574985,
- "y": -11.122574499999999
+ "x": -77.56750149999999,
+ "y": -18.8162745
},
{
- "x": 62.437498500000004,
- "y": -11.122574499999999
+ "x": -78.2175015,
+ "y": -18.8162745
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1700",
- "pcb_component_id": "pcb_component_172",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_256",
+ "pcb_component_id": "pcb_component_161",
"layer": "bottom",
"route": [
{
- "x": 62.437498500000004,
- "y": -12.0425745
+ "x": -77.56750149999999,
+ "y": -11.5962745
},
{
- "x": 64.2574985,
- "y": -12.0425745
+ "x": -78.2175015,
+ "y": -11.5962745
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1701",
- "pcb_component_id": "pcb_component_172",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_257",
+ "pcb_component_id": "pcb_component_161",
"layer": "bottom",
"route": [
{
- "x": 62.437498500000004,
- "y": -11.122574499999999
+ "x": -78.2175015,
+ "y": -18.8162745
},
{
- "x": 62.437498500000004,
- "y": -12.0425745
+ "x": -78.2175015,
+ "y": -18.1662745
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1702",
- "pcb_component_id": "pcb_component_172",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_258",
+ "pcb_component_id": "pcb_component_161",
"layer": "bottom",
"route": [
{
- "x": 63.8474985,
- "y": -11.8325745
+ "x": -78.2175015,
+ "y": -11.5962745
},
{
- "x": 63.8474985,
- "y": -11.3325745
+ "x": -78.2175015,
+ "y": -12.246274499999998
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1703",
- "pcb_component_id": "pcb_component_172",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_259",
+ "pcb_component_id": "pcb_component_162",
"layer": "bottom",
"route": [
{
- "x": 63.8474985,
- "y": -11.3325745
+ "x": -4.747501499999997,
+ "y": 37.8610665
},
{
- "x": 62.8474985,
- "y": -11.3325745
+ "x": -4.747501499999997,
+ "y": 37.5537845
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1704",
- "pcb_component_id": "pcb_component_172",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_260",
+ "pcb_component_id": "pcb_component_162",
"layer": "bottom",
"route": [
{
- "x": 62.8474985,
- "y": -11.8325745
+ "x": -5.5075014999999965,
+ "y": 37.8610665
},
{
- "x": 63.8474985,
- "y": -11.8325745
+ "x": -5.5075014999999965,
+ "y": 37.5537845
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1705",
- "pcb_component_id": "pcb_component_172",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_261",
+ "pcb_component_id": "pcb_component_163",
"layer": "bottom",
"route": [
{
- "x": 62.8474985,
- "y": -11.3325745
+ "x": -86.4375015,
+ "y": 19.6774255
},
{
- "x": 62.8474985,
- "y": -11.8325745
+ "x": -86.4375015,
+ "y": 18.5274255
+ },
+ {
+ "x": -87.6875015,
+ "y": 18.5274255
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1706",
- "pcb_component_id": "pcb_component_173",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_262",
+ "pcb_component_id": "pcb_component_164",
+ "layer": "bottom",
"route": [
{
- "x": 54.1875005,
- "y": -0.5725745000000018
+ "x": -35.13750149999999,
+ "y": 9.768675499999999
},
{
- "x": 50.587500500000004,
- "y": -0.5725745000000018
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1707",
- "pcb_component_id": "pcb_component_173",
- "layer": "top",
- "route": [
+ "x": -35.447501499999994,
+ "y": 10.0486755
+ },
{
- "x": 54.1875005,
- "y": 2.5274254999999997
+ "x": -35.6775015,
+ "y": 10.4886755
},
{
- "x": 54.1875005,
- "y": -0.5725745000000018
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1708",
- "pcb_component_id": "pcb_component_173",
- "layer": "top",
- "route": [
+ "x": -35.81750149999999,
+ "y": 10.7986755
+ },
{
- "x": 50.587500500000004,
- "y": -0.5725745000000018
+ "x": -35.9275015,
+ "y": 11.0786755
},
{
- "x": 50.587500500000004,
- "y": 2.5274254999999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1709",
- "pcb_component_id": "pcb_component_173",
- "layer": "top",
- "route": [
+ "x": -36.09750149999999,
+ "y": 11.2686755
+ },
{
- "x": 50.587500500000004,
- "y": 2.5274254999999997
+ "x": -36.27750149999999,
+ "y": 11.3786755
},
{
- "x": 54.1875005,
- "y": 2.5274254999999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1710",
- "pcb_component_id": "pcb_component_173",
- "layer": "bottom",
- "route": [
+ "x": -36.6075015,
+ "y": 11.4586755
+ },
{
- "x": 53.9875005,
- "y": -0.42257449999999963
+ "x": -39.8575015,
+ "y": 11.4486755
},
{
- "x": 50.7875005,
- "y": -0.42257449999999963
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1711",
- "pcb_component_id": "pcb_component_173",
- "layer": "bottom",
- "route": [
+ "x": -40.7875015,
+ "y": 11.4286755
+ },
{
- "x": 53.9875005,
- "y": 2.3774254999999975
+ "x": -41.047501499999996,
+ "y": 11.2867655
},
{
- "x": 53.9875005,
- "y": -0.42257449999999963
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1712",
- "pcb_component_id": "pcb_component_173",
- "layer": "bottom",
- "route": [
+ "x": -41.127501499999994,
+ "y": 11.0986755
+ },
{
- "x": 53.9875005,
- "y": 2.3774254999999975
+ "x": -41.127501499999994,
+ "y": 10.7886755
},
{
- "x": 50.7875005,
- "y": 2.3774254999999975
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1713",
- "pcb_component_id": "pcb_component_173",
- "layer": "bottom",
- "route": [
+ "x": -40.0775015,
+ "y": 10.7886755
+ },
+ {
+ "x": -40.0775015,
+ "y": 7.6286755
+ },
+ {
+ "x": -40.557501499999994,
+ "y": 7.6186755
+ },
+ {
+ "x": -40.477501499999995,
+ "y": 7.3086755
+ },
+ {
+ "x": -40.3175015,
+ "y": 7.1086755
+ },
+ {
+ "x": -40.1075015,
+ "y": 6.978675500000001
+ },
+ {
+ "x": -39.8175015,
+ "y": 6.9486755
+ },
+ {
+ "x": -36.8175015,
+ "y": 6.938675499999999
+ },
+ {
+ "x": -36.3875015,
+ "y": 6.838675499999999
+ },
+ {
+ "x": -36.0775015,
+ "y": 6.6286755
+ },
+ {
+ "x": -35.837501499999995,
+ "y": 6.2886755
+ },
+ {
+ "x": -35.7475015,
+ "y": 5.868675499999998
+ },
+ {
+ "x": -35.73750149999999,
+ "y": 5.478675500000001
+ },
+ {
+ "x": -34.98750149999999,
+ "y": 4.7686755000000005
+ },
+ {
+ "x": -31.957501499999996,
+ "y": 4.7686755000000005
+ },
+ {
+ "x": -31.137501499999996,
+ "y": 5.478675500000001
+ },
+ {
+ "x": -31.597501499999996,
+ "y": 5.478675500000001
+ },
+ {
+ "x": -31.597501499999996,
+ "y": 8.5386755
+ },
+ {
+ "x": -31.157501499999995,
+ "y": 8.5386755
+ },
+ {
+ "x": -31.947501499999994,
+ "y": 9.2486755
+ },
+ {
+ "x": -33.3575015,
+ "y": 9.2486755
+ },
+ {
+ "x": -33.81750149999999,
+ "y": 9.278675499999999
+ },
+ {
+ "x": -34.187501499999996,
+ "y": 9.338675499999999
+ },
{
- "x": 50.7875005,
- "y": 2.3774254999999975
+ "x": -34.5375015,
+ "y": 9.4086755
},
{
- "x": 50.7875005,
- "y": -0.42257449999999963
+ "x": -34.867501499999996,
+ "y": 9.5786755
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1714",
- "pcb_component_id": "pcb_component_174",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_263",
+ "pcb_component_id": "pcb_component_165",
"layer": "bottom",
"route": [
{
- "x": 5.502500500000004,
- "y": 37.8623165
+ "x": -114.94250149999999,
+ "y": 33.7574255
},
{
- "x": 5.502500500000004,
- "y": 37.5550345
+ "x": -114.94250149999999,
+ "y": 34.3574255
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1715",
- "pcb_component_id": "pcb_component_174",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_264",
+ "pcb_component_id": "pcb_component_165",
"layer": "bottom",
"route": [
{
- "x": 4.742500500000004,
- "y": 37.8623165
+ "x": -115.6425015,
+ "y": 35.0574255
},
{
- "x": 4.742500500000004,
- "y": 37.5550345
+ "x": -117.0425015,
+ "y": 35.0574255
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1716",
- "pcb_component_id": "pcb_component_174",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_265",
+ "pcb_component_id": "pcb_component_165",
"layer": "bottom",
"route": [
{
- "x": 5.592500500000003,
- "y": 38.638675500000005
+ "x": -117.0425015,
+ "y": 33.0574255
},
{
- "x": 4.652500500000004,
- "y": 38.638675500000005
+ "x": -115.6425015,
+ "y": 33.0574255
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1717",
- "pcb_component_id": "pcb_component_174",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_266",
+ "pcb_component_id": "pcb_component_165",
"layer": "bottom",
"route": [
{
- "x": 4.652500500000004,
- "y": 38.638675500000005
+ "x": -117.7425015,
+ "y": 34.3574255
},
{
- "x": 4.652500500000004,
- "y": 36.7786755
+ "x": -117.7425015,
+ "y": 33.7574255
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1718",
- "pcb_component_id": "pcb_component_174",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_267",
+ "pcb_component_id": "pcb_component_165",
"layer": "bottom",
"route": [
{
- "x": 5.592500500000003,
- "y": 36.7786755
+ "x": -114.94250149999999,
+ "y": 33.7574255
},
{
- "x": 5.592500500000003,
- "y": 38.638675500000005
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1719",
- "pcb_component_id": "pcb_component_174",
- "layer": "bottom",
- "route": [
+ "x": -114.94962638123798,
+ "y": 33.65780507186461
+ },
{
- "x": 4.652500500000004,
- "y": 36.7786755
+ "x": -114.97085622848775,
+ "y": 33.56021261713431
},
{
- "x": 5.592500500000003,
- "y": 36.7786755
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1720",
- "pcb_component_id": "pcb_component_174",
- "layer": "bottom",
- "route": [
+ "x": -115.00575886192448,
+ "y": 33.46663484299047
+ },
{
- "x": 5.392500500000003,
- "y": 38.233675500000004
+ "x": -115.05362376235188,
+ "y": 33.37897672903855
},
{
- "x": 4.852500500000003,
- "y": 38.233675500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1721",
- "pcb_component_id": "pcb_component_174",
- "layer": "bottom",
- "route": [
+ "x": -115.11347653536951,
+ "y": 33.2990227472951
+ },
{
- "x": 4.852500500000003,
- "y": 38.233675500000004
+ "x": -115.18409874729512,
+ "y": 33.228400535369474
},
{
- "x": 4.852500500000004,
- "y": 37.1836755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1722",
- "pcb_component_id": "pcb_component_174",
- "layer": "bottom",
- "route": [
+ "x": -115.26405272903857,
+ "y": 33.16854776235181
+ },
{
- "x": 5.392500500000004,
- "y": 37.1836755
+ "x": -115.35171084299049,
+ "y": 33.120682861924394
},
{
- "x": 5.392500500000003,
- "y": 38.233675500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1723",
- "pcb_component_id": "pcb_component_174",
- "layer": "bottom",
- "route": [
+ "x": -115.44528861713431,
+ "y": 33.08578022848765
+ },
{
- "x": 4.852500500000004,
- "y": 37.1836755
+ "x": -115.54288107186461,
+ "y": 33.06455038123785
},
{
- "x": 5.392500500000004,
- "y": 37.1836755
+ "x": -115.6425015,
+ "y": 33.057425499999844
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1724",
- "pcb_component_id": "pcb_component_175",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_268",
+ "pcb_component_id": "pcb_component_165",
+ "layer": "bottom",
"route": [
{
- "x": 23.812498500000004,
- "y": 12.908675499999998
+ "x": -115.6425015,
+ "y": 35.0574255
},
{
- "x": 4.762498500000001,
- "y": 12.908675500000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1725",
- "pcb_component_id": "pcb_component_175",
- "layer": "top",
- "route": [
+ "x": -115.54288107186474,
+ "y": 35.050300618761824
+ },
{
- "x": 23.812498500000004,
- "y": 31.9586755
+ "x": -115.4452886171346,
+ "y": 35.02907077151191
},
{
- "x": 23.812498500000004,
- "y": 12.908675499999998
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1726",
- "pcb_component_id": "pcb_component_175",
- "layer": "top",
- "route": [
+ "x": -115.35171084299093,
+ "y": 34.99416813807508
+ },
{
- "x": 4.762498500000001,
- "y": 12.908675500000001
+ "x": -115.26405272903918,
+ "y": 34.946303237647626
},
{
- "x": 4.762498500000005,
- "y": 31.958675500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1727",
- "pcb_component_id": "pcb_component_175",
- "layer": "top",
- "route": [
+ "x": -115.18409874729589,
+ "y": 34.88645046462997
+ },
{
- "x": 4.762498500000005,
- "y": 31.958675500000002
+ "x": -115.11347653537041,
+ "y": 34.81582825270438
},
{
- "x": 23.812498500000004,
- "y": 31.9586755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1728",
- "pcb_component_id": "pcb_component_175",
- "layer": "top",
- "route": [
+ "x": -115.05362376235288,
+ "y": 34.73587427096099
+ },
{
- "x": 21.2874985,
- "y": 15.4336755
+ "x": -115.00575886192556,
+ "y": 34.648216157009166
},
{
- "x": 7.2874985000000025,
- "y": 15.4336755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1729",
- "pcb_component_id": "pcb_component_175",
- "layer": "top",
- "route": [
+ "x": -114.97085622848888,
+ "y": 34.554638382865434
+ },
{
- "x": 21.287498500000005,
- "y": 29.4336755
+ "x": -114.94962638123913,
+ "y": 34.457045928135265
},
{
- "x": 21.2874985,
- "y": 15.4336755
+ "x": -114.94250150000111,
+ "y": 34.3574255
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1730",
- "pcb_component_id": "pcb_component_175",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_269",
+ "pcb_component_id": "pcb_component_165",
+ "layer": "bottom",
"route": [
{
- "x": 7.2874985000000025,
- "y": 15.4336755
+ "x": -117.0425015,
+ "y": 33.0574255
},
{
- "x": 7.287498500000004,
- "y": 29.4336755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1731",
- "pcb_component_id": "pcb_component_175",
- "layer": "top",
- "route": [
+ "x": -117.14212192813527,
+ "y": 33.064550381238206
+ },
{
- "x": 7.287498500000004,
- "y": 29.4336755
+ "x": -117.23971438286543,
+ "y": 33.08578022848815
},
{
- "x": 21.287498500000005,
- "y": 29.4336755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1732",
- "pcb_component_id": "pcb_component_175",
- "layer": "top",
- "route": [
+ "x": -117.33329215700911,
+ "y": 33.12068286192498
+ },
{
- "x": 16.087498500000002,
- "y": 25.6336755
+ "x": -117.42095027096089,
+ "y": 33.168547762352446
},
{
- "x": 16.087498500000002,
- "y": 28.7336755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1733",
- "pcb_component_id": "pcb_component_175",
- "layer": "top",
- "route": [
+ "x": -117.5009042527042,
+ "y": 33.22840053537009
+ },
{
- "x": 16.087498500000002,
- "y": 25.6336755
+ "x": -117.57152646462973,
+ "y": 33.299022747295666
},
{
- "x": 12.487498500000004,
- "y": 25.6336755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1734",
- "pcb_component_id": "pcb_component_175",
- "layer": "top",
- "route": [
+ "x": -117.63137923764731,
+ "y": 33.37897672903903
+ },
{
- "x": 16.087498500000002,
- "y": 28.7336755
+ "x": -117.6792441380747,
+ "y": 33.46663484299084
},
{
- "x": 12.487498500000004,
- "y": 28.7336755
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1735",
- "pcb_component_id": "pcb_component_175",
- "layer": "top",
- "route": [
+ "x": -117.71414677151147,
+ "y": 33.56021261713455
+ },
{
- "x": 12.487498500000004,
- "y": 25.6336755
+ "x": -117.73537661876134,
+ "y": 33.65780507186473
},
{
- "x": 12.487498500000004,
- "y": 28.7336755
+ "x": -117.74250149999946,
+ "y": 33.7574255
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1736",
- "pcb_component_id": "pcb_component_176",
- "layer": "top",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_270",
+ "pcb_component_id": "pcb_component_165",
+ "layer": "bottom",
"route": [
{
- "x": 111.3375005,
- "y": 32.7649255
+ "x": -117.7425015,
+ "y": 34.3574255
},
{
- "x": 107.73750050000001,
- "y": 32.764925500000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1737",
- "pcb_component_id": "pcb_component_176",
- "layer": "top",
- "route": [
+ "x": -117.73537661876169,
+ "y": 34.45704592813525
+ },
{
- "x": 111.3375005,
- "y": 35.8649255
+ "x": -117.71414677151166,
+ "y": 34.55463838286538
},
{
- "x": 111.3375005,
- "y": 32.7649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1738",
- "pcb_component_id": "pcb_component_176",
- "layer": "top",
- "route": [
+ "x": -117.67924413807478,
+ "y": 34.64821615700903
+ },
{
- "x": 107.73750050000001,
- "y": 32.764925500000004
+ "x": -117.63137923764731,
+ "y": 34.73587427096078
},
{
- "x": 107.73750050000001,
- "y": 35.8649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1739",
- "pcb_component_id": "pcb_component_176",
- "layer": "top",
- "route": [
+ "x": -117.57152646462967,
+ "y": 34.815828252704094
+ },
{
- "x": 107.73750050000001,
- "y": 35.8649255
+ "x": -117.50090425270413,
+ "y": 34.88645046462962
},
{
- "x": 111.3375005,
- "y": 35.8649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1740",
- "pcb_component_id": "pcb_component_176",
- "layer": "bottom",
- "route": [
+ "x": -117.4209502709608,
+ "y": 34.94630323764724
+ },
{
- "x": 111.1375005,
- "y": 32.914925499999995
+ "x": -117.33329215700904,
+ "y": 34.994168138074706
},
{
- "x": 107.93750050000001,
- "y": 32.914925499999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1741",
- "pcb_component_id": "pcb_component_176",
- "layer": "bottom",
- "route": [
+ "x": -117.23971438286539,
+ "y": 35.02907077151157
+ },
{
- "x": 111.1375005,
- "y": 35.7149255
+ "x": -117.14212192813525,
+ "y": 35.05030061876157
},
{
- "x": 111.1375005,
- "y": 32.914925499999995
+ "x": -117.0425015,
+ "y": 35.057425499999866
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1742",
- "pcb_component_id": "pcb_component_176",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_271",
+ "pcb_component_id": "pcb_component_166",
"layer": "bottom",
"route": [
{
- "x": 111.1375005,
- "y": 35.7149255
+ "x": 67.5024985,
+ "y": -8.538933499999999
},
{
- "x": 107.93750050000001,
- "y": 35.7149255
+ "x": 67.5024985,
+ "y": -8.8462155
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1743",
- "pcb_component_id": "pcb_component_176",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_272",
+ "pcb_component_id": "pcb_component_166",
"layer": "bottom",
"route": [
{
- "x": 107.93750050000001,
- "y": 35.7149255
+ "x": 66.74249850000001,
+ "y": -8.538933499999999
},
{
- "x": 107.93750050000001,
- "y": 32.914925499999995
+ "x": 66.74249850000001,
+ "y": -8.8462155
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1744",
- "pcb_component_id": "pcb_component_177",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_273",
+ "pcb_component_id": "pcb_component_167",
"layer": "bottom",
"route": [
{
- "x": -86.4374995,
- "y": -14.957683500000002
+ "x": 72.3946645,
+ "y": -26.531324500000004
},
{
- "x": -86.4374995,
- "y": -15.264965500000002
+ "x": 72.61033650000002,
+ "y": -26.531324500000004
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1745",
- "pcb_component_id": "pcb_component_177",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_274",
+ "pcb_component_id": "pcb_component_167",
"layer": "bottom",
"route": [
{
- "x": -87.19749949999999,
- "y": -14.957683500000002
+ "x": 72.3946645,
+ "y": -27.251324500000003
},
{
- "x": -87.19749949999999,
- "y": -15.264965500000002
+ "x": 72.61033650000002,
+ "y": -27.251324500000003
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1746",
- "pcb_component_id": "pcb_component_177",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_275",
+ "pcb_component_id": "pcb_component_168",
"layer": "bottom",
"route": [
{
- "x": -86.3474995,
- "y": -14.181324500000002
+ "x": 24.918410968222307,
+ "y": -31.360632398073
},
{
- "x": -87.2874995,
- "y": -14.181324500000002
+ "x": 23.866856349504275,
+ "y": -31.826178189432746
+ },
+ {
+ "x": 23.360828315417596,
+ "y": -30.68318403865227
}
],
"stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1747",
- "pcb_component_id": "pcb_component_177",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_276",
+ "pcb_component_id": "pcb_component_169",
"layer": "bottom",
"route": [
{
- "x": -87.2874995,
- "y": -14.181324500000002
+ "x": -105.4875015,
+ "y": 33.9649255
+ },
+ {
+ "x": -105.4875015,
+ "y": 32.8149255
},
{
- "x": -87.2874995,
- "y": -16.0413245
+ "x": -106.7375015,
+ "y": 32.8149255
}
],
"stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1748",
- "pcb_component_id": "pcb_component_177",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_277",
+ "pcb_component_id": "pcb_component_170",
"layer": "bottom",
"route": [
{
- "x": -86.3474995,
- "y": -16.0413245
+ "x": -29.287501499999994,
+ "y": 36.3461755
+ },
+ {
+ "x": -29.287501499999994,
+ "y": 35.196175499999995
},
{
- "x": -86.3474995,
- "y": -14.181324500000002
+ "x": -30.537501499999994,
+ "y": 35.196175499999995
}
],
"stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1749",
- "pcb_component_id": "pcb_component_177",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_278",
+ "pcb_component_id": "pcb_component_171",
"layer": "bottom",
"route": [
{
- "x": -87.2874995,
- "y": -16.0413245
+ "x": -76.6024995,
+ "y": -20.9147385
},
{
- "x": -86.3474995,
- "y": -16.0413245
+ "x": -76.6024995,
+ "y": -21.130410499999996
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1750",
- "pcb_component_id": "pcb_component_177",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_279",
+ "pcb_component_id": "pcb_component_171",
"layer": "bottom",
"route": [
{
- "x": -86.5474995,
- "y": -14.586324500000003
+ "x": -77.32249949999999,
+ "y": -20.9147385
},
{
- "x": -87.08749949999999,
- "y": -14.586324500000003
+ "x": -77.32249949999999,
+ "y": -21.130410499999996
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1751",
- "pcb_component_id": "pcb_component_177",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_280",
+ "pcb_component_id": "pcb_component_172",
"layer": "bottom",
"route": [
{
- "x": -87.08749949999999,
- "y": -14.586324500000003
+ "x": 63.4553345,
+ "y": -11.9425745
},
{
- "x": -87.08749949999999,
- "y": -15.6363245
+ "x": 63.2396625,
+ "y": -11.9425745
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1752",
- "pcb_component_id": "pcb_component_177",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_281",
+ "pcb_component_id": "pcb_component_172",
"layer": "bottom",
"route": [
{
- "x": -86.5474995,
- "y": -15.6363245
+ "x": 63.4553345,
+ "y": -11.2225745
},
{
- "x": -86.5474995,
- "y": -14.586324500000003
+ "x": 63.2396625,
+ "y": -11.2225745
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1753",
- "pcb_component_id": "pcb_component_177",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_282",
+ "pcb_component_id": "pcb_component_173",
"layer": "bottom",
"route": [
{
- "x": -87.08749949999999,
- "y": -15.6363245
+ "x": 56.4375005,
+ "y": 0.6274254999999975
},
{
- "x": -86.5474995,
- "y": -15.6363245
+ "x": 56.4375005,
+ "y": -0.522574500000001
+ },
+ {
+ "x": 55.1875005,
+ "y": -0.522574500000001
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1754",
- "pcb_component_id": "pcb_component_178",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_283",
+ "pcb_component_id": "pcb_component_174",
"layer": "bottom",
"route": [
{
- "x": -16.967501499999997,
- "y": -15.212574500000002
+ "x": 5.502500500000004,
+ "y": 37.8623165
},
{
- "x": -16.967501499999997,
- "y": -9.212574500000002
+ "x": 5.502500500000004,
+ "y": 37.5550345
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1755",
- "pcb_component_id": "pcb_component_178",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_284",
+ "pcb_component_id": "pcb_component_174",
"layer": "bottom",
"route": [
{
- "x": -4.267501499999996,
- "y": -15.212574500000002
+ "x": 4.742500500000004,
+ "y": 37.8623165
},
{
- "x": -16.967501499999997,
- "y": -15.212574500000002
+ "x": 4.742500500000004,
+ "y": 37.5550345
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1756",
- "pcb_component_id": "pcb_component_178",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_285",
+ "pcb_component_id": "pcb_component_175",
"layer": "bottom",
"route": [
{
- "x": -4.267501499999996,
- "y": -15.212574500000002
+ "x": 12.487498500000003,
+ "y": 19.2936755
},
{
- "x": -4.267501499999996,
- "y": -9.212574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1757",
- "pcb_component_id": "pcb_component_178",
- "layer": "bottom",
- "route": [
+ "x": 12.177498500000002,
+ "y": 19.5736755
+ },
{
- "x": -4.267501499999996,
- "y": -9.212574500000002
+ "x": 11.947498500000004,
+ "y": 20.0136755
},
{
- "x": -16.967501499999997,
- "y": -9.212574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1758",
- "pcb_component_id": "pcb_component_178",
- "layer": "top",
- "route": [
+ "x": 11.807498500000003,
+ "y": 20.3236755
+ },
{
- "x": -16.967501499999997,
- "y": -15.212574500000002
+ "x": 11.697498500000004,
+ "y": 20.6036755
},
{
- "x": -16.967501499999997,
- "y": -9.212574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1759",
- "pcb_component_id": "pcb_component_178",
- "layer": "top",
- "route": [
+ "x": 11.527498500000004,
+ "y": 20.7936755
+ },
{
- "x": -4.267501499999996,
- "y": -15.212574500000002
+ "x": 11.347498500000004,
+ "y": 20.9036755
},
{
- "x": -16.967501499999997,
- "y": -15.212574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1760",
- "pcb_component_id": "pcb_component_178",
- "layer": "top",
- "route": [
+ "x": 11.017498500000004,
+ "y": 20.9836755
+ },
{
- "x": -4.267501499999996,
- "y": -15.212574500000002
+ "x": 7.767498500000004,
+ "y": 20.9736755
},
{
- "x": -4.267501499999996,
- "y": -9.212574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1761",
- "pcb_component_id": "pcb_component_178",
- "layer": "top",
- "route": [
+ "x": 6.837498500000003,
+ "y": 20.9536755
+ },
{
- "x": -4.267501499999996,
- "y": -9.212574500000002
+ "x": 6.5774985000000035,
+ "y": 20.8117655
},
{
- "x": -16.967501499999997,
- "y": -9.212574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1762",
- "pcb_component_id": "pcb_component_178",
- "layer": "bottom",
- "route": [
+ "x": 6.497498500000003,
+ "y": 20.6236755
+ },
{
- "x": -4.267501499999996,
- "y": -15.212574500000002
+ "x": 6.497498500000003,
+ "y": 20.313675500000002
},
{
- "x": -2.167501499999996,
- "y": -15.212574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1763",
- "pcb_component_id": "pcb_component_178",
- "layer": "bottom",
- "route": [
+ "x": 7.547498500000003,
+ "y": 20.313675500000002
+ },
{
- "x": -2.167501499999996,
- "y": -15.212574500000002
+ "x": 7.547498500000002,
+ "y": 17.1536755
},
{
- "x": -2.167501499999996,
- "y": -9.212574500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1764",
- "pcb_component_id": "pcb_component_178",
- "layer": "bottom",
- "route": [
+ "x": 7.067498500000003,
+ "y": 17.1436755
+ },
+ {
+ "x": 7.147498500000003,
+ "y": 16.833675500000002
+ },
+ {
+ "x": 7.307498500000002,
+ "y": 16.633675500000003
+ },
+ {
+ "x": 7.517498500000003,
+ "y": 16.5036755
+ },
+ {
+ "x": 7.807498500000002,
+ "y": 16.4736755
+ },
+ {
+ "x": 10.807498500000003,
+ "y": 16.4636755
+ },
+ {
+ "x": 11.237498500000003,
+ "y": 16.3636755
+ },
+ {
+ "x": 11.547498500000003,
+ "y": 16.1536755
+ },
+ {
+ "x": 11.787498500000002,
+ "y": 15.813675499999999
+ },
+ {
+ "x": 11.877498500000002,
+ "y": 15.3936755
+ },
+ {
+ "x": 11.887498500000003,
+ "y": 15.0036755
+ },
+ {
+ "x": 12.637498500000003,
+ "y": 14.293675499999999
+ },
+ {
+ "x": 15.667498500000002,
+ "y": 14.293675499999999
+ },
+ {
+ "x": 16.4874985,
+ "y": 15.0036755
+ },
+ {
+ "x": 16.027498500000004,
+ "y": 15.0036755
+ },
+ {
+ "x": 16.027498500000004,
+ "y": 18.0636755
+ },
+ {
+ "x": 16.467498500000005,
+ "y": 18.0636755
+ },
+ {
+ "x": 15.677498500000002,
+ "y": 18.7736755
+ },
+ {
+ "x": 14.267498500000004,
+ "y": 18.7736755
+ },
+ {
+ "x": 13.807498500000003,
+ "y": 18.8036755
+ },
+ {
+ "x": 13.437498500000004,
+ "y": 18.8636755
+ },
{
- "x": -1.7675014999999963,
- "y": -14.712574500000002
+ "x": 13.087498500000002,
+ "y": 18.9336755
},
{
- "x": -4.267501499999996,
- "y": -14.712574500000002
+ "x": 12.757498500000002,
+ "y": 19.1036755
}
],
"stroke_width": 0.1
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1765",
- "pcb_component_id": "pcb_component_178",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_286",
+ "pcb_component_id": "pcb_component_176",
"layer": "bottom",
"route": [
{
- "x": -1.7675014999999963,
- "y": -14.712574500000002
+ "x": 113.5875005,
+ "y": 33.9649255
+ },
+ {
+ "x": 113.5875005,
+ "y": 32.8149255
},
{
- "x": -1.7675014999999963,
- "y": -9.712574500000002
+ "x": 112.3375005,
+ "y": 32.8149255
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.05
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1766",
- "pcb_component_id": "pcb_component_178",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_287",
+ "pcb_component_id": "pcb_component_177",
"layer": "bottom",
"route": [
{
- "x": -1.7675014999999963,
- "y": -9.712574500000002
+ "x": -86.4374995,
+ "y": -14.957683500000002
},
{
- "x": -4.267501499999996,
- "y": -9.712574500000002
+ "x": -86.4374995,
+ "y": -15.264965500000002
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1767",
- "pcb_component_id": "pcb_component_178",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_288",
+ "pcb_component_id": "pcb_component_177",
"layer": "bottom",
"route": [
{
- "x": -4.267501499999996,
- "y": -9.212574500000002
+ "x": -87.19749949999999,
+ "y": -14.957683500000002
},
{
- "x": -2.167501499999996,
- "y": -9.212574500000002
+ "x": -87.19749949999999,
+ "y": -15.264965500000002
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1768",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_289",
"pcb_component_id": "pcb_component_179",
- "layer": "top",
+ "layer": "bottom",
"route": [
{
- "x": 61.912498500000005,
- "y": -13.2850745
+ "x": 50.58749850000001,
+ "y": -6.900074500000002
},
{
- "x": 42.8624985,
- "y": -13.2850745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1769",
- "pcb_component_id": "pcb_component_179",
- "layer": "top",
- "route": [
+ "x": 50.27749850000001,
+ "y": -6.620074500000001
+ },
{
- "x": 61.91249850000001,
- "y": 5.764925499999997
+ "x": 50.0474985,
+ "y": -6.1800745
},
{
- "x": 61.912498500000005,
- "y": -13.2850745
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1770",
- "pcb_component_id": "pcb_component_179",
- "layer": "top",
- "route": [
+ "x": 49.9074985,
+ "y": -5.870074500000001
+ },
{
- "x": 42.8624985,
- "y": -13.2850745
+ "x": 49.7974985,
+ "y": -5.5900745
},
{
- "x": 42.86249850000001,
- "y": 5.7649255
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1771",
- "pcb_component_id": "pcb_component_179",
- "layer": "top",
- "route": [
+ "x": 49.62749850000001,
+ "y": -5.400074500000002
+ },
{
- "x": 42.86249850000001,
- "y": 5.7649255
+ "x": 49.44749850000001,
+ "y": -5.290074500000003
},
{
- "x": 61.91249850000001,
- "y": 5.764925499999997
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1772",
- "pcb_component_id": "pcb_component_179",
- "layer": "top",
- "route": [
+ "x": 49.1174985,
+ "y": -5.210074500000001
+ },
{
- "x": 59.38749850000001,
- "y": -10.760074500000002
+ "x": 45.86749850000001,
+ "y": -5.220074500000003
},
{
- "x": 45.38749850000001,
- "y": -10.760074500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1773",
- "pcb_component_id": "pcb_component_179",
- "layer": "top",
- "route": [
+ "x": 44.937498500000004,
+ "y": -5.240074500000002
+ },
{
- "x": 59.38749850000001,
- "y": 3.2399254999999982
+ "x": 44.677498500000006,
+ "y": -5.3819845000000015
},
{
- "x": 59.38749850000001,
- "y": -10.760074500000002
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1774",
- "pcb_component_id": "pcb_component_179",
- "layer": "top",
- "route": [
+ "x": 44.59749850000001,
+ "y": -5.5700745000000005
+ },
{
- "x": 45.38749850000001,
- "y": -10.760074500000002
+ "x": 44.59749850000001,
+ "y": -5.880074499999999
},
{
- "x": 45.38749850000001,
- "y": 3.2399254999999982
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1775",
- "pcb_component_id": "pcb_component_179",
- "layer": "top",
- "route": [
+ "x": 45.647498500000005,
+ "y": -5.880074499999999
+ },
{
- "x": 45.38749850000001,
- "y": 3.2399254999999982
+ "x": 45.647498500000005,
+ "y": -9.040074500000003
},
{
- "x": 59.38749850000001,
- "y": 3.2399254999999982
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1776",
- "pcb_component_id": "pcb_component_179",
- "layer": "top",
- "route": [
+ "x": 45.16749850000001,
+ "y": -9.050074500000001
+ },
{
- "x": 54.187498500000004,
- "y": -0.5600745000000025
+ "x": 45.247498500000006,
+ "y": -9.3600745
},
{
- "x": 54.187498500000004,
- "y": 2.539925499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1777",
- "pcb_component_id": "pcb_component_179",
- "layer": "top",
- "route": [
+ "x": 45.4074985,
+ "y": -9.560074499999999
+ },
{
- "x": 54.187498500000004,
- "y": -0.5600745000000025
+ "x": 45.6174985,
+ "y": -9.690074500000001
},
{
- "x": 50.58749850000001,
- "y": -0.5600745000000025
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1778",
- "pcb_component_id": "pcb_component_179",
- "layer": "top",
- "route": [
+ "x": 45.9074985,
+ "y": -9.720074500000003
+ },
{
- "x": 54.187498500000004,
- "y": 2.539925499999999
+ "x": 48.9074985,
+ "y": -9.7300745
},
{
- "x": 50.58749850000001,
- "y": 2.539925499999999
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_1779",
- "pcb_component_id": "pcb_component_179",
- "layer": "top",
- "route": [
+ "x": 49.33749850000001,
+ "y": -9.830074500000002
+ },
{
- "x": 50.58749850000001,
- "y": -0.5600745000000025
+ "x": 49.647498500000005,
+ "y": -10.040074500000003
},
{
- "x": 50.58749850000001,
- "y": 2.539925499999999
+ "x": 49.88749850000001,
+ "y": -10.3800745
+ },
+ {
+ "x": 49.9774985,
+ "y": -10.800074500000001
+ },
+ {
+ "x": 49.98749850000001,
+ "y": -11.190074500000001
+ },
+ {
+ "x": 50.73749850000001,
+ "y": -11.900074500000002
+ },
+ {
+ "x": 53.7674985,
+ "y": -11.900074500000002
+ },
+ {
+ "x": 54.58749850000001,
+ "y": -11.190074500000001
+ },
+ {
+ "x": 54.12749850000001,
+ "y": -11.190074500000001
+ },
+ {
+ "x": 54.12749850000001,
+ "y": -8.130074500000003
+ },
+ {
+ "x": 54.567498500000006,
+ "y": -8.130074500000003
+ },
+ {
+ "x": 53.77749850000001,
+ "y": -7.420074500000002
+ },
+ {
+ "x": 52.3674985,
+ "y": -7.420074500000002
+ },
+ {
+ "x": 51.9074985,
+ "y": -7.390074500000001
+ },
+ {
+ "x": 51.537498500000005,
+ "y": -7.330074500000002
+ },
+ {
+ "x": 51.187498500000004,
+ "y": -7.260074500000002
+ },
+ {
+ "x": 50.857498500000005,
+ "y": -7.0900745
}
],
"stroke_width": 0.1
diff --git a/tests/pcb/corne-keyboard/__snapshots__/corne-keyboard-circuit-json.svg b/tests/pcb/corne-keyboard/__snapshots__/corne-keyboard-circuit-json.svg
index 64622613..a3ac7010 100644
--- a/tests/pcb/corne-keyboard/__snapshots__/corne-keyboard-circuit-json.svg
+++ b/tests/pcb/corne-keyboard/__snapshots__/corne-keyboard-circuit-json.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/tests/repros/repro01-joule-thief/__snapshots__/repro01-joule-thief-circuit-json.json b/tests/repros/repro01-joule-thief/__snapshots__/repro01-joule-thief-circuit-json.json
index 7f0f38fd..c9e8486f 100644
--- a/tests/repros/repro01-joule-thief/__snapshots__/repro01-joule-thief-circuit-json.json
+++ b/tests/repros/repro01-joule-thief/__snapshots__/repro01-joule-thief-circuit-json.json
@@ -25650,7 +25650,8 @@
"x": 90.609826,
"y": -70.9
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -25663,7 +25664,8 @@
"x": 144.4,
"y": -55.900000000000006
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -25676,7 +25678,8 @@
"x": 138.2,
"y": -50.900000000000006
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -25689,7 +25692,8 @@
"x": 135.7,
"y": -59.6
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -25702,7 +25706,8 @@
"x": 138.469826,
"y": -35.800000000000004
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -25715,7 +25720,8 @@
"x": 80.969826,
"y": -49
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -25728,7 +25734,8 @@
"x": 131.06071,
"y": -35.800000000000004
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -25741,7 +25748,8 @@
"x": 141.2,
"y": -71.110349
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -25754,7 +25762,8 @@
"x": 144.5,
"y": -61.5
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -25767,7 +25776,8 @@
"x": 146.219826,
"y": -35.800000000000004
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -25780,7 +25790,8 @@
"x": 143.6,
"y": -77.44534900000001
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -25793,7 +25804,8 @@
"x": 151.7,
"y": -45
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -25806,7 +25818,8 @@
"x": 131.06071,
"y": -37.2
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -25819,7 +25832,8 @@
"x": 141.5,
"y": -68.10000000000001
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -25832,7 +25846,8 @@
"x": 148.4,
"y": -69.4
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -25845,7 +25860,8 @@
"x": 129.209826,
"y": -65.025
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -25858,7 +25874,8 @@
"x": 160.8,
"y": -62.8
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -25871,7 +25888,8 @@
"x": 149.719826,
"y": -37.2
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -25884,7 +25902,8 @@
"x": 138.46448500000002,
"y": -37.3
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -25897,7 +25916,8 @@
"x": 123.780455,
"y": -37.2
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -25910,7 +25930,8 @@
"x": 134.669826,
"y": -37.2
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -25923,7 +25944,8 @@
"x": 142,
"y": -52.570589
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -25936,7 +25958,8 @@
"x": 153.1,
"y": -52.599999999999994
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -25949,7 +25972,8 @@
"x": 135.2,
"y": -67.10000000000001
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -25962,7 +25986,8 @@
"x": 131.569826,
"y": -74
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -25975,7 +26000,8 @@
"x": 149.68958,
"y": -59.29
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -25988,7 +26014,8 @@
"x": 146.219826,
"y": -37.2
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -26001,7 +26028,8 @@
"x": 139.796709,
"y": -53.4375
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -26014,7 +26042,8 @@
"x": 153.319826,
"y": -37.2
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -26027,7 +26056,8 @@
"x": 135.60000000000002,
"y": -48.300000000000004
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -26040,7 +26070,8 @@
"x": 50.1,
"y": -70.7
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -26053,7 +26084,8 @@
"x": 50.85,
"y": -70.7
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -26066,7 +26098,8 @@
"x": 132.70000000000002,
"y": -58.2
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -26079,7 +26112,8 @@
"x": 123.8,
"y": -35.800000000000004
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -26092,7 +26126,8 @@
"x": 161.60000000000002,
"y": -53.699999999999996
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -26105,7 +26140,8 @@
"x": 156.769826,
"y": -35.800000000000004
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -26118,7 +26154,8 @@
"x": 144.462829,
"y": -57.248205
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -26131,7 +26168,8 @@
"x": 153.319826,
"y": -35.800000000000004
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -26144,7 +26182,8 @@
"x": 127.3,
"y": -35.800000000000004
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -26157,7 +26196,8 @@
"x": 149.719826,
"y": -35.800000000000004
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -26170,7 +26210,8 @@
"x": 149.79999999999998,
"y": -76.69999999999999
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -26183,7 +26224,8 @@
"x": 129.209826,
"y": -59.900000000000006
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -26196,7 +26238,8 @@
"x": 131.20000000000002,
"y": -49.8
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -26209,7 +26252,8 @@
"x": 145.3,
"y": -69.4
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -26222,7 +26266,8 @@
"x": 123.9,
"y": -55.3
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -26235,7 +26280,8 @@
"x": 150.29999999999998,
"y": -64.9
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -26248,7 +26294,8 @@
"x": 124,
"y": -60.45
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -26261,7 +26308,8 @@
"x": 156.769826,
"y": -37.2
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -26274,7 +26322,8 @@
"x": 142.169826,
"y": -35.800000000000004
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -26287,7 +26336,8 @@
"x": 134.669826,
"y": -35.800000000000004
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -26300,7 +26350,8 @@
"x": 142.169826,
"y": -37.2
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -26313,7 +26364,8 @@
"x": 156.769826,
"y": -51.1
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -26326,7 +26378,8 @@
"x": 158.869826,
"y": -46.02
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -26339,7 +26392,8 @@
"x": 149.68958,
"y": -54.4
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -26352,7 +26406,8 @@
"x": 127.326934,
"y": -37.2
},
- "layer": "top"
+ "layer": "top",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -26365,7 +26420,8 @@
},
"layer": "top",
"font_size": 4.5,
- "font": "tscircuit2024"
+ "font": "tscircuit2024",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -26378,7 +26434,8 @@
},
"layer": "top",
"font_size": 1.5,
- "font": "tscircuit2024"
+ "font": "tscircuit2024",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_text",
@@ -26391,252 +26448,73 @@
},
"layer": "top",
"font_size": 4.5,
- "font": "tscircuit2024"
+ "font": "tscircuit2024",
+ "anchor_alignment": "center"
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_0",
- "pcb_component_id": "pcb_component_0",
+ "pcb_component_id": "pcb_component_1",
"layer": "top",
"route": [
{
- "x": 75.939826,
- "y": -70.9
- },
- {
- "x": 75.74191278452935,
- "y": -69.90502307585078
- },
- {
- "x": 75.17830363108503,
- "y": -69.06152236891498
- },
- {
- "x": 74.33480292414923,
- "y": -68.49791321547066
- },
- {
- "x": 73.339826,
- "y": -68.30000000000001
- },
- {
- "x": 72.34484907585077,
- "y": -68.49791321547066
- },
- {
- "x": 71.50134836891498,
- "y": -69.06152236891498
- },
- {
- "x": 70.93773921547066,
- "y": -69.90502307585078
- },
- {
- "x": 70.73982600000001,
- "y": -70.9
- },
- {
- "x": 70.93773921547066,
- "y": -71.89497692414923
- },
- {
- "x": 71.50134836891498,
- "y": -72.73847763108503
- },
- {
- "x": 72.34484907585076,
- "y": -73.30208678452935
- },
- {
- "x": 73.339826,
- "y": -73.5
- },
- {
- "x": 74.33480292414923,
- "y": -73.30208678452935
- },
- {
- "x": 75.17830363108503,
- "y": -72.73847763108503
- },
- {
- "x": 75.74191278452935,
- "y": -71.89497692414925
+ "x": 145.523496,
+ "y": -54.565372
},
{
- "x": 75.939826,
- "y": -70.9
+ "x": 145.523496,
+ "y": -55.0195
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_1",
- "pcb_component_id": "pcb_component_0",
+ "pcb_component_id": "pcb_component_1",
"layer": "top",
"route": [
{
- "x": 110.479826,
- "y": -70.9
- },
- {
- "x": 110.28191278452934,
- "y": -69.90502307585078
- },
- {
- "x": 109.71830363108502,
- "y": -69.06152236891498
- },
- {
- "x": 108.87480292414922,
- "y": -68.49791321547066
- },
- {
- "x": 107.879826,
- "y": -68.30000000000001
- },
- {
- "x": 106.88484907585077,
- "y": -68.49791321547066
- },
- {
- "x": 106.04134836891497,
- "y": -69.06152236891498
- },
- {
- "x": 105.47773921547065,
- "y": -69.90502307585078
- },
- {
- "x": 105.27982599999999,
- "y": -70.9
- },
- {
- "x": 105.47773921547065,
- "y": -71.89497692414923
- },
- {
- "x": 106.04134836891497,
- "y": -72.73847763108503
- },
- {
- "x": 106.88484907585075,
- "y": -73.30208678452935
- },
- {
- "x": 107.879826,
- "y": -73.5
- },
- {
- "x": 108.87480292414922,
- "y": -73.30208678452935
- },
- {
- "x": 109.71830363108502,
- "y": -72.73847763108503
- },
- {
- "x": 110.28191278452934,
- "y": -71.89497692414925
+ "x": 146.99349600000002,
+ "y": -54.565372
},
{
- "x": 110.479826,
- "y": -70.9
+ "x": 146.99349600000002,
+ "y": -55.0195
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_2",
- "pcb_component_id": "pcb_component_0",
+ "pcb_component_id": "pcb_component_2",
"layer": "top",
"route": [
{
- "x": 119.069826,
- "y": -78.37
- },
- {
- "x": 118.9937055325113,
- "y": -77.98731656763492
- },
- {
- "x": 118.77693278118656,
- "y": -77.66289321881345
- },
- {
- "x": 118.45250943236509,
- "y": -77.44612046748871
- },
- {
- "x": 118.069826,
- "y": -77.37
- },
- {
- "x": 117.68714256763492,
- "y": -77.44612046748871
- },
- {
- "x": 117.36271921881345,
- "y": -77.66289321881345
- },
- {
- "x": 117.14594646748871,
- "y": -77.98731656763492
- },
- {
- "x": 117.069826,
- "y": -78.37
- },
- {
- "x": 117.14594646748871,
- "y": -78.75268343236509
- },
- {
- "x": 117.36271921881345,
- "y": -79.07710678118656
- },
- {
- "x": 117.68714256763492,
- "y": -79.2938795325113
- },
- {
- "x": 118.069826,
- "y": -79.37
- },
- {
- "x": 118.45250943236509,
- "y": -79.2938795325113
- },
- {
- "x": 118.77693278118656,
- "y": -79.07710678118656
- },
- {
- "x": 118.9937055325113,
- "y": -78.75268343236509
+ "x": 131.75982599999998,
+ "y": -53.7625
},
{
- "x": 119.069826,
- "y": -78.37
+ "x": 131.75982599999998,
+ "y": -51.5625
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_3",
- "pcb_component_id": "pcb_component_1",
+ "pcb_component_id": "pcb_component_2",
"layer": "top",
"route": [
{
- "x": 145.523496,
- "y": -54.565372
+ "x": 131.75982599999998,
+ "y": -53.7625
},
{
- "x": 145.523496,
- "y": -55.0195
+ "x": 131.75982599999998,
+ "y": -55.962500000000006
}
],
"stroke_width": 0.12
@@ -26644,16 +26522,16 @@
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_4",
- "pcb_component_id": "pcb_component_1",
+ "pcb_component_id": "pcb_component_2",
"layer": "top",
"route": [
{
- "x": 146.99349600000002,
- "y": -54.565372
+ "x": 136.979826,
+ "y": -53.7625
},
{
- "x": 146.99349600000002,
- "y": -55.0195
+ "x": 136.979826,
+ "y": -51.5625
}
],
"stroke_width": 0.12
@@ -26661,152 +26539,160 @@
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_5",
- "pcb_component_id": "pcb_component_1",
+ "pcb_component_id": "pcb_component_2",
"layer": "top",
"route": [
{
- "x": 145.30849600000002,
- "y": -52.942436
+ "x": 136.979826,
+ "y": -53.7625
},
{
- "x": 147.208496,
- "y": -52.942436
+ "x": 136.979826,
+ "y": -55.962500000000006
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_6",
- "pcb_component_id": "pcb_component_1",
+ "pcb_component_id": "pcb_component_2",
"layer": "top",
"route": [
{
- "x": 145.30849600000002,
- "y": -56.642436000000004
+ "x": 136.77982599999999,
+ "y": -50.862500000000004
+ },
+ {
+ "x": 137.109826,
+ "y": -50.6225
},
{
- "x": 145.30849600000002,
- "y": -52.942436
+ "x": 137.109826,
+ "y": -51.102500000000006
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_7",
- "pcb_component_id": "pcb_component_1",
+ "pcb_component_id": "pcb_component_3",
"layer": "top",
"route": [
{
- "x": 147.208496,
- "y": -52.942436
+ "x": 136.69907999999998,
+ "y": -61.551
},
{
- "x": 147.208496,
- "y": -56.642436000000004
+ "x": 136.69907999999998,
+ "y": -60.051
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_8",
- "pcb_component_id": "pcb_component_1",
+ "pcb_component_id": "pcb_component_3",
"layer": "top",
"route": [
{
- "x": 147.208496,
- "y": -56.642436000000004
+ "x": 136.69907999999998,
+ "y": -61.551
},
{
- "x": 145.30849600000002,
- "y": -56.642436000000004
+ "x": 136.69907999999998,
+ "y": -63.051
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_9",
- "pcb_component_id": "pcb_component_1",
+ "pcb_component_id": "pcb_component_3",
"layer": "top",
"route": [
{
- "x": 145.633496,
- "y": -53.792436
+ "x": 140.95808,
+ "y": -61.551
},
{
- "x": 146.883496,
- "y": -53.792436
+ "x": 140.95808,
+ "y": -60.051
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_10",
- "pcb_component_id": "pcb_component_1",
+ "pcb_component_id": "pcb_component_3",
"layer": "top",
"route": [
{
- "x": 145.633496,
- "y": -55.792436
+ "x": 140.95808,
+ "y": -61.551
},
{
- "x": 145.633496,
- "y": -53.792436
+ "x": 140.95808,
+ "y": -63.051
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_11",
- "pcb_component_id": "pcb_component_1",
+ "pcb_component_id": "pcb_component_3",
"layer": "top",
"route": [
{
- "x": 146.883496,
- "y": -53.792436
+ "x": 140.91358,
+ "y": -59.3635
+ },
+ {
+ "x": 141.24357999999998,
+ "y": -59.1235
},
{
- "x": 146.883496,
- "y": -55.792436
+ "x": 141.24357999999998,
+ "y": -59.603500000000004
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_12",
- "pcb_component_id": "pcb_component_1",
+ "pcb_component_id": "pcb_component_4",
"layer": "top",
"route": [
{
- "x": 146.883496,
- "y": -55.792436
+ "x": 137.069826,
+ "y": -39.5
},
{
- "x": 145.633496,
- "y": -55.792436
+ "x": 137.069826,
+ "y": -38.900000000000006
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_13",
- "pcb_component_id": "pcb_component_2",
+ "pcb_component_id": "pcb_component_4",
"layer": "top",
"route": [
{
- "x": 131.75982599999998,
- "y": -53.7625
+ "x": 137.76982600000002,
+ "y": -38.2
},
{
- "x": 131.75982599999998,
- "y": -51.5625
+ "x": 139.169826,
+ "y": -38.2
}
],
"stroke_width": 0.12
@@ -26814,16 +26700,16 @@
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_14",
- "pcb_component_id": "pcb_component_2",
+ "pcb_component_id": "pcb_component_4",
"layer": "top",
"route": [
{
- "x": 131.75982599999998,
- "y": -53.7625
+ "x": 139.169826,
+ "y": -40.2
},
{
- "x": 131.75982599999998,
- "y": -55.962500000000006
+ "x": 137.76982600000002,
+ "y": -40.2
}
],
"stroke_width": 0.12
@@ -26831,16 +26717,16 @@
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_15",
- "pcb_component_id": "pcb_component_2",
+ "pcb_component_id": "pcb_component_4",
"layer": "top",
"route": [
{
- "x": 136.979826,
- "y": -53.7625
+ "x": 139.86982600000002,
+ "y": -38.900000000000006
},
{
- "x": 136.979826,
- "y": -51.5625
+ "x": 139.86982600000002,
+ "y": -39.5
}
],
"stroke_width": 0.12
@@ -26848,16 +26734,56 @@
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_16",
- "pcb_component_id": "pcb_component_2",
+ "pcb_component_id": "pcb_component_4",
"layer": "top",
"route": [
{
- "x": 136.979826,
- "y": -53.7625
+ "x": 137.069826,
+ "y": -38.900000000000006
},
{
- "x": 136.979826,
- "y": -55.962500000000006
+ "x": 137.0769508812379,
+ "y": -38.800379571864404
+ },
+ {
+ "x": 137.0981807284876,
+ "y": -38.70278711713388
+ },
+ {
+ "x": 137.13308336192424,
+ "y": -38.6092093429898
+ },
+ {
+ "x": 137.1809482623516,
+ "y": -38.521551229037605
+ },
+ {
+ "x": 137.24080103536917,
+ "y": -38.44159724729386
+ },
+ {
+ "x": 137.31142324729475,
+ "y": -38.37097503536792
+ },
+ {
+ "x": 137.3913772290382,
+ "y": -38.31112226234992
+ },
+ {
+ "x": 137.47903534299013,
+ "y": -38.263257361922136
+ },
+ {
+ "x": 137.57261311713404,
+ "y": -38.22835472848501
+ },
+ {
+ "x": 137.67020557186447,
+ "y": -38.207124881234826
+ },
+ {
+ "x": 137.76982600000002,
+ "y": -38.199999999996415
}
],
"stroke_width": 0.12
@@ -26865,3710 +26791,1400 @@
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_17",
- "pcb_component_id": "pcb_component_2",
+ "pcb_component_id": "pcb_component_4",
"layer": "top",
"route": [
{
- "x": 131.619826,
- "y": -51.3125
+ "x": 137.76982600000002,
+ "y": -40.2
+ },
+ {
+ "x": 137.67020557186487,
+ "y": -40.19287511876183
+ },
+ {
+ "x": 137.57261311713484,
+ "y": -40.171645271511906
+ },
+ {
+ "x": 137.47903534299127,
+ "y": -40.13674263807506
+ },
+ {
+ "x": 137.39137722903965,
+ "y": -40.08887773764757
+ },
+ {
+ "x": 137.31142324729652,
+ "y": -40.02902496462988
+ },
+ {
+ "x": 137.2408010353712,
+ "y": -39.95840275270427
+ },
+ {
+ "x": 137.18094826235387,
+ "y": -39.878448770960865
+ },
+ {
+ "x": 137.13308336192677,
+ "y": -39.790790657009026
+ },
+ {
+ "x": 137.09818072849032,
+ "y": -39.697212882865315
+ },
+ {
+ "x": 137.07695088124083,
+ "y": -39.59962042813519
},
{
- "x": 131.96982599999998,
- "y": -51.3125
+ "x": 137.0698260000031,
+ "y": -39.5
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_18",
- "pcb_component_id": "pcb_component_2",
+ "pcb_component_id": "pcb_component_4",
"layer": "top",
"route": [
{
- "x": 131.619826,
- "y": -56.212500000000006
+ "x": 139.169826,
+ "y": -38.2
+ },
+ {
+ "x": 139.2694464281351,
+ "y": -38.20712488123886
+ },
+ {
+ "x": 139.367038882865,
+ "y": -38.22835472848928
+ },
+ {
+ "x": 139.46061665700844,
+ "y": -38.26325736192641
+ },
+ {
+ "x": 139.54827477095998,
+ "y": -38.31112226235399
+ },
+ {
+ "x": 139.62822875270317,
+ "y": -38.3709750353716
+ },
+ {
+ "x": 139.69885096462866,
+ "y": -38.44159724729702
+ },
+ {
+ "x": 139.75870373764636,
+ "y": -38.52155122904013
+ },
+ {
+ "x": 139.80656863807403,
+ "y": -38.60920934299163
+ },
+ {
+ "x": 139.84147127151124,
+ "y": -38.70278711713503
+ },
+ {
+ "x": 139.86270111876175,
+ "y": -38.80037957186492
},
{
- "x": 131.619826,
- "y": -51.3125
+ "x": 139.86982600000073,
+ "y": -38.900000000000006
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_19",
- "pcb_component_id": "pcb_component_2",
+ "pcb_component_id": "pcb_component_4",
"layer": "top",
"route": [
{
- "x": 131.96982599999998,
- "y": -49.9125
+ "x": 139.86982600000002,
+ "y": -39.5
+ },
+ {
+ "x": 139.86270111876155,
+ "y": -39.59962042813511
+ },
+ {
+ "x": 139.8414712715114,
+ "y": -39.69721288286508
+ },
+ {
+ "x": 139.80656863807442,
+ "y": -39.79079065700857
+ },
+ {
+ "x": 139.7587037376469,
+ "y": -39.87844877096015
+ },
+ {
+ "x": 139.69885096462923,
+ "y": -39.958402752703286
+ },
+ {
+ "x": 139.6282287527037,
+ "y": -40.02902496462865
+ },
+ {
+ "x": 139.5482747709604,
+ "y": -40.08887773764612
+ },
+ {
+ "x": 139.46061665700873,
+ "y": -40.13674263807345
+ },
+ {
+ "x": 139.36703888286516,
+ "y": -40.1716452715102
+ },
+ {
+ "x": 139.26944642813513,
+ "y": -40.192875118760114
},
{
- "x": 136.769826,
- "y": -49.9125
+ "x": 139.169826,
+ "y": -40.199999999998354
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_20",
- "pcb_component_id": "pcb_component_2",
+ "pcb_component_id": "pcb_component_6",
"layer": "top",
"route": [
{
- "x": 131.96982599999998,
- "y": -51.3125
+ "x": 129.66071,
+ "y": -39.5
},
{
- "x": 131.96982599999998,
- "y": -49.9125
+ "x": 129.66071,
+ "y": -38.900000000000006
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_21",
- "pcb_component_id": "pcb_component_2",
+ "pcb_component_id": "pcb_component_6",
"layer": "top",
"route": [
{
- "x": 131.96982599999998,
- "y": -56.212500000000006
+ "x": 130.36071,
+ "y": -38.2
},
{
- "x": 131.619826,
- "y": -56.212500000000006
+ "x": 131.76071,
+ "y": -38.2
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_22",
- "pcb_component_id": "pcb_component_2",
+ "pcb_component_id": "pcb_component_6",
"layer": "top",
"route": [
{
- "x": 131.96982599999998,
- "y": -57.612500000000004
+ "x": 131.76071,
+ "y": -40.2
},
{
- "x": 131.96982599999998,
- "y": -56.212500000000006
+ "x": 130.36071,
+ "y": -40.2
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_23",
- "pcb_component_id": "pcb_component_2",
+ "pcb_component_id": "pcb_component_6",
"layer": "top",
"route": [
{
- "x": 136.769826,
- "y": -49.9125
+ "x": 132.46071,
+ "y": -38.900000000000006
},
{
- "x": 136.769826,
- "y": -51.3125
+ "x": 132.46071,
+ "y": -39.5
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
"pcb_silkscreen_path_id": "pcb_silkscreen_path_24",
- "pcb_component_id": "pcb_component_2",
- "layer": "top",
- "route": [
- {
- "x": 136.769826,
- "y": -51.3125
- },
- {
- "x": 137.119826,
- "y": -51.3125
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_25",
- "pcb_component_id": "pcb_component_2",
- "layer": "top",
- "route": [
- {
- "x": 136.769826,
- "y": -56.212500000000006
- },
- {
- "x": 136.769826,
- "y": -57.612500000000004
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_26",
- "pcb_component_id": "pcb_component_2",
- "layer": "top",
- "route": [
- {
- "x": 136.769826,
- "y": -57.612500000000004
- },
- {
- "x": 131.96982599999998,
- "y": -57.612500000000004
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_27",
- "pcb_component_id": "pcb_component_2",
- "layer": "top",
- "route": [
- {
- "x": 137.119826,
- "y": -51.3125
- },
- {
- "x": 137.119826,
- "y": -56.212500000000006
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_28",
- "pcb_component_id": "pcb_component_2",
- "layer": "top",
- "route": [
- {
- "x": 137.119826,
- "y": -56.212500000000006
- },
- {
- "x": 136.769826,
- "y": -56.212500000000006
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_29",
- "pcb_component_id": "pcb_component_2",
- "layer": "top",
- "route": [
- {
- "x": 131.869826,
- "y": -51.5625
- },
- {
- "x": 135.869826,
- "y": -51.5625
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_30",
- "pcb_component_id": "pcb_component_2",
- "layer": "top",
- "route": [
- {
- "x": 131.869826,
- "y": -55.962500000000006
- },
- {
- "x": 131.869826,
- "y": -51.5625
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_31",
- "pcb_component_id": "pcb_component_2",
- "layer": "top",
- "route": [
- {
- "x": 135.869826,
- "y": -51.5625
- },
- {
- "x": 136.869826,
- "y": -52.5625
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_32",
- "pcb_component_id": "pcb_component_2",
- "layer": "top",
- "route": [
- {
- "x": 136.869826,
- "y": -52.5625
- },
- {
- "x": 136.869826,
- "y": -55.962500000000006
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_33",
- "pcb_component_id": "pcb_component_2",
- "layer": "top",
- "route": [
- {
- "x": 136.869826,
- "y": -55.962500000000006
- },
- {
- "x": 131.869826,
- "y": -55.962500000000006
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_34",
- "pcb_component_id": "pcb_component_2",
- "layer": "top",
- "route": [
- {
- "x": 136.77982599999999,
- "y": -50.862500000000004
- },
- {
- "x": 137.109826,
- "y": -50.6225
- },
- {
- "x": 137.109826,
- "y": -51.102500000000006
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_35",
- "pcb_component_id": "pcb_component_3",
- "layer": "top",
- "route": [
- {
- "x": 136.69907999999998,
- "y": -61.551
- },
- {
- "x": 136.69907999999998,
- "y": -60.051
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_36",
- "pcb_component_id": "pcb_component_3",
- "layer": "top",
- "route": [
- {
- "x": 136.69907999999998,
- "y": -61.551
- },
- {
- "x": 136.69907999999998,
- "y": -63.051
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_37",
- "pcb_component_id": "pcb_component_3",
- "layer": "top",
- "route": [
- {
- "x": 140.95808,
- "y": -61.551
- },
- {
- "x": 140.95808,
- "y": -60.051
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_38",
- "pcb_component_id": "pcb_component_3",
- "layer": "top",
- "route": [
- {
- "x": 140.95808,
- "y": -61.551
- },
- {
- "x": 140.95808,
- "y": -63.051
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_39",
- "pcb_component_id": "pcb_component_3",
- "layer": "top",
- "route": [
- {
- "x": 136.55857999999998,
- "y": -59.801
- },
- {
- "x": 136.74857999999998,
- "y": -59.801
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_40",
- "pcb_component_id": "pcb_component_3",
- "layer": "top",
- "route": [
- {
- "x": 136.55857999999998,
- "y": -63.301
- },
- {
- "x": 136.55857999999998,
- "y": -59.801
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_41",
- "pcb_component_id": "pcb_component_3",
- "layer": "top",
- "route": [
- {
- "x": 136.74857999999998,
- "y": -58.421
- },
- {
- "x": 140.90858,
- "y": -58.421
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_42",
- "pcb_component_id": "pcb_component_3",
- "layer": "top",
- "route": [
- {
- "x": 136.74857999999998,
- "y": -59.801
- },
- {
- "x": 136.74857999999998,
- "y": -58.421
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_43",
- "pcb_component_id": "pcb_component_3",
- "layer": "top",
- "route": [
- {
- "x": 136.74857999999998,
- "y": -63.301
- },
- {
- "x": 136.55857999999998,
- "y": -63.301
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_44",
- "pcb_component_id": "pcb_component_3",
- "layer": "top",
- "route": [
- {
- "x": 136.74857999999998,
- "y": -64.681
- },
- {
- "x": 136.74857999999998,
- "y": -63.301
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_45",
- "pcb_component_id": "pcb_component_3",
- "layer": "top",
- "route": [
- {
- "x": 140.90858,
- "y": -58.421
- },
- {
- "x": 140.90858,
- "y": -59.801
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_46",
- "pcb_component_id": "pcb_component_3",
- "layer": "top",
- "route": [
- {
- "x": 140.90858,
- "y": -59.801
- },
- {
- "x": 141.09858,
- "y": -59.801
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_47",
- "pcb_component_id": "pcb_component_3",
- "layer": "top",
- "route": [
- {
- "x": 140.90858,
- "y": -63.301
- },
- {
- "x": 140.90858,
- "y": -64.681
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_48",
- "pcb_component_id": "pcb_component_3",
- "layer": "top",
- "route": [
- {
- "x": 140.90858,
- "y": -64.681
- },
- {
- "x": 136.74857999999998,
- "y": -64.681
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_49",
- "pcb_component_id": "pcb_component_3",
- "layer": "top",
- "route": [
- {
- "x": 141.09858,
- "y": -59.801
- },
- {
- "x": 141.09858,
- "y": -63.301
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_50",
- "pcb_component_id": "pcb_component_3",
- "layer": "top",
- "route": [
- {
- "x": 141.09858,
- "y": -63.301
- },
- {
- "x": 140.90858,
- "y": -63.301
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_51",
- "pcb_component_id": "pcb_component_3",
- "layer": "top",
- "route": [
- {
- "x": 136.80908,
- "y": -60.051
- },
- {
- "x": 140.09807999999998,
- "y": -60.051
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_52",
- "pcb_component_id": "pcb_component_3",
- "layer": "top",
- "route": [
- {
- "x": 136.80908,
- "y": -63.051
- },
- {
- "x": 136.80908,
- "y": -60.051
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_53",
- "pcb_component_id": "pcb_component_3",
- "layer": "top",
- "route": [
- {
- "x": 140.09807999999998,
- "y": -60.051
- },
- {
- "x": 140.84807999999998,
- "y": -60.801
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_54",
- "pcb_component_id": "pcb_component_3",
- "layer": "top",
- "route": [
- {
- "x": 140.84807999999998,
- "y": -60.801
- },
- {
- "x": 140.84807999999998,
- "y": -63.051
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_55",
- "pcb_component_id": "pcb_component_3",
- "layer": "top",
- "route": [
- {
- "x": 140.84807999999998,
- "y": -63.051
- },
- {
- "x": 136.80908,
- "y": -63.051
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_56",
- "pcb_component_id": "pcb_component_3",
- "layer": "top",
- "route": [
- {
- "x": 140.91358,
- "y": -59.3635
- },
- {
- "x": 141.24357999999998,
- "y": -59.1235
- },
- {
- "x": 141.24357999999998,
- "y": -59.603500000000004
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_57",
- "pcb_component_id": "pcb_component_4",
- "layer": "top",
- "route": [
- {
- "x": 137.069826,
- "y": -39.5
- },
- {
- "x": 137.069826,
- "y": -38.900000000000006
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_58",
- "pcb_component_id": "pcb_component_4",
- "layer": "top",
- "route": [
- {
- "x": 137.76982600000002,
- "y": -38.2
- },
- {
- "x": 139.169826,
- "y": -38.2
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_59",
- "pcb_component_id": "pcb_component_4",
- "layer": "top",
- "route": [
- {
- "x": 139.169826,
- "y": -40.2
- },
- {
- "x": 137.76982600000002,
- "y": -40.2
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_60",
- "pcb_component_id": "pcb_component_4",
- "layer": "top",
- "route": [
- {
- "x": 139.86982600000002,
- "y": -38.900000000000006
- },
- {
- "x": 139.86982600000002,
- "y": -39.5
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_61",
- "pcb_component_id": "pcb_component_4",
- "layer": "top",
- "route": [
- {
- "x": 136.819826,
- "y": -37.95
- },
- {
- "x": 136.819826,
- "y": -40.45
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_62",
- "pcb_component_id": "pcb_component_4",
- "layer": "top",
- "route": [
- {
- "x": 136.819826,
- "y": -37.95
- },
- {
- "x": 140.11982600000002,
- "y": -37.95
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_63",
- "pcb_component_id": "pcb_component_4",
- "layer": "top",
- "route": [
- {
- "x": 140.11982600000002,
- "y": -40.45
- },
- {
- "x": 136.819826,
- "y": -40.45
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_64",
- "pcb_component_id": "pcb_component_4",
- "layer": "top",
- "route": [
- {
- "x": 140.11982600000002,
- "y": -40.45
- },
- {
- "x": 140.11982600000002,
- "y": -37.95
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_65",
- "pcb_component_id": "pcb_component_4",
- "layer": "top",
- "route": [
- {
- "x": 137.069826,
- "y": -38.900000000000006
- },
- {
- "x": 137.0769508812379,
- "y": -38.800379571864404
- },
- {
- "x": 137.0981807284876,
- "y": -38.70278711713388
- },
- {
- "x": 137.13308336192424,
- "y": -38.6092093429898
- },
- {
- "x": 137.1809482623516,
- "y": -38.521551229037605
- },
- {
- "x": 137.24080103536917,
- "y": -38.44159724729386
- },
- {
- "x": 137.31142324729475,
- "y": -38.37097503536792
- },
- {
- "x": 137.3913772290382,
- "y": -38.31112226234992
- },
- {
- "x": 137.47903534299013,
- "y": -38.263257361922136
- },
- {
- "x": 137.57261311713404,
- "y": -38.22835472848501
- },
- {
- "x": 137.67020557186447,
- "y": -38.207124881234826
- },
- {
- "x": 137.76982600000002,
- "y": -38.199999999996415
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_66",
- "pcb_component_id": "pcb_component_4",
- "layer": "top",
- "route": [
- {
- "x": 137.76982600000002,
- "y": -40.2
- },
- {
- "x": 137.67020557186487,
- "y": -40.19287511876183
- },
- {
- "x": 137.57261311713484,
- "y": -40.171645271511906
- },
- {
- "x": 137.47903534299127,
- "y": -40.13674263807506
- },
- {
- "x": 137.39137722903965,
- "y": -40.08887773764757
- },
- {
- "x": 137.31142324729652,
- "y": -40.02902496462988
- },
- {
- "x": 137.2408010353712,
- "y": -39.95840275270427
- },
- {
- "x": 137.18094826235387,
- "y": -39.878448770960865
- },
- {
- "x": 137.13308336192677,
- "y": -39.790790657009026
- },
- {
- "x": 137.09818072849032,
- "y": -39.697212882865315
- },
- {
- "x": 137.07695088124083,
- "y": -39.59962042813519
- },
- {
- "x": 137.0698260000031,
- "y": -39.5
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_67",
- "pcb_component_id": "pcb_component_4",
- "layer": "top",
- "route": [
- {
- "x": 139.169826,
- "y": -38.2
- },
- {
- "x": 139.2694464281351,
- "y": -38.20712488123886
- },
- {
- "x": 139.367038882865,
- "y": -38.22835472848928
- },
- {
- "x": 139.46061665700844,
- "y": -38.26325736192641
- },
- {
- "x": 139.54827477095998,
- "y": -38.31112226235399
- },
- {
- "x": 139.62822875270317,
- "y": -38.3709750353716
- },
- {
- "x": 139.69885096462866,
- "y": -38.44159724729702
- },
- {
- "x": 139.75870373764636,
- "y": -38.52155122904013
- },
- {
- "x": 139.80656863807403,
- "y": -38.60920934299163
- },
- {
- "x": 139.84147127151124,
- "y": -38.70278711713503
- },
- {
- "x": 139.86270111876175,
- "y": -38.80037957186492
- },
- {
- "x": 139.86982600000073,
- "y": -38.900000000000006
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_68",
- "pcb_component_id": "pcb_component_4",
- "layer": "top",
- "route": [
- {
- "x": 139.86982600000002,
- "y": -39.5
- },
- {
- "x": 139.86270111876155,
- "y": -39.59962042813511
- },
- {
- "x": 139.8414712715114,
- "y": -39.69721288286508
- },
- {
- "x": 139.80656863807442,
- "y": -39.79079065700857
- },
- {
- "x": 139.7587037376469,
- "y": -39.87844877096015
- },
- {
- "x": 139.69885096462923,
- "y": -39.958402752703286
- },
- {
- "x": 139.6282287527037,
- "y": -40.02902496462865
- },
- {
- "x": 139.5482747709604,
- "y": -40.08887773764612
- },
- {
- "x": 139.46061665700873,
- "y": -40.13674263807345
- },
- {
- "x": 139.36703888286516,
- "y": -40.1716452715102
- },
- {
- "x": 139.26944642813513,
- "y": -40.192875118760114
- },
- {
- "x": 139.169826,
- "y": -40.199999999998354
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_69",
- "pcb_component_id": "pcb_component_5",
- "layer": "top",
- "route": [
- {
- "x": 54.769826,
- "y": -49
- },
- {
- "x": 54.64803325201806,
- "y": -48.38770650821586
- },
- {
- "x": 54.301196849898474,
- "y": -47.868629150101526
- },
- {
- "x": 53.782119491784144,
- "y": -47.52179274798194
- },
- {
- "x": 53.169826,
- "y": -47.4
- },
- {
- "x": 52.55753250821586,
- "y": -47.52179274798194
- },
- {
- "x": 52.03845515010153,
- "y": -47.868629150101526
- },
- {
- "x": 51.69161874798194,
- "y": -48.38770650821586
- },
- {
- "x": 51.569826,
- "y": -49
- },
- {
- "x": 51.69161874798194,
- "y": -49.61229349178414
- },
- {
- "x": 52.03845515010153,
- "y": -50.131370849898474
- },
- {
- "x": 52.55753250821586,
- "y": -50.47820725201806
- },
- {
- "x": 53.169826,
- "y": -50.6
- },
- {
- "x": 53.782119491784144,
- "y": -50.47820725201806
- },
- {
- "x": 54.301196849898474,
- "y": -50.131370849898474
- },
- {
- "x": 54.64803325201806,
- "y": -49.61229349178414
- },
- {
- "x": 54.769826,
- "y": -49
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_70",
- "pcb_component_id": "pcb_component_5",
- "layer": "top",
- "route": [
- {
- "x": 110.36982599999999,
- "y": -49
- },
- {
- "x": 110.24803325201805,
- "y": -48.38770650821586
- },
- {
- "x": 109.90119684989847,
- "y": -47.868629150101526
- },
- {
- "x": 109.38211949178414,
- "y": -47.52179274798194
- },
- {
- "x": 108.769826,
- "y": -47.400000000000006
- },
- {
- "x": 108.15753250821585,
- "y": -47.52179274798194
- },
- {
- "x": 107.63845515010152,
- "y": -47.868629150101526
- },
- {
- "x": 107.29161874798194,
- "y": -48.38770650821586
- },
- {
- "x": 107.169826,
- "y": -49
- },
- {
- "x": 107.29161874798194,
- "y": -49.61229349178414
- },
- {
- "x": 107.63845515010152,
- "y": -50.131370849898474
- },
- {
- "x": 108.15753250821585,
- "y": -50.47820725201806
- },
- {
- "x": 108.769826,
- "y": -50.599999999999994
- },
- {
- "x": 109.38211949178414,
- "y": -50.47820725201806
- },
- {
- "x": 109.90119684989847,
- "y": -50.131370849898474
- },
- {
- "x": 110.24803325201805,
- "y": -49.61229349178414
- },
- {
- "x": 110.36982599999999,
- "y": -49
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_71",
- "pcb_component_id": "pcb_component_6",
- "layer": "top",
- "route": [
- {
- "x": 129.66071,
- "y": -39.5
- },
- {
- "x": 129.66071,
- "y": -38.900000000000006
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_72",
- "pcb_component_id": "pcb_component_6",
- "layer": "top",
- "route": [
- {
- "x": 130.36071,
- "y": -38.2
- },
- {
- "x": 131.76071,
- "y": -38.2
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_73",
- "pcb_component_id": "pcb_component_6",
- "layer": "top",
- "route": [
- {
- "x": 131.76071,
- "y": -40.2
- },
- {
- "x": 130.36071,
- "y": -40.2
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_74",
- "pcb_component_id": "pcb_component_6",
- "layer": "top",
- "route": [
- {
- "x": 132.46071,
- "y": -38.900000000000006
- },
- {
- "x": 132.46071,
- "y": -39.5
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_75",
- "pcb_component_id": "pcb_component_6",
- "layer": "top",
- "route": [
- {
- "x": 129.41071,
- "y": -37.95
- },
- {
- "x": 129.41071,
- "y": -40.45
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_76",
- "pcb_component_id": "pcb_component_6",
- "layer": "top",
- "route": [
- {
- "x": 129.41071,
- "y": -37.95
- },
- {
- "x": 132.71071,
- "y": -37.95
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_77",
- "pcb_component_id": "pcb_component_6",
- "layer": "top",
- "route": [
- {
- "x": 132.71071,
- "y": -40.45
- },
- {
- "x": 129.41071,
- "y": -40.45
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_78",
- "pcb_component_id": "pcb_component_6",
- "layer": "top",
- "route": [
- {
- "x": 132.71071,
- "y": -40.45
- },
- {
- "x": 132.71071,
- "y": -37.95
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_79",
- "pcb_component_id": "pcb_component_6",
- "layer": "top",
- "route": [
- {
- "x": 129.66071,
- "y": -38.900000000000006
- },
- {
- "x": 129.66783488123784,
- "y": -38.800379571864454
- },
- {
- "x": 129.6890647284875,
- "y": -38.70278711713399
- },
- {
- "x": 129.72396736192414,
- "y": -38.609209342989956
- },
- {
- "x": 129.7718322623515,
- "y": -38.521551229037826
- },
- {
- "x": 129.8316850353691,
- "y": -38.44159724729417
- },
- {
- "x": 129.90230724729471,
- "y": -38.37097503536833
- },
- {
- "x": 129.9822612290382,
- "y": -38.311122262350466
- },
- {
- "x": 130.06991934299015,
- "y": -38.26325736192284
- },
- {
- "x": 130.16349711713409,
- "y": -38.228354728485904
- },
- {
- "x": 130.2610895718645,
- "y": -38.207124881235934
- },
- {
- "x": 130.36071,
- "y": -38.199999999997765
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_80",
- "pcb_component_id": "pcb_component_6",
- "layer": "top",
- "route": [
- {
- "x": 130.36071,
- "y": -40.2
- },
- {
- "x": 130.26108957186472,
- "y": -40.19287511876205
- },
- {
- "x": 130.16349711713448,
- "y": -40.171645271512304
- },
- {
- "x": 130.06991934299074,
- "y": -40.136742638075575
- },
- {
- "x": 129.98226122903893,
- "y": -40.088877737648154
- },
- {
- "x": 129.9023072472956,
- "y": -40.02902496463048
- },
- {
- "x": 129.83168503537013,
- "y": -39.958402752704835
- },
- {
- "x": 129.77183226235266,
- "y": -39.87844877096136
- },
- {
- "x": 129.72396736192545,
- "y": -39.790790657009424
- },
- {
- "x": 129.68906472848897,
- "y": -39.69721288286559
- },
- {
- "x": 129.66783488123946,
- "y": -39.599620428135324
- },
- {
- "x": 129.66071000000176,
- "y": -39.5
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_81",
- "pcb_component_id": "pcb_component_6",
- "layer": "top",
- "route": [
- {
- "x": 131.76071,
- "y": -38.2
- },
- {
- "x": 131.86033042813523,
- "y": -38.20712488123829
- },
- {
- "x": 131.95792288286535,
- "y": -38.22835472848829
- },
- {
- "x": 132.05150065700897,
- "y": -38.26325736192516
- },
- {
- "x": 132.1391587709607,
- "y": -38.31112226235265
- },
- {
- "x": 132.219112752704,
- "y": -38.37097503537029
- },
- {
- "x": 132.2897349646295,
- "y": -38.441597247295846
- },
- {
- "x": 132.34958773764708,
- "y": -38.52155122903918
- },
- {
- "x": 132.3974526380745,
- "y": -38.60920934299096
- },
- {
- "x": 132.43235527151128,
- "y": -38.70278711713463
- },
- {
- "x": 132.4535851187612,
- "y": -38.80037957186476
- },
- {
- "x": 132.4607099999994,
- "y": -38.900000000000006
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_82",
- "pcb_component_id": "pcb_component_6",
- "layer": "top",
- "route": [
- {
- "x": 132.46071,
- "y": -39.5
- },
- {
- "x": 132.45358511876228,
- "y": -39.59962042813546
- },
- {
- "x": 132.43235527151268,
- "y": -39.69721288286585
- },
- {
- "x": 132.39745263807606,
- "y": -39.79079065700979
- },
- {
- "x": 132.3495877376487,
- "y": -39.878448770961796
- },
- {
- "x": 132.28973496463107,
- "y": -39.958402752705304
- },
- {
- "x": 132.21911275270537,
- "y": -40.02902496463094
- },
- {
- "x": 132.13915877096184,
- "y": -40.08887773764855
- },
- {
- "x": 132.0515006570098,
- "y": -40.136742638075866
- },
- {
- "x": 131.95792288286586,
- "y": -40.171645271512425
- },
- {
- "x": 131.86033042813546,
- "y": -40.19287511876197
- },
- {
- "x": 131.76071,
- "y": -40.19999999999965
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_83",
- "pcb_component_id": "pcb_component_7",
- "layer": "top",
- "route": [
- {
- "x": 142.33074299999998,
- "y": -70.883285
- },
- {
- "x": 142.33074299999998,
- "y": -71.337413
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_84",
- "pcb_component_id": "pcb_component_7",
- "layer": "top",
- "route": [
- {
- "x": 143.800743,
- "y": -70.883285
- },
- {
- "x": 143.800743,
- "y": -71.337413
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_85",
- "pcb_component_id": "pcb_component_7",
- "layer": "top",
- "route": [
- {
- "x": 142.115743,
- "y": -69.260349
- },
- {
- "x": 144.015743,
- "y": -69.260349
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_86",
- "pcb_component_id": "pcb_component_7",
- "layer": "top",
- "route": [
- {
- "x": 142.115743,
- "y": -72.960349
- },
- {
- "x": 142.115743,
- "y": -69.260349
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_87",
- "pcb_component_id": "pcb_component_7",
- "layer": "top",
- "route": [
- {
- "x": 144.015743,
- "y": -69.260349
- },
- {
- "x": 144.015743,
- "y": -72.960349
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_88",
- "pcb_component_id": "pcb_component_7",
- "layer": "top",
- "route": [
- {
- "x": 144.015743,
- "y": -72.960349
- },
- {
- "x": 142.115743,
- "y": -72.960349
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_89",
- "pcb_component_id": "pcb_component_7",
- "layer": "top",
- "route": [
- {
- "x": 142.440743,
- "y": -70.110349
- },
- {
- "x": 143.690743,
- "y": -70.110349
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_90",
- "pcb_component_id": "pcb_component_7",
- "layer": "top",
- "route": [
- {
- "x": 142.440743,
- "y": -72.110349
- },
- {
- "x": 142.440743,
- "y": -70.110349
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_91",
- "pcb_component_id": "pcb_component_7",
- "layer": "top",
- "route": [
- {
- "x": 143.690743,
- "y": -70.110349
- },
- {
- "x": 143.690743,
- "y": -72.110349
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_92",
- "pcb_component_id": "pcb_component_7",
- "layer": "top",
- "route": [
- {
- "x": 143.690743,
- "y": -72.110349
- },
- {
- "x": 142.440743,
- "y": -72.110349
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_93",
- "pcb_component_id": "pcb_component_8",
- "layer": "top",
- "route": [
- {
- "x": 141.96957999999998,
- "y": -61.752064
- },
- {
- "x": 141.96957999999998,
- "y": -61.297936
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_94",
- "pcb_component_id": "pcb_component_8",
- "layer": "top",
- "route": [
- {
- "x": 143.43958,
- "y": -61.752064
- },
- {
- "x": 143.43958,
- "y": -61.297936
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_95",
- "pcb_component_id": "pcb_component_8",
- "layer": "top",
- "route": [
- {
- "x": 141.75458,
- "y": -59.675
- },
- {
- "x": 143.65457999999998,
- "y": -59.675
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_96",
- "pcb_component_id": "pcb_component_8",
- "layer": "top",
- "route": [
- {
- "x": 141.75458,
- "y": -63.375
- },
- {
- "x": 141.75458,
- "y": -59.675
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_97",
- "pcb_component_id": "pcb_component_8",
- "layer": "top",
- "route": [
- {
- "x": 143.65457999999998,
- "y": -59.675
- },
- {
- "x": 143.65457999999998,
- "y": -63.375
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_98",
- "pcb_component_id": "pcb_component_8",
- "layer": "top",
- "route": [
- {
- "x": 143.65457999999998,
- "y": -63.375
- },
- {
- "x": 141.75458,
- "y": -63.375
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_99",
- "pcb_component_id": "pcb_component_8",
- "layer": "top",
- "route": [
- {
- "x": 142.07958,
- "y": -60.525
- },
- {
- "x": 143.32958,
- "y": -60.525
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_100",
- "pcb_component_id": "pcb_component_8",
- "layer": "top",
- "route": [
- {
- "x": 142.07958,
- "y": -62.525
- },
- {
- "x": 142.07958,
- "y": -60.525
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_101",
- "pcb_component_id": "pcb_component_8",
- "layer": "top",
- "route": [
- {
- "x": 143.32958,
- "y": -60.525
- },
- {
- "x": 143.32958,
- "y": -62.525
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_102",
- "pcb_component_id": "pcb_component_8",
- "layer": "top",
- "route": [
- {
- "x": 143.32958,
- "y": -62.525
- },
- {
- "x": 142.07958,
- "y": -62.525
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_103",
- "pcb_component_id": "pcb_component_9",
- "layer": "top",
- "route": [
- {
- "x": 144.819826,
- "y": -39.5
- },
- {
- "x": 144.819826,
- "y": -38.900000000000006
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_104",
- "pcb_component_id": "pcb_component_9",
- "layer": "top",
- "route": [
- {
- "x": 145.51982600000002,
- "y": -38.2
- },
- {
- "x": 146.919826,
- "y": -38.2
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_105",
- "pcb_component_id": "pcb_component_9",
- "layer": "top",
- "route": [
- {
- "x": 146.919826,
- "y": -40.2
- },
- {
- "x": 145.51982600000002,
- "y": -40.2
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_106",
- "pcb_component_id": "pcb_component_9",
- "layer": "top",
- "route": [
- {
- "x": 147.61982600000002,
- "y": -38.900000000000006
- },
- {
- "x": 147.61982600000002,
- "y": -39.5
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_107",
- "pcb_component_id": "pcb_component_9",
- "layer": "top",
- "route": [
- {
- "x": 144.569826,
- "y": -37.95
- },
- {
- "x": 144.569826,
- "y": -40.45
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_108",
- "pcb_component_id": "pcb_component_9",
- "layer": "top",
- "route": [
- {
- "x": 144.569826,
- "y": -37.95
- },
- {
- "x": 147.86982600000002,
- "y": -37.95
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_109",
- "pcb_component_id": "pcb_component_9",
- "layer": "top",
- "route": [
- {
- "x": 147.86982600000002,
- "y": -40.45
- },
- {
- "x": 144.569826,
- "y": -40.45
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_110",
- "pcb_component_id": "pcb_component_9",
- "layer": "top",
- "route": [
- {
- "x": 147.86982600000002,
- "y": -40.45
- },
- {
- "x": 147.86982600000002,
- "y": -37.95
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_111",
- "pcb_component_id": "pcb_component_9",
- "layer": "top",
- "route": [
- {
- "x": 144.819826,
- "y": -38.900000000000006
- },
- {
- "x": 144.826950881238,
- "y": -38.80037957186464
- },
- {
- "x": 144.84818072848776,
- "y": -38.70278711713436
- },
- {
- "x": 144.8830833619245,
- "y": -38.609209342990546
- },
- {
- "x": 144.9309482623519,
- "y": -38.52155122903865
- },
- {
- "x": 144.99080103536957,
- "y": -38.44159724729523
- },
- {
- "x": 145.06142324729518,
- "y": -38.37097503536964
- },
- {
- "x": 145.14137722903862,
- "y": -38.311122262352015
- },
- {
- "x": 145.22903534299053,
- "y": -38.26325736192464
- },
- {
- "x": 145.32261311713438,
- "y": -38.22835472848794
- },
- {
- "x": 145.42020557186464,
- "y": -38.20712488123821
- },
- {
- "x": 145.51982600000002,
- "y": -38.20000000000026
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_112",
- "pcb_component_id": "pcb_component_9",
- "layer": "top",
- "route": [
- {
- "x": 145.51982600000002,
- "y": -40.2
- },
- {
- "x": 145.42020557186453,
- "y": -40.19287511876225
- },
- {
- "x": 145.32261311713407,
- "y": -40.17164527151265
- },
- {
- "x": 145.22903534299007,
- "y": -40.13674263807604
- },
- {
- "x": 145.141377229038,
- "y": -40.0888777376487
- },
- {
- "x": 145.0614232472944,
- "y": -40.02902496463106
- },
- {
- "x": 144.9908010353687,
- "y": -39.95840275270541
- },
- {
- "x": 144.93094826235097,
- "y": -39.878448770961896
- },
- {
- "x": 144.88308336192352,
- "y": -39.79079065700987
- },
- {
- "x": 144.84818072848682,
- "y": -39.69721288286592
- },
- {
- "x": 144.82695088123714,
- "y": -39.5996204281355
- },
- {
- "x": 144.81982599999927,
- "y": -39.5
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_113",
- "pcb_component_id": "pcb_component_9",
- "layer": "top",
- "route": [
- {
- "x": 146.919826,
- "y": -38.2
- },
- {
- "x": 147.01944642813538,
- "y": -38.207124881237924
- },
- {
- "x": 147.11703888286567,
- "y": -38.228354728487645
- },
- {
- "x": 147.2106166570095,
- "y": -38.263257361924346
- },
- {
- "x": 147.29827477096143,
- "y": -38.311122262351745
- },
- {
- "x": 147.37822875270484,
- "y": -38.3709750353694
- },
- {
- "x": 147.44885096463042,
- "y": -38.441597247295036
- },
- {
- "x": 147.508703737648,
- "y": -38.52155122903851
- },
- {
- "x": 147.55656863807536,
- "y": -38.609209342990454
- },
- {
- "x": 147.59147127151198,
- "y": -38.702787117134314
- },
- {
- "x": 147.61270111876163,
- "y": -38.80037957186462
- },
- {
- "x": 147.61982599999948,
- "y": -38.900000000000006
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_114",
- "pcb_component_id": "pcb_component_9",
- "layer": "top",
- "route": [
- {
- "x": 147.61982600000002,
- "y": -39.5
- },
- {
- "x": 147.61270111876266,
- "y": -39.599620428135594
- },
- {
- "x": 147.5914712715133,
- "y": -39.69721288286615
- },
- {
- "x": 147.55656863807687,
- "y": -39.79079065701026
- },
- {
- "x": 147.5087037376496,
- "y": -39.87844877096243
- },
- {
- "x": 147.44885096463193,
- "y": -39.958402752706064
- },
- {
- "x": 147.37822875270618,
- "y": -40.029024964631766
- },
- {
- "x": 147.2982747709625,
- "y": -40.088877737649376
- },
- {
- "x": 147.2106166570103,
- "y": -40.1367426380766
- },
- {
- "x": 147.11703888286615,
- "y": -40.17164527151298
- },
- {
- "x": 147.0194464281356,
- "y": -40.19287511876224
- },
- {
- "x": 146.919826,
- "y": -40.19999999999955
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_115",
- "pcb_component_id": "pcb_component_10",
- "layer": "top",
- "route": [
- {
- "x": 145.87,
- "y": -81.57034900000001
- },
- {
- "x": 147.63,
- "y": -81.57034900000001
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_116",
- "pcb_component_id": "pcb_component_10",
- "layer": "top",
- "route": [
- {
- "x": 146.83,
- "y": -78.310349
- },
- {
- "x": 146.03,
- "y": -78.310349
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_117",
- "pcb_component_id": "pcb_component_10",
- "layer": "top",
- "route": [
- {
- "x": 146.83,
- "y": -78.310349
- },
- {
- "x": 147.63,
- "y": -78.310349
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_118",
- "pcb_component_id": "pcb_component_10",
- "layer": "top",
- "route": [
- {
- "x": 145.53,
- "y": -78.575349
- },
- {
- "x": 145.29,
- "y": -78.245349
- },
- {
- "x": 145.77,
- "y": -78.245349
- },
- {
- "x": 145.53,
- "y": -78.575349
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_119",
- "pcb_component_id": "pcb_component_11",
- "layer": "top",
- "route": [
- {
- "x": 145.73499999999999,
- "y": -48.725
- },
- {
- "x": 145.73499999999999,
- "y": -46.775
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_120",
- "pcb_component_id": "pcb_component_11",
- "layer": "top",
- "route": [
- {
- "x": 145.73499999999999,
- "y": -48.725
- },
- {
- "x": 145.73499999999999,
- "y": -50.675000000000004
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_121",
- "pcb_component_id": "pcb_component_11",
- "layer": "top",
- "route": [
- {
- "x": 150.855,
- "y": -48.725
- },
- {
- "x": 150.855,
- "y": -46.775
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_122",
- "pcb_component_id": "pcb_component_11",
- "layer": "top",
- "route": [
- {
- "x": 150.855,
- "y": -48.725
- },
- {
- "x": 150.855,
- "y": -50.675000000000004
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_123",
- "pcb_component_id": "pcb_component_11",
- "layer": "top",
- "route": [
- {
- "x": 145.595,
- "y": -46.525
- },
- {
- "x": 145.83499999999998,
- "y": -46.525
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_124",
- "pcb_component_id": "pcb_component_11",
- "layer": "top",
- "route": [
- {
- "x": 145.595,
- "y": -50.925000000000004
- },
- {
- "x": 145.595,
- "y": -46.525
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_125",
- "pcb_component_id": "pcb_component_11",
- "layer": "top",
- "route": [
- {
- "x": 145.83499999999998,
- "y": -45.025
- },
- {
- "x": 150.755,
- "y": -45.025
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_126",
- "pcb_component_id": "pcb_component_11",
- "layer": "top",
- "route": [
- {
- "x": 145.83499999999998,
- "y": -46.525
- },
- {
- "x": 145.83499999999998,
- "y": -45.025
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_127",
- "pcb_component_id": "pcb_component_11",
- "layer": "top",
- "route": [
- {
- "x": 145.83499999999998,
- "y": -50.925000000000004
- },
- {
- "x": 145.595,
- "y": -50.925000000000004
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_128",
- "pcb_component_id": "pcb_component_11",
- "layer": "top",
- "route": [
- {
- "x": 145.83499999999998,
- "y": -52.425000000000004
- },
- {
- "x": 145.83499999999998,
- "y": -50.925000000000004
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_129",
- "pcb_component_id": "pcb_component_11",
- "layer": "top",
- "route": [
- {
- "x": 150.755,
- "y": -45.025
- },
- {
- "x": 150.755,
- "y": -46.525
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_130",
- "pcb_component_id": "pcb_component_11",
- "layer": "top",
- "route": [
- {
- "x": 150.755,
- "y": -46.525
- },
- {
- "x": 150.99499999999998,
- "y": -46.525
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_131",
- "pcb_component_id": "pcb_component_11",
- "layer": "top",
- "route": [
- {
- "x": 150.755,
- "y": -50.925000000000004
- },
- {
- "x": 150.755,
- "y": -52.425000000000004
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_132",
- "pcb_component_id": "pcb_component_11",
- "layer": "top",
- "route": [
- {
- "x": 150.755,
- "y": -52.425000000000004
- },
- {
- "x": 145.83499999999998,
- "y": -52.425000000000004
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_133",
- "pcb_component_id": "pcb_component_11",
- "layer": "top",
- "route": [
- {
- "x": 150.99499999999998,
- "y": -46.525
- },
- {
- "x": 150.99499999999998,
- "y": -50.925000000000004
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_134",
- "pcb_component_id": "pcb_component_11",
- "layer": "top",
- "route": [
- {
- "x": 150.99499999999998,
- "y": -50.925000000000004
- },
- {
- "x": 150.755,
- "y": -50.925000000000004
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_135",
- "pcb_component_id": "pcb_component_11",
- "layer": "top",
- "route": [
- {
- "x": 145.845,
- "y": -46.775
- },
- {
- "x": 149.76999999999998,
- "y": -46.775
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_136",
- "pcb_component_id": "pcb_component_11",
- "layer": "top",
- "route": [
- {
- "x": 145.845,
- "y": -50.675000000000004
- },
- {
- "x": 145.845,
- "y": -46.775
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_137",
- "pcb_component_id": "pcb_component_11",
- "layer": "top",
- "route": [
- {
- "x": 149.76999999999998,
- "y": -46.775
- },
- {
- "x": 150.74499999999998,
- "y": -47.75
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_138",
- "pcb_component_id": "pcb_component_11",
- "layer": "top",
- "route": [
- {
- "x": 150.74499999999998,
- "y": -47.75
- },
- {
- "x": 150.74499999999998,
- "y": -50.675000000000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_139",
- "pcb_component_id": "pcb_component_11",
- "layer": "top",
- "route": [
- {
- "x": 150.74499999999998,
- "y": -50.675000000000004
- },
- {
- "x": 145.845,
- "y": -50.675000000000004
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_140",
- "pcb_component_id": "pcb_component_11",
- "layer": "top",
- "route": [
- {
- "x": 150.76,
- "y": -46.025
- },
- {
- "x": 151.08999999999997,
- "y": -45.785000000000004
- },
- {
- "x": 151.08999999999997,
- "y": -46.265
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_141",
- "pcb_component_id": "pcb_component_12",
- "layer": "top",
- "route": [
- {
- "x": 129.66071,
- "y": -42.3
- },
- {
- "x": 129.66071,
- "y": -41.7
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_142",
- "pcb_component_id": "pcb_component_12",
- "layer": "top",
- "route": [
- {
- "x": 130.36071,
- "y": -41
- },
- {
- "x": 131.76071,
- "y": -41
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_143",
- "pcb_component_id": "pcb_component_12",
- "layer": "top",
- "route": [
- {
- "x": 131.76071,
- "y": -43
- },
- {
- "x": 130.36071,
- "y": -43
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_144",
- "pcb_component_id": "pcb_component_12",
- "layer": "top",
- "route": [
- {
- "x": 132.46071,
- "y": -41.7
- },
- {
- "x": 132.46071,
- "y": -42.3
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_145",
- "pcb_component_id": "pcb_component_12",
- "layer": "top",
- "route": [
- {
- "x": 129.41071,
- "y": -40.75
- },
- {
- "x": 129.41071,
- "y": -43.25
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_146",
- "pcb_component_id": "pcb_component_12",
- "layer": "top",
- "route": [
- {
- "x": 129.41071,
- "y": -40.75
- },
- {
- "x": 132.71071,
- "y": -40.75
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_147",
- "pcb_component_id": "pcb_component_12",
- "layer": "top",
- "route": [
- {
- "x": 132.71071,
- "y": -43.25
- },
- {
- "x": 129.41071,
- "y": -43.25
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_148",
- "pcb_component_id": "pcb_component_12",
- "layer": "top",
- "route": [
- {
- "x": 132.71071,
- "y": -43.25
- },
- {
- "x": 132.71071,
- "y": -40.75
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_149",
- "pcb_component_id": "pcb_component_12",
+ "pcb_component_id": "pcb_component_6",
"layer": "top",
"route": [
{
"x": 129.66071,
- "y": -41.7
+ "y": -38.900000000000006
},
{
- "x": 129.66783488123772,
- "y": -41.60037957186454
+ "x": 129.66783488123784,
+ "y": -38.800379571864454
},
{
- "x": 129.6890647284873,
- "y": -41.50278711713416
+ "x": 129.6890647284875,
+ "y": -38.70278711713399
},
{
- "x": 129.72396736192388,
- "y": -41.40920934299022
+ "x": 129.72396736192414,
+ "y": -38.609209342989956
},
{
- "x": 129.77183226235124,
- "y": -41.32155122903822
+ "x": 129.7718322623515,
+ "y": -38.521551229037826
},
{
- "x": 129.8316850353689,
- "y": -41.24159724729472
+ "x": 129.8316850353691,
+ "y": -38.44159724729417
},
{
- "x": 129.9023072472946,
- "y": -41.170975035369096
+ "x": 129.90230724729471,
+ "y": -38.37097503536833
},
{
- "x": 129.98226122903813,
- "y": -41.11112226235151
+ "x": 129.9822612290382,
+ "y": -38.311122262350466
},
{
- "x": 130.06991934299018,
- "y": -41.06325736192422
+ "x": 130.06991934299015,
+ "y": -38.26325736192284
},
{
- "x": 130.16349711713414,
- "y": -41.02835472848769
+ "x": 130.16349711713409,
+ "y": -38.228354728485904
},
{
- "x": 130.26108957186455,
- "y": -41.00712488123819
+ "x": 130.2610895718645,
+ "y": -38.207124881235934
},
{
"x": 130.36071,
- "y": -41.000000000000554
+ "y": -38.199999999997765
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_150",
- "pcb_component_id": "pcb_component_12",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_25",
+ "pcb_component_id": "pcb_component_6",
"layer": "top",
"route": [
{
"x": 130.36071,
- "y": -43
+ "y": -40.2
},
{
- "x": 130.26108957186463,
- "y": -42.99287511876204
+ "x": 130.26108957186472,
+ "y": -40.19287511876205
},
{
- "x": 130.1634971171343,
- "y": -42.971645271512294
+ "x": 130.16349711713448,
+ "y": -40.171645271512304
},
{
- "x": 130.0699193429905,
- "y": -42.93674263807558
+ "x": 130.06991934299074,
+ "y": -40.136742638075575
},
{
- "x": 129.98226122903856,
- "y": -42.88887773764818
+ "x": 129.98226122903893,
+ "y": -40.088877737648154
},
{
- "x": 129.9023072472951,
- "y": -42.829024964630534
+ "x": 129.9023072472956,
+ "y": -40.02902496463048
},
{
- "x": 129.83168503536947,
- "y": -42.75840275270492
+ "x": 129.83168503537013,
+ "y": -39.958402752704835
},
{
- "x": 129.77183226235184,
- "y": -42.67844877096147
+ "x": 129.77183226235266,
+ "y": -39.87844877096136
},
{
- "x": 129.72396736192445,
- "y": -42.590790657009535
+ "x": 129.72396736192545,
+ "y": -39.790790657009424
},
{
- "x": 129.68906472848775,
- "y": -42.49721288286569
+ "x": 129.68906472848897,
+ "y": -39.69721288286559
},
{
- "x": 129.667834881238,
- "y": -42.399620428135385
+ "x": 129.66783488123946,
+ "y": -39.599620428135324
},
{
- "x": 129.66071000000005,
- "y": -42.3
+ "x": 129.66071000000176,
+ "y": -39.5
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_151",
- "pcb_component_id": "pcb_component_12",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_26",
+ "pcb_component_id": "pcb_component_6",
"layer": "top",
"route": [
{
"x": 131.76071,
- "y": -41
+ "y": -38.2
},
{
- "x": 131.86033042813537,
- "y": -41.00712488123809
+ "x": 131.86033042813523,
+ "y": -38.20712488123829
},
{
- "x": 131.95792288286563,
- "y": -41.02835472848794
+ "x": 131.95792288286535,
+ "y": -38.22835472848829
},
{
- "x": 132.05150065700943,
- "y": -41.063257361924705
+ "x": 132.05150065700897,
+ "y": -38.26325736192516
},
{
- "x": 132.13915877096133,
- "y": -41.111122262352126
+ "x": 132.1391587709607,
+ "y": -38.31112226235265
},
{
- "x": 132.2191127527048,
- "y": -41.17097503536976
+ "x": 132.219112752704,
+ "y": -38.37097503537029
},
{
- "x": 132.28973496463044,
- "y": -41.24159724729534
+ "x": 132.2897349646295,
+ "y": -38.441597247295846
},
{
- "x": 132.34958773764814,
- "y": -41.32155122903874
+ "x": 132.34958773764708,
+ "y": -38.52155122903918
},
{
- "x": 132.3974526380756,
- "y": -41.4092093429906
+ "x": 132.3974526380745,
+ "y": -38.60920934299096
},
{
- "x": 132.43235527151245,
- "y": -41.50278711713438
+ "x": 132.43235527151128,
+ "y": -38.70278711713463
},
{
- "x": 132.4535851187624,
- "y": -41.600379571864636
+ "x": 132.4535851187612,
+ "y": -38.80037957186476
},
{
- "x": 132.46071000000057,
- "y": -41.7
+ "x": 132.4607099999994,
+ "y": -38.900000000000006
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_152",
- "pcb_component_id": "pcb_component_12",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_27",
+ "pcb_component_id": "pcb_component_6",
"layer": "top",
"route": [
{
"x": 132.46071,
- "y": -42.3
+ "y": -39.5
},
{
- "x": 132.453585118762,
- "y": -42.39962042813538
+ "x": 132.45358511876228,
+ "y": -39.59962042813546
},
{
- "x": 132.4323552715122,
- "y": -42.49721288286566
+ "x": 132.43235527151268,
+ "y": -39.69721288286585
},
{
- "x": 132.39745263807546,
- "y": -42.59079065700949
+ "x": 132.39745263807606,
+ "y": -39.79079065700979
},
{
- "x": 132.34958773764805,
- "y": -42.6784487709614
+ "x": 132.3495877376487,
+ "y": -39.878448770961796
},
{
- "x": 132.2897349646304,
- "y": -42.758402752704846
+ "x": 132.28973496463107,
+ "y": -39.958402752705304
},
{
- "x": 132.2191127527048,
- "y": -42.82902496463047
+ "x": 132.21911275270537,
+ "y": -40.02902496463094
},
{
- "x": 132.13915877096136,
- "y": -42.88887773764813
+ "x": 132.13915877096184,
+ "y": -40.08887773764855
},
{
- "x": 132.05150065700946,
- "y": -42.936742638075565
+ "x": 132.0515006570098,
+ "y": -40.136742638075866
},
{
- "x": 131.95792288286566,
- "y": -42.97164527151233
+ "x": 131.95792288286586,
+ "y": -40.171645271512425
},
{
- "x": 131.86033042813537,
- "y": -42.99287511876215
+ "x": 131.86033042813546,
+ "y": -40.19287511876197
},
{
"x": 131.76071,
- "y": -43.0000000000002
+ "y": -40.19999999999965
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_153",
- "pcb_component_id": "pcb_component_13",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_28",
+ "pcb_component_id": "pcb_component_7",
"layer": "top",
"route": [
{
- "x": 141.22612999999998,
- "y": -65.79
+ "x": 142.33074299999998,
+ "y": -70.883285
},
{
- "x": 141.748634,
- "y": -65.79
+ "x": 142.33074299999998,
+ "y": -71.337413
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_154",
- "pcb_component_id": "pcb_component_13",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_29",
+ "pcb_component_id": "pcb_component_7",
"layer": "top",
"route": [
{
- "x": 141.22612999999998,
- "y": -67.26
+ "x": 143.800743,
+ "y": -70.883285
},
{
- "x": 141.748634,
- "y": -67.26
+ "x": 143.800743,
+ "y": -71.337413
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_155",
- "pcb_component_id": "pcb_component_13",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_30",
+ "pcb_component_id": "pcb_component_8",
"layer": "top",
"route": [
{
- "x": 139.607382,
- "y": -65.545
+ "x": 141.96957999999998,
+ "y": -61.752064
},
{
- "x": 143.367382,
- "y": -65.545
+ "x": 141.96957999999998,
+ "y": -61.297936
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_156",
- "pcb_component_id": "pcb_component_13",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_31",
+ "pcb_component_id": "pcb_component_8",
"layer": "top",
"route": [
{
- "x": 139.607382,
- "y": -67.50500000000001
+ "x": 143.43958,
+ "y": -61.752064
},
{
- "x": 139.607382,
- "y": -65.545
+ "x": 143.43958,
+ "y": -61.297936
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_157",
- "pcb_component_id": "pcb_component_13",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_32",
+ "pcb_component_id": "pcb_component_9",
"layer": "top",
"route": [
{
- "x": 143.367382,
- "y": -65.545
+ "x": 144.819826,
+ "y": -39.5
},
{
- "x": 143.367382,
- "y": -67.50500000000001
+ "x": 144.819826,
+ "y": -38.900000000000006
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_158",
- "pcb_component_id": "pcb_component_13",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_33",
+ "pcb_component_id": "pcb_component_9",
"layer": "top",
"route": [
{
- "x": 143.367382,
- "y": -67.50500000000001
+ "x": 145.51982600000002,
+ "y": -38.2
},
{
- "x": 139.607382,
- "y": -67.50500000000001
+ "x": 146.919826,
+ "y": -38.2
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_159",
- "pcb_component_id": "pcb_component_13",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_34",
+ "pcb_component_id": "pcb_component_9",
"layer": "top",
"route": [
{
- "x": 140.487382,
- "y": -65.9
+ "x": 146.919826,
+ "y": -40.2
},
{
- "x": 142.487382,
- "y": -65.9
+ "x": 145.51982600000002,
+ "y": -40.2
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_160",
- "pcb_component_id": "pcb_component_13",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_35",
+ "pcb_component_id": "pcb_component_9",
"layer": "top",
"route": [
{
- "x": 140.487382,
- "y": -67.15
+ "x": 147.61982600000002,
+ "y": -38.900000000000006
},
{
- "x": 140.487382,
- "y": -65.9
+ "x": 147.61982600000002,
+ "y": -39.5
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_161",
- "pcb_component_id": "pcb_component_13",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_36",
+ "pcb_component_id": "pcb_component_9",
"layer": "top",
"route": [
{
- "x": 142.487382,
- "y": -65.9
+ "x": 144.819826,
+ "y": -38.900000000000006
},
{
- "x": 142.487382,
- "y": -67.15
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_162",
- "pcb_component_id": "pcb_component_13",
- "layer": "top",
- "route": [
+ "x": 144.826950881238,
+ "y": -38.80037957186464
+ },
+ {
+ "x": 144.84818072848776,
+ "y": -38.70278711713436
+ },
+ {
+ "x": 144.8830833619245,
+ "y": -38.609209342990546
+ },
+ {
+ "x": 144.9309482623519,
+ "y": -38.52155122903865
+ },
+ {
+ "x": 144.99080103536957,
+ "y": -38.44159724729523
+ },
+ {
+ "x": 145.06142324729518,
+ "y": -38.37097503536964
+ },
{
- "x": 142.487382,
- "y": -67.15
+ "x": 145.14137722903862,
+ "y": -38.311122262352015
+ },
+ {
+ "x": 145.22903534299053,
+ "y": -38.26325736192464
+ },
+ {
+ "x": 145.32261311713438,
+ "y": -38.22835472848794
+ },
+ {
+ "x": 145.42020557186464,
+ "y": -38.20712488123821
},
{
- "x": 140.487382,
- "y": -67.15
+ "x": 145.51982600000002,
+ "y": -38.20000000000026
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_163",
- "pcb_component_id": "pcb_component_14",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_37",
+ "pcb_component_id": "pcb_component_9",
"layer": "top",
"route": [
{
- "x": 149.730743,
- "y": -71.371601
+ "x": 145.51982600000002,
+ "y": -40.2
},
{
- "x": 149.730743,
- "y": -70.849097
+ "x": 145.42020557186453,
+ "y": -40.19287511876225
+ },
+ {
+ "x": 145.32261311713407,
+ "y": -40.17164527151265
+ },
+ {
+ "x": 145.22903534299007,
+ "y": -40.13674263807604
+ },
+ {
+ "x": 145.141377229038,
+ "y": -40.0888777376487
+ },
+ {
+ "x": 145.0614232472944,
+ "y": -40.02902496463106
+ },
+ {
+ "x": 144.9908010353687,
+ "y": -39.95840275270541
+ },
+ {
+ "x": 144.93094826235097,
+ "y": -39.878448770961896
+ },
+ {
+ "x": 144.88308336192352,
+ "y": -39.79079065700987
+ },
+ {
+ "x": 144.84818072848682,
+ "y": -39.69721288286592
+ },
+ {
+ "x": 144.82695088123714,
+ "y": -39.5996204281355
+ },
+ {
+ "x": 144.81982599999927,
+ "y": -39.5
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_164",
- "pcb_component_id": "pcb_component_14",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_38",
+ "pcb_component_id": "pcb_component_9",
"layer": "top",
"route": [
{
- "x": 151.20074300000002,
- "y": -71.371601
+ "x": 146.919826,
+ "y": -38.2
},
{
- "x": 151.20074300000002,
- "y": -70.849097
+ "x": 147.01944642813538,
+ "y": -38.207124881237924
+ },
+ {
+ "x": 147.11703888286567,
+ "y": -38.228354728487645
+ },
+ {
+ "x": 147.2106166570095,
+ "y": -38.263257361924346
+ },
+ {
+ "x": 147.29827477096143,
+ "y": -38.311122262351745
+ },
+ {
+ "x": 147.37822875270484,
+ "y": -38.3709750353694
+ },
+ {
+ "x": 147.44885096463042,
+ "y": -38.441597247295036
+ },
+ {
+ "x": 147.508703737648,
+ "y": -38.52155122903851
+ },
+ {
+ "x": 147.55656863807536,
+ "y": -38.609209342990454
+ },
+ {
+ "x": 147.59147127151198,
+ "y": -38.702787117134314
+ },
+ {
+ "x": 147.61270111876163,
+ "y": -38.80037957186462
+ },
+ {
+ "x": 147.61982599999948,
+ "y": -38.900000000000006
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_165",
- "pcb_component_id": "pcb_component_14",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_39",
+ "pcb_component_id": "pcb_component_9",
"layer": "top",
"route": [
{
- "x": 149.485743,
- "y": -69.230349
+ "x": 147.61982600000002,
+ "y": -39.5
+ },
+ {
+ "x": 147.61270111876266,
+ "y": -39.599620428135594
+ },
+ {
+ "x": 147.5914712715133,
+ "y": -39.69721288286615
+ },
+ {
+ "x": 147.55656863807687,
+ "y": -39.79079065701026
+ },
+ {
+ "x": 147.5087037376496,
+ "y": -39.87844877096243
+ },
+ {
+ "x": 147.44885096463193,
+ "y": -39.958402752706064
+ },
+ {
+ "x": 147.37822875270618,
+ "y": -40.029024964631766
+ },
+ {
+ "x": 147.2982747709625,
+ "y": -40.088877737649376
+ },
+ {
+ "x": 147.2106166570103,
+ "y": -40.1367426380766
+ },
+ {
+ "x": 147.11703888286615,
+ "y": -40.17164527151298
+ },
+ {
+ "x": 147.0194464281356,
+ "y": -40.19287511876224
},
{
- "x": 151.445743,
- "y": -69.230349
+ "x": 146.919826,
+ "y": -40.19999999999955
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_166",
- "pcb_component_id": "pcb_component_14",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_40",
+ "pcb_component_id": "pcb_component_10",
"layer": "top",
"route": [
{
- "x": 149.485743,
- "y": -72.990349
+ "x": 145.87,
+ "y": -81.57034900000001
},
{
- "x": 149.485743,
- "y": -69.230349
+ "x": 147.63,
+ "y": -81.57034900000001
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_167",
- "pcb_component_id": "pcb_component_14",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_41",
+ "pcb_component_id": "pcb_component_10",
"layer": "top",
"route": [
{
- "x": 151.445743,
- "y": -69.230349
+ "x": 146.83,
+ "y": -78.310349
},
{
- "x": 151.445743,
- "y": -72.990349
+ "x": 146.03,
+ "y": -78.310349
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_168",
- "pcb_component_id": "pcb_component_14",
+ "type": "pcb_silkscreen_path",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_42",
+ "pcb_component_id": "pcb_component_10",
"layer": "top",
"route": [
{
- "x": 151.445743,
- "y": -72.990349
+ "x": 146.83,
+ "y": -78.310349
},
{
- "x": 149.485743,
- "y": -72.990349
+ "x": 147.63,
+ "y": -78.310349
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_169",
- "pcb_component_id": "pcb_component_14",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_43",
+ "pcb_component_id": "pcb_component_10",
"layer": "top",
"route": [
{
- "x": 149.840743,
- "y": -70.110349
+ "x": 145.53,
+ "y": -78.575349
+ },
+ {
+ "x": 145.29,
+ "y": -78.245349
+ },
+ {
+ "x": 145.77,
+ "y": -78.245349
},
{
- "x": 151.090743,
- "y": -70.110349
+ "x": 145.53,
+ "y": -78.575349
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_170",
- "pcb_component_id": "pcb_component_14",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_44",
+ "pcb_component_id": "pcb_component_11",
"layer": "top",
"route": [
{
- "x": 149.840743,
- "y": -72.110349
+ "x": 145.73499999999999,
+ "y": -48.725
},
{
- "x": 149.840743,
- "y": -70.110349
+ "x": 145.73499999999999,
+ "y": -46.775
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_171",
- "pcb_component_id": "pcb_component_14",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_45",
+ "pcb_component_id": "pcb_component_11",
"layer": "top",
"route": [
{
- "x": 151.090743,
- "y": -70.110349
+ "x": 145.73499999999999,
+ "y": -48.725
},
{
- "x": 151.090743,
- "y": -72.110349
+ "x": 145.73499999999999,
+ "y": -50.675000000000004
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_172",
- "pcb_component_id": "pcb_component_14",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_46",
+ "pcb_component_id": "pcb_component_11",
"layer": "top",
"route": [
{
- "x": 151.090743,
- "y": -72.110349
+ "x": 150.855,
+ "y": -48.725
},
{
- "x": 149.840743,
- "y": -72.110349
+ "x": 150.855,
+ "y": -46.775
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_173",
- "pcb_component_id": "pcb_component_15",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_47",
+ "pcb_component_id": "pcb_component_11",
"layer": "top",
"route": [
{
- "x": 130.87982599999998,
- "y": -66.72500000000001
+ "x": 150.855,
+ "y": -48.725
},
{
- "x": 127.457737,
- "y": -66.72500000000001
+ "x": 150.855,
+ "y": -50.675000000000004
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_174",
- "pcb_component_id": "pcb_component_15",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_48",
+ "pcb_component_id": "pcb_component_11",
"layer": "top",
"route": [
{
- "x": 131.709826,
- "y": -63.325
+ "x": 150.76,
+ "y": -46.025
},
{
- "x": 127.53982599999999,
- "y": -63.325
+ "x": 151.08999999999997,
+ "y": -45.785000000000004
+ },
+ {
+ "x": 151.08999999999997,
+ "y": -46.265
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_175",
- "pcb_component_id": "pcb_component_15",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_49",
+ "pcb_component_id": "pcb_component_12",
"layer": "top",
"route": [
{
- "x": 124.829826,
- "y": -63.12500000000001
+ "x": 129.66071,
+ "y": -42.3
},
{
- "x": 133.589826,
- "y": -63.12500000000001
+ "x": 129.66071,
+ "y": -41.7
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_176",
- "pcb_component_id": "pcb_component_15",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_50",
+ "pcb_component_id": "pcb_component_12",
"layer": "top",
"route": [
{
- "x": 124.829826,
- "y": -66.92500000000001
+ "x": 130.36071,
+ "y": -41
},
{
- "x": 124.829826,
- "y": -63.12500000000001
+ "x": 131.76071,
+ "y": -41
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_177",
- "pcb_component_id": "pcb_component_15",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_51",
+ "pcb_component_id": "pcb_component_12",
"layer": "top",
"route": [
{
- "x": 133.589826,
- "y": -63.12500000000001
+ "x": 131.76071,
+ "y": -43
},
{
- "x": 133.589826,
- "y": -66.92500000000001
+ "x": 130.36071,
+ "y": -43
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_178",
- "pcb_component_id": "pcb_component_15",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_52",
+ "pcb_component_id": "pcb_component_12",
"layer": "top",
"route": [
{
- "x": 133.589826,
- "y": -66.92500000000001
+ "x": 132.46071,
+ "y": -41.7
},
{
- "x": 124.829826,
- "y": -66.92500000000001
+ "x": 132.46071,
+ "y": -42.3
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_179",
- "pcb_component_id": "pcb_component_15",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_53",
+ "pcb_component_id": "pcb_component_12",
"layer": "top",
"route": [
{
- "x": 126.034826,
- "y": -65.345
+ "x": 129.66071,
+ "y": -41.7
+ },
+ {
+ "x": 129.66783488123772,
+ "y": -41.60037957186454
+ },
+ {
+ "x": 129.6890647284873,
+ "y": -41.50278711713416
+ },
+ {
+ "x": 129.72396736192388,
+ "y": -41.40920934299022
+ },
+ {
+ "x": 129.77183226235124,
+ "y": -41.32155122903822
+ },
+ {
+ "x": 129.8316850353689,
+ "y": -41.24159724729472
+ },
+ {
+ "x": 129.9023072472946,
+ "y": -41.170975035369096
+ },
+ {
+ "x": 129.98226122903813,
+ "y": -41.11112226235151
+ },
+ {
+ "x": 130.06991934299018,
+ "y": -41.06325736192422
+ },
+ {
+ "x": 130.16349711713414,
+ "y": -41.02835472848769
+ },
+ {
+ "x": 130.26108957186455,
+ "y": -41.00712488123819
},
{
- "x": 126.034826,
- "y": -63.435
+ "x": 130.36071,
+ "y": -41.000000000000554
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_180",
- "pcb_component_id": "pcb_component_15",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_54",
+ "pcb_component_id": "pcb_component_12",
"layer": "top",
"route": [
{
- "x": 126.41982599999999,
- "y": -65.345
+ "x": 130.36071,
+ "y": -43
+ },
+ {
+ "x": 130.26108957186463,
+ "y": -42.99287511876204
+ },
+ {
+ "x": 130.1634971171343,
+ "y": -42.971645271512294
+ },
+ {
+ "x": 130.0699193429905,
+ "y": -42.93674263807558
+ },
+ {
+ "x": 129.98226122903856,
+ "y": -42.88887773764818
+ },
+ {
+ "x": 129.9023072472951,
+ "y": -42.829024964630534
+ },
+ {
+ "x": 129.83168503536947,
+ "y": -42.75840275270492
+ },
+ {
+ "x": 129.77183226235184,
+ "y": -42.67844877096147
+ },
+ {
+ "x": 129.72396736192445,
+ "y": -42.590790657009535
+ },
+ {
+ "x": 129.68906472848775,
+ "y": -42.49721288286569
+ },
+ {
+ "x": 129.667834881238,
+ "y": -42.399620428135385
},
{
- "x": 126.03982599999999,
- "y": -65.345
+ "x": 129.66071000000005,
+ "y": -42.3
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_181",
- "pcb_component_id": "pcb_component_15",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_55",
+ "pcb_component_id": "pcb_component_12",
"layer": "top",
"route": [
{
- "x": 126.41982599999999,
- "y": -65.345
+ "x": 131.76071,
+ "y": -41
+ },
+ {
+ "x": 131.86033042813537,
+ "y": -41.00712488123809
+ },
+ {
+ "x": 131.95792288286563,
+ "y": -41.02835472848794
+ },
+ {
+ "x": 132.05150065700943,
+ "y": -41.063257361924705
+ },
+ {
+ "x": 132.13915877096133,
+ "y": -41.111122262352126
+ },
+ {
+ "x": 132.2191127527048,
+ "y": -41.17097503536976
+ },
+ {
+ "x": 132.28973496463044,
+ "y": -41.24159724729534
+ },
+ {
+ "x": 132.34958773764814,
+ "y": -41.32155122903874
+ },
+ {
+ "x": 132.3974526380756,
+ "y": -41.4092093429906
+ },
+ {
+ "x": 132.43235527151245,
+ "y": -41.50278711713438
+ },
+ {
+ "x": 132.4535851187624,
+ "y": -41.600379571864636
},
{
- "x": 126.41982599999999,
- "y": -65.965
+ "x": 132.46071000000057,
+ "y": -41.7
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_182",
- "pcb_component_id": "pcb_component_15",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_56",
+ "pcb_component_id": "pcb_component_12",
"layer": "top",
"route": [
{
- "x": 126.41982599999999,
- "y": -65.965
+ "x": 132.46071,
+ "y": -42.3
+ },
+ {
+ "x": 132.453585118762,
+ "y": -42.39962042813538
+ },
+ {
+ "x": 132.4323552715122,
+ "y": -42.49721288286566
+ },
+ {
+ "x": 132.39745263807546,
+ "y": -42.59079065700949
+ },
+ {
+ "x": 132.34958773764805,
+ "y": -42.6784487709614
+ },
+ {
+ "x": 132.2897349646304,
+ "y": -42.758402752704846
+ },
+ {
+ "x": 132.2191127527048,
+ "y": -42.82902496463047
+ },
+ {
+ "x": 132.13915877096136,
+ "y": -42.88887773764813
+ },
+ {
+ "x": 132.05150065700946,
+ "y": -42.936742638075565
+ },
+ {
+ "x": 131.95792288286566,
+ "y": -42.97164527151233
+ },
+ {
+ "x": 131.86033042813537,
+ "y": -42.99287511876215
},
{
- "x": 126.41982599999999,
- "y": -66.614968
+ "x": 131.76071,
+ "y": -43.0000000000002
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_183",
- "pcb_component_id": "pcb_component_15",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_57",
+ "pcb_component_id": "pcb_component_13",
"layer": "top",
"route": [
{
- "x": 126.602066,
- "y": -63.435
+ "x": 141.22612999999998,
+ "y": -65.79
},
{
- "x": 131.709826,
- "y": -63.435
+ "x": 141.748634,
+ "y": -65.79
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_184",
- "pcb_component_id": "pcb_component_15",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_58",
+ "pcb_component_id": "pcb_component_13",
"layer": "top",
"route": [
{
- "x": 132.00482599999998,
- "y": -64.08500000000001
+ "x": 141.22612999999998,
+ "y": -67.26
},
{
- "x": 132.00482599999998,
- "y": -64.70500000000001
+ "x": 141.748634,
+ "y": -67.26
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_185",
- "pcb_component_id": "pcb_component_15",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_59",
+ "pcb_component_id": "pcb_component_14",
"layer": "top",
"route": [
{
- "x": 132.009826,
- "y": -64.08500000000001
+ "x": 149.730743,
+ "y": -71.371601
},
{
- "x": 132.009826,
- "y": -63.43500000000001
+ "x": 149.730743,
+ "y": -70.849097
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_186",
- "pcb_component_id": "pcb_component_15",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_60",
+ "pcb_component_id": "pcb_component_14",
"layer": "top",
"route": [
{
- "x": 132.384826,
- "y": -64.70500000000001
+ "x": 151.20074300000002,
+ "y": -71.371601
},
{
- "x": 132.00482599999998,
- "y": -64.70500000000001
+ "x": 151.20074300000002,
+ "y": -70.849097
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_187",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_61",
"pcb_component_id": "pcb_component_15",
"layer": "top",
"route": [
{
- "x": 132.384826,
- "y": -64.70500000000001
+ "x": 130.87982599999998,
+ "y": -66.72500000000001
},
{
- "x": 132.384826,
- "y": -66.61500000000001
+ "x": 127.457737,
+ "y": -66.72500000000001
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_188",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_62",
"pcb_component_id": "pcb_component_15",
"layer": "top",
"route": [
{
- "x": 132.384826,
- "y": -66.61500000000001
+ "x": 131.709826,
+ "y": -63.325
},
{
- "x": 126.41982599999999,
- "y": -66.61500000000001
+ "x": 127.53982599999999,
+ "y": -63.325
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_189",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_63",
"pcb_component_id": "pcb_component_16",
"layer": "top",
"route": [
@@ -30593,7 +28209,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_190",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_64",
"pcb_component_id": "pcb_component_17",
"layer": "top",
"route": [
@@ -30610,7 +28226,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_191",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_65",
"pcb_component_id": "pcb_component_17",
"layer": "top",
"route": [
@@ -30627,7 +28243,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_192",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_66",
"pcb_component_id": "pcb_component_17",
"layer": "top",
"route": [
@@ -30644,7 +28260,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_193",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_67",
"pcb_component_id": "pcb_component_17",
"layer": "top",
"route": [
@@ -30661,75 +28277,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_194",
- "pcb_component_id": "pcb_component_17",
- "layer": "top",
- "route": [
- {
- "x": 148.069826,
- "y": -40.75
- },
- {
- "x": 148.069826,
- "y": -43.25
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_195",
- "pcb_component_id": "pcb_component_17",
- "layer": "top",
- "route": [
- {
- "x": 148.069826,
- "y": -40.75
- },
- {
- "x": 151.36982600000002,
- "y": -40.75
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_196",
- "pcb_component_id": "pcb_component_17",
- "layer": "top",
- "route": [
- {
- "x": 151.36982600000002,
- "y": -43.25
- },
- {
- "x": 148.069826,
- "y": -43.25
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_197",
- "pcb_component_id": "pcb_component_17",
- "layer": "top",
- "route": [
- {
- "x": 151.36982600000002,
- "y": -43.25
- },
- {
- "x": 151.36982600000002,
- "y": -40.75
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_198",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_68",
"pcb_component_id": "pcb_component_17",
"layer": "top",
"route": [
@@ -30786,7 +28334,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_199",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_69",
"pcb_component_id": "pcb_component_17",
"layer": "top",
"route": [
@@ -30843,7 +28391,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_200",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_70",
"pcb_component_id": "pcb_component_17",
"layer": "top",
"route": [
@@ -30900,7 +28448,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_201",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_71",
"pcb_component_id": "pcb_component_17",
"layer": "top",
"route": [
@@ -30946,154 +28494,86 @@
},
{
"x": 150.51944642813532,
- "y": -42.99287511876119
- },
- {
- "x": 150.419826,
- "y": -42.99999999999914
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_202",
- "pcb_component_id": "pcb_component_18",
- "layer": "top",
- "route": [
- {
- "x": 137.069826,
- "y": -42.3
- },
- {
- "x": 137.069826,
- "y": -41.7
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_203",
- "pcb_component_id": "pcb_component_18",
- "layer": "top",
- "route": [
- {
- "x": 137.76982600000002,
- "y": -41
- },
- {
- "x": 139.169826,
- "y": -41
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_204",
- "pcb_component_id": "pcb_component_18",
- "layer": "top",
- "route": [
- {
- "x": 139.169826,
- "y": -43
- },
- {
- "x": 137.76982600000002,
- "y": -43
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_205",
- "pcb_component_id": "pcb_component_18",
- "layer": "top",
- "route": [
- {
- "x": 139.86982600000002,
- "y": -41.7
+ "y": -42.99287511876119
},
{
- "x": 139.86982600000002,
- "y": -42.3
+ "x": 150.419826,
+ "y": -42.99999999999914
}
],
"stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_206",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_72",
"pcb_component_id": "pcb_component_18",
"layer": "top",
"route": [
{
- "x": 136.819826,
- "y": -40.75
+ "x": 137.069826,
+ "y": -42.3
},
{
- "x": 136.819826,
- "y": -43.25
+ "x": 137.069826,
+ "y": -41.7
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_207",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_73",
"pcb_component_id": "pcb_component_18",
"layer": "top",
"route": [
{
- "x": 136.819826,
- "y": -40.75
+ "x": 137.76982600000002,
+ "y": -41
},
{
- "x": 140.11982600000002,
- "y": -40.75
+ "x": 139.169826,
+ "y": -41
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_208",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_74",
"pcb_component_id": "pcb_component_18",
"layer": "top",
"route": [
{
- "x": 140.11982600000002,
- "y": -43.25
+ "x": 139.169826,
+ "y": -43
},
{
- "x": 136.819826,
- "y": -43.25
+ "x": 137.76982600000002,
+ "y": -43
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_209",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_75",
"pcb_component_id": "pcb_component_18",
"layer": "top",
"route": [
{
- "x": 140.11982600000002,
- "y": -43.25
+ "x": 139.86982600000002,
+ "y": -41.7
},
{
- "x": 140.11982600000002,
- "y": -40.75
+ "x": 139.86982600000002,
+ "y": -42.3
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_210",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_76",
"pcb_component_id": "pcb_component_18",
"layer": "top",
"route": [
@@ -31150,7 +28630,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_211",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_77",
"pcb_component_id": "pcb_component_18",
"layer": "top",
"route": [
@@ -31207,7 +28687,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_212",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_78",
"pcb_component_id": "pcb_component_18",
"layer": "top",
"route": [
@@ -31264,7 +28744,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_213",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_79",
"pcb_component_id": "pcb_component_18",
"layer": "top",
"route": [
@@ -31321,7 +28801,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_214",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_80",
"pcb_component_id": "pcb_component_19",
"layer": "top",
"route": [
@@ -31338,7 +28818,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_215",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_81",
"pcb_component_id": "pcb_component_19",
"layer": "top",
"route": [
@@ -31355,7 +28835,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_216",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_82",
"pcb_component_id": "pcb_component_19",
"layer": "top",
"route": [
@@ -31372,7 +28852,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_217",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_83",
"pcb_component_id": "pcb_component_19",
"layer": "top",
"route": [
@@ -31389,75 +28869,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_218",
- "pcb_component_id": "pcb_component_19",
- "layer": "top",
- "route": [
- {
- "x": 122.14999999999999,
- "y": -40.75
- },
- {
- "x": 122.14999999999999,
- "y": -43.25
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_219",
- "pcb_component_id": "pcb_component_19",
- "layer": "top",
- "route": [
- {
- "x": 122.14999999999999,
- "y": -40.75
- },
- {
- "x": 125.45,
- "y": -40.75
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_220",
- "pcb_component_id": "pcb_component_19",
- "layer": "top",
- "route": [
- {
- "x": 125.45,
- "y": -43.25
- },
- {
- "x": 122.14999999999999,
- "y": -43.25
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_221",
- "pcb_component_id": "pcb_component_19",
- "layer": "top",
- "route": [
- {
- "x": 125.45,
- "y": -43.25
- },
- {
- "x": 125.45,
- "y": -40.75
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_222",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_84",
"pcb_component_id": "pcb_component_19",
"layer": "top",
"route": [
@@ -31514,7 +28926,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_223",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_85",
"pcb_component_id": "pcb_component_19",
"layer": "top",
"route": [
@@ -31571,7 +28983,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_224",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_86",
"pcb_component_id": "pcb_component_19",
"layer": "top",
"route": [
@@ -31628,7 +29040,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_225",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_87",
"pcb_component_id": "pcb_component_19",
"layer": "top",
"route": [
@@ -31685,7 +29097,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_226",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_88",
"pcb_component_id": "pcb_component_20",
"layer": "top",
"route": [
@@ -31702,7 +29114,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_227",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_89",
"pcb_component_id": "pcb_component_20",
"layer": "top",
"route": [
@@ -31719,7 +29131,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_228",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_90",
"pcb_component_id": "pcb_component_20",
"layer": "top",
"route": [
@@ -31736,7 +29148,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_229",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_91",
"pcb_component_id": "pcb_component_20",
"layer": "top",
"route": [
@@ -31753,75 +29165,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_230",
- "pcb_component_id": "pcb_component_20",
- "layer": "top",
- "route": [
- {
- "x": 133.019826,
- "y": -40.75
- },
- {
- "x": 133.019826,
- "y": -43.25
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_231",
- "pcb_component_id": "pcb_component_20",
- "layer": "top",
- "route": [
- {
- "x": 133.019826,
- "y": -40.75
- },
- {
- "x": 136.319826,
- "y": -40.75
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_232",
- "pcb_component_id": "pcb_component_20",
- "layer": "top",
- "route": [
- {
- "x": 136.319826,
- "y": -43.25
- },
- {
- "x": 133.019826,
- "y": -43.25
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_233",
- "pcb_component_id": "pcb_component_20",
- "layer": "top",
- "route": [
- {
- "x": 136.319826,
- "y": -43.25
- },
- {
- "x": 136.319826,
- "y": -40.75
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_234",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_92",
"pcb_component_id": "pcb_component_20",
"layer": "top",
"route": [
@@ -31878,7 +29222,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_235",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_93",
"pcb_component_id": "pcb_component_20",
"layer": "top",
"route": [
@@ -31935,7 +29279,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_236",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_94",
"pcb_component_id": "pcb_component_20",
"layer": "top",
"route": [
@@ -31992,7 +29336,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_237",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_95",
"pcb_component_id": "pcb_component_20",
"layer": "top",
"route": [
@@ -32017,549 +29361,141 @@
"y": -42.67844877096104
},
{
- "x": 135.89885096463036,
- "y": -42.75840275270436
- },
- {
- "x": 135.82822875270472,
- "y": -42.829024964629845
- },
- {
- "x": 135.74827477096127,
- "y": -42.88887773764734
- },
- {
- "x": 135.66061665700934,
- "y": -42.93674263807459
- },
- {
- "x": 135.56703888286555,
- "y": -42.97164527151115
- },
- {
- "x": 135.4694464281353,
- "y": -42.99287511876074
- },
- {
- "x": 135.369826,
- "y": -42.99999999999854
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_238",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": 143.166125,
- "y": -52.309337
- },
- {
- "x": 143.166125,
- "y": -52.831841
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_239",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": 144.63612500000002,
- "y": -52.309337
- },
- {
- "x": 144.63612500000002,
- "y": -52.831841
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_240",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": 142.92112500000002,
- "y": -50.690588999999996
- },
- {
- "x": 144.881125,
- "y": -50.690588999999996
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_241",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": 142.92112500000002,
- "y": -54.450589
- },
- {
- "x": 142.92112500000002,
- "y": -50.690588999999996
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_242",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": 144.881125,
- "y": -50.690588999999996
- },
- {
- "x": 144.881125,
- "y": -54.450589
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_243",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": 144.881125,
- "y": -54.450589
- },
- {
- "x": 142.92112500000002,
- "y": -54.450589
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_244",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": 143.276125,
- "y": -51.570589
- },
- {
- "x": 144.526125,
- "y": -51.570589
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_245",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": 143.276125,
- "y": -53.570589
- },
- {
- "x": 143.276125,
- "y": -51.570589
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_246",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": 144.526125,
- "y": -51.570589
- },
- {
- "x": 144.526125,
- "y": -53.570589
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_247",
- "pcb_component_id": "pcb_component_21",
- "layer": "top",
- "route": [
- {
- "x": 144.526125,
- "y": -53.570589
- },
- {
- "x": 143.276125,
- "y": -53.570589
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_248",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": 152.383175,
- "y": -54.560446
- },
- {
- "x": 152.383175,
- "y": -55.014573999999996
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_249",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": 153.85317500000002,
- "y": -54.560446
- },
- {
- "x": 153.85317500000002,
- "y": -55.014573999999996
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_250",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": 152.16817500000002,
- "y": -52.937509999999996
- },
- {
- "x": 154.068175,
- "y": -52.937509999999996
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_251",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": 152.16817500000002,
- "y": -56.63751
- },
- {
- "x": 152.16817500000002,
- "y": -52.937509999999996
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_252",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": 154.068175,
- "y": -52.937509999999996
- },
- {
- "x": 154.068175,
- "y": -56.63751
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_253",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": 154.068175,
- "y": -56.63751
- },
- {
- "x": 152.16817500000002,
- "y": -56.63751
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_254",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": 152.493175,
- "y": -53.78751
- },
- {
- "x": 153.743175,
- "y": -53.78751
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_255",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": 152.493175,
- "y": -55.78751
- },
- {
- "x": 152.493175,
- "y": -53.78751
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_256",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": 153.743175,
- "y": -53.78751
- },
- {
- "x": 153.743175,
- "y": -55.78751
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_257",
- "pcb_component_id": "pcb_component_22",
- "layer": "top",
- "route": [
- {
- "x": 153.743175,
- "y": -55.78751
- },
- {
- "x": 152.493175,
- "y": -55.78751
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_258",
- "pcb_component_id": "pcb_component_23",
- "layer": "top",
- "route": [
- {
- "x": 134.434826,
- "y": -64.898752
- },
- {
- "x": 134.434826,
- "y": -64.376248
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_259",
- "pcb_component_id": "pcb_component_23",
- "layer": "top",
- "route": [
- {
- "x": 135.904826,
- "y": -64.898752
- },
- {
- "x": 135.904826,
- "y": -64.376248
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_260",
- "pcb_component_id": "pcb_component_23",
- "layer": "top",
- "route": [
- {
- "x": 134.189826,
- "y": -62.7575
+ "x": 135.89885096463036,
+ "y": -42.75840275270436
},
{
- "x": 136.149826,
- "y": -62.7575
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_261",
- "pcb_component_id": "pcb_component_23",
- "layer": "top",
- "route": [
+ "x": 135.82822875270472,
+ "y": -42.829024964629845
+ },
+ {
+ "x": 135.74827477096127,
+ "y": -42.88887773764734
+ },
+ {
+ "x": 135.66061665700934,
+ "y": -42.93674263807459
+ },
+ {
+ "x": 135.56703888286555,
+ "y": -42.97164527151115
+ },
{
- "x": 134.189826,
- "y": -66.5175
+ "x": 135.4694464281353,
+ "y": -42.99287511876074
},
{
- "x": 134.189826,
- "y": -62.7575
+ "x": 135.369826,
+ "y": -42.99999999999854
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_262",
- "pcb_component_id": "pcb_component_23",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_96",
+ "pcb_component_id": "pcb_component_21",
"layer": "top",
"route": [
{
- "x": 136.149826,
- "y": -62.7575
+ "x": 143.166125,
+ "y": -52.309337
},
{
- "x": 136.149826,
- "y": -66.5175
+ "x": 143.166125,
+ "y": -52.831841
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_263",
- "pcb_component_id": "pcb_component_23",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_97",
+ "pcb_component_id": "pcb_component_21",
"layer": "top",
"route": [
{
- "x": 136.149826,
- "y": -66.5175
+ "x": 144.63612500000002,
+ "y": -52.309337
},
{
- "x": 134.189826,
- "y": -66.5175
+ "x": 144.63612500000002,
+ "y": -52.831841
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_264",
- "pcb_component_id": "pcb_component_23",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_98",
+ "pcb_component_id": "pcb_component_22",
"layer": "top",
"route": [
{
- "x": 134.544826,
- "y": -63.6375
+ "x": 152.383175,
+ "y": -54.560446
},
{
- "x": 135.794826,
- "y": -63.6375
+ "x": 152.383175,
+ "y": -55.014573999999996
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_265",
- "pcb_component_id": "pcb_component_23",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_99",
+ "pcb_component_id": "pcb_component_22",
"layer": "top",
"route": [
{
- "x": 134.544826,
- "y": -65.6375
+ "x": 153.85317500000002,
+ "y": -54.560446
},
{
- "x": 134.544826,
- "y": -63.6375
+ "x": 153.85317500000002,
+ "y": -55.014573999999996
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_266",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_100",
"pcb_component_id": "pcb_component_23",
"layer": "top",
"route": [
{
- "x": 135.794826,
- "y": -63.6375
+ "x": 134.434826,
+ "y": -64.898752
},
{
- "x": 135.794826,
- "y": -65.6375
+ "x": 134.434826,
+ "y": -64.376248
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_267",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_101",
"pcb_component_id": "pcb_component_23",
"layer": "top",
"route": [
{
- "x": 135.794826,
- "y": -65.6375
+ "x": 135.904826,
+ "y": -64.898752
},
{
- "x": 134.544826,
- "y": -65.6375
+ "x": 135.904826,
+ "y": -64.376248
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_268",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_102",
"pcb_component_id": "pcb_component_24",
"layer": "top",
"route": [
@@ -32576,7 +29512,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_269",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_103",
"pcb_component_id": "pcb_component_24",
"layer": "top",
"route": [
@@ -32593,7 +29529,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_270",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_104",
"pcb_component_id": "pcb_component_24",
"layer": "top",
"route": [
@@ -32610,7 +29546,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_271",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_105",
"pcb_component_id": "pcb_component_24",
"layer": "top",
"route": [
@@ -32627,7 +29563,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_272",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_106",
"pcb_component_id": "pcb_component_24",
"layer": "top",
"route": [
@@ -32644,7 +29580,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_273",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_107",
"pcb_component_id": "pcb_component_24",
"layer": "top",
"route": [
@@ -32661,7 +29597,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_274",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_108",
"pcb_component_id": "pcb_component_25",
"layer": "top",
"route": [
@@ -32678,7 +29614,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_275",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_109",
"pcb_component_id": "pcb_component_25",
"layer": "top",
"route": [
@@ -32695,245 +29631,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_276",
- "pcb_component_id": "pcb_component_25",
- "layer": "top",
- "route": [
- {
- "x": 145.30958,
- "y": -57.39
- },
- {
- "x": 154.06958,
- "y": -57.39
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_277",
- "pcb_component_id": "pcb_component_25",
- "layer": "top",
- "route": [
- {
- "x": 145.30958,
- "y": -61.19
- },
- {
- "x": 145.30958,
- "y": -57.39
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_278",
- "pcb_component_id": "pcb_component_25",
- "layer": "top",
- "route": [
- {
- "x": 154.06958,
- "y": -57.39
- },
- {
- "x": 154.06958,
- "y": -61.19
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_279",
- "pcb_component_id": "pcb_component_25",
- "layer": "top",
- "route": [
- {
- "x": 154.06958,
- "y": -61.19
- },
- {
- "x": 145.30958,
- "y": -61.19
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_280",
- "pcb_component_id": "pcb_component_25",
- "layer": "top",
- "route": [
- {
- "x": 146.51458,
- "y": -59.61
- },
- {
- "x": 146.51458,
- "y": -57.699999999999996
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_281",
- "pcb_component_id": "pcb_component_25",
- "layer": "top",
- "route": [
- {
- "x": 146.89958000000001,
- "y": -59.61
- },
- {
- "x": 146.51958000000002,
- "y": -59.61
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_282",
- "pcb_component_id": "pcb_component_25",
- "layer": "top",
- "route": [
- {
- "x": 146.89958000000001,
- "y": -59.61
- },
- {
- "x": 146.89958000000001,
- "y": -60.23
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_283",
- "pcb_component_id": "pcb_component_25",
- "layer": "top",
- "route": [
- {
- "x": 146.89958000000001,
- "y": -60.23
- },
- {
- "x": 146.89958000000001,
- "y": -60.879968
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_284",
- "pcb_component_id": "pcb_component_25",
- "layer": "top",
- "route": [
- {
- "x": 147.08182,
- "y": -57.699999999999996
- },
- {
- "x": 152.18958,
- "y": -57.7
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_285",
- "pcb_component_id": "pcb_component_25",
- "layer": "top",
- "route": [
- {
- "x": 152.48458,
- "y": -58.35
- },
- {
- "x": 152.48458,
- "y": -58.97
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_286",
- "pcb_component_id": "pcb_component_25",
- "layer": "top",
- "route": [
- {
- "x": 152.48958000000002,
- "y": -58.35
- },
- {
- "x": 152.48958000000002,
- "y": -57.7
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_287",
- "pcb_component_id": "pcb_component_25",
- "layer": "top",
- "route": [
- {
- "x": 152.86458000000002,
- "y": -58.97
- },
- {
- "x": 152.48458,
- "y": -58.97
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_288",
- "pcb_component_id": "pcb_component_25",
- "layer": "top",
- "route": [
- {
- "x": 152.86458000000002,
- "y": -58.97
- },
- {
- "x": 152.86458000000002,
- "y": -60.88
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_289",
- "pcb_component_id": "pcb_component_25",
- "layer": "top",
- "route": [
- {
- "x": 152.86458000000002,
- "y": -60.88
- },
- {
- "x": 146.89958000000001,
- "y": -60.879999999999995
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_290",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_110",
"pcb_component_id": "pcb_component_26",
"layer": "top",
"route": [
@@ -32950,7 +29648,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_291",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_111",
"pcb_component_id": "pcb_component_26",
"layer": "top",
"route": [
@@ -32967,7 +29665,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_292",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_112",
"pcb_component_id": "pcb_component_26",
"layer": "top",
"route": [
@@ -32984,7 +29682,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_293",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_113",
"pcb_component_id": "pcb_component_26",
"layer": "top",
"route": [
@@ -33001,75 +29699,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_294",
- "pcb_component_id": "pcb_component_26",
- "layer": "top",
- "route": [
- {
- "x": 144.569826,
- "y": -40.75
- },
- {
- "x": 144.569826,
- "y": -43.25
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_295",
- "pcb_component_id": "pcb_component_26",
- "layer": "top",
- "route": [
- {
- "x": 144.569826,
- "y": -40.75
- },
- {
- "x": 147.86982600000002,
- "y": -40.75
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_296",
- "pcb_component_id": "pcb_component_26",
- "layer": "top",
- "route": [
- {
- "x": 147.86982600000002,
- "y": -43.25
- },
- {
- "x": 144.569826,
- "y": -43.25
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_297",
- "pcb_component_id": "pcb_component_26",
- "layer": "top",
- "route": [
- {
- "x": 147.86982600000002,
- "y": -43.25
- },
- {
- "x": 147.86982600000002,
- "y": -40.75
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_298",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_114",
"pcb_component_id": "pcb_component_26",
"layer": "top",
"route": [
@@ -33126,7 +29756,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_299",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_115",
"pcb_component_id": "pcb_component_26",
"layer": "top",
"route": [
@@ -33183,7 +29813,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_300",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_116",
"pcb_component_id": "pcb_component_26",
"layer": "top",
"route": [
@@ -33240,7 +29870,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_301",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_117",
"pcb_component_id": "pcb_component_26",
"layer": "top",
"route": [
@@ -33297,7 +29927,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_302",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_118",
"pcb_component_id": "pcb_component_27",
"layer": "top",
"route": [
@@ -33314,7 +29944,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_303",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_119",
"pcb_component_id": "pcb_component_27",
"layer": "top",
"route": [
@@ -33331,143 +29961,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_304",
- "pcb_component_id": "pcb_component_27",
- "layer": "top",
- "route": [
- {
- "x": 138.816709,
- "y": -54.12
- },
- {
- "x": 140.77670899999998,
- "y": -54.12
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_305",
- "pcb_component_id": "pcb_component_27",
- "layer": "top",
- "route": [
- {
- "x": 138.816709,
- "y": -57.88
- },
- {
- "x": 138.816709,
- "y": -54.12
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_306",
- "pcb_component_id": "pcb_component_27",
- "layer": "top",
- "route": [
- {
- "x": 140.77670899999998,
- "y": -54.12
- },
- {
- "x": 140.77670899999998,
- "y": -57.88
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_307",
- "pcb_component_id": "pcb_component_27",
- "layer": "top",
- "route": [
- {
- "x": 140.77670899999998,
- "y": -57.88
- },
- {
- "x": 138.816709,
- "y": -57.88
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_308",
- "pcb_component_id": "pcb_component_27",
- "layer": "top",
- "route": [
- {
- "x": 139.171709,
- "y": -55
- },
- {
- "x": 140.421709,
- "y": -55
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_309",
- "pcb_component_id": "pcb_component_27",
- "layer": "top",
- "route": [
- {
- "x": 139.171709,
- "y": -57
- },
- {
- "x": 139.171709,
- "y": -55
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_310",
- "pcb_component_id": "pcb_component_27",
- "layer": "top",
- "route": [
- {
- "x": 140.421709,
- "y": -55
- },
- {
- "x": 140.421709,
- "y": -57
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_311",
- "pcb_component_id": "pcb_component_27",
- "layer": "top",
- "route": [
- {
- "x": 140.421709,
- "y": -57
- },
- {
- "x": 139.171709,
- "y": -57
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_312",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_120",
"pcb_component_id": "pcb_component_28",
"layer": "top",
"route": [
@@ -33484,7 +29978,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_313",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_121",
"pcb_component_id": "pcb_component_28",
"layer": "top",
"route": [
@@ -33501,7 +29995,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_314",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_122",
"pcb_component_id": "pcb_component_28",
"layer": "top",
"route": [
@@ -33518,7 +30012,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_315",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_123",
"pcb_component_id": "pcb_component_28",
"layer": "top",
"route": [
@@ -33535,75 +30029,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_316",
- "pcb_component_id": "pcb_component_28",
- "layer": "top",
- "route": [
- {
- "x": 151.669826,
- "y": -40.75
- },
- {
- "x": 151.669826,
- "y": -43.25
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_317",
- "pcb_component_id": "pcb_component_28",
- "layer": "top",
- "route": [
- {
- "x": 151.669826,
- "y": -40.75
- },
- {
- "x": 154.969826,
- "y": -40.75
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_318",
- "pcb_component_id": "pcb_component_28",
- "layer": "top",
- "route": [
- {
- "x": 154.969826,
- "y": -43.25
- },
- {
- "x": 151.669826,
- "y": -43.25
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_319",
- "pcb_component_id": "pcb_component_28",
- "layer": "top",
- "route": [
- {
- "x": 154.969826,
- "y": -43.25
- },
- {
- "x": 154.969826,
- "y": -40.75
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_320",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_124",
"pcb_component_id": "pcb_component_28",
"layer": "top",
"route": [
@@ -33660,7 +30086,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_321",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_125",
"pcb_component_id": "pcb_component_28",
"layer": "top",
"route": [
@@ -33717,7 +30143,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_322",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_126",
"pcb_component_id": "pcb_component_28",
"layer": "top",
"route": [
@@ -33774,7 +30200,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_323",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_127",
"pcb_component_id": "pcb_component_28",
"layer": "top",
"route": [
@@ -33831,7 +30257,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_324",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_128",
"pcb_component_id": "pcb_component_29",
"layer": "top",
"route": [
@@ -33848,7 +30274,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_325",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_129",
"pcb_component_id": "pcb_component_29",
"layer": "top",
"route": [
@@ -33865,143 +30291,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_326",
- "pcb_component_id": "pcb_component_29",
- "layer": "top",
- "route": [
- {
- "x": 133.65232600000002,
- "y": -45.720000000000006
- },
- {
- "x": 137.412326,
- "y": -45.720000000000006
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_327",
- "pcb_component_id": "pcb_component_29",
- "layer": "top",
- "route": [
- {
- "x": 133.65232600000002,
- "y": -47.68
- },
- {
- "x": 133.65232600000002,
- "y": -45.720000000000006
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_328",
- "pcb_component_id": "pcb_component_29",
- "layer": "top",
- "route": [
- {
- "x": 137.412326,
- "y": -45.720000000000006
- },
- {
- "x": 137.412326,
- "y": -47.68
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_329",
- "pcb_component_id": "pcb_component_29",
- "layer": "top",
- "route": [
- {
- "x": 137.412326,
- "y": -47.68
- },
- {
- "x": 133.65232600000002,
- "y": -47.68
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_330",
- "pcb_component_id": "pcb_component_29",
- "layer": "top",
- "route": [
- {
- "x": 134.532326,
- "y": -46.075
- },
- {
- "x": 136.532326,
- "y": -46.075
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_331",
- "pcb_component_id": "pcb_component_29",
- "layer": "top",
- "route": [
- {
- "x": 134.532326,
- "y": -47.325
- },
- {
- "x": 134.532326,
- "y": -46.075
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_332",
- "pcb_component_id": "pcb_component_29",
- "layer": "top",
- "route": [
- {
- "x": 136.532326,
- "y": -46.075
- },
- {
- "x": 136.532326,
- "y": -47.325
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_333",
- "pcb_component_id": "pcb_component_29",
- "layer": "top",
- "route": [
- {
- "x": 136.532326,
- "y": -47.325
- },
- {
- "x": 134.532326,
- "y": -47.325
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_334",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_130",
"pcb_component_id": "pcb_component_30",
"layer": "top",
"route": [
@@ -34094,7 +30384,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_335",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_131",
"pcb_component_id": "pcb_component_30",
"layer": "top",
"route": [
@@ -34191,7 +30481,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_336",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_132",
"pcb_component_id": "pcb_component_30",
"layer": "top",
"route": [
@@ -34300,7 +30590,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_337",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_133",
"pcb_component_id": "pcb_component_30",
"layer": "top",
"route": [
@@ -34433,7 +30723,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_338",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_134",
"pcb_component_id": "pcb_component_30",
"layer": "top",
"route": [
@@ -34574,7 +30864,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_339",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_135",
"pcb_component_id": "pcb_component_30",
"layer": "top",
"route": [
@@ -34719,7 +31009,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_340",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_136",
"pcb_component_id": "pcb_component_30",
"layer": "top",
"route": [
@@ -34864,7 +31154,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_341",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_137",
"pcb_component_id": "pcb_component_30",
"layer": "top",
"route": [
@@ -35013,7 +31303,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_342",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_138",
"pcb_component_id": "pcb_component_30",
"layer": "top",
"route": [
@@ -35170,7 +31460,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_343",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_139",
"pcb_component_id": "pcb_component_30",
"layer": "top",
"route": [
@@ -35339,7 +31629,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_344",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_140",
"pcb_component_id": "pcb_component_30",
"layer": "top",
"route": [
@@ -35516,7 +31806,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_345",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_141",
"pcb_component_id": "pcb_component_30",
"layer": "top",
"route": [
@@ -35701,7 +31991,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_346",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_142",
"pcb_component_id": "pcb_component_30",
"layer": "top",
"route": [
@@ -35898,7 +32188,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_347",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_143",
"pcb_component_id": "pcb_component_30",
"layer": "top",
"route": [
@@ -36127,7 +32417,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_348",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_144",
"pcb_component_id": "pcb_component_30",
"layer": "top",
"route": [
@@ -36384,7 +32674,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_349",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_145",
"pcb_component_id": "pcb_component_30",
"layer": "top",
"route": [
@@ -36681,7 +32971,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_350",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_146",
"pcb_component_id": "pcb_component_30",
"layer": "top",
"route": [
@@ -37174,7 +33464,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_351",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_147",
"pcb_component_id": "pcb_component_30",
"layer": "top",
"route": [
@@ -38547,7 +34837,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_352",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_148",
"pcb_component_id": "pcb_component_30",
"layer": "top",
"route": [
@@ -62164,7 +58454,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_353",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_149",
"pcb_component_id": "pcb_component_31",
"layer": "top",
"route": [
@@ -62181,7 +58471,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_354",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_150",
"pcb_component_id": "pcb_component_31",
"layer": "top",
"route": [
@@ -62198,143 +58488,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_355",
- "pcb_component_id": "pcb_component_31",
- "layer": "top",
- "route": [
- {
- "x": 131.69691500000002,
- "y": -58.6
- },
- {
- "x": 133.596915,
- "y": -58.6
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_356",
- "pcb_component_id": "pcb_component_31",
- "layer": "top",
- "route": [
- {
- "x": 131.69691500000002,
- "y": -62.300000000000004
- },
- {
- "x": 131.69691500000002,
- "y": -58.6
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_357",
- "pcb_component_id": "pcb_component_31",
- "layer": "top",
- "route": [
- {
- "x": 133.596915,
- "y": -58.6
- },
- {
- "x": 133.596915,
- "y": -62.300000000000004
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_358",
- "pcb_component_id": "pcb_component_31",
- "layer": "top",
- "route": [
- {
- "x": 133.596915,
- "y": -62.300000000000004
- },
- {
- "x": 131.69691500000002,
- "y": -62.300000000000004
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_359",
- "pcb_component_id": "pcb_component_31",
- "layer": "top",
- "route": [
- {
- "x": 132.021915,
- "y": -59.45
- },
- {
- "x": 133.271915,
- "y": -59.45
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_360",
- "pcb_component_id": "pcb_component_31",
- "layer": "top",
- "route": [
- {
- "x": 132.021915,
- "y": -61.45
- },
- {
- "x": 132.021915,
- "y": -59.45
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_361",
- "pcb_component_id": "pcb_component_31",
- "layer": "top",
- "route": [
- {
- "x": 133.271915,
- "y": -59.45
- },
- {
- "x": 133.271915,
- "y": -61.45
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_362",
- "pcb_component_id": "pcb_component_31",
- "layer": "top",
- "route": [
- {
- "x": 133.271915,
- "y": -61.45
- },
- {
- "x": 132.021915,
- "y": -61.45
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_363",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_151",
"pcb_component_id": "pcb_component_32",
"layer": "top",
"route": [
@@ -62351,7 +58505,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_364",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_152",
"pcb_component_id": "pcb_component_32",
"layer": "top",
"route": [
@@ -62368,7 +58522,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_365",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_153",
"pcb_component_id": "pcb_component_32",
"layer": "top",
"route": [
@@ -62385,7 +58539,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_366",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_154",
"pcb_component_id": "pcb_component_32",
"layer": "top",
"route": [
@@ -62402,75 +58556,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_367",
- "pcb_component_id": "pcb_component_32",
- "layer": "top",
- "route": [
- {
- "x": 122.14999999999999,
- "y": -37.95
- },
- {
- "x": 122.14999999999999,
- "y": -40.45
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_368",
- "pcb_component_id": "pcb_component_32",
- "layer": "top",
- "route": [
- {
- "x": 122.14999999999999,
- "y": -37.95
- },
- {
- "x": 125.45,
- "y": -37.95
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_369",
- "pcb_component_id": "pcb_component_32",
- "layer": "top",
- "route": [
- {
- "x": 125.45,
- "y": -40.45
- },
- {
- "x": 122.14999999999999,
- "y": -40.45
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_370",
- "pcb_component_id": "pcb_component_32",
- "layer": "top",
- "route": [
- {
- "x": 125.45,
- "y": -40.45
- },
- {
- "x": 125.45,
- "y": -37.95
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_371",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_155",
"pcb_component_id": "pcb_component_32",
"layer": "top",
"route": [
@@ -62527,7 +58613,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_372",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_156",
"pcb_component_id": "pcb_component_32",
"layer": "top",
"route": [
@@ -62584,7 +58670,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_373",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_157",
"pcb_component_id": "pcb_component_32",
"layer": "top",
"route": [
@@ -62641,7 +58727,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_374",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_158",
"pcb_component_id": "pcb_component_32",
"layer": "top",
"route": [
@@ -62698,7 +58784,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_375",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_159",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -62715,7 +58801,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_376",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_160",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -62732,7 +58818,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_377",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_161",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -62749,7 +58835,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_378",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_162",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -62766,7 +58852,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_379",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_163",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -62783,7 +58869,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_380",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_164",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -62800,7 +58886,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_381",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_165",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -62817,7 +58903,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_382",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_166",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -62834,7 +58920,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_383",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_167",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -62851,7 +58937,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_384",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_168",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -62868,7 +58954,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_385",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_169",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -62885,7 +58971,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_386",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_170",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -62902,7 +58988,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_387",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_171",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -62919,7 +59005,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_388",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_172",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -62936,7 +59022,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_389",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_173",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -62953,7 +59039,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_390",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_174",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -62970,7 +59056,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_391",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_175",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -62987,7 +59073,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_392",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_176",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -63004,7 +59090,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_393",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_177",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -63021,7 +59107,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_394",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_178",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -63038,7 +59124,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_395",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_179",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -63055,7 +59141,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_396",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_180",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -63072,7 +59158,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_397",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_181",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -63089,7 +59175,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_398",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_182",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -63106,7 +59192,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_399",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_183",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -63123,7 +59209,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_400",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_184",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -63140,7 +59226,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_401",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_185",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -63157,7 +59243,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_402",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_186",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -63174,7 +59260,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_403",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_187",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -63191,7 +59277,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_404",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_188",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -63208,7 +59294,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_405",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_189",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -63225,7 +59311,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_406",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_190",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -63242,7 +59328,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_407",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_191",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -63259,7 +59345,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_408",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_192",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -63276,7 +59362,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_409",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_193",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -63293,7 +59379,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_410",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_194",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -63310,7 +59396,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_411",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_195",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -63327,7 +59413,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_412",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_196",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -63344,7 +59430,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_413",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_197",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -63361,7 +59447,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_414",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_198",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -63378,7 +59464,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_415",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_199",
"pcb_component_id": "pcb_component_33",
"layer": "top",
"route": [
@@ -63395,177 +59481,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_416",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": 159.26982600000002,
- "y": -37.95
- },
- {
- "x": 159.26982600000002,
- "y": -52.85
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_417",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": 159.26982600000002,
- "y": -52.85
- },
- {
- "x": 164.76982600000002,
- "y": -52.85
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_418",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": 164.76982600000002,
- "y": -37.95
- },
- {
- "x": 159.26982600000002,
- "y": -37.95
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_419",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": 164.76982600000002,
- "y": -52.85
- },
- {
- "x": 164.76982600000002,
- "y": -37.95
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_420",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": 159.359826,
- "y": -51.51
- },
- {
- "x": 159.359826,
- "y": -52.76
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_421",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": 159.359826,
- "y": -52.76
- },
- {
- "x": 160.609826,
- "y": -52.76
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_422",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": 159.76982600000002,
- "y": -38.45
- },
- {
- "x": 159.76982600000002,
- "y": -52.35
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_423",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": 159.76982600000002,
- "y": -52.35
- },
- {
- "x": 164.26982600000002,
- "y": -52.35
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_424",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": 164.26982600000002,
- "y": -38.45
- },
- {
- "x": 159.76982600000002,
- "y": -38.45
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_425",
- "pcb_component_id": "pcb_component_33",
- "layer": "top",
- "route": [
- {
- "x": 164.26982600000002,
- "y": -52.35
- },
- {
- "x": 164.26982600000002,
- "y": -38.45
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_426",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_200",
"pcb_component_id": "pcb_component_34",
"layer": "top",
"route": [
@@ -63582,7 +59498,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_427",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_201",
"pcb_component_id": "pcb_component_34",
"layer": "top",
"route": [
@@ -63599,7 +59515,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_428",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_202",
"pcb_component_id": "pcb_component_34",
"layer": "top",
"route": [
@@ -63616,7 +59532,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_429",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_203",
"pcb_component_id": "pcb_component_34",
"layer": "top",
"route": [
@@ -63633,75 +59549,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_430",
- "pcb_component_id": "pcb_component_34",
- "layer": "top",
- "route": [
- {
- "x": 155.119826,
- "y": -37.95
- },
- {
- "x": 155.119826,
- "y": -40.45
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_431",
- "pcb_component_id": "pcb_component_34",
- "layer": "top",
- "route": [
- {
- "x": 155.119826,
- "y": -37.95
- },
- {
- "x": 158.419826,
- "y": -37.95
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_432",
- "pcb_component_id": "pcb_component_34",
- "layer": "top",
- "route": [
- {
- "x": 158.419826,
- "y": -40.45
- },
- {
- "x": 155.119826,
- "y": -40.45
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_433",
- "pcb_component_id": "pcb_component_34",
- "layer": "top",
- "route": [
- {
- "x": 158.419826,
- "y": -40.45
- },
- {
- "x": 158.419826,
- "y": -37.95
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_434",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_204",
"pcb_component_id": "pcb_component_34",
"layer": "top",
"route": [
@@ -63758,7 +59606,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_435",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_205",
"pcb_component_id": "pcb_component_34",
"layer": "top",
"route": [
@@ -63815,7 +59663,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_436",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_206",
"pcb_component_id": "pcb_component_34",
"layer": "top",
"route": [
@@ -63872,7 +59720,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_437",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_207",
"pcb_component_id": "pcb_component_34",
"layer": "top",
"route": [
@@ -63929,7 +59777,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_438",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_208",
"pcb_component_id": "pcb_component_35",
"layer": "top",
"route": [
@@ -63946,7 +59794,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_439",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_209",
"pcb_component_id": "pcb_component_35",
"layer": "top",
"route": [
@@ -63963,143 +59811,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_440",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": 141.75458,
- "y": -55.375
- },
- {
- "x": 143.65457999999998,
- "y": -55.375
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_441",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": 141.75458,
- "y": -59.075
- },
- {
- "x": 141.75458,
- "y": -55.375
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_442",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": 143.65457999999998,
- "y": -55.375
- },
- {
- "x": 143.65457999999998,
- "y": -59.075
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_443",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": 143.65457999999998,
- "y": -59.075
- },
- {
- "x": 141.75458,
- "y": -59.075
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_444",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": 142.07958,
- "y": -56.225
- },
- {
- "x": 143.32958,
- "y": -56.225
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_445",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": 142.07958,
- "y": -58.225
- },
- {
- "x": 142.07958,
- "y": -56.225
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_446",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": 143.32958,
- "y": -56.225
- },
- {
- "x": 143.32958,
- "y": -58.225
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_447",
- "pcb_component_id": "pcb_component_35",
- "layer": "top",
- "route": [
- {
- "x": 143.32958,
- "y": -58.225
- },
- {
- "x": 142.07958,
- "y": -58.225
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_448",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_210",
"pcb_component_id": "pcb_component_36",
"layer": "top",
"route": [
@@ -64116,7 +59828,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_449",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_211",
"pcb_component_id": "pcb_component_36",
"layer": "top",
"route": [
@@ -64133,7 +59845,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_450",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_212",
"pcb_component_id": "pcb_component_36",
"layer": "top",
"route": [
@@ -64150,7 +59862,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_451",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_213",
"pcb_component_id": "pcb_component_36",
"layer": "top",
"route": [
@@ -64167,75 +59879,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_452",
- "pcb_component_id": "pcb_component_36",
- "layer": "top",
- "route": [
- {
- "x": 151.669826,
- "y": -37.95
- },
- {
- "x": 151.669826,
- "y": -40.45
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_453",
- "pcb_component_id": "pcb_component_36",
- "layer": "top",
- "route": [
- {
- "x": 151.669826,
- "y": -37.95
- },
- {
- "x": 154.969826,
- "y": -37.95
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_454",
- "pcb_component_id": "pcb_component_36",
- "layer": "top",
- "route": [
- {
- "x": 154.969826,
- "y": -40.45
- },
- {
- "x": 151.669826,
- "y": -40.45
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_455",
- "pcb_component_id": "pcb_component_36",
- "layer": "top",
- "route": [
- {
- "x": 154.969826,
- "y": -40.45
- },
- {
- "x": 154.969826,
- "y": -37.95
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_456",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_214",
"pcb_component_id": "pcb_component_36",
"layer": "top",
"route": [
@@ -64292,7 +59936,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_457",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_215",
"pcb_component_id": "pcb_component_36",
"layer": "top",
"route": [
@@ -64349,7 +59993,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_458",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_216",
"pcb_component_id": "pcb_component_36",
"layer": "top",
"route": [
@@ -64406,7 +60050,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_459",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_217",
"pcb_component_id": "pcb_component_36",
"layer": "top",
"route": [
@@ -64463,7 +60107,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_460",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_218",
"pcb_component_id": "pcb_component_37",
"layer": "top",
"route": [
@@ -64480,7 +60124,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_461",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_219",
"pcb_component_id": "pcb_component_37",
"layer": "top",
"route": [
@@ -64497,7 +60141,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_462",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_220",
"pcb_component_id": "pcb_component_37",
"layer": "top",
"route": [
@@ -64514,7 +60158,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_463",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_221",
"pcb_component_id": "pcb_component_37",
"layer": "top",
"route": [
@@ -64531,75 +60175,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_464",
- "pcb_component_id": "pcb_component_37",
- "layer": "top",
- "route": [
- {
- "x": 125.67693399999999,
- "y": -37.95
- },
- {
- "x": 125.67693399999999,
- "y": -40.45
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_465",
- "pcb_component_id": "pcb_component_37",
- "layer": "top",
- "route": [
- {
- "x": 125.67693399999999,
- "y": -37.95
- },
- {
- "x": 128.976934,
- "y": -37.95
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_466",
- "pcb_component_id": "pcb_component_37",
- "layer": "top",
- "route": [
- {
- "x": 128.976934,
- "y": -40.45
- },
- {
- "x": 125.67693399999999,
- "y": -40.45
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_467",
- "pcb_component_id": "pcb_component_37",
- "layer": "top",
- "route": [
- {
- "x": 128.976934,
- "y": -40.45
- },
- {
- "x": 128.976934,
- "y": -37.95
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_468",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_222",
"pcb_component_id": "pcb_component_37",
"layer": "top",
"route": [
@@ -64656,7 +60232,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_469",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_223",
"pcb_component_id": "pcb_component_37",
"layer": "top",
"route": [
@@ -64713,7 +60289,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_470",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_224",
"pcb_component_id": "pcb_component_37",
"layer": "top",
"route": [
@@ -64770,7 +60346,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_471",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_225",
"pcb_component_id": "pcb_component_37",
"layer": "top",
"route": [
@@ -64827,7 +60403,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_472",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_226",
"pcb_component_id": "pcb_component_38",
"layer": "top",
"route": [
@@ -64844,7 +60420,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_473",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_227",
"pcb_component_id": "pcb_component_38",
"layer": "top",
"route": [
@@ -64861,7 +60437,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_474",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_228",
"pcb_component_id": "pcb_component_38",
"layer": "top",
"route": [
@@ -64878,7 +60454,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_475",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_229",
"pcb_component_id": "pcb_component_38",
"layer": "top",
"route": [
@@ -64895,75 +60471,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_476",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": 148.069826,
- "y": -37.95
- },
- {
- "x": 148.069826,
- "y": -40.45
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_477",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": 148.069826,
- "y": -37.95
- },
- {
- "x": 151.36982600000002,
- "y": -37.95
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_478",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": 151.36982600000002,
- "y": -40.45
- },
- {
- "x": 148.069826,
- "y": -40.45
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_479",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": 151.36982600000002,
- "y": -40.45
- },
- {
- "x": 151.36982600000002,
- "y": -37.95
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_480",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_230",
"pcb_component_id": "pcb_component_38",
"layer": "top",
"route": [
@@ -65020,7 +60528,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_481",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_231",
"pcb_component_id": "pcb_component_38",
"layer": "top",
"route": [
@@ -65077,7 +60585,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_482",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_232",
"pcb_component_id": "pcb_component_38",
"layer": "top",
"route": [
@@ -65119,776 +60627,215 @@
},
{
"x": 151.09147127151218,
- "y": -38.7027871171345
- },
- {
- "x": 151.11270111876217,
- "y": -38.80037957186469
- },
- {
- "x": 151.11982600000044,
- "y": -38.900000000000006
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_483",
- "pcb_component_id": "pcb_component_38",
- "layer": "top",
- "route": [
- {
- "x": 151.11982600000002,
- "y": -39.5
- },
- {
- "x": 151.11270111876223,
- "y": -39.59962042813539
- },
- {
- "x": 151.09147127151257,
- "y": -39.69721288286569
- },
- {
- "x": 151.05656863807593,
- "y": -39.79079065700954
- },
- {
- "x": 151.00870373764855,
- "y": -39.878448770961455
- },
- {
- "x": 150.94885096463088,
- "y": -39.95840275270486
- },
- {
- "x": 150.8782287527052,
- "y": -40.029024964630395
- },
- {
- "x": 150.79827477096168,
- "y": -40.088877737647906
- },
- {
- "x": 150.71061665700967,
- "y": -40.13674263807512
- },
- {
- "x": 150.61703888286576,
- "y": -40.17164527151158
- },
- {
- "x": 150.5194464281354,
- "y": -40.19287511876102
- },
- {
- "x": 150.419826,
- "y": -40.19999999999862
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_484",
- "pcb_component_id": "pcb_component_39",
- "layer": "top",
- "route": [
- {
- "x": 146.43867899999998,
- "y": -75.975349
- },
- {
- "x": 146.892807,
- "y": -75.975349
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_485",
- "pcb_component_id": "pcb_component_39",
- "layer": "top",
- "route": [
- {
- "x": 146.43867899999998,
- "y": -77.445349
- },
- {
- "x": 146.892807,
- "y": -77.445349
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_486",
- "pcb_component_id": "pcb_component_39",
- "layer": "top",
- "route": [
- {
- "x": 144.815743,
- "y": -75.76034899999999
- },
- {
- "x": 148.515743,
- "y": -75.76034899999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_487",
- "pcb_component_id": "pcb_component_39",
- "layer": "top",
- "route": [
- {
- "x": 144.815743,
- "y": -77.660349
- },
- {
- "x": 144.815743,
- "y": -75.76034899999999
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_488",
- "pcb_component_id": "pcb_component_39",
- "layer": "top",
- "route": [
- {
- "x": 148.515743,
- "y": -75.76034899999999
- },
- {
- "x": 148.515743,
- "y": -77.660349
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_489",
- "pcb_component_id": "pcb_component_39",
- "layer": "top",
- "route": [
- {
- "x": 148.515743,
- "y": -77.660349
- },
- {
- "x": 144.815743,
- "y": -77.660349
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_490",
- "pcb_component_id": "pcb_component_39",
- "layer": "top",
- "route": [
- {
- "x": 145.665743,
- "y": -76.085349
- },
- {
- "x": 147.665743,
- "y": -76.085349
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_491",
- "pcb_component_id": "pcb_component_39",
- "layer": "top",
- "route": [
- {
- "x": 145.665743,
- "y": -77.335349
- },
- {
- "x": 145.665743,
- "y": -76.085349
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_492",
- "pcb_component_id": "pcb_component_39",
- "layer": "top",
- "route": [
- {
- "x": 147.665743,
- "y": -76.085349
- },
- {
- "x": 147.665743,
- "y": -77.335349
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_493",
- "pcb_component_id": "pcb_component_39",
- "layer": "top",
- "route": [
- {
- "x": 147.665743,
- "y": -77.335349
- },
- {
- "x": 145.665743,
- "y": -77.335349
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_494",
- "pcb_component_id": "pcb_component_40",
- "layer": "top",
- "route": [
- {
- "x": 129.471078,
- "y": -60.715
- },
- {
- "x": 128.94857399999998,
- "y": -60.715
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_495",
- "pcb_component_id": "pcb_component_40",
- "layer": "top",
- "route": [
- {
- "x": 129.471078,
- "y": -62.185
- },
- {
- "x": 128.94857399999998,
- "y": -62.185
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_496",
- "pcb_component_id": "pcb_component_40",
- "layer": "top",
- "route": [
- {
- "x": 127.329826,
- "y": -60.470000000000006
- },
- {
- "x": 131.089826,
- "y": -60.470000000000006
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_497",
- "pcb_component_id": "pcb_component_40",
- "layer": "top",
- "route": [
- {
- "x": 127.329826,
- "y": -62.43
- },
- {
- "x": 127.329826,
- "y": -60.470000000000006
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_498",
- "pcb_component_id": "pcb_component_40",
- "layer": "top",
- "route": [
- {
- "x": 131.089826,
- "y": -60.470000000000006
- },
- {
- "x": 131.089826,
- "y": -62.43
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_499",
- "pcb_component_id": "pcb_component_40",
- "layer": "top",
- "route": [
- {
- "x": 131.089826,
- "y": -62.43
- },
- {
- "x": 127.329826,
- "y": -62.43
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_500",
- "pcb_component_id": "pcb_component_40",
- "layer": "top",
- "route": [
- {
- "x": 128.209826,
- "y": -60.825
- },
- {
- "x": 130.209826,
- "y": -60.825
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_501",
- "pcb_component_id": "pcb_component_40",
- "layer": "top",
- "route": [
- {
- "x": 128.209826,
- "y": -62.075
- },
- {
- "x": 128.209826,
- "y": -60.825
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_502",
- "pcb_component_id": "pcb_component_40",
- "layer": "top",
- "route": [
- {
- "x": 130.209826,
- "y": -60.825
- },
- {
- "x": 130.209826,
- "y": -62.075
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_503",
- "pcb_component_id": "pcb_component_40",
- "layer": "top",
- "route": [
- {
- "x": 130.209826,
- "y": -62.075
- },
- {
- "x": 128.209826,
- "y": -62.075
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_504",
- "pcb_component_id": "pcb_component_41",
- "layer": "top",
- "route": [
- {
- "x": 125.509826,
- "y": -53.5
- },
- {
- "x": 125.509826,
- "y": -51.55
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_505",
- "pcb_component_id": "pcb_component_41",
- "layer": "top",
- "route": [
- {
- "x": 125.509826,
- "y": -53.5
- },
- {
- "x": 125.509826,
- "y": -55.45
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_506",
- "pcb_component_id": "pcb_component_41",
- "layer": "top",
- "route": [
- {
- "x": 130.629826,
- "y": -53.5
- },
- {
- "x": 130.629826,
- "y": -51.55
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_507",
- "pcb_component_id": "pcb_component_41",
- "layer": "top",
- "route": [
- {
- "x": 130.629826,
- "y": -53.5
- },
- {
- "x": 130.629826,
- "y": -55.45
- }
- ],
- "stroke_width": 0.12
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_508",
- "pcb_component_id": "pcb_component_41",
- "layer": "top",
- "route": [
- {
- "x": 125.369826,
- "y": -51.3
- },
- {
- "x": 125.60982600000001,
- "y": -51.3
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_509",
- "pcb_component_id": "pcb_component_41",
- "layer": "top",
- "route": [
- {
- "x": 125.369826,
- "y": -55.7
+ "y": -38.7027871171345
},
{
- "x": 125.369826,
- "y": -51.3
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_510",
- "pcb_component_id": "pcb_component_41",
- "layer": "top",
- "route": [
- {
- "x": 125.60982600000001,
- "y": -49.8
+ "x": 151.11270111876217,
+ "y": -38.80037957186469
},
{
- "x": 130.529826,
- "y": -49.8
+ "x": 151.11982600000044,
+ "y": -38.900000000000006
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_511",
- "pcb_component_id": "pcb_component_41",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_233",
+ "pcb_component_id": "pcb_component_38",
"layer": "top",
"route": [
{
- "x": 125.60982600000001,
- "y": -51.3
+ "x": 151.11982600000002,
+ "y": -39.5
},
{
- "x": 125.60982600000001,
- "y": -49.8
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_512",
- "pcb_component_id": "pcb_component_41",
- "layer": "top",
- "route": [
+ "x": 151.11270111876223,
+ "y": -39.59962042813539
+ },
{
- "x": 125.60982600000001,
- "y": -55.7
+ "x": 151.09147127151257,
+ "y": -39.69721288286569
},
{
- "x": 125.369826,
- "y": -55.7
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_513",
- "pcb_component_id": "pcb_component_41",
- "layer": "top",
- "route": [
+ "x": 151.05656863807593,
+ "y": -39.79079065700954
+ },
{
- "x": 125.60982600000001,
- "y": -57.2
+ "x": 151.00870373764855,
+ "y": -39.878448770961455
},
{
- "x": 125.60982600000001,
- "y": -55.7
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_514",
- "pcb_component_id": "pcb_component_41",
- "layer": "top",
- "route": [
+ "x": 150.94885096463088,
+ "y": -39.95840275270486
+ },
{
- "x": 130.529826,
- "y": -49.8
+ "x": 150.8782287527052,
+ "y": -40.029024964630395
},
{
- "x": 130.529826,
- "y": -51.3
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_515",
- "pcb_component_id": "pcb_component_41",
- "layer": "top",
- "route": [
+ "x": 150.79827477096168,
+ "y": -40.088877737647906
+ },
{
- "x": 130.529826,
- "y": -51.3
+ "x": 150.71061665700967,
+ "y": -40.13674263807512
},
{
- "x": 130.769826,
- "y": -51.3
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_516",
- "pcb_component_id": "pcb_component_41",
- "layer": "top",
- "route": [
+ "x": 150.61703888286576,
+ "y": -40.17164527151158
+ },
{
- "x": 130.529826,
- "y": -55.7
+ "x": 150.5194464281354,
+ "y": -40.19287511876102
},
{
- "x": 130.529826,
- "y": -57.2
+ "x": 150.419826,
+ "y": -40.19999999999862
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_517",
- "pcb_component_id": "pcb_component_41",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_234",
+ "pcb_component_id": "pcb_component_39",
"layer": "top",
"route": [
{
- "x": 130.529826,
- "y": -57.2
+ "x": 146.43867899999998,
+ "y": -75.975349
},
{
- "x": 125.60982600000001,
- "y": -57.2
+ "x": 146.892807,
+ "y": -75.975349
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_518",
- "pcb_component_id": "pcb_component_41",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_235",
+ "pcb_component_id": "pcb_component_39",
"layer": "top",
"route": [
{
- "x": 130.769826,
- "y": -51.3
+ "x": 146.43867899999998,
+ "y": -77.445349
},
{
- "x": 130.769826,
- "y": -55.7
+ "x": 146.892807,
+ "y": -77.445349
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_519",
- "pcb_component_id": "pcb_component_41",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_236",
+ "pcb_component_id": "pcb_component_40",
"layer": "top",
"route": [
{
- "x": 130.769826,
- "y": -55.7
+ "x": 129.471078,
+ "y": -60.715
},
{
- "x": 130.529826,
- "y": -55.7
+ "x": 128.94857399999998,
+ "y": -60.715
}
],
- "stroke_width": 0.05
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_520",
- "pcb_component_id": "pcb_component_41",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_237",
+ "pcb_component_id": "pcb_component_40",
"layer": "top",
"route": [
{
- "x": 125.619826,
- "y": -51.55
+ "x": 129.471078,
+ "y": -62.185
},
{
- "x": 129.544826,
- "y": -51.55
+ "x": 128.94857399999998,
+ "y": -62.185
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_521",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_238",
"pcb_component_id": "pcb_component_41",
"layer": "top",
"route": [
{
- "x": 125.619826,
- "y": -55.45
+ "x": 125.509826,
+ "y": -53.5
},
{
- "x": 125.619826,
+ "x": 125.509826,
"y": -51.55
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_522",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_239",
"pcb_component_id": "pcb_component_41",
"layer": "top",
"route": [
{
- "x": 129.544826,
- "y": -51.55
+ "x": 125.509826,
+ "y": -53.5
},
{
- "x": 130.519826,
- "y": -52.525
+ "x": 125.509826,
+ "y": -55.45
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_523",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_240",
"pcb_component_id": "pcb_component_41",
"layer": "top",
"route": [
{
- "x": 130.519826,
- "y": -52.525
+ "x": 130.629826,
+ "y": -53.5
},
{
- "x": 130.519826,
- "y": -55.45
+ "x": 130.629826,
+ "y": -51.55
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_524",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_241",
"pcb_component_id": "pcb_component_41",
"layer": "top",
"route": [
{
- "x": 130.519826,
- "y": -55.45
+ "x": 130.629826,
+ "y": -53.5
},
{
- "x": 125.619826,
+ "x": 130.629826,
"y": -55.45
}
],
- "stroke_width": 0.1
+ "stroke_width": 0.12
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_525",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_242",
"pcb_component_id": "pcb_component_41",
"layer": "top",
"route": [
@@ -65909,7 +60856,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_526",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_243",
"pcb_component_id": "pcb_component_42",
"layer": "top",
"route": [
@@ -65926,7 +60873,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_527",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_244",
"pcb_component_id": "pcb_component_42",
"layer": "top",
"route": [
@@ -65943,7 +60890,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_528",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_245",
"pcb_component_id": "pcb_component_42",
"layer": "top",
"route": [
@@ -65960,160 +60907,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_529",
- "pcb_component_id": "pcb_component_42",
- "layer": "top",
- "route": [
- {
- "x": 144.95,
- "y": -69.85
- },
- {
- "x": 148.55,
- "y": -69.85
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_530",
- "pcb_component_id": "pcb_component_42",
- "layer": "top",
- "route": [
- {
- "x": 144.95,
- "y": -74.65
- },
- {
- "x": 144.95,
- "y": -69.85
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_531",
- "pcb_component_id": "pcb_component_42",
- "layer": "top",
- "route": [
- {
- "x": 148.55,
- "y": -69.85
- },
- {
- "x": 148.55,
- "y": -74.65
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_532",
- "pcb_component_id": "pcb_component_42",
- "layer": "top",
- "route": [
- {
- "x": 148.55,
- "y": -74.65
- },
- {
- "x": 144.95,
- "y": -74.65
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_533",
- "pcb_component_id": "pcb_component_42",
- "layer": "top",
- "route": [
- {
- "x": 145.2,
- "y": -71.35
- },
- {
- "x": 145.2,
- "y": -72.5
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_534",
- "pcb_component_id": "pcb_component_42",
- "layer": "top",
- "route": [
- {
- "x": 145.2,
- "y": -71.35
- },
- {
- "x": 148.3,
- "y": -71.35
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_535",
- "pcb_component_id": "pcb_component_42",
- "layer": "top",
- "route": [
- {
- "x": 145.85,
- "y": -73.15
- },
- {
- "x": 145.2,
- "y": -72.5
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_536",
- "pcb_component_id": "pcb_component_42",
- "layer": "top",
- "route": [
- {
- "x": 145.85,
- "y": -73.15
- },
- {
- "x": 148.3,
- "y": -73.15
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_537",
- "pcb_component_id": "pcb_component_42",
- "layer": "top",
- "route": [
- {
- "x": 148.3,
- "y": -71.35
- },
- {
- "x": 148.3,
- "y": -73.15
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_538",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_246",
"pcb_component_id": "pcb_component_42",
"layer": "top",
"route": [
@@ -66138,7 +60932,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_539",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_247",
"pcb_component_id": "pcb_component_43",
"layer": "top",
"route": [
@@ -66155,7 +60949,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_540",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_248",
"pcb_component_id": "pcb_component_43",
"layer": "top",
"route": [
@@ -66172,143 +60966,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_541",
- "pcb_component_id": "pcb_component_43",
- "layer": "top",
- "route": [
- {
- "x": 122.889826,
- "y": -50.957499999999996
- },
- {
- "x": 124.84982600000001,
- "y": -50.957499999999996
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_542",
- "pcb_component_id": "pcb_component_43",
- "layer": "top",
- "route": [
- {
- "x": 122.889826,
- "y": -54.7175
- },
- {
- "x": 122.889826,
- "y": -50.957499999999996
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_543",
- "pcb_component_id": "pcb_component_43",
- "layer": "top",
- "route": [
- {
- "x": 124.84982600000001,
- "y": -50.957499999999996
- },
- {
- "x": 124.84982600000001,
- "y": -54.7175
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_544",
- "pcb_component_id": "pcb_component_43",
- "layer": "top",
- "route": [
- {
- "x": 124.84982600000001,
- "y": -54.7175
- },
- {
- "x": 122.889826,
- "y": -54.7175
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_545",
- "pcb_component_id": "pcb_component_43",
- "layer": "top",
- "route": [
- {
- "x": 123.244826,
- "y": -51.8375
- },
- {
- "x": 124.494826,
- "y": -51.8375
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_546",
- "pcb_component_id": "pcb_component_43",
- "layer": "top",
- "route": [
- {
- "x": 123.244826,
- "y": -53.8375
- },
- {
- "x": 123.244826,
- "y": -51.8375
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_547",
- "pcb_component_id": "pcb_component_43",
- "layer": "top",
- "route": [
- {
- "x": 124.494826,
- "y": -51.8375
- },
- {
- "x": 124.494826,
- "y": -53.8375
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_548",
- "pcb_component_id": "pcb_component_43",
- "layer": "top",
- "route": [
- {
- "x": 124.494826,
- "y": -53.8375
- },
- {
- "x": 123.244826,
- "y": -53.8375
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_549",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_249",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66325,7 +60983,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_550",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_250",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66342,7 +61000,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_551",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_251",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66359,7 +61017,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_552",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_252",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66376,7 +61034,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_553",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_253",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66393,7 +61051,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_554",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_254",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66410,7 +61068,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_555",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_255",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66427,7 +61085,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_556",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_256",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66444,7 +61102,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_557",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_257",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66461,7 +61119,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_558",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_258",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66478,7 +61136,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_559",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_259",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66495,7 +61153,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_560",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_260",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66512,7 +61170,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_561",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_261",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66529,7 +61187,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_562",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_262",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66546,7 +61204,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_563",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_263",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66563,7 +61221,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_564",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_264",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66580,7 +61238,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_565",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_265",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66597,7 +61255,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_566",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_266",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66614,7 +61272,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_567",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_267",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66631,7 +61289,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_568",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_268",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66648,7 +61306,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_569",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_269",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66665,7 +61323,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_570",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_270",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66682,7 +61340,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_571",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_271",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66699,7 +61357,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_572",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_272",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66716,7 +61374,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_573",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_273",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66733,7 +61391,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_574",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_274",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66750,7 +61408,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_575",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_275",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66767,7 +61425,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_576",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_276",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66784,7 +61442,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_577",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_277",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66801,7 +61459,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_578",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_278",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66818,7 +61476,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_579",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_279",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66835,7 +61493,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_580",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_280",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66852,7 +61510,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_581",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_281",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66869,7 +61527,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_582",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_282",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66886,7 +61544,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_583",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_283",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66903,7 +61561,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_584",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_284",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66920,7 +61578,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_585",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_285",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66937,7 +61595,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_586",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_286",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66954,7 +61612,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_587",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_287",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66971,7 +61629,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_588",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_288",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -66988,7 +61646,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_589",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_289",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67005,7 +61663,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_590",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_290",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67022,7 +61680,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_591",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_291",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67039,7 +61697,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_592",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_292",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67056,7 +61714,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_593",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_293",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67073,7 +61731,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_594",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_294",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67090,7 +61748,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_595",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_295",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67107,7 +61765,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_596",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_296",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67124,7 +61782,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_597",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_297",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67141,7 +61799,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_598",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_298",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67158,7 +61816,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_599",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_299",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67175,7 +61833,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_600",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_300",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67192,7 +61850,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_601",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_301",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67209,7 +61867,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_602",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_302",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67226,7 +61884,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_603",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_303",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67243,7 +61901,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_604",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_304",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67260,7 +61918,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_605",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_305",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67277,7 +61935,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_606",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_306",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67294,7 +61952,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_607",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_307",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67311,7 +61969,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_608",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_308",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67328,7 +61986,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_609",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_309",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67345,7 +62003,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_610",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_310",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67362,7 +62020,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_611",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_311",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67379,7 +62037,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_612",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_312",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67396,7 +62054,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_613",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_313",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67413,7 +62071,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_614",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_314",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67430,7 +62088,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_615",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_315",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67447,7 +62105,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_616",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_316",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67464,7 +62122,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_617",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_317",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67481,7 +62139,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_618",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_318",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67498,7 +62156,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_619",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_319",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67515,7 +62173,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_620",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_320",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67532,7 +62190,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_621",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_321",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67549,7 +62207,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_622",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_322",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67566,7 +62224,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_623",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_323",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67583,7 +62241,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_624",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_324",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67600,7 +62258,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_625",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_325",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67617,7 +62275,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_626",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_326",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67634,7 +62292,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_627",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_327",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67651,7 +62309,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_628",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_328",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67668,7 +62326,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_629",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_329",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67685,7 +62343,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_630",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_330",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67702,7 +62360,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_631",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_331",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67719,7 +62377,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_632",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_332",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67736,7 +62394,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_633",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_333",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67753,7 +62411,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_634",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_334",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67770,7 +62428,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_635",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_335",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67787,7 +62445,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_636",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_336",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67804,7 +62462,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_637",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_337",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67821,7 +62479,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_638",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_338",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67838,7 +62496,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_639",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_339",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67855,7 +62513,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_640",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_340",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67872,7 +62530,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_641",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_341",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67889,7 +62547,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_642",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_342",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67906,7 +62564,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_643",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_343",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67923,7 +62581,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_644",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_344",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67940,7 +62598,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_645",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_345",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67957,7 +62615,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_646",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_346",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67974,7 +62632,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_647",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_347",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -67991,7 +62649,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_648",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_348",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -68008,7 +62666,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_649",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_349",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -68025,7 +62683,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_650",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_350",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -68042,7 +62700,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_651",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_351",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -68059,7 +62717,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_652",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_352",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -68076,7 +62734,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_653",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_353",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -68093,7 +62751,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_654",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_354",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -68110,7 +62768,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_655",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_355",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -68127,7 +62785,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_656",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_356",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -68144,7 +62802,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_657",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_357",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -68161,7 +62819,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_658",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_358",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -68178,7 +62836,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_659",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_359",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -68195,7 +62853,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_660",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_360",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -68212,7 +62870,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_661",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_361",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -68229,7 +62887,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_662",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_362",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -68246,7 +62904,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_663",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_363",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -68263,7 +62921,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_664",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_364",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -68280,7 +62938,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_665",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_365",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -68297,7 +62955,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_666",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_366",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -68314,7 +62972,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_667",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_367",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -68331,41 +62989,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_668",
- "pcb_component_id": "pcb_component_44",
- "layer": "top",
- "route": [
- {
- "x": 145.36708,
- "y": -66.708605
- },
- {
- "x": 145.86708,
- "y": -66.708605
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_669",
- "pcb_component_id": "pcb_component_44",
- "layer": "top",
- "route": [
- {
- "x": 145.61708,
- "y": -66.958605
- },
- {
- "x": 145.61708,
- "y": -66.458605
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_670",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_368",
"pcb_component_id": "pcb_component_44",
"layer": "top",
"route": [
@@ -68442,161 +63066,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_671",
- "pcb_component_id": "pcb_component_44",
- "layer": "top",
- "route": [
- {
- "x": 149.45458,
- "y": -64.825
- },
- {
- "x": 149.24524871440605,
- "y": -63.772620560996
- },
- {
- "x": 148.649123648263,
- "y": -62.880456351736996
- },
- {
- "x": 147.756959439004,
- "y": -62.284331285593964
- },
- {
- "x": 146.70458,
- "y": -62.075
- },
- {
- "x": 145.652200560996,
- "y": -62.284331285593964
- },
- {
- "x": 144.760036351737,
- "y": -62.880456351736996
- },
- {
- "x": 144.16391128559394,
- "y": -63.772620560996
- },
- {
- "x": 143.95458,
- "y": -64.825
- },
- {
- "x": 144.16391128559394,
- "y": -65.877379439004
- },
- {
- "x": 144.760036351737,
- "y": -66.76954364826301
- },
- {
- "x": 145.652200560996,
- "y": -67.36566871440604
- },
- {
- "x": 146.70458,
- "y": -67.575
- },
- {
- "x": 147.756959439004,
- "y": -67.36566871440604
- },
- {
- "x": 148.649123648263,
- "y": -66.76954364826301
- },
- {
- "x": 149.24524871440602,
- "y": -65.877379439004
- },
- {
- "x": 149.45458,
- "y": -64.825
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_672",
- "pcb_component_id": "pcb_component_44",
- "layer": "top",
- "route": [
- {
- "x": 149.20458,
- "y": -64.825
- },
- {
- "x": 149.0142788312782,
- "y": -63.86829141908728
- },
- {
- "x": 148.47234695296635,
- "y": -63.057233047033634
- },
- {
- "x": 147.66128858091272,
- "y": -62.515301168721784
- },
- {
- "x": 146.70458,
- "y": -62.325
- },
- {
- "x": 145.74787141908726,
- "y": -62.515301168721784
- },
- {
- "x": 144.93681304703364,
- "y": -63.057233047033634
- },
- {
- "x": 144.39488116872178,
- "y": -63.86829141908728
- },
- {
- "x": 144.20458,
- "y": -64.825
- },
- {
- "x": 144.39488116872178,
- "y": -65.78170858091272
- },
- {
- "x": 144.9368130470336,
- "y": -66.59276695296637
- },
- {
- "x": 145.74787141908726,
- "y": -67.13469883127821
- },
- {
- "x": 146.70458,
- "y": -67.325
- },
- {
- "x": 147.66128858091272,
- "y": -67.13469883127821
- },
- {
- "x": 148.47234695296635,
- "y": -66.59276695296637
- },
- {
- "x": 149.0142788312782,
- "y": -65.78170858091273
- },
- {
- "x": 149.20458,
- "y": -64.825
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_673",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_369",
"pcb_component_id": "pcb_component_45",
"layer": "top",
"route": [
@@ -68613,7 +63083,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_674",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_370",
"pcb_component_id": "pcb_component_45",
"layer": "top",
"route": [
@@ -68630,143 +63100,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_675",
- "pcb_component_id": "pcb_component_45",
- "layer": "top",
- "route": [
- {
- "x": 124.83482599999999,
- "y": -58.6
- },
- {
- "x": 126.734826,
- "y": -58.6
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_676",
- "pcb_component_id": "pcb_component_45",
- "layer": "top",
- "route": [
- {
- "x": 124.83482599999999,
- "y": -62.300000000000004
- },
- {
- "x": 124.83482599999999,
- "y": -58.6
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_677",
- "pcb_component_id": "pcb_component_45",
- "layer": "top",
- "route": [
- {
- "x": 126.734826,
- "y": -58.6
- },
- {
- "x": 126.734826,
- "y": -62.300000000000004
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_678",
- "pcb_component_id": "pcb_component_45",
- "layer": "top",
- "route": [
- {
- "x": 126.734826,
- "y": -62.300000000000004
- },
- {
- "x": 124.83482599999999,
- "y": -62.300000000000004
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_679",
- "pcb_component_id": "pcb_component_45",
- "layer": "top",
- "route": [
- {
- "x": 125.159826,
- "y": -59.45
- },
- {
- "x": 126.409826,
- "y": -59.45
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_680",
- "pcb_component_id": "pcb_component_45",
- "layer": "top",
- "route": [
- {
- "x": 125.159826,
- "y": -61.45
- },
- {
- "x": 125.159826,
- "y": -59.45
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_681",
- "pcb_component_id": "pcb_component_45",
- "layer": "top",
- "route": [
- {
- "x": 126.409826,
- "y": -59.45
- },
- {
- "x": 126.409826,
- "y": -61.45
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_682",
- "pcb_component_id": "pcb_component_45",
- "layer": "top",
- "route": [
- {
- "x": 126.409826,
- "y": -61.45
- },
- {
- "x": 125.159826,
- "y": -61.45
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_683",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_371",
"pcb_component_id": "pcb_component_46",
"layer": "top",
"route": [
@@ -68783,7 +63117,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_684",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_372",
"pcb_component_id": "pcb_component_46",
"layer": "top",
"route": [
@@ -68800,7 +63134,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_685",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_373",
"pcb_component_id": "pcb_component_46",
"layer": "top",
"route": [
@@ -68817,7 +63151,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_686",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_374",
"pcb_component_id": "pcb_component_46",
"layer": "top",
"route": [
@@ -68834,75 +63168,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_687",
- "pcb_component_id": "pcb_component_46",
- "layer": "top",
- "route": [
- {
- "x": 155.119826,
- "y": -40.75
- },
- {
- "x": 155.119826,
- "y": -43.25
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_688",
- "pcb_component_id": "pcb_component_46",
- "layer": "top",
- "route": [
- {
- "x": 155.119826,
- "y": -40.75
- },
- {
- "x": 158.419826,
- "y": -40.75
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_689",
- "pcb_component_id": "pcb_component_46",
- "layer": "top",
- "route": [
- {
- "x": 158.419826,
- "y": -43.25
- },
- {
- "x": 155.119826,
- "y": -43.25
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_690",
- "pcb_component_id": "pcb_component_46",
- "layer": "top",
- "route": [
- {
- "x": 158.419826,
- "y": -43.25
- },
- {
- "x": 158.419826,
- "y": -40.75
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_691",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_375",
"pcb_component_id": "pcb_component_46",
"layer": "top",
"route": [
@@ -68959,7 +63225,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_692",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_376",
"pcb_component_id": "pcb_component_46",
"layer": "top",
"route": [
@@ -69016,7 +63282,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_693",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_377",
"pcb_component_id": "pcb_component_46",
"layer": "top",
"route": [
@@ -69073,7 +63339,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_694",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_378",
"pcb_component_id": "pcb_component_46",
"layer": "top",
"route": [
@@ -69130,7 +63396,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_695",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_379",
"pcb_component_id": "pcb_component_47",
"layer": "top",
"route": [
@@ -69147,7 +63413,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_696",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_380",
"pcb_component_id": "pcb_component_47",
"layer": "top",
"route": [
@@ -69164,7 +63430,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_697",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_381",
"pcb_component_id": "pcb_component_47",
"layer": "top",
"route": [
@@ -69181,7 +63447,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_698",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_382",
"pcb_component_id": "pcb_component_47",
"layer": "top",
"route": [
@@ -69198,75 +63464,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_699",
- "pcb_component_id": "pcb_component_47",
- "layer": "top",
- "route": [
- {
- "x": 140.519826,
- "y": -37.95
- },
- {
- "x": 140.519826,
- "y": -40.45
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_700",
- "pcb_component_id": "pcb_component_47",
- "layer": "top",
- "route": [
- {
- "x": 140.519826,
- "y": -37.95
- },
- {
- "x": 143.819826,
- "y": -37.95
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_701",
- "pcb_component_id": "pcb_component_47",
- "layer": "top",
- "route": [
- {
- "x": 143.819826,
- "y": -40.45
- },
- {
- "x": 140.519826,
- "y": -40.45
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_702",
- "pcb_component_id": "pcb_component_47",
- "layer": "top",
- "route": [
- {
- "x": 143.819826,
- "y": -40.45
- },
- {
- "x": 143.819826,
- "y": -37.95
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_703",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_383",
"pcb_component_id": "pcb_component_47",
"layer": "top",
"route": [
@@ -69323,7 +63521,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_704",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_384",
"pcb_component_id": "pcb_component_47",
"layer": "top",
"route": [
@@ -69380,7 +63578,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_705",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_385",
"pcb_component_id": "pcb_component_47",
"layer": "top",
"route": [
@@ -69437,7 +63635,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_706",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_386",
"pcb_component_id": "pcb_component_47",
"layer": "top",
"route": [
@@ -69494,7 +63692,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_707",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_387",
"pcb_component_id": "pcb_component_48",
"layer": "top",
"route": [
@@ -69511,7 +63709,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_708",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_388",
"pcb_component_id": "pcb_component_48",
"layer": "top",
"route": [
@@ -69528,7 +63726,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_709",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_389",
"pcb_component_id": "pcb_component_48",
"layer": "top",
"route": [
@@ -69545,7 +63743,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_710",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_390",
"pcb_component_id": "pcb_component_48",
"layer": "top",
"route": [
@@ -69562,75 +63760,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_711",
- "pcb_component_id": "pcb_component_48",
- "layer": "top",
- "route": [
- {
- "x": 133.019826,
- "y": -37.95
- },
- {
- "x": 133.019826,
- "y": -40.45
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_712",
- "pcb_component_id": "pcb_component_48",
- "layer": "top",
- "route": [
- {
- "x": 133.019826,
- "y": -37.95
- },
- {
- "x": 136.319826,
- "y": -37.95
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_713",
- "pcb_component_id": "pcb_component_48",
- "layer": "top",
- "route": [
- {
- "x": 136.319826,
- "y": -40.45
- },
- {
- "x": 133.019826,
- "y": -40.45
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_714",
- "pcb_component_id": "pcb_component_48",
- "layer": "top",
- "route": [
- {
- "x": 136.319826,
- "y": -40.45
- },
- {
- "x": 136.319826,
- "y": -37.95
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_715",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_391",
"pcb_component_id": "pcb_component_48",
"layer": "top",
"route": [
@@ -69687,7 +63817,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_716",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_392",
"pcb_component_id": "pcb_component_48",
"layer": "top",
"route": [
@@ -69744,7 +63874,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_717",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_393",
"pcb_component_id": "pcb_component_48",
"layer": "top",
"route": [
@@ -69801,7 +63931,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_718",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_394",
"pcb_component_id": "pcb_component_48",
"layer": "top",
"route": [
@@ -69858,7 +63988,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_719",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_395",
"pcb_component_id": "pcb_component_49",
"layer": "top",
"route": [
@@ -69875,7 +64005,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_720",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_396",
"pcb_component_id": "pcb_component_49",
"layer": "top",
"route": [
@@ -69892,7 +64022,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_721",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_397",
"pcb_component_id": "pcb_component_49",
"layer": "top",
"route": [
@@ -69909,7 +64039,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_722",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_398",
"pcb_component_id": "pcb_component_49",
"layer": "top",
"route": [
@@ -69926,75 +64056,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_723",
- "pcb_component_id": "pcb_component_49",
- "layer": "top",
- "route": [
- {
- "x": 140.519826,
- "y": -40.75
- },
- {
- "x": 140.519826,
- "y": -43.25
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_724",
- "pcb_component_id": "pcb_component_49",
- "layer": "top",
- "route": [
- {
- "x": 140.519826,
- "y": -40.75
- },
- {
- "x": 143.819826,
- "y": -40.75
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_725",
- "pcb_component_id": "pcb_component_49",
- "layer": "top",
- "route": [
- {
- "x": 143.819826,
- "y": -43.25
- },
- {
- "x": 140.519826,
- "y": -43.25
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_726",
- "pcb_component_id": "pcb_component_49",
- "layer": "top",
- "route": [
- {
- "x": 143.819826,
- "y": -43.25
- },
- {
- "x": 143.819826,
- "y": -40.75
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_727",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_399",
"pcb_component_id": "pcb_component_49",
"layer": "top",
"route": [
@@ -70051,7 +64113,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_728",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_400",
"pcb_component_id": "pcb_component_49",
"layer": "top",
"route": [
@@ -70108,7 +64170,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_729",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_401",
"pcb_component_id": "pcb_component_49",
"layer": "top",
"route": [
@@ -70165,7 +64227,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_730",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_402",
"pcb_component_id": "pcb_component_49",
"layer": "top",
"route": [
@@ -70222,7 +64284,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_731",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_403",
"pcb_component_id": "pcb_component_50",
"layer": "top",
"route": [
@@ -70239,7 +64301,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_732",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_404",
"pcb_component_id": "pcb_component_50",
"layer": "top",
"route": [
@@ -70256,7 +64318,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_733",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_405",
"pcb_component_id": "pcb_component_50",
"layer": "top",
"route": [
@@ -70273,7 +64335,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_734",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_406",
"pcb_component_id": "pcb_component_50",
"layer": "top",
"route": [
@@ -70290,7 +64352,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_735",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_407",
"pcb_component_id": "pcb_component_50",
"layer": "top",
"route": [
@@ -70307,92 +64369,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_736",
- "pcb_component_id": "pcb_component_50",
- "layer": "top",
- "route": [
- {
- "x": 156.769826,
- "y": -46.02
- },
- {
- "x": 156.769826,
- "y": -48.5
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_737",
- "pcb_component_id": "pcb_component_50",
- "layer": "top",
- "route": [
- {
- "x": 156.769826,
- "y": -56.18000000000001
- },
- {
- "x": 156.769826,
- "y": -53.7
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_738",
- "pcb_component_id": "pcb_component_50",
- "layer": "top",
- "route": [
- {
- "x": 158.119826,
- "y": -49.18000000000001
- },
- {
- "x": 155.419826,
- "y": -49.18000000000001
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_739",
- "pcb_component_id": "pcb_component_50",
- "layer": "top",
- "route": [
- {
- "x": 158.119826,
- "y": -49.28
- },
- {
- "x": 155.419826,
- "y": -49.28
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_740",
- "pcb_component_id": "pcb_component_50",
- "layer": "top",
- "route": [
- {
- "x": 158.119826,
- "y": -49.38
- },
- {
- "x": 155.419826,
- "y": -49.38
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_741",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_408",
"pcb_component_id": "pcb_component_51",
"layer": "top",
"route": [
@@ -70409,7 +64386,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_742",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_409",
"pcb_component_id": "pcb_component_51",
"layer": "top",
"route": [
@@ -70426,143 +64403,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_743",
- "pcb_component_id": "pcb_component_51",
- "layer": "top",
- "route": [
- {
- "x": 147.80958,
- "y": -54.81
- },
- {
- "x": 151.56958,
- "y": -54.81
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_744",
- "pcb_component_id": "pcb_component_51",
- "layer": "top",
- "route": [
- {
- "x": 147.80958,
- "y": -56.769999999999996
- },
- {
- "x": 147.80958,
- "y": -54.81
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_745",
- "pcb_component_id": "pcb_component_51",
- "layer": "top",
- "route": [
- {
- "x": 151.56958,
- "y": -54.81
- },
- {
- "x": 151.56958,
- "y": -56.769999999999996
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_746",
- "pcb_component_id": "pcb_component_51",
- "layer": "top",
- "route": [
- {
- "x": 151.56958,
- "y": -56.769999999999996
- },
- {
- "x": 147.80958,
- "y": -56.769999999999996
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_747",
- "pcb_component_id": "pcb_component_51",
- "layer": "top",
- "route": [
- {
- "x": 148.68958,
- "y": -55.165
- },
- {
- "x": 150.68958,
- "y": -55.165
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_748",
- "pcb_component_id": "pcb_component_51",
- "layer": "top",
- "route": [
- {
- "x": 148.68958,
- "y": -56.415
- },
- {
- "x": 148.68958,
- "y": -55.165
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_749",
- "pcb_component_id": "pcb_component_51",
- "layer": "top",
- "route": [
- {
- "x": 150.68958,
- "y": -55.165
- },
- {
- "x": 150.68958,
- "y": -56.415
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_750",
- "pcb_component_id": "pcb_component_51",
- "layer": "top",
- "route": [
- {
- "x": 150.68958,
- "y": -56.415
- },
- {
- "x": 148.68958,
- "y": -56.415
- }
- ],
- "stroke_width": 0.1
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_751",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_410",
"pcb_component_id": "pcb_component_52",
"layer": "top",
"route": [
@@ -70579,7 +64420,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_752",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_411",
"pcb_component_id": "pcb_component_52",
"layer": "top",
"route": [
@@ -70596,7 +64437,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_753",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_412",
"pcb_component_id": "pcb_component_52",
"layer": "top",
"route": [
@@ -70613,7 +64454,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_754",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_413",
"pcb_component_id": "pcb_component_52",
"layer": "top",
"route": [
@@ -70630,75 +64471,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_755",
- "pcb_component_id": "pcb_component_52",
- "layer": "top",
- "route": [
- {
- "x": 125.67693399999999,
- "y": -40.75
- },
- {
- "x": 125.67693399999999,
- "y": -43.25
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_756",
- "pcb_component_id": "pcb_component_52",
- "layer": "top",
- "route": [
- {
- "x": 125.67693399999999,
- "y": -40.75
- },
- {
- "x": 128.976934,
- "y": -40.75
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_757",
- "pcb_component_id": "pcb_component_52",
- "layer": "top",
- "route": [
- {
- "x": 128.976934,
- "y": -43.25
- },
- {
- "x": 125.67693399999999,
- "y": -43.25
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_758",
- "pcb_component_id": "pcb_component_52",
- "layer": "top",
- "route": [
- {
- "x": 128.976934,
- "y": -43.25
- },
- {
- "x": 128.976934,
- "y": -40.75
- }
- ],
- "stroke_width": 0.05
- },
- {
- "type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_759",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_414",
"pcb_component_id": "pcb_component_52",
"layer": "top",
"route": [
@@ -70755,7 +64528,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_760",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_415",
"pcb_component_id": "pcb_component_52",
"layer": "top",
"route": [
@@ -70812,7 +64585,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_761",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_416",
"pcb_component_id": "pcb_component_52",
"layer": "top",
"route": [
@@ -70869,7 +64642,7 @@
},
{
"type": "pcb_silkscreen_path",
- "pcb_silkscreen_path_id": "pcb_silkscreen_path_762",
+ "pcb_silkscreen_path_id": "pcb_silkscreen_path_417",
"pcb_component_id": "pcb_component_52",
"layer": "top",
"route": [
diff --git a/tests/repros/repro01-joule-thief/__snapshots__/repro01-joule-thief-circuit-json.svg b/tests/repros/repro01-joule-thief/__snapshots__/repro01-joule-thief-circuit-json.svg
index 316f894c..ae8783b4 100644
--- a/tests/repros/repro01-joule-thief/__snapshots__/repro01-joule-thief-circuit-json.svg
+++ b/tests/repros/repro01-joule-thief/__snapshots__/repro01-joule-thief-circuit-json.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/tests/repros/repro01-joule-thief/__snapshots__/repro01-joule-thief-pcb.snap.png b/tests/repros/repro01-joule-thief/__snapshots__/repro01-joule-thief-pcb.snap.png
index ac89d966..48fb31fa 100644
Binary files a/tests/repros/repro01-joule-thief/__snapshots__/repro01-joule-thief-pcb.snap.png and b/tests/repros/repro01-joule-thief/__snapshots__/repro01-joule-thief-pcb.snap.png differ