@tscircuit/schematic-trace-solver 0.0.187 → 0.0.189

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/dist/index.d.ts +42 -23
  2. package/dist/index.js +1053 -316
  3. package/lib/solvers/InlineNetLabelSolver/InlineNetLabelSolver.ts +612 -230
  4. package/lib/solvers/InlineNetLabelSolver/alignPortOnlyInlineNetLabelStubs.ts +2 -6
  5. package/lib/solvers/InlineNetLabelSolver/getAnchoredNetLabelRenderedBounds.ts +13 -0
  6. package/lib/solvers/InlineNetLabelSolver/getInlineLabelObstacles.ts +64 -0
  7. package/lib/solvers/InlineNetLabelSolver/getLocalTraceLabelShifts.ts +407 -0
  8. package/lib/solvers/InlineNetLabelSolver/getOutputLabelCollisions.ts +145 -0
  9. package/lib/solvers/InlineNetLabelSolver/isLabelRepresentedInline.ts +15 -0
  10. package/lib/solvers/InlineNetLabelSolver/pushAnchoredNetLabelsAwayFromInlineLabels.ts +61 -31
  11. package/lib/solvers/NetLabelNetLabelCollisionSolver/NetLabelNetLabelCollisionSolver.ts +94 -16
  12. package/lib/solvers/NetLabelToTraceSolver/NetLabelToTraceSolver.ts +4 -3
  13. package/lib/solvers/SameNetJunctionAlignmentSolver/alignSameNetJunctions.ts +7 -7
  14. package/lib/solvers/SchematicTracePipelineSolver/SchematicTracePipelineSolver.ts +3 -0
  15. package/lib/solvers/TraceCleanupSolver/sub-solver/generateLShapeRerouteCandidates.ts +5 -1
  16. package/lib/types/InputProblem.ts +2 -2
  17. package/package.json +1 -1
  18. package/site/SchematicTracePipelineSolver/repro-robot-controller-imu-tof.page.tsx +7 -0
  19. package/site/bug-reports/bug-report-20260907T110144Z.page.tsx +4 -0
  20. package/site/bug-reports/bug-report-20260907T145640Z.page.tsx +4 -0
  21. package/tests/bug-reports/bug-report-20260730T061837Z/__snapshots__/bug-report-20260730T061837Z.snap.svg +2 -2
  22. package/tests/bug-reports/bug-report-20260806T093501Z/__snapshots__/bug-report-20260806T093501Z.snap.svg +2 -2
  23. package/tests/bug-reports/bug-report-20260811T075142Z/__snapshots__/bug-report-20260811T075142Z.snap.svg +18 -18
  24. package/tests/bug-reports/bug-report-20260819T091818Z/__snapshots__/bug-report-20260819T091818Z.snap.svg +2 -2
  25. package/tests/bug-reports/bug-report-20260819T091818Z/bug-report-20260819T091818Z.test.ts +21 -0
  26. package/tests/bug-reports/bug-report-20260825T103621Z/__snapshots__/bug-report-20260825T103621Z.snap.svg +5 -38
  27. package/tests/bug-reports/bug-report-20260826T072956Z/__snapshots__/bug-report-20260826T072956Z.snap.svg +3 -9
  28. package/tests/bug-reports/bug-report-20260901T055358Z/__snapshots__/bug-report-20260901T055358Z.snap.svg +18 -30
  29. package/tests/bug-reports/bug-report-20260901T055358Z/bug-report-20260901T055358Z.test.ts +33 -0
  30. package/tests/bug-reports/bug-report-20260907T110144Z/__snapshots__/bug-report-20260907T110144Z.snap.svg +282 -0
  31. package/tests/bug-reports/bug-report-20260907T110144Z/bug-report-20260907T110144Z.json +1073 -0
  32. package/tests/bug-reports/bug-report-20260907T110144Z/bug-report-20260907T110144Z.test.ts +12 -0
  33. package/tests/bug-reports/bug-report-20260907T145640Z/__snapshots__/bug-report-20260907T145640Z.snap.svg +1107 -0
  34. package/tests/bug-reports/bug-report-20260907T145640Z/bug-report-20260907T145640Z.json +3563 -0
  35. package/tests/bug-reports/bug-report-20260907T145640Z/bug-report-20260907T145640Z.test.ts +117 -0
  36. package/tests/repros/__snapshots__/repro-battery-management-bq24073.snap.svg +4 -4
  37. package/tests/repros/__snapshots__/repro-board-648-esp12f-section.snap.svg +2 -2
  38. package/tests/repros/__snapshots__/repro-core-tb67s579ftg-inline-label-routing.snap.svg +20 -20
  39. package/tests/repros/__snapshots__/repro-esp12f-section.snap.svg +37 -55
  40. package/tests/repros/__snapshots__/repro-hub-usb-sheet.snap.svg +44 -68
  41. package/tests/repros/__snapshots__/repro-mspm0l1306-capacitor-symmetry.snap.svg +3 -9
  42. package/tests/repros/__snapshots__/repro-robot-controller-imu-tof.snap.svg +199 -0
  43. package/tests/repros/__snapshots__/repro-robot-controller-imu-tof.source.svg +33 -0
  44. package/tests/repros/__snapshots__/repro-usb-power-vbus-label-detour.snap.svg +50 -74
  45. package/tests/repros/__snapshots__/repro48-555-timer-vcc-rail-label.snap.svg +2 -2
  46. package/tests/repros/__snapshots__/rp2040-robot-controller-disconnected-gnd.snap.svg +103 -0
  47. package/tests/repros/assets/repro-robot-controller-imu-tof.input.json +540 -0
  48. package/tests/repros/assets/rp2040-robot-controller.input.json +349 -0
  49. package/tests/repros/repro-battery-management-bq24073.test.ts +13 -1
  50. package/tests/repros/repro-hub-usb-sheet.test.ts +25 -0
  51. package/tests/repros/repro-robot-controller-imu-tof.test.ts +83 -0
  52. package/tests/repros/repro-usb-power-vbus-label-detour.test.ts +59 -13
  53. package/tests/repros/rp2040-robot-controller-disconnected-gnd.test.ts +59 -0
  54. package/tests/solvers/InlineNetLabelSolver/get-anchored-net-label-rendered-bounds.test.ts +24 -0
  55. package/tests/solvers/InlineNetLabelSolver/local-trace-label-shifts.test.ts +296 -0
  56. package/tests/solvers/InlineNetLabelSolver/multi-pin-connected-components.test.ts +7 -4
  57. package/tests/solvers/InlineNetLabelSolver/push-anchored-net-labels-away.test.ts +2 -1
  58. package/tests/solvers/InlineNetLabelSolver/shared-direct-and-named-connection.test.ts +62 -0
  59. package/tests/solvers/InlineNetLabelSolver/two-pin-terminal-stubs-atomic.test.ts +9 -3
  60. package/tests/solvers/TraceCleanupSolver/perpendicular-detours-preserve-endpoints.test.ts +60 -0
@@ -0,0 +1,3563 @@
1
+ {
2
+ "chips": [
3
+ {
4
+ "chipId": "schematic_component_0",
5
+ "center": {
6
+ "x": 0,
7
+ "y": 0
8
+ },
9
+ "width": 3,
10
+ "height": 4.2,
11
+ "pins": [
12
+ {
13
+ "pinId": "schematic_port_0",
14
+ "displayName": "VDDR2",
15
+ "x": -1.5,
16
+ "y": 2.0000000000000004
17
+ },
18
+ {
19
+ "pinId": "schematic_port_1",
20
+ "displayName": "DIO8",
21
+ "x": -1.5,
22
+ "y": 1.8000000000000005
23
+ },
24
+ {
25
+ "pinId": "schematic_port_2",
26
+ "displayName": "DIO9",
27
+ "x": -1.5,
28
+ "y": 1.6000000000000005
29
+ },
30
+ {
31
+ "pinId": "schematic_port_3",
32
+ "displayName": "DIO10",
33
+ "x": -1.5,
34
+ "y": 1.4000000000000004
35
+ },
36
+ {
37
+ "pinId": "schematic_port_4",
38
+ "displayName": "DIO11",
39
+ "x": -1.5,
40
+ "y": 1.2000000000000004
41
+ },
42
+ {
43
+ "pinId": "schematic_port_5",
44
+ "displayName": "DIO12",
45
+ "x": -1.5,
46
+ "y": 1.0000000000000004
47
+ },
48
+ {
49
+ "pinId": "schematic_port_6",
50
+ "displayName": "DIO13",
51
+ "x": -1.5,
52
+ "y": 0.8000000000000005
53
+ },
54
+ {
55
+ "pinId": "schematic_port_7",
56
+ "displayName": "VDDS4",
57
+ "x": -1.5,
58
+ "y": 0.6000000000000005
59
+ },
60
+ {
61
+ "pinId": "schematic_port_8",
62
+ "displayName": "DIO14",
63
+ "x": -1.5,
64
+ "y": 0.4000000000000006
65
+ },
66
+ {
67
+ "pinId": "schematic_port_9",
68
+ "displayName": "DIO15",
69
+ "x": -1.5,
70
+ "y": 0.20000000000000062
71
+ },
72
+ {
73
+ "pinId": "schematic_port_10",
74
+ "displayName": "DIO16_SWDIO",
75
+ "x": -1.5,
76
+ "y": 6.661338147750939e-16
77
+ },
78
+ {
79
+ "pinId": "schematic_port_11",
80
+ "displayName": "DIO17_SWDCK",
81
+ "x": -1.5,
82
+ "y": -0.1999999999999993
83
+ },
84
+ {
85
+ "pinId": "schematic_port_12",
86
+ "displayName": "DIO18",
87
+ "x": -1.5,
88
+ "y": -0.39999999999999947
89
+ },
90
+ {
91
+ "pinId": "schematic_port_13",
92
+ "displayName": "DIO19",
93
+ "x": -1.5,
94
+ "y": -0.5999999999999996
95
+ },
96
+ {
97
+ "pinId": "schematic_port_14",
98
+ "displayName": "DIO20_A11",
99
+ "x": -1.5,
100
+ "y": -0.7999999999999998
101
+ },
102
+ {
103
+ "pinId": "schematic_port_15",
104
+ "displayName": "DIO21_A10",
105
+ "x": -1.5,
106
+ "y": -1
107
+ },
108
+ {
109
+ "pinId": "schematic_port_16",
110
+ "displayName": "VDDS3",
111
+ "x": -1.5,
112
+ "y": -1.2000000000000002
113
+ },
114
+ {
115
+ "pinId": "schematic_port_17",
116
+ "displayName": "DIO22_A9",
117
+ "x": -1.5,
118
+ "y": -1.4000000000000004
119
+ },
120
+ {
121
+ "pinId": "schematic_port_18",
122
+ "displayName": "DIO23_A8",
123
+ "x": -1.5,
124
+ "y": -1.6000000000000005
125
+ },
126
+ {
127
+ "pinId": "schematic_port_19",
128
+ "displayName": "DIO24_A7",
129
+ "x": -1.5,
130
+ "y": -1.8000000000000007
131
+ },
132
+ {
133
+ "pinId": "schematic_port_20",
134
+ "displayName": "DIO25_A6",
135
+ "x": -1.5,
136
+ "y": -2.0000000000000004
137
+ },
138
+ {
139
+ "pinId": "schematic_port_21",
140
+ "displayName": "DIO0_A5",
141
+ "x": 1.5,
142
+ "y": -1.9000000000000006
143
+ },
144
+ {
145
+ "pinId": "schematic_port_22",
146
+ "displayName": "DIO1_A4",
147
+ "x": 1.5,
148
+ "y": -1.7000000000000006
149
+ },
150
+ {
151
+ "pinId": "schematic_port_23",
152
+ "displayName": "DIO2_A3",
153
+ "x": 1.5,
154
+ "y": -1.5000000000000004
155
+ },
156
+ {
157
+ "pinId": "schematic_port_24",
158
+ "displayName": "RSTN",
159
+ "x": 1.5,
160
+ "y": -1.3000000000000005
161
+ },
162
+ {
163
+ "pinId": "schematic_port_25",
164
+ "displayName": "DIO3_X32P",
165
+ "x": 1.5,
166
+ "y": -1.1000000000000005
167
+ },
168
+ {
169
+ "pinId": "schematic_port_26",
170
+ "displayName": "DIO4_X32N",
171
+ "x": 1.5,
172
+ "y": -0.9000000000000006
173
+ },
174
+ {
175
+ "pinId": "schematic_port_27",
176
+ "displayName": "VDDD",
177
+ "x": 1.5,
178
+ "y": -0.7000000000000006
179
+ },
180
+ {
181
+ "pinId": "schematic_port_28",
182
+ "displayName": "DIO5_A2",
183
+ "x": 1.5,
184
+ "y": -0.5000000000000007
185
+ },
186
+ {
187
+ "pinId": "schematic_port_29",
188
+ "displayName": "DCDC",
189
+ "x": 1.5,
190
+ "y": -0.3000000000000007
191
+ },
192
+ {
193
+ "pinId": "schematic_port_30",
194
+ "displayName": "VDDS2",
195
+ "x": 1.5,
196
+ "y": -0.10000000000000075
197
+ },
198
+ {
199
+ "pinId": "schematic_port_31",
200
+ "displayName": "DIO6_A1",
201
+ "x": 1.5,
202
+ "y": 0.0999999999999992
203
+ },
204
+ {
205
+ "pinId": "schematic_port_32",
206
+ "displayName": "DIO7_A0",
207
+ "x": 1.5,
208
+ "y": 0.29999999999999916
209
+ },
210
+ {
211
+ "pinId": "schematic_port_33",
212
+ "displayName": "VDDR1",
213
+ "x": 1.5,
214
+ "y": 0.49999999999999933
215
+ },
216
+ {
217
+ "pinId": "schematic_port_34",
218
+ "displayName": "X48P",
219
+ "x": 1.5,
220
+ "y": 0.6999999999999995
221
+ },
222
+ {
223
+ "pinId": "schematic_port_35",
224
+ "displayName": "X48N",
225
+ "x": 1.5,
226
+ "y": 0.8999999999999997
227
+ },
228
+ {
229
+ "pinId": "schematic_port_36",
230
+ "displayName": "NC",
231
+ "x": 1.5,
232
+ "y": 1.0999999999999999
233
+ },
234
+ {
235
+ "pinId": "schematic_port_37",
236
+ "displayName": "VDDS1",
237
+ "x": 1.5,
238
+ "y": 1.3
239
+ },
240
+ {
241
+ "pinId": "schematic_port_38",
242
+ "displayName": "ANT",
243
+ "x": 1.5,
244
+ "y": 1.5000000000000002
245
+ },
246
+ {
247
+ "pinId": "schematic_port_39",
248
+ "displayName": "RFGND",
249
+ "x": 1.5,
250
+ "y": 1.7000000000000004
251
+ },
252
+ {
253
+ "pinId": "schematic_port_40",
254
+ "displayName": "EP",
255
+ "x": 1.5,
256
+ "y": 1.9000000000000006
257
+ }
258
+ ]
259
+ },
260
+ {
261
+ "chipId": "schematic_component_1",
262
+ "center": {
263
+ "x": 13,
264
+ "y": 2
265
+ },
266
+ "width": 2.1000000000000014,
267
+ "height": 2.1999999999999993,
268
+ "pins": [
269
+ {
270
+ "pinId": "schematic_port_41",
271
+ "displayName": "IN",
272
+ "x": 11.95,
273
+ "y": 2.9
274
+ },
275
+ {
276
+ "pinId": "schematic_port_42",
277
+ "displayName": "PMID1",
278
+ "x": 11.95,
279
+ "y": 2.7
280
+ },
281
+ {
282
+ "pinId": "schematic_port_43",
283
+ "displayName": "BAT1",
284
+ "x": 11.95,
285
+ "y": 2.5
286
+ },
287
+ {
288
+ "pinId": "schematic_port_44",
289
+ "displayName": "GND",
290
+ "x": 11.95,
291
+ "y": 2.3
292
+ },
293
+ {
294
+ "pinId": "schematic_port_45",
295
+ "displayName": "N_PG",
296
+ "x": 11.95,
297
+ "y": 2.0999999999999996
298
+ },
299
+ {
300
+ "pinId": "schematic_port_46",
301
+ "displayName": "PMID2",
302
+ "x": 11.95,
303
+ "y": 1.9
304
+ },
305
+ {
306
+ "pinId": "schematic_port_47",
307
+ "displayName": "BAT2",
308
+ "x": 11.95,
309
+ "y": 1.7
310
+ },
311
+ {
312
+ "pinId": "schematic_port_48",
313
+ "displayName": "TS",
314
+ "x": 11.95,
315
+ "y": 1.5
316
+ },
317
+ {
318
+ "pinId": "schematic_port_49",
319
+ "displayName": "N_MR",
320
+ "x": 11.95,
321
+ "y": 1.3
322
+ },
323
+ {
324
+ "pinId": "schematic_port_50",
325
+ "displayName": "N_CE",
326
+ "x": 11.95,
327
+ "y": 1.1
328
+ },
329
+ {
330
+ "pinId": "schematic_port_51",
331
+ "displayName": "IMAX",
332
+ "x": 14.05,
333
+ "y": 1.1
334
+ },
335
+ {
336
+ "pinId": "schematic_port_52",
337
+ "displayName": "ADCIN",
338
+ "x": 14.05,
339
+ "y": 1.3
340
+ },
341
+ {
342
+ "pinId": "schematic_port_53",
343
+ "displayName": "VDD",
344
+ "x": 14.05,
345
+ "y": 1.5
346
+ },
347
+ {
348
+ "pinId": "schematic_port_54",
349
+ "displayName": "N_INT",
350
+ "x": 14.05,
351
+ "y": 1.7000000000000002
352
+ },
353
+ {
354
+ "pinId": "schematic_port_55",
355
+ "displayName": "N_LP",
356
+ "x": 14.05,
357
+ "y": 1.9000000000000001
358
+ },
359
+ {
360
+ "pinId": "schematic_port_56",
361
+ "displayName": "LSLDO",
362
+ "x": 14.05,
363
+ "y": 2.1
364
+ },
365
+ {
366
+ "pinId": "schematic_port_57",
367
+ "displayName": "VIO",
368
+ "x": 14.05,
369
+ "y": 2.3
370
+ },
371
+ {
372
+ "pinId": "schematic_port_58",
373
+ "displayName": "SDA",
374
+ "x": 14.05,
375
+ "y": 2.5
376
+ },
377
+ {
378
+ "pinId": "schematic_port_59",
379
+ "displayName": "SCL",
380
+ "x": 14.05,
381
+ "y": 2.7
382
+ },
383
+ {
384
+ "pinId": "schematic_port_60",
385
+ "displayName": "VINLS",
386
+ "x": 14.05,
387
+ "y": 2.9
388
+ }
389
+ ]
390
+ },
391
+ {
392
+ "chipId": "schematic_component_2",
393
+ "center": {
394
+ "x": 24,
395
+ "y": 2
396
+ },
397
+ "width": 2.1000000000000014,
398
+ "height": 1,
399
+ "pins": [
400
+ {
401
+ "pinId": "schematic_port_61",
402
+ "displayName": "GPOUT",
403
+ "x": 22.95,
404
+ "y": 2.4
405
+ },
406
+ {
407
+ "pinId": "schematic_port_62",
408
+ "displayName": "BIN",
409
+ "x": 22.95,
410
+ "y": 2.2
411
+ },
412
+ {
413
+ "pinId": "schematic_port_63",
414
+ "displayName": "VSS1",
415
+ "x": 22.95,
416
+ "y": 2
417
+ },
418
+ {
419
+ "pinId": "schematic_port_64",
420
+ "displayName": "SDA",
421
+ "x": 22.95,
422
+ "y": 1.7999999999999998
423
+ },
424
+ {
425
+ "pinId": "schematic_port_65",
426
+ "displayName": "VSS2",
427
+ "x": 22.95,
428
+ "y": 1.6
429
+ },
430
+ {
431
+ "pinId": "schematic_port_66",
432
+ "displayName": "SRX",
433
+ "x": 25.05,
434
+ "y": 1.7
435
+ },
436
+ {
437
+ "pinId": "schematic_port_67",
438
+ "displayName": "SCL",
439
+ "x": 25.05,
440
+ "y": 1.9
441
+ },
442
+ {
443
+ "pinId": "schematic_port_68",
444
+ "displayName": "VDD",
445
+ "x": 25.05,
446
+ "y": 2.1
447
+ },
448
+ {
449
+ "pinId": "schematic_port_69",
450
+ "displayName": "BAT",
451
+ "x": 25.05,
452
+ "y": 2.3
453
+ }
454
+ ]
455
+ },
456
+ {
457
+ "chipId": "schematic_component_3",
458
+ "center": {
459
+ "x": 24,
460
+ "y": -7
461
+ },
462
+ "width": 2,
463
+ "height": 1.4000000000000004,
464
+ "pins": [
465
+ {
466
+ "pinId": "schematic_port_70",
467
+ "displayName": "SDO",
468
+ "x": 23,
469
+ "y": -6.5
470
+ },
471
+ {
472
+ "pinId": "schematic_port_71",
473
+ "displayName": "SDX",
474
+ "x": 23,
475
+ "y": -6.7
476
+ },
477
+ {
478
+ "pinId": "schematic_port_72",
479
+ "displayName": "VDDIO",
480
+ "x": 23,
481
+ "y": -6.9
482
+ },
483
+ {
484
+ "pinId": "schematic_port_73",
485
+ "displayName": "NC2",
486
+ "x": 23,
487
+ "y": -7.1
488
+ },
489
+ {
490
+ "pinId": "schematic_port_74",
491
+ "displayName": "INT1",
492
+ "x": 23,
493
+ "y": -7.3
494
+ },
495
+ {
496
+ "pinId": "schematic_port_75",
497
+ "displayName": "INT2",
498
+ "x": 23,
499
+ "y": -7.5
500
+ },
501
+ {
502
+ "pinId": "schematic_port_76",
503
+ "displayName": "VDD",
504
+ "x": 25,
505
+ "y": -7.5
506
+ },
507
+ {
508
+ "pinId": "schematic_port_77",
509
+ "displayName": "GNDIO",
510
+ "x": 25,
511
+ "y": -7.3
512
+ },
513
+ {
514
+ "pinId": "schematic_port_78",
515
+ "displayName": "GND",
516
+ "x": 25,
517
+ "y": -7.1
518
+ },
519
+ {
520
+ "pinId": "schematic_port_79",
521
+ "displayName": "CSB",
522
+ "x": 25,
523
+ "y": -6.9
524
+ },
525
+ {
526
+ "pinId": "schematic_port_80",
527
+ "displayName": "NC1",
528
+ "x": 25,
529
+ "y": -6.7
530
+ },
531
+ {
532
+ "pinId": "schematic_port_81",
533
+ "displayName": "SCX",
534
+ "x": 25,
535
+ "y": -6.5
536
+ }
537
+ ]
538
+ },
539
+ {
540
+ "chipId": "schematic_component_4",
541
+ "center": {
542
+ "x": 13,
543
+ "y": -7
544
+ },
545
+ "width": 2,
546
+ "height": 0.5999999999999996,
547
+ "pins": [
548
+ {
549
+ "pinId": "schematic_port_82",
550
+ "displayName": "IN",
551
+ "x": 12,
552
+ "y": -6.8
553
+ },
554
+ {
555
+ "pinId": "schematic_port_83",
556
+ "displayName": "GND",
557
+ "x": 12,
558
+ "y": -7
559
+ },
560
+ {
561
+ "pinId": "schematic_port_84",
562
+ "displayName": "EN",
563
+ "x": 12,
564
+ "y": -7.2
565
+ },
566
+ {
567
+ "pinId": "schematic_port_85",
568
+ "displayName": "NC",
569
+ "x": 14,
570
+ "y": -7.1
571
+ },
572
+ {
573
+ "pinId": "schematic_port_86",
574
+ "displayName": "OUT",
575
+ "x": 14,
576
+ "y": -6.9
577
+ }
578
+ ]
579
+ },
580
+ {
581
+ "chipId": "schematic_component_5",
582
+ "center": {
583
+ "x": 35,
584
+ "y": 2
585
+ },
586
+ "width": 2.0999999999999943,
587
+ "height": 0.7999999999999998,
588
+ "pins": [
589
+ {
590
+ "pinId": "schematic_port_87",
591
+ "displayName": "VOUT",
592
+ "x": 33.95,
593
+ "y": 2.2
594
+ },
595
+ {
596
+ "pinId": "schematic_port_88",
597
+ "displayName": "EN",
598
+ "x": 33.95,
599
+ "y": 2
600
+ },
601
+ {
602
+ "pinId": "schematic_port_89",
603
+ "displayName": "SW",
604
+ "x": 33.95,
605
+ "y": 1.8
606
+ },
607
+ {
608
+ "pinId": "schematic_port_90",
609
+ "displayName": "FB",
610
+ "x": 36.05,
611
+ "y": 1.8
612
+ },
613
+ {
614
+ "pinId": "schematic_port_91",
615
+ "displayName": "GND",
616
+ "x": 36.05,
617
+ "y": 2
618
+ },
619
+ {
620
+ "pinId": "schematic_port_92",
621
+ "displayName": "VIN",
622
+ "x": 36.05,
623
+ "y": 2.2
624
+ }
625
+ ]
626
+ },
627
+ {
628
+ "chipId": "schematic_component_6",
629
+ "center": {
630
+ "x": 35,
631
+ "y": -7
632
+ },
633
+ "width": 2.4000000000000057,
634
+ "height": 1.5999999999999996,
635
+ "pins": [
636
+ {
637
+ "pinId": "schematic_port_93",
638
+ "displayName": "C2P",
639
+ "x": 33.8,
640
+ "y": -6.4
641
+ },
642
+ {
643
+ "pinId": "schematic_port_94",
644
+ "displayName": "C2N",
645
+ "x": 33.8,
646
+ "y": -6.6
647
+ },
648
+ {
649
+ "pinId": "schematic_port_95",
650
+ "displayName": "C1P",
651
+ "x": 33.8,
652
+ "y": -6.8
653
+ },
654
+ {
655
+ "pinId": "schematic_port_96",
656
+ "displayName": "C1N",
657
+ "x": 33.8,
658
+ "y": -7
659
+ },
660
+ {
661
+ "pinId": "schematic_port_97",
662
+ "displayName": "VBAT",
663
+ "x": 33.8,
664
+ "y": -7.2
665
+ },
666
+ {
667
+ "pinId": "schematic_port_98",
668
+ "displayName": "VBREF",
669
+ "x": 33.8,
670
+ "y": -7.4
671
+ },
672
+ {
673
+ "pinId": "schematic_port_99",
674
+ "displayName": "VSS",
675
+ "x": 33.8,
676
+ "y": -7.6
677
+ },
678
+ {
679
+ "pinId": "schematic_port_100",
680
+ "displayName": "VDD",
681
+ "x": 36.2,
682
+ "y": -7.6
683
+ },
684
+ {
685
+ "pinId": "schematic_port_101",
686
+ "displayName": "RESN",
687
+ "x": 36.2,
688
+ "y": -7.4
689
+ },
690
+ {
691
+ "pinId": "schematic_port_102",
692
+ "displayName": "SCL",
693
+ "x": 36.2,
694
+ "y": -7.2
695
+ },
696
+ {
697
+ "pinId": "schematic_port_103",
698
+ "displayName": "SDA",
699
+ "x": 36.2,
700
+ "y": -7
701
+ },
702
+ {
703
+ "pinId": "schematic_port_104",
704
+ "displayName": "IREF",
705
+ "x": 36.2,
706
+ "y": -6.8
707
+ },
708
+ {
709
+ "pinId": "schematic_port_105",
710
+ "displayName": "VCOMH",
711
+ "x": 36.2,
712
+ "y": -6.6
713
+ },
714
+ {
715
+ "pinId": "schematic_port_106",
716
+ "displayName": "VCC",
717
+ "x": 36.2,
718
+ "y": -6.4
719
+ }
720
+ ]
721
+ },
722
+ {
723
+ "chipId": "schematic_component_7",
724
+ "center": {
725
+ "x": -10,
726
+ "y": 2
727
+ },
728
+ "width": 2.3000000000000007,
729
+ "height": 0.5999999999999999,
730
+ "pins": [
731
+ {
732
+ "pinId": "schematic_port_107",
733
+ "displayName": "X1",
734
+ "x": -11.15,
735
+ "y": 2.1
736
+ },
737
+ {
738
+ "pinId": "schematic_port_108",
739
+ "displayName": "GND1",
740
+ "x": -11.15,
741
+ "y": 1.9
742
+ },
743
+ {
744
+ "pinId": "schematic_port_109",
745
+ "displayName": "X2",
746
+ "x": -8.85,
747
+ "y": 1.9
748
+ },
749
+ {
750
+ "pinId": "schematic_port_110",
751
+ "displayName": "GND2",
752
+ "x": -8.85,
753
+ "y": 2.1
754
+ }
755
+ ]
756
+ },
757
+ {
758
+ "chipId": "schematic_component_8",
759
+ "center": {
760
+ "x": -10,
761
+ "y": -2
762
+ },
763
+ "width": 0.8000000000000007,
764
+ "height": 0.28000000000000025,
765
+ "pins": [
766
+ {
767
+ "pinId": "schematic_port_111",
768
+ "displayName": "2",
769
+ "x": -9.6,
770
+ "y": -2
771
+ },
772
+ {
773
+ "pinId": "schematic_port_112",
774
+ "displayName": "1",
775
+ "x": -10.4,
776
+ "y": -2
777
+ }
778
+ ]
779
+ },
780
+ {
781
+ "chipId": "schematic_component_9",
782
+ "center": {
783
+ "x": -10,
784
+ "y": -5.95
785
+ },
786
+ "width": 0.3999999999999986,
787
+ "height": 0.9000000000000004,
788
+ "pins": [
789
+ {
790
+ "pinId": "schematic_port_113",
791
+ "displayName": "ANT",
792
+ "x": -10,
793
+ "y": -6.4
794
+ },
795
+ {
796
+ "pinId": "schematic_port_114",
797
+ "displayName": "2",
798
+ "x": -10.2,
799
+ "y": -5.7
800
+ }
801
+ ]
802
+ },
803
+ {
804
+ "chipId": "schematic_component_10",
805
+ "center": {
806
+ "x": 13,
807
+ "y": -12
808
+ },
809
+ "width": 0.9400000000000013,
810
+ "height": 0.7189106999999986,
811
+ "pins": [
812
+ {
813
+ "pinId": "schematic_port_115",
814
+ "displayName": "1",
815
+ "x": 12.53,
816
+ "y": -12,
817
+ "_facingDirection": "x-"
818
+ },
819
+ {
820
+ "pinId": "schematic_port_116",
821
+ "displayName": "2",
822
+ "x": 13.47,
823
+ "y": -12,
824
+ "_facingDirection": "x+"
825
+ }
826
+ ]
827
+ },
828
+ {
829
+ "chipId": "schematic_component_11",
830
+ "center": {
831
+ "x": 24,
832
+ "y": -12
833
+ },
834
+ "width": 0.7999999999999972,
835
+ "height": 0.35999999999999943,
836
+ "pins": [
837
+ {
838
+ "pinId": "schematic_port_117",
839
+ "displayName": "2",
840
+ "x": 24.4,
841
+ "y": -12
842
+ },
843
+ {
844
+ "pinId": "schematic_port_118",
845
+ "displayName": "1",
846
+ "x": 23.6,
847
+ "y": -12
848
+ }
849
+ ]
850
+ },
851
+ {
852
+ "chipId": "schematic_component_12",
853
+ "center": {
854
+ "x": 35,
855
+ "y": -13
856
+ },
857
+ "width": 2.0999999999999943,
858
+ "height": 0.6000000000000014,
859
+ "pins": [
860
+ {
861
+ "pinId": "schematic_port_119",
862
+ "displayName": "P1",
863
+ "x": 33.95,
864
+ "y": -12.9
865
+ },
866
+ {
867
+ "pinId": "schematic_port_120",
868
+ "displayName": "P2",
869
+ "x": 33.95,
870
+ "y": -13.1
871
+ }
872
+ ]
873
+ },
874
+ {
875
+ "chipId": "schematic_component_13",
876
+ "center": {
877
+ "x": 24,
878
+ "y": 8
879
+ },
880
+ "width": 2.1000000000000014,
881
+ "height": 0.8000000000000007,
882
+ "pins": [
883
+ {
884
+ "pinId": "schematic_port_121",
885
+ "displayName": "P1",
886
+ "x": 22.95,
887
+ "y": 8.2
888
+ },
889
+ {
890
+ "pinId": "schematic_port_122",
891
+ "displayName": "P2",
892
+ "x": 22.95,
893
+ "y": 8
894
+ },
895
+ {
896
+ "pinId": "schematic_port_123",
897
+ "displayName": "P3",
898
+ "x": 22.95,
899
+ "y": 7.8
900
+ }
901
+ ]
902
+ },
903
+ {
904
+ "chipId": "schematic_component_14",
905
+ "center": {
906
+ "x": -11.8675,
907
+ "y": -20
908
+ },
909
+ "width": 1.1649999999999991,
910
+ "height": 0.759999999999998,
911
+ "pins": [
912
+ {
913
+ "pinId": "schematic_port_124",
914
+ "displayName": "anode",
915
+ "x": -12,
916
+ "y": -19.62,
917
+ "_facingDirection": "y+"
918
+ },
919
+ {
920
+ "pinId": "schematic_port_125",
921
+ "displayName": "cathode",
922
+ "x": -12,
923
+ "y": -20.38,
924
+ "_facingDirection": "y-"
925
+ }
926
+ ]
927
+ },
928
+ {
929
+ "chipId": "schematic_component_15",
930
+ "center": {
931
+ "x": -5.9275,
932
+ "y": -20
933
+ },
934
+ "width": 1.0450000000000008,
935
+ "height": 0.759999999999998,
936
+ "pins": [
937
+ {
938
+ "pinId": "schematic_port_126",
939
+ "displayName": "anode",
940
+ "x": -6,
941
+ "y": -19.62,
942
+ "_facingDirection": "y+"
943
+ },
944
+ {
945
+ "pinId": "schematic_port_127",
946
+ "displayName": "cathode",
947
+ "x": -6,
948
+ "y": -20.38,
949
+ "_facingDirection": "y-"
950
+ }
951
+ ]
952
+ },
953
+ {
954
+ "chipId": "schematic_component_16",
955
+ "center": {
956
+ "x": 0.012499999999999983,
957
+ "y": -20
958
+ },
959
+ "width": 0.925,
960
+ "height": 0.759999999999998,
961
+ "pins": [
962
+ {
963
+ "pinId": "schematic_port_128",
964
+ "displayName": "anode",
965
+ "x": -1.8369701987210297e-17,
966
+ "y": -19.62,
967
+ "_facingDirection": "y+"
968
+ },
969
+ {
970
+ "pinId": "schematic_port_129",
971
+ "displayName": "cathode",
972
+ "x": 1.8369701987210297e-17,
973
+ "y": -20.38,
974
+ "_facingDirection": "y-"
975
+ }
976
+ ]
977
+ },
978
+ {
979
+ "chipId": "schematic_component_17",
980
+ "center": {
981
+ "x": 6.1325,
982
+ "y": -20
983
+ },
984
+ "width": 1.165,
985
+ "height": 0.759999999999998,
986
+ "pins": [
987
+ {
988
+ "pinId": "schematic_port_130",
989
+ "displayName": "anode",
990
+ "x": 6,
991
+ "y": -19.62,
992
+ "_facingDirection": "y+"
993
+ },
994
+ {
995
+ "pinId": "schematic_port_131",
996
+ "displayName": "cathode",
997
+ "x": 6,
998
+ "y": -20.38,
999
+ "_facingDirection": "y-"
1000
+ }
1001
+ ]
1002
+ },
1003
+ {
1004
+ "chipId": "schematic_component_18",
1005
+ "center": {
1006
+ "x": 12.0125,
1007
+ "y": -20
1008
+ },
1009
+ "width": 0.9249999999999989,
1010
+ "height": 0.759999999999998,
1011
+ "pins": [
1012
+ {
1013
+ "pinId": "schematic_port_132",
1014
+ "displayName": "anode",
1015
+ "x": 12,
1016
+ "y": -19.62,
1017
+ "_facingDirection": "y+"
1018
+ },
1019
+ {
1020
+ "pinId": "schematic_port_133",
1021
+ "displayName": "cathode",
1022
+ "x": 12,
1023
+ "y": -20.38,
1024
+ "_facingDirection": "y-"
1025
+ }
1026
+ ]
1027
+ },
1028
+ {
1029
+ "chipId": "schematic_component_19",
1030
+ "center": {
1031
+ "x": 18.1325,
1032
+ "y": -20
1033
+ },
1034
+ "width": 1.1649999999999991,
1035
+ "height": 0.759999999999998,
1036
+ "pins": [
1037
+ {
1038
+ "pinId": "schematic_port_134",
1039
+ "displayName": "anode",
1040
+ "x": 18,
1041
+ "y": -19.62,
1042
+ "_facingDirection": "y+"
1043
+ },
1044
+ {
1045
+ "pinId": "schematic_port_135",
1046
+ "displayName": "cathode",
1047
+ "x": 18,
1048
+ "y": -20.38,
1049
+ "_facingDirection": "y-"
1050
+ }
1051
+ ]
1052
+ },
1053
+ {
1054
+ "chipId": "schematic_component_20",
1055
+ "center": {
1056
+ "x": 24.1325,
1057
+ "y": -20
1058
+ },
1059
+ "width": 1.1649999999999991,
1060
+ "height": 0.759999999999998,
1061
+ "pins": [
1062
+ {
1063
+ "pinId": "schematic_port_136",
1064
+ "displayName": "anode",
1065
+ "x": 24,
1066
+ "y": -19.62,
1067
+ "_facingDirection": "y+"
1068
+ },
1069
+ {
1070
+ "pinId": "schematic_port_137",
1071
+ "displayName": "cathode",
1072
+ "x": 24,
1073
+ "y": -20.38,
1074
+ "_facingDirection": "y-"
1075
+ }
1076
+ ]
1077
+ },
1078
+ {
1079
+ "chipId": "schematic_component_21",
1080
+ "center": {
1081
+ "x": 30.0125,
1082
+ "y": -20
1083
+ },
1084
+ "width": 0.9249999999999972,
1085
+ "height": 0.759999999999998,
1086
+ "pins": [
1087
+ {
1088
+ "pinId": "schematic_port_138",
1089
+ "displayName": "anode",
1090
+ "x": 30,
1091
+ "y": -19.62,
1092
+ "_facingDirection": "y+"
1093
+ },
1094
+ {
1095
+ "pinId": "schematic_port_139",
1096
+ "displayName": "cathode",
1097
+ "x": 30,
1098
+ "y": -20.38,
1099
+ "_facingDirection": "y-"
1100
+ }
1101
+ ]
1102
+ },
1103
+ {
1104
+ "chipId": "schematic_component_22",
1105
+ "center": {
1106
+ "x": 36.1325,
1107
+ "y": -20
1108
+ },
1109
+ "width": 1.1650000000000063,
1110
+ "height": 0.759999999999998,
1111
+ "pins": [
1112
+ {
1113
+ "pinId": "schematic_port_140",
1114
+ "displayName": "anode",
1115
+ "x": 36,
1116
+ "y": -19.62,
1117
+ "_facingDirection": "y+"
1118
+ },
1119
+ {
1120
+ "pinId": "schematic_port_141",
1121
+ "displayName": "cathode",
1122
+ "x": 36,
1123
+ "y": -20.38,
1124
+ "_facingDirection": "y-"
1125
+ }
1126
+ ]
1127
+ },
1128
+ {
1129
+ "chipId": "schematic_component_23",
1130
+ "center": {
1131
+ "x": -11.8675,
1132
+ "y": -24
1133
+ },
1134
+ "width": 1.1649999999999991,
1135
+ "height": 0.759999999999998,
1136
+ "pins": [
1137
+ {
1138
+ "pinId": "schematic_port_142",
1139
+ "displayName": "anode",
1140
+ "x": -12,
1141
+ "y": -23.62,
1142
+ "_facingDirection": "y+"
1143
+ },
1144
+ {
1145
+ "pinId": "schematic_port_143",
1146
+ "displayName": "cathode",
1147
+ "x": -12,
1148
+ "y": -24.38,
1149
+ "_facingDirection": "y-"
1150
+ }
1151
+ ]
1152
+ },
1153
+ {
1154
+ "chipId": "schematic_component_24",
1155
+ "center": {
1156
+ "x": -5.8675,
1157
+ "y": -24
1158
+ },
1159
+ "width": 1.165,
1160
+ "height": 0.759999999999998,
1161
+ "pins": [
1162
+ {
1163
+ "pinId": "schematic_port_144",
1164
+ "displayName": "anode",
1165
+ "x": -6,
1166
+ "y": -23.62,
1167
+ "_facingDirection": "y+"
1168
+ },
1169
+ {
1170
+ "pinId": "schematic_port_145",
1171
+ "displayName": "cathode",
1172
+ "x": -6,
1173
+ "y": -24.38,
1174
+ "_facingDirection": "y-"
1175
+ }
1176
+ ]
1177
+ },
1178
+ {
1179
+ "chipId": "schematic_component_25",
1180
+ "center": {
1181
+ "x": 0.13249999999999998,
1182
+ "y": -24
1183
+ },
1184
+ "width": 1.165,
1185
+ "height": 0.759999999999998,
1186
+ "pins": [
1187
+ {
1188
+ "pinId": "schematic_port_146",
1189
+ "displayName": "anode",
1190
+ "x": -1.8369701987210297e-17,
1191
+ "y": -23.62,
1192
+ "_facingDirection": "y+"
1193
+ },
1194
+ {
1195
+ "pinId": "schematic_port_147",
1196
+ "displayName": "cathode",
1197
+ "x": 1.8369701987210297e-17,
1198
+ "y": -24.38,
1199
+ "_facingDirection": "y-"
1200
+ }
1201
+ ]
1202
+ },
1203
+ {
1204
+ "chipId": "schematic_component_26",
1205
+ "center": {
1206
+ "x": 6.1325,
1207
+ "y": -24
1208
+ },
1209
+ "width": 1.165,
1210
+ "height": 0.759999999999998,
1211
+ "pins": [
1212
+ {
1213
+ "pinId": "schematic_port_148",
1214
+ "displayName": "anode",
1215
+ "x": 6,
1216
+ "y": -23.62,
1217
+ "_facingDirection": "y+"
1218
+ },
1219
+ {
1220
+ "pinId": "schematic_port_149",
1221
+ "displayName": "cathode",
1222
+ "x": 6,
1223
+ "y": -24.38,
1224
+ "_facingDirection": "y-"
1225
+ }
1226
+ ]
1227
+ },
1228
+ {
1229
+ "chipId": "schematic_component_27",
1230
+ "center": {
1231
+ "x": 12.1325,
1232
+ "y": -24
1233
+ },
1234
+ "width": 1.1649999999999991,
1235
+ "height": 0.759999999999998,
1236
+ "pins": [
1237
+ {
1238
+ "pinId": "schematic_port_150",
1239
+ "displayName": "anode",
1240
+ "x": 12,
1241
+ "y": -23.62,
1242
+ "_facingDirection": "y+"
1243
+ },
1244
+ {
1245
+ "pinId": "schematic_port_151",
1246
+ "displayName": "cathode",
1247
+ "x": 12,
1248
+ "y": -24.38,
1249
+ "_facingDirection": "y-"
1250
+ }
1251
+ ]
1252
+ },
1253
+ {
1254
+ "chipId": "schematic_component_28",
1255
+ "center": {
1256
+ "x": 18.1325,
1257
+ "y": -24
1258
+ },
1259
+ "width": 1.1649999999999991,
1260
+ "height": 0.759999999999998,
1261
+ "pins": [
1262
+ {
1263
+ "pinId": "schematic_port_152",
1264
+ "displayName": "anode",
1265
+ "x": 18,
1266
+ "y": -23.62,
1267
+ "_facingDirection": "y+"
1268
+ },
1269
+ {
1270
+ "pinId": "schematic_port_153",
1271
+ "displayName": "cathode",
1272
+ "x": 18,
1273
+ "y": -24.38,
1274
+ "_facingDirection": "y-"
1275
+ }
1276
+ ]
1277
+ },
1278
+ {
1279
+ "chipId": "schematic_component_29",
1280
+ "center": {
1281
+ "x": 24.072499999999998,
1282
+ "y": -24
1283
+ },
1284
+ "width": 1.0449999999999982,
1285
+ "height": 0.759999999999998,
1286
+ "pins": [
1287
+ {
1288
+ "pinId": "schematic_port_154",
1289
+ "displayName": "anode",
1290
+ "x": 24,
1291
+ "y": -23.62,
1292
+ "_facingDirection": "y+"
1293
+ },
1294
+ {
1295
+ "pinId": "schematic_port_155",
1296
+ "displayName": "cathode",
1297
+ "x": 24,
1298
+ "y": -24.38,
1299
+ "_facingDirection": "y-"
1300
+ }
1301
+ ]
1302
+ },
1303
+ {
1304
+ "chipId": "schematic_component_30",
1305
+ "center": {
1306
+ "x": 30.072499999999998,
1307
+ "y": -24
1308
+ },
1309
+ "width": 1.0449999999999982,
1310
+ "height": 0.759999999999998,
1311
+ "pins": [
1312
+ {
1313
+ "pinId": "schematic_port_156",
1314
+ "displayName": "anode",
1315
+ "x": 30,
1316
+ "y": -23.62,
1317
+ "_facingDirection": "y+"
1318
+ },
1319
+ {
1320
+ "pinId": "schematic_port_157",
1321
+ "displayName": "cathode",
1322
+ "x": 30,
1323
+ "y": -24.38,
1324
+ "_facingDirection": "y-"
1325
+ }
1326
+ ]
1327
+ },
1328
+ {
1329
+ "chipId": "schematic_component_31",
1330
+ "center": {
1331
+ "x": 36.1325,
1332
+ "y": -24
1333
+ },
1334
+ "width": 1.1650000000000063,
1335
+ "height": 0.759999999999998,
1336
+ "pins": [
1337
+ {
1338
+ "pinId": "schematic_port_158",
1339
+ "displayName": "anode",
1340
+ "x": 36,
1341
+ "y": -23.62,
1342
+ "_facingDirection": "y+"
1343
+ },
1344
+ {
1345
+ "pinId": "schematic_port_159",
1346
+ "displayName": "cathode",
1347
+ "x": 36,
1348
+ "y": -24.38,
1349
+ "_facingDirection": "y-"
1350
+ }
1351
+ ]
1352
+ },
1353
+ {
1354
+ "chipId": "schematic_component_32",
1355
+ "center": {
1356
+ "x": -11.8675,
1357
+ "y": -28
1358
+ },
1359
+ "width": 1.1649999999999991,
1360
+ "height": 0.759999999999998,
1361
+ "pins": [
1362
+ {
1363
+ "pinId": "schematic_port_160",
1364
+ "displayName": "anode",
1365
+ "x": -12,
1366
+ "y": -27.62,
1367
+ "_facingDirection": "y+"
1368
+ },
1369
+ {
1370
+ "pinId": "schematic_port_161",
1371
+ "displayName": "cathode",
1372
+ "x": -12,
1373
+ "y": -28.38,
1374
+ "_facingDirection": "y-"
1375
+ }
1376
+ ]
1377
+ },
1378
+ {
1379
+ "chipId": "schematic_component_33",
1380
+ "center": {
1381
+ "x": -5.9875,
1382
+ "y": -28
1383
+ },
1384
+ "width": 0.9250000000000007,
1385
+ "height": 0.759999999999998,
1386
+ "pins": [
1387
+ {
1388
+ "pinId": "schematic_port_162",
1389
+ "displayName": "anode",
1390
+ "x": -6,
1391
+ "y": -27.62,
1392
+ "_facingDirection": "y+"
1393
+ },
1394
+ {
1395
+ "pinId": "schematic_port_163",
1396
+ "displayName": "cathode",
1397
+ "x": -6,
1398
+ "y": -28.38,
1399
+ "_facingDirection": "y-"
1400
+ }
1401
+ ]
1402
+ },
1403
+ {
1404
+ "chipId": "schematic_component_34",
1405
+ "center": {
1406
+ "x": 0.13249999999999998,
1407
+ "y": -28
1408
+ },
1409
+ "width": 1.165,
1410
+ "height": 0.759999999999998,
1411
+ "pins": [
1412
+ {
1413
+ "pinId": "schematic_port_164",
1414
+ "displayName": "anode",
1415
+ "x": -1.8369701987210297e-17,
1416
+ "y": -27.62,
1417
+ "_facingDirection": "y+"
1418
+ },
1419
+ {
1420
+ "pinId": "schematic_port_165",
1421
+ "displayName": "cathode",
1422
+ "x": 1.8369701987210297e-17,
1423
+ "y": -28.38,
1424
+ "_facingDirection": "y-"
1425
+ }
1426
+ ]
1427
+ },
1428
+ {
1429
+ "chipId": "schematic_component_35",
1430
+ "center": {
1431
+ "x": 6.0725,
1432
+ "y": -28
1433
+ },
1434
+ "width": 1.0450000000000008,
1435
+ "height": 0.759999999999998,
1436
+ "pins": [
1437
+ {
1438
+ "pinId": "schematic_port_166",
1439
+ "displayName": "anode",
1440
+ "x": 6,
1441
+ "y": -27.62,
1442
+ "_facingDirection": "y+"
1443
+ },
1444
+ {
1445
+ "pinId": "schematic_port_167",
1446
+ "displayName": "cathode",
1447
+ "x": 6,
1448
+ "y": -28.38,
1449
+ "_facingDirection": "y-"
1450
+ }
1451
+ ]
1452
+ },
1453
+ {
1454
+ "chipId": "schematic_component_36",
1455
+ "center": {
1456
+ "x": 12.072500000000002,
1457
+ "y": -28
1458
+ },
1459
+ "width": 1.045,
1460
+ "height": 0.759999999999998,
1461
+ "pins": [
1462
+ {
1463
+ "pinId": "schematic_port_168",
1464
+ "displayName": "anode",
1465
+ "x": 12,
1466
+ "y": -27.62,
1467
+ "_facingDirection": "y+"
1468
+ },
1469
+ {
1470
+ "pinId": "schematic_port_169",
1471
+ "displayName": "cathode",
1472
+ "x": 12,
1473
+ "y": -28.38,
1474
+ "_facingDirection": "y-"
1475
+ }
1476
+ ]
1477
+ },
1478
+ {
1479
+ "chipId": "schematic_component_37",
1480
+ "center": {
1481
+ "x": 18.1325,
1482
+ "y": -28
1483
+ },
1484
+ "width": 1.1649999999999991,
1485
+ "height": 0.759999999999998,
1486
+ "pins": [
1487
+ {
1488
+ "pinId": "schematic_port_170",
1489
+ "displayName": "anode",
1490
+ "x": 18,
1491
+ "y": -27.62,
1492
+ "_facingDirection": "y+"
1493
+ },
1494
+ {
1495
+ "pinId": "schematic_port_171",
1496
+ "displayName": "cathode",
1497
+ "x": 18,
1498
+ "y": -28.38,
1499
+ "_facingDirection": "y-"
1500
+ }
1501
+ ]
1502
+ },
1503
+ {
1504
+ "chipId": "schematic_component_38",
1505
+ "center": {
1506
+ "x": 24.1325,
1507
+ "y": -28
1508
+ },
1509
+ "width": 1.1649999999999991,
1510
+ "height": 0.759999999999998,
1511
+ "pins": [
1512
+ {
1513
+ "pinId": "schematic_port_172",
1514
+ "displayName": "anode",
1515
+ "x": 24,
1516
+ "y": -27.62,
1517
+ "_facingDirection": "y+"
1518
+ },
1519
+ {
1520
+ "pinId": "schematic_port_173",
1521
+ "displayName": "cathode",
1522
+ "x": 24,
1523
+ "y": -28.38,
1524
+ "_facingDirection": "y-"
1525
+ }
1526
+ ]
1527
+ },
1528
+ {
1529
+ "chipId": "schematic_component_39",
1530
+ "center": {
1531
+ "x": 30.1325,
1532
+ "y": -28
1533
+ },
1534
+ "width": 1.1649999999999991,
1535
+ "height": 0.759999999999998,
1536
+ "pins": [
1537
+ {
1538
+ "pinId": "schematic_port_174",
1539
+ "displayName": "anode",
1540
+ "x": 30,
1541
+ "y": -27.62,
1542
+ "_facingDirection": "y+"
1543
+ },
1544
+ {
1545
+ "pinId": "schematic_port_175",
1546
+ "displayName": "cathode",
1547
+ "x": 30,
1548
+ "y": -28.38,
1549
+ "_facingDirection": "y-"
1550
+ }
1551
+ ]
1552
+ },
1553
+ {
1554
+ "chipId": "schematic_component_40",
1555
+ "center": {
1556
+ "x": 36.1325,
1557
+ "y": -28
1558
+ },
1559
+ "width": 1.1650000000000063,
1560
+ "height": 0.759999999999998,
1561
+ "pins": [
1562
+ {
1563
+ "pinId": "schematic_port_176",
1564
+ "displayName": "anode",
1565
+ "x": 36,
1566
+ "y": -27.62,
1567
+ "_facingDirection": "y+"
1568
+ },
1569
+ {
1570
+ "pinId": "schematic_port_177",
1571
+ "displayName": "cathode",
1572
+ "x": 36,
1573
+ "y": -28.38,
1574
+ "_facingDirection": "y-"
1575
+ }
1576
+ ]
1577
+ },
1578
+ {
1579
+ "chipId": "schematic_component_41",
1580
+ "center": {
1581
+ "x": -11.927499999999998,
1582
+ "y": -32
1583
+ },
1584
+ "width": 1.045,
1585
+ "height": 0.7600000000000087,
1586
+ "pins": [
1587
+ {
1588
+ "pinId": "schematic_port_178",
1589
+ "displayName": "anode",
1590
+ "x": -12,
1591
+ "y": -31.619999999999997,
1592
+ "_facingDirection": "y+"
1593
+ },
1594
+ {
1595
+ "pinId": "schematic_port_179",
1596
+ "displayName": "cathode",
1597
+ "x": -12,
1598
+ "y": -32.38,
1599
+ "_facingDirection": "y-"
1600
+ }
1601
+ ]
1602
+ },
1603
+ {
1604
+ "chipId": "schematic_component_42",
1605
+ "center": {
1606
+ "x": -5.9875,
1607
+ "y": -32
1608
+ },
1609
+ "width": 0.9250000000000007,
1610
+ "height": 0.7600000000000087,
1611
+ "pins": [
1612
+ {
1613
+ "pinId": "schematic_port_180",
1614
+ "displayName": "anode",
1615
+ "x": -6,
1616
+ "y": -31.619999999999997,
1617
+ "_facingDirection": "y+"
1618
+ },
1619
+ {
1620
+ "pinId": "schematic_port_181",
1621
+ "displayName": "cathode",
1622
+ "x": -6,
1623
+ "y": -32.38,
1624
+ "_facingDirection": "y-"
1625
+ }
1626
+ ]
1627
+ },
1628
+ {
1629
+ "chipId": "schematic_component_43",
1630
+ "center": {
1631
+ "x": 0.012499999999999983,
1632
+ "y": -32
1633
+ },
1634
+ "width": 0.925,
1635
+ "height": 0.7600000000000087,
1636
+ "pins": [
1637
+ {
1638
+ "pinId": "schematic_port_182",
1639
+ "displayName": "anode",
1640
+ "x": -1.8369701987210297e-17,
1641
+ "y": -31.619999999999997,
1642
+ "_facingDirection": "y+"
1643
+ },
1644
+ {
1645
+ "pinId": "schematic_port_183",
1646
+ "displayName": "cathode",
1647
+ "x": 1.8369701987210297e-17,
1648
+ "y": -32.38,
1649
+ "_facingDirection": "y-"
1650
+ }
1651
+ ]
1652
+ },
1653
+ {
1654
+ "chipId": "schematic_component_44",
1655
+ "center": {
1656
+ "x": 6.1325,
1657
+ "y": -32
1658
+ },
1659
+ "width": 1.165,
1660
+ "height": 0.7600000000000087,
1661
+ "pins": [
1662
+ {
1663
+ "pinId": "schematic_port_184",
1664
+ "displayName": "anode",
1665
+ "x": 6,
1666
+ "y": -31.619999999999997,
1667
+ "_facingDirection": "y+"
1668
+ },
1669
+ {
1670
+ "pinId": "schematic_port_185",
1671
+ "displayName": "cathode",
1672
+ "x": 6,
1673
+ "y": -32.38,
1674
+ "_facingDirection": "y-"
1675
+ }
1676
+ ]
1677
+ },
1678
+ {
1679
+ "chipId": "schematic_component_45",
1680
+ "center": {
1681
+ "x": 12.1325,
1682
+ "y": -32
1683
+ },
1684
+ "width": 1.1649999999999991,
1685
+ "height": 0.7600000000000087,
1686
+ "pins": [
1687
+ {
1688
+ "pinId": "schematic_port_186",
1689
+ "displayName": "anode",
1690
+ "x": 12,
1691
+ "y": -31.619999999999997,
1692
+ "_facingDirection": "y+"
1693
+ },
1694
+ {
1695
+ "pinId": "schematic_port_187",
1696
+ "displayName": "cathode",
1697
+ "x": 12,
1698
+ "y": -32.38,
1699
+ "_facingDirection": "y-"
1700
+ }
1701
+ ]
1702
+ },
1703
+ {
1704
+ "chipId": "schematic_component_46",
1705
+ "center": {
1706
+ "x": 18.1325,
1707
+ "y": -32
1708
+ },
1709
+ "width": 1.1649999999999991,
1710
+ "height": 0.7600000000000087,
1711
+ "pins": [
1712
+ {
1713
+ "pinId": "schematic_port_188",
1714
+ "displayName": "anode",
1715
+ "x": 18,
1716
+ "y": -31.619999999999997,
1717
+ "_facingDirection": "y+"
1718
+ },
1719
+ {
1720
+ "pinId": "schematic_port_189",
1721
+ "displayName": "cathode",
1722
+ "x": 18,
1723
+ "y": -32.38,
1724
+ "_facingDirection": "y-"
1725
+ }
1726
+ ]
1727
+ },
1728
+ {
1729
+ "chipId": "schematic_component_47",
1730
+ "center": {
1731
+ "x": 24.1325,
1732
+ "y": -32
1733
+ },
1734
+ "width": 1.1649999999999991,
1735
+ "height": 0.7600000000000087,
1736
+ "pins": [
1737
+ {
1738
+ "pinId": "schematic_port_190",
1739
+ "displayName": "anode",
1740
+ "x": 24,
1741
+ "y": -31.619999999999997,
1742
+ "_facingDirection": "y+"
1743
+ },
1744
+ {
1745
+ "pinId": "schematic_port_191",
1746
+ "displayName": "cathode",
1747
+ "x": 24,
1748
+ "y": -32.38,
1749
+ "_facingDirection": "y-"
1750
+ }
1751
+ ]
1752
+ },
1753
+ {
1754
+ "chipId": "schematic_component_48",
1755
+ "center": {
1756
+ "x": 30.1325,
1757
+ "y": -32
1758
+ },
1759
+ "width": 1.1649999999999991,
1760
+ "height": 0.7600000000000087,
1761
+ "pins": [
1762
+ {
1763
+ "pinId": "schematic_port_192",
1764
+ "displayName": "anode",
1765
+ "x": 30,
1766
+ "y": -31.619999999999997,
1767
+ "_facingDirection": "y+"
1768
+ },
1769
+ {
1770
+ "pinId": "schematic_port_193",
1771
+ "displayName": "cathode",
1772
+ "x": 30,
1773
+ "y": -32.38,
1774
+ "_facingDirection": "y-"
1775
+ }
1776
+ ]
1777
+ },
1778
+ {
1779
+ "chipId": "schematic_component_49",
1780
+ "center": {
1781
+ "x": 36.1325,
1782
+ "y": -32
1783
+ },
1784
+ "width": 1.1650000000000063,
1785
+ "height": 0.7600000000000087,
1786
+ "pins": [
1787
+ {
1788
+ "pinId": "schematic_port_194",
1789
+ "displayName": "anode",
1790
+ "x": 36,
1791
+ "y": -31.619999999999997,
1792
+ "_facingDirection": "y+"
1793
+ },
1794
+ {
1795
+ "pinId": "schematic_port_195",
1796
+ "displayName": "cathode",
1797
+ "x": 36,
1798
+ "y": -32.38,
1799
+ "_facingDirection": "y-"
1800
+ }
1801
+ ]
1802
+ },
1803
+ {
1804
+ "chipId": "schematic_component_50",
1805
+ "center": {
1806
+ "x": -11.8675,
1807
+ "y": -36
1808
+ },
1809
+ "width": 1.1649999999999991,
1810
+ "height": 0.7600000000000051,
1811
+ "pins": [
1812
+ {
1813
+ "pinId": "schematic_port_196",
1814
+ "displayName": "anode",
1815
+ "x": -12,
1816
+ "y": -35.62,
1817
+ "_facingDirection": "y+"
1818
+ },
1819
+ {
1820
+ "pinId": "schematic_port_197",
1821
+ "displayName": "cathode",
1822
+ "x": -12,
1823
+ "y": -36.38,
1824
+ "_facingDirection": "y-"
1825
+ }
1826
+ ]
1827
+ },
1828
+ {
1829
+ "chipId": "schematic_component_51",
1830
+ "center": {
1831
+ "x": -5.8675,
1832
+ "y": -36
1833
+ },
1834
+ "width": 1.165,
1835
+ "height": 0.7600000000000051,
1836
+ "pins": [
1837
+ {
1838
+ "pinId": "schematic_port_198",
1839
+ "displayName": "anode",
1840
+ "x": -6,
1841
+ "y": -35.62,
1842
+ "_facingDirection": "y+"
1843
+ },
1844
+ {
1845
+ "pinId": "schematic_port_199",
1846
+ "displayName": "cathode",
1847
+ "x": -6,
1848
+ "y": -36.38,
1849
+ "_facingDirection": "y-"
1850
+ }
1851
+ ]
1852
+ },
1853
+ {
1854
+ "chipId": "schematic_component_52",
1855
+ "center": {
1856
+ "x": 0,
1857
+ "y": -36
1858
+ },
1859
+ "width": 0.6,
1860
+ "height": 0.6799999999999926,
1861
+ "pins": [
1862
+ {
1863
+ "pinId": "schematic_port_200",
1864
+ "displayName": "anode",
1865
+ "x": -0.3,
1866
+ "y": -36,
1867
+ "_facingDirection": "x-"
1868
+ },
1869
+ {
1870
+ "pinId": "schematic_port_201",
1871
+ "displayName": "cathode",
1872
+ "x": 0.3,
1873
+ "y": -36,
1874
+ "_facingDirection": "x+"
1875
+ }
1876
+ ]
1877
+ },
1878
+ {
1879
+ "chipId": "schematic_component_53",
1880
+ "center": {
1881
+ "x": 6,
1882
+ "y": -36
1883
+ },
1884
+ "width": 0.5999999999999996,
1885
+ "height": 0.6799999999999926,
1886
+ "pins": [
1887
+ {
1888
+ "pinId": "schematic_port_202",
1889
+ "displayName": "anode",
1890
+ "x": 5.7,
1891
+ "y": -36,
1892
+ "_facingDirection": "x-"
1893
+ },
1894
+ {
1895
+ "pinId": "schematic_port_203",
1896
+ "displayName": "cathode",
1897
+ "x": 6.3,
1898
+ "y": -36,
1899
+ "_facingDirection": "x+"
1900
+ }
1901
+ ]
1902
+ },
1903
+ {
1904
+ "chipId": "schematic_component_54",
1905
+ "center": {
1906
+ "x": 12,
1907
+ "y": -35.46
1908
+ },
1909
+ "width": 0.6000000000000014,
1910
+ "height": 0.6799999999999926,
1911
+ "pins": [
1912
+ {
1913
+ "pinId": "schematic_port_204",
1914
+ "displayName": "anode",
1915
+ "x": 11.7,
1916
+ "y": -35.46,
1917
+ "_facingDirection": "x-"
1918
+ },
1919
+ {
1920
+ "pinId": "schematic_port_205",
1921
+ "displayName": "cathode",
1922
+ "x": 12.3,
1923
+ "y": -35.46,
1924
+ "_facingDirection": "x+"
1925
+ }
1926
+ ]
1927
+ },
1928
+ {
1929
+ "chipId": "schematic_component_55",
1930
+ "center": {
1931
+ "x": 18,
1932
+ "y": -36
1933
+ },
1934
+ "width": 0.6000000000000014,
1935
+ "height": 0.6799999999999926,
1936
+ "pins": [
1937
+ {
1938
+ "pinId": "schematic_port_206",
1939
+ "displayName": "anode",
1940
+ "x": 17.7,
1941
+ "y": -36,
1942
+ "_facingDirection": "x-"
1943
+ },
1944
+ {
1945
+ "pinId": "schematic_port_207",
1946
+ "displayName": "cathode",
1947
+ "x": 18.3,
1948
+ "y": -36,
1949
+ "_facingDirection": "x+"
1950
+ }
1951
+ ]
1952
+ },
1953
+ {
1954
+ "chipId": "schematic_component_56",
1955
+ "center": {
1956
+ "x": 24,
1957
+ "y": -36
1958
+ },
1959
+ "width": 0.6000000000000014,
1960
+ "height": 0.6799999999999926,
1961
+ "pins": [
1962
+ {
1963
+ "pinId": "schematic_port_208",
1964
+ "displayName": "anode",
1965
+ "x": 23.7,
1966
+ "y": -36,
1967
+ "_facingDirection": "x-"
1968
+ },
1969
+ {
1970
+ "pinId": "schematic_port_209",
1971
+ "displayName": "cathode",
1972
+ "x": 24.3,
1973
+ "y": -36,
1974
+ "_facingDirection": "x+"
1975
+ }
1976
+ ]
1977
+ },
1978
+ {
1979
+ "chipId": "schematic_component_57",
1980
+ "center": {
1981
+ "x": 30,
1982
+ "y": -36
1983
+ },
1984
+ "width": 0.6000000000000014,
1985
+ "height": 0.6799999999999926,
1986
+ "pins": [
1987
+ {
1988
+ "pinId": "schematic_port_210",
1989
+ "displayName": "anode",
1990
+ "x": 29.7,
1991
+ "y": -36,
1992
+ "_facingDirection": "x-"
1993
+ },
1994
+ {
1995
+ "pinId": "schematic_port_211",
1996
+ "displayName": "cathode",
1997
+ "x": 30.3,
1998
+ "y": -36,
1999
+ "_facingDirection": "x+"
2000
+ }
2001
+ ]
2002
+ },
2003
+ {
2004
+ "chipId": "schematic_component_58",
2005
+ "center": {
2006
+ "x": 36,
2007
+ "y": -36
2008
+ },
2009
+ "width": 0.5999999999999943,
2010
+ "height": 0.6799999999999926,
2011
+ "pins": [
2012
+ {
2013
+ "pinId": "schematic_port_212",
2014
+ "displayName": "anode",
2015
+ "x": 35.7,
2016
+ "y": -36,
2017
+ "_facingDirection": "x-"
2018
+ },
2019
+ {
2020
+ "pinId": "schematic_port_213",
2021
+ "displayName": "cathode",
2022
+ "x": 36.3,
2023
+ "y": -36,
2024
+ "_facingDirection": "x+"
2025
+ }
2026
+ ]
2027
+ },
2028
+ {
2029
+ "chipId": "schematic_component_59",
2030
+ "center": {
2031
+ "x": -12,
2032
+ "y": -40
2033
+ },
2034
+ "width": 0.6000000000000014,
2035
+ "height": 0.6799999999999926,
2036
+ "pins": [
2037
+ {
2038
+ "pinId": "schematic_port_214",
2039
+ "displayName": "anode",
2040
+ "x": -12.3,
2041
+ "y": -40,
2042
+ "_facingDirection": "x-"
2043
+ },
2044
+ {
2045
+ "pinId": "schematic_port_215",
2046
+ "displayName": "cathode",
2047
+ "x": -11.7,
2048
+ "y": -40,
2049
+ "_facingDirection": "x+"
2050
+ }
2051
+ ]
2052
+ },
2053
+ {
2054
+ "chipId": "schematic_component_60",
2055
+ "center": {
2056
+ "x": -6,
2057
+ "y": -40
2058
+ },
2059
+ "width": 0.5999999999999996,
2060
+ "height": 0.6799999999999926,
2061
+ "pins": [
2062
+ {
2063
+ "pinId": "schematic_port_216",
2064
+ "displayName": "anode",
2065
+ "x": -6.3,
2066
+ "y": -40,
2067
+ "_facingDirection": "x-"
2068
+ },
2069
+ {
2070
+ "pinId": "schematic_port_217",
2071
+ "displayName": "cathode",
2072
+ "x": -5.7,
2073
+ "y": -40,
2074
+ "_facingDirection": "x+"
2075
+ }
2076
+ ]
2077
+ },
2078
+ {
2079
+ "chipId": "schematic_component_61",
2080
+ "center": {
2081
+ "x": 0,
2082
+ "y": -40
2083
+ },
2084
+ "width": 0.6,
2085
+ "height": 0.6799999999999926,
2086
+ "pins": [
2087
+ {
2088
+ "pinId": "schematic_port_218",
2089
+ "displayName": "anode",
2090
+ "x": -0.3,
2091
+ "y": -40,
2092
+ "_facingDirection": "x-"
2093
+ },
2094
+ {
2095
+ "pinId": "schematic_port_219",
2096
+ "displayName": "cathode",
2097
+ "x": 0.3,
2098
+ "y": -40,
2099
+ "_facingDirection": "x+"
2100
+ }
2101
+ ]
2102
+ },
2103
+ {
2104
+ "chipId": "schematic_component_62",
2105
+ "center": {
2106
+ "x": 6,
2107
+ "y": -40
2108
+ },
2109
+ "width": 0.5999999999999996,
2110
+ "height": 0.6799999999999926,
2111
+ "pins": [
2112
+ {
2113
+ "pinId": "schematic_port_220",
2114
+ "displayName": "anode",
2115
+ "x": 5.7,
2116
+ "y": -40,
2117
+ "_facingDirection": "x-"
2118
+ },
2119
+ {
2120
+ "pinId": "schematic_port_221",
2121
+ "displayName": "cathode",
2122
+ "x": 6.3,
2123
+ "y": -40,
2124
+ "_facingDirection": "x+"
2125
+ }
2126
+ ]
2127
+ },
2128
+ {
2129
+ "chipId": "schematic_component_63",
2130
+ "center": {
2131
+ "x": 12,
2132
+ "y": -40
2133
+ },
2134
+ "width": 0.6000000000000014,
2135
+ "height": 0.6799999999999926,
2136
+ "pins": [
2137
+ {
2138
+ "pinId": "schematic_port_222",
2139
+ "displayName": "anode",
2140
+ "x": 11.7,
2141
+ "y": -40,
2142
+ "_facingDirection": "x-"
2143
+ },
2144
+ {
2145
+ "pinId": "schematic_port_223",
2146
+ "displayName": "cathode",
2147
+ "x": 12.3,
2148
+ "y": -40,
2149
+ "_facingDirection": "x+"
2150
+ }
2151
+ ]
2152
+ },
2153
+ {
2154
+ "chipId": "schematic_component_64",
2155
+ "center": {
2156
+ "x": 18,
2157
+ "y": -40
2158
+ },
2159
+ "width": 0.6000000000000014,
2160
+ "height": 0.6799999999999926,
2161
+ "pins": [
2162
+ {
2163
+ "pinId": "schematic_port_224",
2164
+ "displayName": "anode",
2165
+ "x": 17.7,
2166
+ "y": -40,
2167
+ "_facingDirection": "x-"
2168
+ },
2169
+ {
2170
+ "pinId": "schematic_port_225",
2171
+ "displayName": "cathode",
2172
+ "x": 18.3,
2173
+ "y": -40,
2174
+ "_facingDirection": "x+"
2175
+ }
2176
+ ]
2177
+ },
2178
+ {
2179
+ "chipId": "schematic_component_65",
2180
+ "center": {
2181
+ "x": 24,
2182
+ "y": -40
2183
+ },
2184
+ "width": 0.6000000000000014,
2185
+ "height": 0.6799999999999926,
2186
+ "pins": [
2187
+ {
2188
+ "pinId": "schematic_port_226",
2189
+ "displayName": "anode",
2190
+ "x": 23.7,
2191
+ "y": -40,
2192
+ "_facingDirection": "x-"
2193
+ },
2194
+ {
2195
+ "pinId": "schematic_port_227",
2196
+ "displayName": "cathode",
2197
+ "x": 24.3,
2198
+ "y": -40,
2199
+ "_facingDirection": "x+"
2200
+ }
2201
+ ]
2202
+ },
2203
+ {
2204
+ "chipId": "schematic_component_66",
2205
+ "center": {
2206
+ "x": 30,
2207
+ "y": -40
2208
+ },
2209
+ "width": 0.6000000000000014,
2210
+ "height": 0.6799999999999926,
2211
+ "pins": [
2212
+ {
2213
+ "pinId": "schematic_port_228",
2214
+ "displayName": "anode",
2215
+ "x": 29.7,
2216
+ "y": -40,
2217
+ "_facingDirection": "x-"
2218
+ },
2219
+ {
2220
+ "pinId": "schematic_port_229",
2221
+ "displayName": "cathode",
2222
+ "x": 30.3,
2223
+ "y": -40,
2224
+ "_facingDirection": "x+"
2225
+ }
2226
+ ]
2227
+ },
2228
+ {
2229
+ "chipId": "schematic_component_67",
2230
+ "center": {
2231
+ "x": 36,
2232
+ "y": -40
2233
+ },
2234
+ "width": 0.5999999999999943,
2235
+ "height": 0.6799999999999926,
2236
+ "pins": [
2237
+ {
2238
+ "pinId": "schematic_port_230",
2239
+ "displayName": "anode",
2240
+ "x": 35.7,
2241
+ "y": -40,
2242
+ "_facingDirection": "x-"
2243
+ },
2244
+ {
2245
+ "pinId": "schematic_port_231",
2246
+ "displayName": "cathode",
2247
+ "x": 36.3,
2248
+ "y": -40,
2249
+ "_facingDirection": "x+"
2250
+ }
2251
+ ]
2252
+ },
2253
+ {
2254
+ "chipId": "schematic_component_68",
2255
+ "center": {
2256
+ "x": -12,
2257
+ "y": -44
2258
+ },
2259
+ "width": 0.6000000000000014,
2260
+ "height": 0.6799999999999926,
2261
+ "pins": [
2262
+ {
2263
+ "pinId": "schematic_port_232",
2264
+ "displayName": "anode",
2265
+ "x": -12.3,
2266
+ "y": -44,
2267
+ "_facingDirection": "x-"
2268
+ },
2269
+ {
2270
+ "pinId": "schematic_port_233",
2271
+ "displayName": "cathode",
2272
+ "x": -11.7,
2273
+ "y": -44,
2274
+ "_facingDirection": "x+"
2275
+ }
2276
+ ]
2277
+ },
2278
+ {
2279
+ "chipId": "schematic_component_69",
2280
+ "center": {
2281
+ "x": -6,
2282
+ "y": -44
2283
+ },
2284
+ "width": 0.5999999999999996,
2285
+ "height": 0.6799999999999926,
2286
+ "pins": [
2287
+ {
2288
+ "pinId": "schematic_port_234",
2289
+ "displayName": "anode",
2290
+ "x": -6.3,
2291
+ "y": -44,
2292
+ "_facingDirection": "x-"
2293
+ },
2294
+ {
2295
+ "pinId": "schematic_port_235",
2296
+ "displayName": "cathode",
2297
+ "x": -5.7,
2298
+ "y": -44,
2299
+ "_facingDirection": "x+"
2300
+ }
2301
+ ]
2302
+ },
2303
+ {
2304
+ "chipId": "schematic_component_70",
2305
+ "center": {
2306
+ "x": 0,
2307
+ "y": -44
2308
+ },
2309
+ "width": 1.055825,
2310
+ "height": 0.8677406999999988,
2311
+ "pins": [
2312
+ {
2313
+ "pinId": "schematic_port_236",
2314
+ "displayName": "anode",
2315
+ "x": -0.5279125,
2316
+ "y": -43.99737545
2317
+ },
2318
+ {
2319
+ "pinId": "schematic_port_237",
2320
+ "displayName": "cathode",
2321
+ "x": 0.5279125,
2322
+ "y": -44.00262455
2323
+ }
2324
+ ]
2325
+ },
2326
+ {
2327
+ "chipId": "schematic_component_71",
2328
+ "center": {
2329
+ "x": 6,
2330
+ "y": -44
2331
+ },
2332
+ "width": 1.0558250000000005,
2333
+ "height": 0.8677406999999988,
2334
+ "pins": [
2335
+ {
2336
+ "pinId": "schematic_port_238",
2337
+ "displayName": "anode",
2338
+ "x": 5.4720875,
2339
+ "y": -43.99737545
2340
+ },
2341
+ {
2342
+ "pinId": "schematic_port_239",
2343
+ "displayName": "cathode",
2344
+ "x": 6.5279125,
2345
+ "y": -44.00262455
2346
+ }
2347
+ ]
2348
+ },
2349
+ {
2350
+ "chipId": "schematic_component_72",
2351
+ "center": {
2352
+ "x": 11.9979,
2353
+ "y": -43.961574540324975
2354
+ },
2355
+ "width": 0.8042000000000016,
2356
+ "height": 0.07685091935005062,
2357
+ "pins": [
2358
+ {
2359
+ "pinId": "schematic_port_240",
2360
+ "displayName": "2",
2361
+ "x": 12.4,
2362
+ "y": -44
2363
+ },
2364
+ {
2365
+ "pinId": "schematic_port_241",
2366
+ "displayName": "1",
2367
+ "x": 11.6,
2368
+ "y": -44
2369
+ }
2370
+ ]
2371
+ },
2372
+ {
2373
+ "chipId": "schematic_component_73",
2374
+ "center": {
2375
+ "x": -9.838750000000001,
2376
+ "y": -52
2377
+ },
2378
+ "width": 0.7224999999999966,
2379
+ "height": 0.20000000000000284,
2380
+ "pins": [
2381
+ {
2382
+ "pinId": "schematic_port_242",
2383
+ "displayName": "1",
2384
+ "x": -10.2,
2385
+ "y": -52
2386
+ }
2387
+ ]
2388
+ },
2389
+ {
2390
+ "chipId": "schematic_component_74",
2391
+ "center": {
2392
+ "x": -3.83875,
2393
+ "y": -52
2394
+ },
2395
+ "width": 0.7225000000000001,
2396
+ "height": 0.20000000000000284,
2397
+ "pins": [
2398
+ {
2399
+ "pinId": "schematic_port_243",
2400
+ "displayName": "1",
2401
+ "x": -4.2,
2402
+ "y": -52
2403
+ }
2404
+ ]
2405
+ },
2406
+ {
2407
+ "chipId": "schematic_component_75",
2408
+ "center": {
2409
+ "x": 2.16125,
2410
+ "y": -52
2411
+ },
2412
+ "width": 0.7224999999999997,
2413
+ "height": 0.20000000000000284,
2414
+ "pins": [
2415
+ {
2416
+ "pinId": "schematic_port_244",
2417
+ "displayName": "1",
2418
+ "x": 1.8,
2419
+ "y": -52
2420
+ }
2421
+ ]
2422
+ },
2423
+ {
2424
+ "chipId": "schematic_component_76",
2425
+ "center": {
2426
+ "x": 8.161249999999999,
2427
+ "y": -52
2428
+ },
2429
+ "width": 0.7224999999999984,
2430
+ "height": 0.20000000000000284,
2431
+ "pins": [
2432
+ {
2433
+ "pinId": "schematic_port_245",
2434
+ "displayName": "1",
2435
+ "x": 7.8,
2436
+ "y": -52
2437
+ }
2438
+ ]
2439
+ },
2440
+ {
2441
+ "chipId": "schematic_component_77",
2442
+ "center": {
2443
+ "x": 14.161249999999999,
2444
+ "y": -26.919
2445
+ },
2446
+ "width": 0.7224999999999966,
2447
+ "height": 0.20000000000000284,
2448
+ "pins": [
2449
+ {
2450
+ "pinId": "schematic_port_246",
2451
+ "displayName": "1",
2452
+ "x": 13.8,
2453
+ "y": -26.919
2454
+ }
2455
+ ]
2456
+ }
2457
+ ],
2458
+ "directConnections": [
2459
+ {
2460
+ "netId": "U1.ANT to C26.pin1",
2461
+ "netLabelWidth": 0.84,
2462
+ "pinIds": [
2463
+ "schematic_port_38",
2464
+ "schematic_port_174"
2465
+ ]
2466
+ },
2467
+ {
2468
+ "netId": "C26.pin1 to L2.pin1",
2469
+ "netLabelWidth": 0.84,
2470
+ "pinIds": [
2471
+ "schematic_port_174",
2472
+ "schematic_port_238"
2473
+ ]
2474
+ },
2475
+ {
2476
+ "netId": "L2.pin2 to C27.pin1",
2477
+ "netLabelWidth": 1.2,
2478
+ "pinIds": [
2479
+ "schematic_port_239",
2480
+ "schematic_port_176"
2481
+ ]
2482
+ },
2483
+ {
2484
+ "netId": "C27.pin1 to C28.pin1",
2485
+ "netLabelWidth": 1.2,
2486
+ "pinIds": [
2487
+ "schematic_port_176",
2488
+ "schematic_port_178"
2489
+ ]
2490
+ },
2491
+ {
2492
+ "netId": "C28.pin2 to C29.pin1",
2493
+ "netLabelWidth": 0.72,
2494
+ "pinIds": [
2495
+ "schematic_port_179",
2496
+ "schematic_port_180"
2497
+ ]
2498
+ },
2499
+ {
2500
+ "netId": "C29.pin1 to R18.pin1",
2501
+ "netLabelWidth": 0.72,
2502
+ "pinIds": [
2503
+ "schematic_port_180",
2504
+ "schematic_port_234"
2505
+ ]
2506
+ },
2507
+ {
2508
+ "netId": "R18.pin2 to ANT1.ANT",
2509
+ "netLabelWidth": 0.84,
2510
+ "pinIds": [
2511
+ "schematic_port_235",
2512
+ "schematic_port_113"
2513
+ ]
2514
+ },
2515
+ {
2516
+ "netId": "R18.pin2 to C30.pin1",
2517
+ "netLabelWidth": 0.84,
2518
+ "pinIds": [
2519
+ "schematic_port_235",
2520
+ "schematic_port_182"
2521
+ ]
2522
+ }
2523
+ ],
2524
+ "netConnections": [
2525
+ {
2526
+ "netId": "VDDR",
2527
+ "isGround": false,
2528
+ "netLabelWidth": 0.42,
2529
+ "netLabelHeight": 0.6,
2530
+ "pinIds": [
2531
+ "schematic_port_0",
2532
+ "schematic_port_33",
2533
+ "schematic_port_156",
2534
+ "schematic_port_158",
2535
+ "schematic_port_160",
2536
+ "schematic_port_237"
2537
+ ]
2538
+ },
2539
+ {
2540
+ "netId": "I2C_SDA",
2541
+ "isGround": false,
2542
+ "netLabelWidth": 0.96,
2543
+ "anchoredNetLabelWidth": 0.96,
2544
+ "allowInlineNetLabel": true,
2545
+ "inlineNetLabelHeight": 0.12,
2546
+ "inlineNetLabelWidth": 0.64,
2547
+ "pinIds": [
2548
+ "schematic_port_1",
2549
+ "schematic_port_58",
2550
+ "schematic_port_64",
2551
+ "schematic_port_71",
2552
+ "schematic_port_216"
2553
+ ]
2554
+ },
2555
+ {
2556
+ "netId": "ACC_INT1",
2557
+ "isGround": false,
2558
+ "netLabelWidth": 1.08,
2559
+ "anchoredNetLabelWidth": 1.08,
2560
+ "allowInlineNetLabel": true,
2561
+ "inlineNetLabelHeight": 0.12,
2562
+ "inlineNetLabelWidth": 0.72,
2563
+ "pinIds": [
2564
+ "schematic_port_2",
2565
+ "schematic_port_74"
2566
+ ]
2567
+ },
2568
+ {
2569
+ "netId": "ACC_INT2",
2570
+ "isGround": false,
2571
+ "netLabelWidth": 1.08,
2572
+ "anchoredNetLabelWidth": 1.08,
2573
+ "allowInlineNetLabel": true,
2574
+ "inlineNetLabelHeight": 0.12,
2575
+ "inlineNetLabelWidth": 0.72,
2576
+ "pinIds": [
2577
+ "schematic_port_3",
2578
+ "schematic_port_75"
2579
+ ]
2580
+ },
2581
+ {
2582
+ "netId": "CHG_LP",
2583
+ "isGround": false,
2584
+ "netLabelWidth": 0.84,
2585
+ "anchoredNetLabelWidth": 0.84,
2586
+ "allowInlineNetLabel": true,
2587
+ "inlineNetLabelHeight": 0.12,
2588
+ "inlineNetLabelWidth": 0.56,
2589
+ "pinIds": [
2590
+ "schematic_port_4",
2591
+ "schematic_port_55"
2592
+ ]
2593
+ },
2594
+ {
2595
+ "netId": "CHG_CE",
2596
+ "isGround": false,
2597
+ "netLabelWidth": 0.84,
2598
+ "anchoredNetLabelWidth": 0.84,
2599
+ "allowInlineNetLabel": true,
2600
+ "inlineNetLabelHeight": 0.12,
2601
+ "inlineNetLabelWidth": 0.56,
2602
+ "pinIds": [
2603
+ "schematic_port_5",
2604
+ "schematic_port_50",
2605
+ "schematic_port_208"
2606
+ ]
2607
+ },
2608
+ {
2609
+ "netId": "CHG_IRQ",
2610
+ "isGround": false,
2611
+ "netLabelWidth": 0.96,
2612
+ "anchoredNetLabelWidth": 0.96,
2613
+ "allowInlineNetLabel": true,
2614
+ "inlineNetLabelHeight": 0.12,
2615
+ "inlineNetLabelWidth": 0.64,
2616
+ "pinIds": [
2617
+ "schematic_port_6",
2618
+ "schematic_port_54",
2619
+ "schematic_port_210"
2620
+ ]
2621
+ },
2622
+ {
2623
+ "netId": "V3",
2624
+ "isGround": false,
2625
+ "netLabelWidth": 0.42,
2626
+ "netLabelHeight": 0.36,
2627
+ "pinIds": [
2628
+ "schematic_port_7",
2629
+ "schematic_port_16",
2630
+ "schematic_port_30",
2631
+ "schematic_port_37",
2632
+ "schematic_port_57",
2633
+ "schematic_port_72",
2634
+ "schematic_port_76",
2635
+ "schematic_port_79",
2636
+ "schematic_port_86",
2637
+ "schematic_port_136",
2638
+ "schematic_port_144",
2639
+ "schematic_port_146",
2640
+ "schematic_port_148",
2641
+ "schematic_port_150",
2642
+ "schematic_port_152",
2643
+ "schematic_port_154",
2644
+ "schematic_port_184",
2645
+ "schematic_port_186",
2646
+ "schematic_port_207",
2647
+ "schematic_port_209",
2648
+ "schematic_port_211",
2649
+ "schematic_port_213",
2650
+ "schematic_port_215",
2651
+ "schematic_port_217",
2652
+ "schematic_port_219",
2653
+ "schematic_port_242"
2654
+ ]
2655
+ },
2656
+ {
2657
+ "netId": "GAUGE_IRQ",
2658
+ "isGround": false,
2659
+ "netLabelWidth": 1.2,
2660
+ "anchoredNetLabelWidth": 1.2,
2661
+ "allowInlineNetLabel": true,
2662
+ "inlineNetLabelHeight": 0.12,
2663
+ "inlineNetLabelWidth": 0.8,
2664
+ "pinIds": [
2665
+ "schematic_port_8",
2666
+ "schematic_port_61",
2667
+ "schematic_port_206"
2668
+ ]
2669
+ },
2670
+ {
2671
+ "netId": "PG_BUTTON",
2672
+ "isGround": false,
2673
+ "netLabelWidth": 1.2,
2674
+ "anchoredNetLabelWidth": 1.2,
2675
+ "allowInlineNetLabel": true,
2676
+ "inlineNetLabelHeight": 0.12,
2677
+ "inlineNetLabelWidth": 0.8,
2678
+ "pinIds": [
2679
+ "schematic_port_9",
2680
+ "schematic_port_45",
2681
+ "schematic_port_212"
2682
+ ]
2683
+ },
2684
+ {
2685
+ "netId": "SWDIO",
2686
+ "isGround": false,
2687
+ "netLabelWidth": 0.72,
2688
+ "anchoredNetLabelWidth": 0.72,
2689
+ "allowInlineNetLabel": true,
2690
+ "inlineNetLabelHeight": 0.12,
2691
+ "inlineNetLabelWidth": 0.48,
2692
+ "pinIds": [
2693
+ "schematic_port_10",
2694
+ "schematic_port_244"
2695
+ ]
2696
+ },
2697
+ {
2698
+ "netId": "SWCLK",
2699
+ "isGround": false,
2700
+ "netLabelWidth": 0.72,
2701
+ "anchoredNetLabelWidth": 0.72,
2702
+ "allowInlineNetLabel": true,
2703
+ "inlineNetLabelHeight": 0.12,
2704
+ "inlineNetLabelWidth": 0.48,
2705
+ "pinIds": [
2706
+ "schematic_port_11",
2707
+ "schematic_port_245"
2708
+ ]
2709
+ },
2710
+ {
2711
+ "netId": "OLED_SCL",
2712
+ "isGround": false,
2713
+ "netLabelWidth": 1.08,
2714
+ "anchoredNetLabelWidth": 1.08,
2715
+ "allowInlineNetLabel": true,
2716
+ "inlineNetLabelHeight": 0.12,
2717
+ "inlineNetLabelWidth": 0.72,
2718
+ "pinIds": [
2719
+ "schematic_port_12",
2720
+ "schematic_port_102",
2721
+ "schematic_port_220"
2722
+ ]
2723
+ },
2724
+ {
2725
+ "netId": "OLED_SDA",
2726
+ "isGround": false,
2727
+ "netLabelWidth": 1.08,
2728
+ "anchoredNetLabelWidth": 1.08,
2729
+ "allowInlineNetLabel": true,
2730
+ "inlineNetLabelHeight": 0.12,
2731
+ "inlineNetLabelWidth": 0.72,
2732
+ "pinIds": [
2733
+ "schematic_port_13",
2734
+ "schematic_port_103",
2735
+ "schematic_port_222"
2736
+ ]
2737
+ },
2738
+ {
2739
+ "netId": "OLED_RST",
2740
+ "isGround": false,
2741
+ "netLabelWidth": 1.08,
2742
+ "anchoredNetLabelWidth": 1.08,
2743
+ "allowInlineNetLabel": true,
2744
+ "inlineNetLabelHeight": 0.12,
2745
+ "inlineNetLabelWidth": 0.72,
2746
+ "pinIds": [
2747
+ "schematic_port_14",
2748
+ "schematic_port_101",
2749
+ "schematic_port_224"
2750
+ ]
2751
+ },
2752
+ {
2753
+ "netId": "BOOST_EN",
2754
+ "isGround": false,
2755
+ "netLabelWidth": 1.08,
2756
+ "anchoredNetLabelWidth": 1.08,
2757
+ "allowInlineNetLabel": true,
2758
+ "inlineNetLabelHeight": 0.12,
2759
+ "inlineNetLabelWidth": 0.72,
2760
+ "pinIds": [
2761
+ "schematic_port_15",
2762
+ "schematic_port_88",
2763
+ "schematic_port_232"
2764
+ ]
2765
+ },
2766
+ {
2767
+ "netId": "RESETN",
2768
+ "isGround": false,
2769
+ "netLabelWidth": 0.84,
2770
+ "anchoredNetLabelWidth": 0.84,
2771
+ "allowInlineNetLabel": true,
2772
+ "inlineNetLabelHeight": 0.12,
2773
+ "inlineNetLabelWidth": 0.56,
2774
+ "pinIds": [
2775
+ "schematic_port_24",
2776
+ "schematic_port_164",
2777
+ "schematic_port_214",
2778
+ "schematic_port_246"
2779
+ ]
2780
+ },
2781
+ {
2782
+ "netId": "X32P",
2783
+ "isGround": false,
2784
+ "netLabelWidth": 0.6,
2785
+ "anchoredNetLabelWidth": 0.6,
2786
+ "allowInlineNetLabel": true,
2787
+ "inlineNetLabelHeight": 0.12,
2788
+ "inlineNetLabelWidth": 0.4,
2789
+ "pinIds": [
2790
+ "schematic_port_25",
2791
+ "schematic_port_112",
2792
+ "schematic_port_166"
2793
+ ]
2794
+ },
2795
+ {
2796
+ "netId": "X32N",
2797
+ "isGround": false,
2798
+ "netLabelWidth": 0.6,
2799
+ "anchoredNetLabelWidth": 0.6,
2800
+ "allowInlineNetLabel": true,
2801
+ "inlineNetLabelHeight": 0.12,
2802
+ "inlineNetLabelWidth": 0.4,
2803
+ "pinIds": [
2804
+ "schematic_port_26",
2805
+ "schematic_port_111",
2806
+ "schematic_port_168"
2807
+ ]
2808
+ },
2809
+ {
2810
+ "netId": "VDDD",
2811
+ "isGround": false,
2812
+ "netLabelWidth": 0.42,
2813
+ "netLabelHeight": 0.6,
2814
+ "pinIds": [
2815
+ "schematic_port_27",
2816
+ "schematic_port_162"
2817
+ ]
2818
+ },
2819
+ {
2820
+ "netId": "DCDC",
2821
+ "isGround": false,
2822
+ "netLabelWidth": 0.6,
2823
+ "anchoredNetLabelWidth": 0.6,
2824
+ "allowInlineNetLabel": true,
2825
+ "inlineNetLabelHeight": 0.12,
2826
+ "inlineNetLabelWidth": 0.4,
2827
+ "pinIds": [
2828
+ "schematic_port_29",
2829
+ "schematic_port_236"
2830
+ ]
2831
+ },
2832
+ {
2833
+ "netId": "I2C_SCL",
2834
+ "isGround": false,
2835
+ "netLabelWidth": 0.96,
2836
+ "anchoredNetLabelWidth": 0.96,
2837
+ "allowInlineNetLabel": true,
2838
+ "inlineNetLabelHeight": 0.12,
2839
+ "inlineNetLabelWidth": 0.64,
2840
+ "pinIds": [
2841
+ "schematic_port_31",
2842
+ "schematic_port_59",
2843
+ "schematic_port_67",
2844
+ "schematic_port_81",
2845
+ "schematic_port_218"
2846
+ ]
2847
+ },
2848
+ {
2849
+ "netId": "X48P",
2850
+ "isGround": false,
2851
+ "netLabelWidth": 0.6,
2852
+ "anchoredNetLabelWidth": 0.6,
2853
+ "allowInlineNetLabel": true,
2854
+ "inlineNetLabelHeight": 0.12,
2855
+ "inlineNetLabelWidth": 0.4,
2856
+ "pinIds": [
2857
+ "schematic_port_34",
2858
+ "schematic_port_107",
2859
+ "schematic_port_170"
2860
+ ]
2861
+ },
2862
+ {
2863
+ "netId": "X48N",
2864
+ "isGround": false,
2865
+ "netLabelWidth": 0.6,
2866
+ "anchoredNetLabelWidth": 0.6,
2867
+ "allowInlineNetLabel": true,
2868
+ "inlineNetLabelHeight": 0.12,
2869
+ "inlineNetLabelWidth": 0.4,
2870
+ "pinIds": [
2871
+ "schematic_port_35",
2872
+ "schematic_port_109",
2873
+ "schematic_port_172"
2874
+ ]
2875
+ },
2876
+ {
2877
+ "netId": "RF_RAW",
2878
+ "isGround": false,
2879
+ "netLabelWidth": 0.84,
2880
+ "anchoredNetLabelWidth": 0.84,
2881
+ "allowInlineNetLabel": true,
2882
+ "inlineNetLabelHeight": 0.12,
2883
+ "inlineNetLabelWidth": 0.56,
2884
+ "pinIds": [
2885
+ "schematic_port_38",
2886
+ "schematic_port_174",
2887
+ "schematic_port_238"
2888
+ ]
2889
+ },
2890
+ {
2891
+ "netId": "GND",
2892
+ "isGround": true,
2893
+ "netLabelWidth": 0.42,
2894
+ "netLabelHeight": 0.48,
2895
+ "pinIds": [
2896
+ "schematic_port_39",
2897
+ "schematic_port_40",
2898
+ "schematic_port_44",
2899
+ "schematic_port_52",
2900
+ "schematic_port_63",
2901
+ "schematic_port_65",
2902
+ "schematic_port_70",
2903
+ "schematic_port_77",
2904
+ "schematic_port_78",
2905
+ "schematic_port_83",
2906
+ "schematic_port_91",
2907
+ "schematic_port_99",
2908
+ "schematic_port_108",
2909
+ "schematic_port_110",
2910
+ "schematic_port_116",
2911
+ "schematic_port_117",
2912
+ "schematic_port_120",
2913
+ "schematic_port_122",
2914
+ "schematic_port_125",
2915
+ "schematic_port_127",
2916
+ "schematic_port_129",
2917
+ "schematic_port_131",
2918
+ "schematic_port_133",
2919
+ "schematic_port_135",
2920
+ "schematic_port_137",
2921
+ "schematic_port_139",
2922
+ "schematic_port_141",
2923
+ "schematic_port_143",
2924
+ "schematic_port_145",
2925
+ "schematic_port_147",
2926
+ "schematic_port_149",
2927
+ "schematic_port_151",
2928
+ "schematic_port_153",
2929
+ "schematic_port_155",
2930
+ "schematic_port_157",
2931
+ "schematic_port_159",
2932
+ "schematic_port_161",
2933
+ "schematic_port_163",
2934
+ "schematic_port_165",
2935
+ "schematic_port_167",
2936
+ "schematic_port_169",
2937
+ "schematic_port_171",
2938
+ "schematic_port_173",
2939
+ "schematic_port_175",
2940
+ "schematic_port_177",
2941
+ "schematic_port_181",
2942
+ "schematic_port_183",
2943
+ "schematic_port_185",
2944
+ "schematic_port_187",
2945
+ "schematic_port_189",
2946
+ "schematic_port_191",
2947
+ "schematic_port_193",
2948
+ "schematic_port_195",
2949
+ "schematic_port_197",
2950
+ "schematic_port_199",
2951
+ "schematic_port_201",
2952
+ "schematic_port_203",
2953
+ "schematic_port_205",
2954
+ "schematic_port_227",
2955
+ "schematic_port_231",
2956
+ "schematic_port_233",
2957
+ "schematic_port_243"
2958
+ ]
2959
+ },
2960
+ {
2961
+ "netId": "VIN5",
2962
+ "isGround": false,
2963
+ "netLabelWidth": 0.42,
2964
+ "netLabelHeight": 0.6,
2965
+ "pinIds": [
2966
+ "schematic_port_41",
2967
+ "schematic_port_118",
2968
+ "schematic_port_119",
2969
+ "schematic_port_124"
2970
+ ]
2971
+ },
2972
+ {
2973
+ "netId": "PMID",
2974
+ "isGround": false,
2975
+ "netLabelWidth": 0.42,
2976
+ "netLabelHeight": 0.6,
2977
+ "pinIds": [
2978
+ "schematic_port_42",
2979
+ "schematic_port_46",
2980
+ "schematic_port_60",
2981
+ "schematic_port_82",
2982
+ "schematic_port_84",
2983
+ "schematic_port_92",
2984
+ "schematic_port_126",
2985
+ "schematic_port_132",
2986
+ "schematic_port_142",
2987
+ "schematic_port_188",
2988
+ "schematic_port_241"
2989
+ ]
2990
+ },
2991
+ {
2992
+ "netId": "BAT_SYS",
2993
+ "isGround": false,
2994
+ "netLabelWidth": 0.42,
2995
+ "netLabelHeight": 0.96,
2996
+ "pinIds": [
2997
+ "schematic_port_43",
2998
+ "schematic_port_47",
2999
+ "schematic_port_66",
3000
+ "schematic_port_128"
3001
+ ]
3002
+ },
3003
+ {
3004
+ "netId": "TS",
3005
+ "isGround": false,
3006
+ "netLabelWidth": 0.36,
3007
+ "anchoredNetLabelWidth": 0.36,
3008
+ "allowInlineNetLabel": true,
3009
+ "inlineNetLabelHeight": 0.12,
3010
+ "inlineNetLabelWidth": 0.24,
3011
+ "pinIds": [
3012
+ "schematic_port_48",
3013
+ "schematic_port_123",
3014
+ "schematic_port_202"
3015
+ ]
3016
+ },
3017
+ {
3018
+ "netId": "MRN",
3019
+ "isGround": false,
3020
+ "netLabelWidth": 0.48,
3021
+ "anchoredNetLabelWidth": 0.48,
3022
+ "allowInlineNetLabel": true,
3023
+ "inlineNetLabelHeight": 0.12,
3024
+ "inlineNetLabelWidth": 0.32,
3025
+ "pinIds": [
3026
+ "schematic_port_49",
3027
+ "schematic_port_115"
3028
+ ]
3029
+ },
3030
+ {
3031
+ "netId": "IMAX",
3032
+ "isGround": false,
3033
+ "netLabelWidth": 0.6,
3034
+ "anchoredNetLabelWidth": 0.6,
3035
+ "allowInlineNetLabel": true,
3036
+ "inlineNetLabelHeight": 0.12,
3037
+ "inlineNetLabelWidth": 0.4,
3038
+ "pinIds": [
3039
+ "schematic_port_51",
3040
+ "schematic_port_200"
3041
+ ]
3042
+ },
3043
+ {
3044
+ "netId": "CHG_VDD",
3045
+ "isGround": false,
3046
+ "netLabelWidth": 0.42,
3047
+ "netLabelHeight": 0.96,
3048
+ "pinIds": [
3049
+ "schematic_port_53",
3050
+ "schematic_port_130"
3051
+ ]
3052
+ },
3053
+ {
3054
+ "netId": "OLED_3V",
3055
+ "isGround": false,
3056
+ "netLabelWidth": 0.42,
3057
+ "netLabelHeight": 0.96,
3058
+ "pinIds": [
3059
+ "schematic_port_56",
3060
+ "schematic_port_97",
3061
+ "schematic_port_100",
3062
+ "schematic_port_134",
3063
+ "schematic_port_196",
3064
+ "schematic_port_198",
3065
+ "schematic_port_221",
3066
+ "schematic_port_223",
3067
+ "schematic_port_225"
3068
+ ]
3069
+ },
3070
+ {
3071
+ "netId": "BIN",
3072
+ "isGround": false,
3073
+ "netLabelWidth": 0.48,
3074
+ "anchoredNetLabelWidth": 0.48,
3075
+ "allowInlineNetLabel": true,
3076
+ "inlineNetLabelHeight": 0.12,
3077
+ "inlineNetLabelWidth": 0.32,
3078
+ "pinIds": [
3079
+ "schematic_port_62",
3080
+ "schematic_port_204"
3081
+ ]
3082
+ },
3083
+ {
3084
+ "netId": "GAUGE_VDD",
3085
+ "isGround": false,
3086
+ "netLabelWidth": 0.42,
3087
+ "netLabelHeight": 1.2,
3088
+ "pinIds": [
3089
+ "schematic_port_68",
3090
+ "schematic_port_140"
3091
+ ]
3092
+ },
3093
+ {
3094
+ "netId": "PACK_P",
3095
+ "isGround": false,
3096
+ "netLabelWidth": 0.42,
3097
+ "netLabelHeight": 0.84,
3098
+ "pinIds": [
3099
+ "schematic_port_69",
3100
+ "schematic_port_121",
3101
+ "schematic_port_138"
3102
+ ]
3103
+ },
3104
+ {
3105
+ "netId": "OLED_HV",
3106
+ "isGround": false,
3107
+ "netLabelWidth": 0.42,
3108
+ "netLabelHeight": 0.96,
3109
+ "pinIds": [
3110
+ "schematic_port_87",
3111
+ "schematic_port_106",
3112
+ "schematic_port_190",
3113
+ "schematic_port_192",
3114
+ "schematic_port_228"
3115
+ ]
3116
+ },
3117
+ {
3118
+ "netId": "BOOST_SW",
3119
+ "isGround": false,
3120
+ "netLabelWidth": 1.08,
3121
+ "anchoredNetLabelWidth": 1.08,
3122
+ "allowInlineNetLabel": true,
3123
+ "inlineNetLabelHeight": 0.12,
3124
+ "inlineNetLabelWidth": 0.72,
3125
+ "pinIds": [
3126
+ "schematic_port_89",
3127
+ "schematic_port_240"
3128
+ ]
3129
+ },
3130
+ {
3131
+ "netId": "BOOST_FB",
3132
+ "isGround": false,
3133
+ "netLabelWidth": 1.08,
3134
+ "anchoredNetLabelWidth": 1.08,
3135
+ "allowInlineNetLabel": true,
3136
+ "inlineNetLabelHeight": 0.12,
3137
+ "inlineNetLabelWidth": 0.72,
3138
+ "pinIds": [
3139
+ "schematic_port_90",
3140
+ "schematic_port_229",
3141
+ "schematic_port_230"
3142
+ ]
3143
+ },
3144
+ {
3145
+ "netId": "OLED_IREF",
3146
+ "isGround": false,
3147
+ "netLabelWidth": 1.2,
3148
+ "anchoredNetLabelWidth": 1.2,
3149
+ "allowInlineNetLabel": true,
3150
+ "inlineNetLabelHeight": 0.12,
3151
+ "inlineNetLabelWidth": 0.8,
3152
+ "pinIds": [
3153
+ "schematic_port_104",
3154
+ "schematic_port_226"
3155
+ ]
3156
+ },
3157
+ {
3158
+ "netId": "OLED_VCOM",
3159
+ "isGround": false,
3160
+ "netLabelWidth": 0.42,
3161
+ "netLabelHeight": 1.2,
3162
+ "pinIds": [
3163
+ "schematic_port_105",
3164
+ "schematic_port_194"
3165
+ ]
3166
+ },
3167
+ {
3168
+ "netId": "RF_ANT",
3169
+ "isGround": false,
3170
+ "netLabelWidth": 0.84,
3171
+ "anchoredNetLabelWidth": 0.84,
3172
+ "allowInlineNetLabel": true,
3173
+ "inlineNetLabelHeight": 0.12,
3174
+ "inlineNetLabelWidth": 0.56,
3175
+ "pinIds": [
3176
+ "schematic_port_113",
3177
+ "schematic_port_182",
3178
+ "schematic_port_235"
3179
+ ]
3180
+ },
3181
+ {
3182
+ "netId": "RF_FILTER",
3183
+ "isGround": false,
3184
+ "netLabelWidth": 1.2,
3185
+ "anchoredNetLabelWidth": 1.2,
3186
+ "allowInlineNetLabel": true,
3187
+ "inlineNetLabelHeight": 0.12,
3188
+ "inlineNetLabelWidth": 0.8,
3189
+ "pinIds": [
3190
+ "schematic_port_176",
3191
+ "schematic_port_178",
3192
+ "schematic_port_239"
3193
+ ]
3194
+ },
3195
+ {
3196
+ "netId": "RF_50",
3197
+ "isGround": false,
3198
+ "netLabelWidth": 0.72,
3199
+ "anchoredNetLabelWidth": 0.72,
3200
+ "allowInlineNetLabel": true,
3201
+ "inlineNetLabelHeight": 0.12,
3202
+ "inlineNetLabelWidth": 0.48,
3203
+ "pinIds": [
3204
+ "schematic_port_179",
3205
+ "schematic_port_180",
3206
+ "schematic_port_234"
3207
+ ]
3208
+ }
3209
+ ],
3210
+ "textBoxes": [
3211
+ {
3212
+ "chipId": "schematic_component_0",
3213
+ "center": {
3214
+ "x": -0.20000000000000018,
3215
+ "y": -2.23
3216
+ },
3217
+ "width": 1.7999999999999998,
3218
+ "height": 0.17999999999999972,
3219
+ "text": "CC2340R52E0RKPR"
3220
+ },
3221
+ {
3222
+ "chipId": "schematic_component_0",
3223
+ "center": {
3224
+ "x": -0.9800000000000001,
3225
+ "y": 2.215
3226
+ },
3227
+ "width": 0.3600000000000001,
3228
+ "height": 0.24999999999999956,
3229
+ "text": "U1"
3230
+ },
3231
+ {
3232
+ "chipId": "schematic_component_1",
3233
+ "center": {
3234
+ "x": 13.01,
3235
+ "y": 0.7700000000000001
3236
+ },
3237
+ "width": 1.3200000000000003,
3238
+ "height": 0.17999999999999994,
3239
+ "text": "BQ25150YFPR"
3240
+ },
3241
+ {
3242
+ "chipId": "schematic_component_1",
3243
+ "center": {
3244
+ "x": 12.469999999999999,
3245
+ "y": 3.215
3246
+ },
3247
+ "width": 0.3600000000000012,
3248
+ "height": 0.24999999999999956,
3249
+ "text": "U2"
3250
+ },
3251
+ {
3252
+ "chipId": "schematic_component_2",
3253
+ "center": {
3254
+ "x": 24.01,
3255
+ "y": 1.37
3256
+ },
3257
+ "width": 1.3200000000000003,
3258
+ "height": 0.18000000000000016,
3259
+ "text": "BQ27427YZFR"
3260
+ },
3261
+ {
3262
+ "chipId": "schematic_component_2",
3263
+ "center": {
3264
+ "x": 23.47,
3265
+ "y": 2.615
3266
+ },
3267
+ "width": 0.3599999999999959,
3268
+ "height": 0.24999999999999956,
3269
+ "text": "U3"
3270
+ },
3271
+ {
3272
+ "chipId": "schematic_component_3",
3273
+ "center": {
3274
+ "x": 23.759999999999998,
3275
+ "y": -7.83
3276
+ },
3277
+ "width": 0.7199999999999989,
3278
+ "height": 0.17999999999999972,
3279
+ "text": "BMA400"
3280
+ },
3281
+ {
3282
+ "chipId": "schematic_component_3",
3283
+ "center": {
3284
+ "x": 23.519999999999996,
3285
+ "y": -6.1850000000000005
3286
+ },
3287
+ "width": 0.3599999999999959,
3288
+ "height": 0.2499999999999991,
3289
+ "text": "U4"
3290
+ },
3291
+ {
3292
+ "chipId": "schematic_component_4",
3293
+ "center": {
3294
+ "x": 13.24,
3295
+ "y": -7.43
3296
+ },
3297
+ "width": 1.6799999999999997,
3298
+ "height": 0.17999999999999972,
3299
+ "text": "TPS7A0230PDBVR"
3300
+ },
3301
+ {
3302
+ "chipId": "schematic_component_4",
3303
+ "center": {
3304
+ "x": 12.52,
3305
+ "y": -6.585000000000001
3306
+ },
3307
+ "width": 0.3600000000000012,
3308
+ "height": 0.2499999999999991,
3309
+ "text": "U5"
3310
+ },
3311
+ {
3312
+ "chipId": "schematic_component_5",
3313
+ "center": {
3314
+ "x": 35.07,
3315
+ "y": 1.4700000000000002
3316
+ },
3317
+ "width": 1.4399999999999977,
3318
+ "height": 0.18000000000000016,
3319
+ "text": "TPS61046YFFR"
3320
+ },
3321
+ {
3322
+ "chipId": "schematic_component_5",
3323
+ "center": {
3324
+ "x": 34.47,
3325
+ "y": 2.5149999999999997
3326
+ },
3327
+ "width": 0.36000000000000654,
3328
+ "height": 0.24999999999999956,
3329
+ "text": "U6"
3330
+ },
3331
+ {
3332
+ "chipId": "schematic_component_6",
3333
+ "center": {
3334
+ "x": 35.400000000000006,
3335
+ "y": -7.93
3336
+ },
3337
+ "width": 2.3999999999999986,
3338
+ "height": 0.17999999999999972,
3339
+ "text": "X091-2832TSWFG02-H14"
3340
+ },
3341
+ {
3342
+ "chipId": "schematic_component_6",
3343
+ "center": {
3344
+ "x": 34.38,
3345
+ "y": -6.085000000000001
3346
+ },
3347
+ "width": 0.480000000000004,
3348
+ "height": 0.2499999999999991,
3349
+ "text": "DS1"
3350
+ },
3351
+ {
3352
+ "chipId": "schematic_component_7",
3353
+ "center": {
3354
+ "x": -9.49,
3355
+ "y": 1.5699999999999998
3356
+ },
3357
+ "width": 2.5199999999999996,
3358
+ "height": 0.18000000000000016,
3359
+ "text": "XC32M4-48.000-F08NLDT"
3360
+ },
3361
+ {
3362
+ "chipId": "schematic_component_7",
3363
+ "center": {
3364
+ "x": -10.629999999999999,
3365
+ "y": 2.415
3366
+ },
3367
+ "width": 0.3600000000000012,
3368
+ "height": 0.24999999999999956,
3369
+ "text": "Y1"
3370
+ },
3371
+ {
3372
+ "chipId": "schematic_component_12",
3373
+ "center": {
3374
+ "x": 34.47,
3375
+ "y": -12.584999999999999
3376
+ },
3377
+ "width": 0.36000000000000654,
3378
+ "height": 0.25,
3379
+ "text": "J1"
3380
+ },
3381
+ {
3382
+ "chipId": "schematic_component_13",
3383
+ "center": {
3384
+ "x": 23.47,
3385
+ "y": 8.515
3386
+ },
3387
+ "width": 0.3599999999999959,
3388
+ "height": 0.25,
3389
+ "text": "J2"
3390
+ }
3391
+ ],
3392
+ "availableNetLabelOrientations": {
3393
+ "V3": [
3394
+ "y+"
3395
+ ],
3396
+ "PMID": [
3397
+ "y+"
3398
+ ],
3399
+ "PACK_P": [
3400
+ "y+"
3401
+ ],
3402
+ "BAT_SYS": [
3403
+ "y+"
3404
+ ],
3405
+ "VIN5": [
3406
+ "y+"
3407
+ ],
3408
+ "OLED_3V": [
3409
+ "y+"
3410
+ ],
3411
+ "OLED_HV": [
3412
+ "y+"
3413
+ ],
3414
+ "CHG_VDD": [
3415
+ "y+"
3416
+ ],
3417
+ "GAUGE_VDD": [
3418
+ "y+"
3419
+ ],
3420
+ "VDDR": [
3421
+ "y+"
3422
+ ],
3423
+ "VDDD": [
3424
+ "y+"
3425
+ ],
3426
+ "CHG_CE": [
3427
+ "x-",
3428
+ "x+"
3429
+ ],
3430
+ "CHG_LP": [
3431
+ "x-",
3432
+ "x+"
3433
+ ],
3434
+ "CHG_IRQ": [
3435
+ "x-",
3436
+ "x+"
3437
+ ],
3438
+ "IMAX": [
3439
+ "x-",
3440
+ "x+"
3441
+ ],
3442
+ "GND": [
3443
+ "y-"
3444
+ ],
3445
+ "DCDC": [
3446
+ "x-",
3447
+ "x+"
3448
+ ],
3449
+ "RF_RAW": [
3450
+ "x-",
3451
+ "x+"
3452
+ ],
3453
+ "X48P": [
3454
+ "x-",
3455
+ "x+"
3456
+ ],
3457
+ "X48N": [
3458
+ "x-",
3459
+ "x+"
3460
+ ],
3461
+ "X32P": [
3462
+ "x-",
3463
+ "x+"
3464
+ ],
3465
+ "X32N": [
3466
+ "x-",
3467
+ "x+"
3468
+ ],
3469
+ "RESETN": [
3470
+ "x-",
3471
+ "x+"
3472
+ ],
3473
+ "SWDIO": [
3474
+ "x-",
3475
+ "x+"
3476
+ ],
3477
+ "SWCLK": [
3478
+ "x-",
3479
+ "x+"
3480
+ ],
3481
+ "I2C_SDA": [
3482
+ "x-",
3483
+ "x+"
3484
+ ],
3485
+ "I2C_SCL": [
3486
+ "x-",
3487
+ "x+"
3488
+ ],
3489
+ "ACC_INT1": [
3490
+ "x-",
3491
+ "x+"
3492
+ ],
3493
+ "ACC_INT2": [
3494
+ "x-",
3495
+ "x+"
3496
+ ],
3497
+ "GAUGE_IRQ": [
3498
+ "x-",
3499
+ "x+"
3500
+ ],
3501
+ "PG_BUTTON": [
3502
+ "x-",
3503
+ "x+"
3504
+ ],
3505
+ "OLED_SCL": [
3506
+ "x-",
3507
+ "x+"
3508
+ ],
3509
+ "OLED_SDA": [
3510
+ "x-",
3511
+ "x+"
3512
+ ],
3513
+ "OLED_RST": [
3514
+ "x-",
3515
+ "x+"
3516
+ ],
3517
+ "BOOST_EN": [
3518
+ "x-",
3519
+ "x+"
3520
+ ],
3521
+ "TS": [
3522
+ "x-",
3523
+ "x+"
3524
+ ],
3525
+ "MRN": [
3526
+ "x-",
3527
+ "x+"
3528
+ ],
3529
+ "BIN": [
3530
+ "x-",
3531
+ "x+"
3532
+ ],
3533
+ "BOOST_SW": [
3534
+ "x-",
3535
+ "x+"
3536
+ ],
3537
+ "BOOST_FB": [
3538
+ "x-",
3539
+ "x+"
3540
+ ],
3541
+ "OLED_IREF": [
3542
+ "x-",
3543
+ "x+"
3544
+ ],
3545
+ "OLED_VCOM": [
3546
+ "y+"
3547
+ ],
3548
+ "RF_ANT": [
3549
+ "x-",
3550
+ "x+"
3551
+ ],
3552
+ "RF_FILTER": [
3553
+ "x-",
3554
+ "x+"
3555
+ ],
3556
+ "RF_50": [
3557
+ "x-",
3558
+ "x+"
3559
+ ]
3560
+ },
3561
+ "maxMspPairDistance": 2,
3562
+ "_hideRatsNet": false
3563
+ }