@tscircuit/schematic-trace-solver 0.0.182 → 0.0.184

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 (112) hide show
  1. package/dist/index.d.ts +5 -0
  2. package/dist/index.js +542 -132
  3. package/lib/solvers/SameNetJunctionAlignmentSolver/alignSameNetJunctions.ts +30 -12
  4. package/lib/solvers/SameNetJunctionAlignmentSolver/collapseRedundantSharedEndpointStubs.ts +267 -0
  5. package/lib/solvers/SameNetJunctionAlignmentSolver/collapseSameNetCycles.ts +1 -1
  6. package/lib/solvers/SameNetJunctionAlignmentSolver/getSharedPin.ts +13 -0
  7. package/lib/solvers/SchematicTraceLinesSolver/SchematicTraceLinesSolver.ts +45 -2
  8. package/lib/solvers/SchematicTraceLinesSolver/SchematicTraceSingleLineSolver/getPinDirection.ts +58 -10
  9. package/lib/solvers/SchematicTraceLinesSolver/SchematicTraceSingleLineSolver2/SchematicTraceSingleLineSolver2.ts +166 -57
  10. package/lib/solvers/TraceCleanupSolver/hasCollisionsWithLabels.ts +108 -3
  11. package/lib/solvers/TraceCleanupSolver/minimizeTurnsWithFilteredLabels.ts +62 -15
  12. package/lib/solvers/TraceCleanupSolver/turnMinimization.ts +5 -0
  13. package/package.json +1 -1
  14. package/tests/bug-reports/bug-report-20260706T213649Z/__snapshots__/bug-report-20260706T213649Z.snap.svg +2 -2
  15. package/tests/bug-reports/bug-report-20260706T220324Z/__snapshots__/bug-report-20260706T220324Z.snap.svg +13 -20
  16. package/tests/bug-reports/bug-report-20260707T020342Z/__snapshots__/bug-report-20260707T020342Z.snap.svg +2 -2
  17. package/tests/bug-reports/bug-report-20260707T020342Z/bug-report-20260707T020342Z.test.ts +10 -0
  18. package/tests/bug-reports/bug-report-20260707T092615Z/__snapshots__/bug-report-20260707T092615Z.snap.svg +2 -2
  19. package/tests/bug-reports/bug-report-20260707T134549Z/__snapshots__/bug-report-20260707T134549Z.snap.svg +2 -2
  20. package/tests/bug-reports/bug-report-20260707T140410Z/__snapshots__/bug-report-20260707T140410Z.snap.svg +2 -2
  21. package/tests/bug-reports/bug-report-20260707T141025Z/__snapshots__/bug-report-20260707T141025Z.snap.svg +2 -2
  22. package/tests/bug-reports/bug-report-20260707T141421Z/__snapshots__/bug-report-20260707T141421Z.snap.svg +2 -2
  23. package/tests/bug-reports/bug-report-20260707T230831Z/__snapshots__/bug-report-20260707T230831Z.snap.svg +2 -2
  24. package/tests/bug-reports/bug-report-20260708T095725Z/__snapshots__/bug-report-20260708T095725Z.snap.svg +2 -2
  25. package/tests/bug-reports/bug-report-20260716T144856Z/__snapshots__/bug-report-20260716T144856Z.snap.svg +2 -2
  26. package/tests/bug-reports/bug-report-20260717T022934Z/__snapshots__/bug-report-20260717T022934Z.snap.svg +2 -2
  27. package/tests/bug-reports/bug-report-20260717T042845Z/__snapshots__/bug-report-20260717T042845Z.snap.svg +2 -2
  28. package/tests/bug-reports/bug-report-20260721T221026Z/__snapshots__/bug-report-20260721T221026Z.snap.svg +2 -2
  29. package/tests/bug-reports/bug-report-20260724T175257Z/__snapshots__/bug-report-20260724T175257Z.snap.svg +2 -2
  30. package/tests/bug-reports/bug-report-20260728T144234Z/__snapshots__/bug-report-20260728T144234Z.snap.svg +2 -2
  31. package/tests/bug-reports/bug-report-20260728T144234Z/bug-report-20260728T144234Z.test.ts +2 -0
  32. package/tests/bug-reports/bug-report-20260730T061837Z/__snapshots__/bug-report-20260730T061837Z.snap.svg +2 -2
  33. package/tests/bug-reports/bug-report-20260730T061837Z/bug-report-20260730T061837Z.test.ts +1 -1
  34. package/tests/bug-reports/bug-report-20260731T052229Z/__snapshots__/bug-report-20260731T052229Z.snap.svg +2 -2
  35. package/tests/bug-reports/bug-report-20260804T171919Z/__snapshots__/bug-report-20260804T171919Z.snap.svg +2 -2
  36. package/tests/bug-reports/bug-report-20260804T225912Z/__snapshots__/bug-report-20260804T225912Z.snap.svg +2 -2
  37. package/tests/bug-reports/bug-report-20260805T061316Z/__snapshots__/bug-report-20260805T061316Z.snap.svg +2 -2
  38. package/tests/bug-reports/bug-report-20260806T061548Z/__snapshots__/bug-report-20260806T061548Z.snap.svg +2 -2
  39. package/tests/bug-reports/bug-report-20260815T073240Z/__snapshots__/bug-report-20260815T073240Z.snap.svg +2 -2
  40. package/tests/bug-reports/bug-report-20260819T091818Z/__snapshots__/bug-report-20260819T091818Z.snap.svg +2 -2
  41. package/tests/bug-reports/bug-report-20260825T045913Z/__snapshots__/bug-report-20260825T045913Z.snap.svg +2 -2
  42. package/tests/bug-reports/bug-report-20260825T103621Z/__snapshots__/bug-report-20260825T103621Z.snap.svg +2 -2
  43. package/tests/bug-reports/bug-report-20260826T072956Z/__snapshots__/bug-report-20260826T072956Z.snap.svg +2 -2
  44. package/tests/bug-reports/bug-report-20260901T055358Z/__snapshots__/bug-report-20260901T055358Z.snap.svg +2 -2
  45. package/tests/bug-reports/bug-report-20260901T064117Z/__snapshots__/bug-report-20260901T064117Z.snap.svg +2 -2
  46. package/tests/bug-reports/bug-report-20260901T134241Z/__snapshots__/bug-report-20260901T134241Z.snap.svg +2 -2
  47. package/tests/bug-reports/bug-report-20260902T092425Z/__snapshots__/bug-report-20260902T092425Z.snap.svg +2 -2
  48. package/tests/examples/__snapshots__/example02.snap.svg +2 -2
  49. package/tests/examples/__snapshots__/example13.snap.svg +2 -2
  50. package/tests/examples/__snapshots__/example14.snap.svg +2 -2
  51. package/tests/examples/__snapshots__/example15.snap.svg +2 -2
  52. package/tests/examples/__snapshots__/example18.snap.svg +2 -2
  53. package/tests/examples/__snapshots__/example19.snap.svg +2 -2
  54. package/tests/examples/__snapshots__/example21.snap.svg +2 -2
  55. package/tests/examples/__snapshots__/example27.snap.svg +2 -2
  56. package/tests/examples/__snapshots__/example29.snap.svg +2 -2
  57. package/tests/examples/__snapshots__/example42.snap.svg +2 -2
  58. package/tests/examples/__snapshots__/example45.snap.svg +2 -2
  59. package/tests/examples/__snapshots__/example46.snap.svg +2 -2
  60. package/tests/examples/__snapshots__/example47.snap.svg +2 -2
  61. package/tests/examples/__snapshots__/example51.snap.svg +2 -2
  62. package/tests/repros/__snapshots__/board-1273-trace-overlap-cycle.snap.svg +2 -2
  63. package/tests/repros/__snapshots__/board-15984-same-net-junction.snap.svg +2 -2
  64. package/tests/repros/__snapshots__/board1096-usb-label-overlap-iteration.snap.svg +13 -13
  65. package/tests/repros/__snapshots__/bugreport-001-gnd-overlap.snap.svg +2 -2
  66. package/tests/repros/__snapshots__/netlabel-connector-through-rail-label.snap.svg +2 -2
  67. package/tests/repros/__snapshots__/repro-battery-management-bq24073.snap.svg +2 -2
  68. package/tests/repros/__snapshots__/repro-bc107a-common-emitter-routing.snap.svg +2 -2
  69. package/tests/repros/__snapshots__/repro-bluetooth-controller-ground-decoupling-groups.snap.svg +2 -2
  70. package/tests/repros/__snapshots__/repro-board-589-regulator-section.snap.svg +2 -2
  71. package/tests/repros/__snapshots__/repro-board-648-esp12f-section.snap.svg +2 -2
  72. package/tests/repros/__snapshots__/repro-board-8090-power-section.snap.svg +2 -2
  73. package/tests/repros/__snapshots__/repro-bq24074-battery-charger.snap.svg +2 -2
  74. package/tests/repros/__snapshots__/repro-bq25895-cross-net-trace-overlap.snap.svg +2 -2
  75. package/tests/repros/__snapshots__/repro-bq40z60-current-sense.snap.svg +2 -2
  76. package/tests/repros/__snapshots__/repro-cc2340r5.snap.svg +2 -2
  77. package/tests/repros/__snapshots__/repro-core-ground-inline-label-fallback.snap.svg +2 -2
  78. package/tests/repros/__snapshots__/repro-esp12f-section.snap.svg +508 -0
  79. package/tests/repros/__snapshots__/repro-example35-minimize-trace-crossing.snap.svg +2 -2
  80. package/tests/repros/__snapshots__/repro-hdc2080-ground-label-alignment.snap.svg +2 -2
  81. package/tests/repros/__snapshots__/repro-hdc3020-ground-label-alignment.snap.svg +2 -2
  82. package/tests/repros/__snapshots__/repro-hub-usb-sheet.snap.svg +2 -2
  83. package/tests/repros/__snapshots__/repro-ina237-current-monitor.snap.svg +2 -2
  84. package/tests/repros/__snapshots__/repro-isolated-rs485-isow7841.snap.svg +2 -2
  85. package/tests/repros/__snapshots__/repro-mouse-switch-ground-unnecessary-jog.snap.svg +2 -2
  86. package/tests/repros/__snapshots__/repro-mspm0l1306-capacitor-symmetry.snap.svg +2 -2
  87. package/tests/repros/__snapshots__/repro-pga300-c6-trace-alignment.snap.svg +2 -2
  88. package/tests/repros/__snapshots__/repro-pga300-redundant-ground-traces.snap.svg +2 -2
  89. package/tests/repros/__snapshots__/repro-pmp11282-isolated-dcdc.snap.svg +26 -26
  90. package/tests/repros/__snapshots__/repro-power-group-rail-labels.snap.svg +2 -2
  91. package/tests/repros/__snapshots__/repro-powerbank-3v-system-power.snap.svg +2 -2
  92. package/tests/repros/__snapshots__/repro-rectifier-trace-overlap.snap.svg +2 -2
  93. package/tests/repros/__snapshots__/repro-rf1-unnecessary-dogleg.snap.svg +5 -5
  94. package/tests/repros/__snapshots__/repro-rp2040-gamepad-trace-alignment.snap.svg +2 -2
  95. package/tests/repros/__snapshots__/repro-rp2040-usb-cc2-ground-overlap.snap.svg +2 -2
  96. package/tests/repros/__snapshots__/repro-smartwatch-power-sheet.snap.svg +2 -2
  97. package/tests/repros/__snapshots__/repro-ti-power-output-section.snap.svg +2 -2
  98. package/tests/repros/__snapshots__/repro-tida-01389-hbridge.snap.svg +2 -2
  99. package/tests/repros/__snapshots__/repro-tida00553-j4-cell-divider.snap.svg +2 -2
  100. package/tests/repros/__snapshots__/repro-tida010076-j4-ground-bus.snap.svg +2 -2
  101. package/tests/repros/__snapshots__/repro-tida010076-page02.snap.svg +2 -2
  102. package/tests/repros/__snapshots__/repro-tmp1075-ground-label-overlap.snap.svg +2 -2
  103. package/tests/repros/__snapshots__/repro-tps61222-trace-intersection.snap.svg +2 -2
  104. package/tests/repros/__snapshots__/repro-trellis-core-gnd-net-label-overlap.snap.svg +2 -2
  105. package/tests/repros/__snapshots__/repro-type-c-vbus-led-ground-label.snap.svg +2 -2
  106. package/tests/repros/__snapshots__/repro-usb-power-vbus-label-detour.snap.svg +2 -2
  107. package/tests/repros/__snapshots__/repro130-bq27441-fuel-gauge-trace-through-c1.snap.svg +2 -2
  108. package/tests/repros/__snapshots__/repro161-power-section-autolayout.snap.svg +2 -2
  109. package/tests/repros/__snapshots__/repro48-555-timer-vcc-rail-label.snap.svg +2 -2
  110. package/tests/repros/assets/repro-esp12f-status-section.input.json +1394 -0
  111. package/tests/repros/repro-esp12f-section.test.ts +12 -0
  112. package/tests/solvers/SameNetJunctionAlignmentSolver/collapse-redundant-shared-endpoint-stubs.test.ts +101 -0
@@ -1,6 +1,6 @@
1
1
  <svg width="1200" height="2016" viewBox="0 0 1200 2016" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="Solver debug visualization on top and Circuit JSON schematic on the bottom">
2
2
  <g transform="translate(0, 0) scale(1.875, 1.875) translate(0, 0)">
3
- <rect width="100%" height="100%" fill="white"/><g><polyline data-points="-1.043443,2.1950320000000003 -1.043443,2.3950320000000005 1.043443,2.3950320000000005 1.043443,2.1950320000000003" data-type="line" data-label="" points="176.64734291457793,81.21528164511778 176.64734291457793,53.73842721503922 463.35265708542204,53.73842721503922 463.35265708542204,81.21528164511778" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.033443,1.095032 -1.033443,0.913907 -0.39139100000000004,0.913907" data-type="line" data-label="" points="178.02118563608187,232.33798101054967 178.02118563608187,257.2217073037895 266.2290323387857,257.2217073037895" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-0.451391,0 -1.033443,0 -1.033443,0.913907 -0.39139100000000004,0.913907" data-type="line" data-label="" points="257.98597600976217,382.77815531193835 178.02118563608187,382.77815531193835 178.02118563608187,257.2217073037895 266.2290323387857,257.2217073037895" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.043443,-0.181126 -1.043443,0 -0.451391,0" data-type="line" data-label="" points="176.64734291457793,407.66201898945036 176.64734291457793,382.77815531193835 257.98597600976217,382.77815531193835" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="0.268609,0 1.043443,0 1.043443,0.913907 0.208609,0.913907" data-type="line" data-label="" points="356.90265195804477,382.77815531193835 463.35265708542204,382.77815531193835 463.35265708542204,257.2217073037895 348.6595956290212,257.2217073037895" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.043443,-0.181126 1.043443,0 0.268609,0" data-type="line" data-label="" points="463.35265708542204,407.66201898945036 463.35265708542204,382.77815531193835 356.90265195804477,382.77815531193835" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.033443,1.095032 1.033443,0.913907 0.208609,0.913907" data-type="line" data-label="" points="461.9788143639181,232.33798101054967 461.9788143639181,257.2217073037895 348.6595956290212,257.2217073037895" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.033443,-1.281126 -1.033443,-1.481126 1.033443,-1.481126 1.033443,-1.281126" data-type="line" data-label="" points="178.02118563608187,558.7847183548822 178.02118563608187,586.2615727849607 461.9788143639181,586.2615727849607 461.9788143639181,558.7847183548822" fill="none" stroke="purple" stroke-width="1px"/></g><g><rect data-type="rect" data-label="Q1B" data-x="-1.343443" data-y="1.645032" x="77.73066696629527" y="81.2152816451178" width="115.40278860632975" height="151.12269936543188" fill="hsl(226, 100%, 50%, 0.8)" stroke="black" stroke-width="0.007278853571428573"/></g><g><rect data-type="rect" data-label="Q1A" data-x="-1.343443" data-y="-0.731126" x="77.73066696629527" y="407.6620189894503" width="115.40278860632975" height="151.12269936543186" fill="hsl(225, 100%, 50%, 0.8)" stroke="black" stroke-width="0.007278853571428573"/></g><g><rect data-type="rect" data-label="Q2A" data-x="1.343443" data-y="1.645032" x="446.86654442737495" y="81.2152816451178" width="115.40278860632975" height="151.12269936543188" fill="hsl(256, 100%, 50%, 0.8)" stroke="black" stroke-width="0.007278853571428573"/></g><g><rect data-type="rect" data-label="Q2B" data-x="1.343443" data-y="-0.731126" x="446.86654442737495" y="407.6620189894503" width="115.40278860632975" height="151.12269936543186" fill="hsl(257, 100%, 50%, 0.8)" stroke="black" stroke-width="0.007278853571428573"/></g><g><rect data-type="rect" data-label="C17" data-x="-0.091391" data-y="0.913907" x="266.2290323387857" y="199.52031300062464" width="82.43056329023551" height="115.40278860632975" fill="hsl(81, 100%, 50%, 0.8)" stroke="black" stroke-width="0.007278853571428573"/></g><g><rect data-type="rect" data-label="C18" data-x="-0.091391" data-y="0" x="257.9859760097622" y="325.0767610087735" width="98.9166759482826" height="115.40278860632975" fill="hsl(82, 100%, 50%, 0.8)" stroke="black" stroke-width="0.007278853571428573"/></g><g><rect data-type="rect" data-label="netId: top rail
3
+ <rect width="100%" height="100%" fill="white"/><g><polyline data-points="-1.043443,2.1950320000000003 -1.043443,2.3950320000000005 1.043443,2.3950320000000005 1.043443,2.1950320000000003" data-type="line" data-label="" points="176.64734291457793,81.21528164511778 176.64734291457793,53.73842721503922 463.35265708542204,53.73842721503922 463.35265708542204,81.21528164511778" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.033443,1.095032 -1.033443,0.913907 -0.39139100000000004,0.913907" data-type="line" data-label="" points="178.02118563608187,232.33798101054967 178.02118563608187,257.2217073037895 266.2290323387857,257.2217073037895" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.033443,0 -1.033443,0.913907 -0.39139100000000004,0.913907" data-type="line" data-label="" points="178.02118563608187,382.77815531193835 178.02118563608187,257.2217073037895 266.2290323387857,257.2217073037895" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.043443,-0.181126 -1.043443,0 -0.451391,0" data-type="line" data-label="" points="176.64734291457793,407.66201898945036 176.64734291457793,382.77815531193835 257.98597600976217,382.77815531193835" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="0.268609,0 1.043443,0 1.043443,0.913907 0.208609,0.913907" data-type="line" data-label="" points="356.90265195804477,382.77815531193835 463.35265708542204,382.77815531193835 463.35265708542204,257.2217073037895 348.6595956290212,257.2217073037895" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.043443,-0.181126 1.043443,0 0.268609,0" data-type="line" data-label="" points="463.35265708542204,407.66201898945036 463.35265708542204,382.77815531193835 356.90265195804477,382.77815531193835" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.033443,1.095032 1.033443,0.913907" data-type="line" data-label="" points="461.9788143639181,232.33798101054967 461.9788143639181,257.2217073037895" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.033443,-1.281126 -1.033443,-1.481126 1.033443,-1.481126 1.033443,-1.281126" data-type="line" data-label="" points="178.02118563608187,558.7847183548822 178.02118563608187,586.2615727849607 461.9788143639181,586.2615727849607 461.9788143639181,558.7847183548822" fill="none" stroke="purple" stroke-width="1px"/></g><g><rect data-type="rect" data-label="Q1B" data-x="-1.343443" data-y="1.645032" x="77.73066696629527" y="81.2152816451178" width="115.40278860632975" height="151.12269936543188" fill="hsl(226, 100%, 50%, 0.8)" stroke="black" stroke-width="0.007278853571428573"/></g><g><rect data-type="rect" data-label="Q1A" data-x="-1.343443" data-y="-0.731126" x="77.73066696629527" y="407.6620189894503" width="115.40278860632975" height="151.12269936543186" fill="hsl(225, 100%, 50%, 0.8)" stroke="black" stroke-width="0.007278853571428573"/></g><g><rect data-type="rect" data-label="Q2A" data-x="1.343443" data-y="1.645032" x="446.86654442737495" y="81.2152816451178" width="115.40278860632975" height="151.12269936543188" fill="hsl(256, 100%, 50%, 0.8)" stroke="black" stroke-width="0.007278853571428573"/></g><g><rect data-type="rect" data-label="Q2B" data-x="1.343443" data-y="-0.731126" x="446.86654442737495" y="407.6620189894503" width="115.40278860632975" height="151.12269936543186" fill="hsl(257, 100%, 50%, 0.8)" stroke="black" stroke-width="0.007278853571428573"/></g><g><rect data-type="rect" data-label="C17" data-x="-0.091391" data-y="0.913907" x="266.2290323387857" y="199.52031300062464" width="82.43056329023551" height="115.40278860632975" fill="hsl(81, 100%, 50%, 0.8)" stroke="black" stroke-width="0.007278853571428573"/></g><g><rect data-type="rect" data-label="C18" data-x="-0.091391" data-y="0" x="257.9859760097622" y="325.0767610087735" width="98.9166759482826" height="115.40278860632975" fill="hsl(82, 100%, 50%, 0.8)" stroke="black" stroke-width="0.007278853571428573"/></g><g><rect data-type="rect" data-label="netId: top rail
4
4
  globalConnNetId: connectivity_net0" data-x="-1.268443" data-y="2.3950320000000005" x="114.82442044690126" y="39.99999999999997" width="61.822922467676676" height="27.476854430078504" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.007278853571428573"/></g><g><rect data-type="rect" data-label="netId: left rail to C17
5
5
  globalConnNetId: connectivity_net1" data-x="-1.258443" data-y="0.913907" x="116.19826316840519" y="243.48328008875023" width="61.822922467676676" height="27.47685443007856" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.007278853571428573"/></g><g><rect data-type="rect" data-label="netId: bottom rail
6
6
  globalConnNetId: connectivity_net3" data-x="-1.258443" data-y="-1.481126" x="116.19826316840519" y="572.5231455699213" width="61.822922467676676" height="27.47685443007856" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.007278853571428573"/></g><g><rect data-type="rect" data-label="netId: right inner branch
@@ -77,7 +77,7 @@ orientation: y-" data-x="0.468609" data-y="0" cx="384.37950638812333" cy="382.77
77
77
  .port-label { fill: rgb(0, 100, 100); }
78
78
  .component-name { fill: rgb(0, 100, 100); }
79
79
 
80
- </style><rect class="boundary" x="0" y="0" width="1200" height="800"/><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_0__stack1"><path d="M 435.553897258559 126.07960587520444 L 435.553897258559 94.55970440642437 L 764.446102741441 94.55970440642437 L 764.446102741441 126.07960587520444" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="25.215921175024px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 435.553897258559 126.07960587520444 L 435.553897258559 94.55970440642437 L 764.446102741441 94.55970440642437 L 764.446102741441 126.07960587520444" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.151990146878px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_1__stack1"><path d="M 437.129892331998 299.4390639534945 L 437.129892331998 327.9842747211584 L 538.3169712211636 327.9842747211584" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="25.215921175024px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 437.129892331998 299.4390639534945 L 437.129892331998 327.9842747211584 L 538.3169712211636 327.9842747211584" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.151990146878px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_2__stack1"><path d="M 528.8610007805296 472.0155676793 L 437.129892331998 472.0155676793 L 437.129892331998 327.9842747211584 L 538.3169712211636 327.9842747211584" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="25.215921175024px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 528.8610007805296 472.0155676793 L 437.129892331998 472.0155676793 L 437.129892331998 327.9842747211584 L 538.3169712211636 327.9842747211584" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.151990146878px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_3__stack1"><path d="M 435.553897258559 500.5609360464712 L 435.553897258559 472.0155676793 L 528.8610007805296 472.0155676793" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="25.215921175024px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 435.553897258559 500.5609360464712 L 435.553897258559 472.0155676793 L 528.8610007805296 472.0155676793" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.151990146878px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_4__stack1"><path d="M 642.3326460681376 472.0155676793 L 764.446102741441 472.0155676793 L 764.446102741441 327.9842747211584 L 632.8766756275036 327.9842747211584" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="25.215921175024px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 642.3326460681376 472.0155676793 L 764.446102741441 472.0155676793 L 764.446102741441 327.9842747211584 L 632.8766756275036 327.9842747211584" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.151990146878px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_5__stack1"><path d="M 764.446102741441 500.5609360464712 L 764.446102741441 472.0155676793 L 642.3326460681376 472.0155676793" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="25.215921175024px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 764.446102741441 500.5609360464712 L 764.446102741441 472.0155676793 L 642.3326460681376 472.0155676793" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.151990146878px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_6__stack1"><path d="M 762.870107668002 299.4390639534945 L 762.870107668002 327.9842747211584 L 632.8766756275036 327.9842747211584" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="25.215921175024px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 762.870107668002 299.4390639534945 L 762.870107668002 327.9842747211584 L 632.8766756275036 327.9842747211584" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.151990146878px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_7__stack1"><path d="M 437.129892331998 673.9203941247612 L 437.129892331998 705.4402955935412 L 762.870107668002 705.4402955935412 L 762.870107668002 673.9203941247612" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="25.215921175024px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 437.129892331998 673.9203941247612 L 437.129892331998 705.4402955935412 L 762.870107668002 705.4402955935412 L 762.870107668002 673.9203941247612" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.151990146878px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_0__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_1__stack1"><circle cx="437.129892331998" cy="327.9842747211584" r="4.727985220317" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/><circle cx="538.3169712211636" cy="327.9842747211584" r="4.727985220317" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_2__stack1"><circle cx="528.8610007805296" cy="472.0155676793" r="4.727985220317" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_3__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_4__stack1"><circle cx="642.3326460681376" cy="472.0155676793" r="4.727985220317" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/><circle cx="764.446102741441" cy="472.0155676793" r="4.727985220317" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/><circle cx="632.8766756275036" cy="327.9842747211584" r="4.727985220317" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_5__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_6__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_7__stack1"/><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_0__stack1"><rect class="component chip sch-component-body" x="322.08225197095095" y="189.1194088127645" width="132.38358616887598" height="47.27985220316995" stroke-width="3.151990146878px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="322.08225197095095" y="189.1194088127645" width="132.38358616887598" height="47.27985220316995" fill="transparent"/><text class="sch-text" x="388.27404505538897" y="212.75933491434944" fill="#0f172a" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="28.367911321902px" transform="rotate(0, 388.27404505538897, 212.75933491434944)">Q1B</text><line class="component-pin sch-component-pin sch-port-line" x1="435.553897258559" y1="189.1194088127644" x2="435.553897258559" y2="126.07960587520444" stroke-width="3.151990146878px"/><g class="sch-port" data-schematic-port-id="source_port_0_0__stack1"><rect x="432.401907111681" y="122.92761572832643" width="6.303980293756" height="6.303980293756" opacity="0"/></g><text class="pin-number sch-pin-number" x="432.401907111681" y="157.59950734398444" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="23.639926101585px" transform="rotate(-90 432.401907111681 157.59950734398444)"></text><line class="component-pin sch-component-pin sch-port-line" x1="437.129892331998" y1="236.39926101593446" x2="437.129892331998" y2="299.4390639534945" stroke-width="3.151990146878px"/><g class="sch-port" data-schematic-port-id="source_port_0_1__stack1"><rect x="433.97790218512" y="296.2870738066165" width="6.303980293756" height="6.303980293756" opacity="0"/></g><text class="pin-number sch-pin-number" x="433.97790218512" y="267.9191624847145" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="23.639926101585px" transform="rotate(-90 433.97790218512 267.9191624847145)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_1__stack1"><rect class="component chip sch-component-body" x="322.08225197095095" y="563.6007389840312" width="132.38358616887598" height="47.27985220316998" stroke-width="3.151990146878px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="322.08225197095095" y="563.6007389840312" width="132.38358616887598" height="47.27985220316998" fill="transparent"/><text class="sch-text" x="388.27404505538897" y="587.2406650856162" fill="#0f172a" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="28.367911321902px" transform="rotate(0, 388.27404505538897, 587.2406650856162)">Q1A</text><line class="component-pin sch-component-pin sch-port-line" x1="435.553897258559" y1="563.6007389840312" x2="435.553897258559" y2="500.5609360464712" stroke-width="3.151990146878px"/><g class="sch-port" data-schematic-port-id="source_port_1_0__stack1"><rect x="432.401907111681" y="497.4089458995932" width="6.303980293756" height="6.303980293756" opacity="0"/></g><text class="pin-number sch-pin-number" x="432.401907111681" y="532.0808375152512" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="23.639926101585px" transform="rotate(-90 432.401907111681 532.0808375152512)"></text><line class="component-pin sch-component-pin sch-port-line" x1="437.129892331998" y1="610.8805911872012" x2="437.129892331998" y2="673.9203941247612" stroke-width="3.151990146878px"/><g class="sch-port" data-schematic-port-id="source_port_1_1__stack1"><rect x="433.97790218512" y="670.7684039778832" width="6.303980293756" height="6.303980293756" opacity="0"/></g><text class="pin-number sch-pin-number" x="433.97790218512" y="642.4004926559812" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="23.639926101585px" transform="rotate(-90 433.97790218512 642.4004926559812)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_2__stack1"><rect class="component chip sch-component-body" x="745.5341618601731" y="189.1194088127645" width="132.38358616887604" height="47.27985220316995" stroke-width="3.151990146878px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="745.5341618601731" y="189.1194088127645" width="132.38358616887604" height="47.27985220316995" fill="transparent"/><text class="sch-text" x="811.725954944611" y="212.75933491434944" fill="#0f172a" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="28.367911321902px" transform="rotate(0, 811.725954944611, 212.75933491434944)">Q2A</text><line class="component-pin sch-component-pin sch-port-line" x1="764.446102741441" y1="189.1194088127644" x2="764.446102741441" y2="126.07960587520444" stroke-width="3.151990146878px"/><g class="sch-port" data-schematic-port-id="source_port_2_0__stack1"><rect x="761.294112594563" y="122.92761572832643" width="6.303980293756" height="6.303980293756" opacity="0"/></g><text class="pin-number sch-pin-number" x="761.294112594563" y="157.59950734398444" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="23.639926101585px" transform="rotate(-90 761.294112594563 157.59950734398444)"></text><line class="component-pin sch-component-pin sch-port-line" x1="762.870107668002" y1="236.39926101593446" x2="762.870107668002" y2="299.4390639534945" stroke-width="3.151990146878px"/><g class="sch-port" data-schematic-port-id="source_port_2_1__stack1"><rect x="759.718117521124" y="296.2870738066165" width="6.303980293756" height="6.303980293756" opacity="0"/></g><text class="pin-number sch-pin-number" x="759.718117521124" y="267.9191624847145" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="23.639926101585px" transform="rotate(-90 759.718117521124 267.9191624847145)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_3__stack1"><rect class="component chip sch-component-body" x="745.5341618601731" y="563.6007389840312" width="132.38358616887604" height="47.27985220316998" stroke-width="3.151990146878px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="745.5341618601731" y="563.6007389840312" width="132.38358616887604" height="47.27985220316998" fill="transparent"/><text class="sch-text" x="811.725954944611" y="587.2406650856162" fill="#0f172a" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="28.367911321902px" transform="rotate(0, 811.725954944611, 587.2406650856162)">Q2B</text><line class="component-pin sch-component-pin sch-port-line" x1="764.446102741441" y1="563.6007389840312" x2="764.446102741441" y2="500.5609360464712" stroke-width="3.151990146878px"/><g class="sch-port" data-schematic-port-id="source_port_3_0__stack1"><rect x="761.294112594563" y="497.4089458995932" width="6.303980293756" height="6.303980293756" opacity="0"/></g><text class="pin-number sch-pin-number" x="761.294112594563" y="532.0808375152512" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="23.639926101585px" transform="rotate(-90 761.294112594563 532.0808375152512)"></text><line class="component-pin sch-component-pin sch-port-line" x1="762.870107668002" y1="610.8805911872012" x2="762.870107668002" y2="673.9203941247612" stroke-width="3.151990146878px"/><g class="sch-port" data-schematic-port-id="source_port_3_1__stack1"><rect x="759.718117521124" y="670.7684039778832" width="6.303980293756" height="6.303980293756" opacity="0"/></g><text class="pin-number sch-pin-number" x="759.718117521124" y="642.4004926559812" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="23.639926101585px" transform="rotate(-90 759.718117521124 642.4004926559812)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_4__stack1"><rect class="component-overlay sch-component-overlay" x="538.3169712211636" y="302.7652015559875" width="94.55970440633996" height="50.43814633034174" fill="transparent"/><path class="sch-component-symbol-path" d="M 632.8766756275036 327.9842747211584 L 595.0527938649676 327.9842747211584" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.151990146878px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 576.1408529836996 327.9842747211584 L 538.3169712211636 327.9842747211584" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.151990146878px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 595.0527938649676 302.7652015559875 L 595.0527938649676 353.20334788632925" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.151990146878px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 576.1408529836996 302.7652015559875 L 576.1408529836996 353.20334788632925" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.151990146878px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="585.5968234243336" y="290.16039295862237" stroke="rgb(245, 241, 237)" stroke-width="3.151990146878px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="28.367911321902px">C17</text><text class="sch-component-text" x="585.5968234243336" y="365.8081564836944" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="28.367911321902px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_5__stack1"><rect class="component-overlay sch-component-overlay" x="528.8610007805296" y="441.75267988109493" width="113.471645287608" height="60.525775596410085" fill="transparent"/><path class="sch-component-symbol-path" d="M 642.3326460681376 472.0155676793 L 596.9439879530944 472.0155676793" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.151990146878px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 574.2496588955728 472.0155676793 L 528.8610007805296 472.0155676793" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.151990146878px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 596.9439879530944 441.75267988109493 L 596.9439879530944 502.278455477505" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.151990146878px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 574.2496588955728 441.75267988109493 L 574.2496588955728 502.278455477505" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.151990146878px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="585.5968234243336" y="426.6269095642568" stroke="rgb(245, 241, 237)" stroke-width="3.151990146878px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="28.367911321902px">C18</text><text class="sch-component-text" x="585.5968234243336" y="517.4042257943431" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="28.367911321902px"></text></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_0__stack1"><circle cx="435.553897258559" cy="126.07960587520444" r="6.303980293756" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_1__stack1"><circle cx="437.129892331998" cy="299.4390639534945" r="6.303980293756" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_0__stack1"><circle cx="435.553897258559" cy="500.5609360464712" r="6.303980293756" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_1__stack1"><circle cx="437.129892331998" cy="673.9203941247612" r="6.303980293756" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_0__stack1"><circle cx="764.446102741441" cy="126.07960587520444" r="6.303980293756" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_1__stack1"><circle cx="762.870107668002" cy="299.4390639534945" r="6.303980293756" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_0__stack1"><circle cx="764.446102741441" cy="500.5609360464712" r="6.303980293756" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_1__stack1"><circle cx="762.870107668002" cy="673.9203941247612" r="6.303980293756" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_0__stack1"><circle cx="538.3169712211636" cy="327.9842747211584" r="6.303980293756" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_1__stack1"><circle cx="632.8766756275036" cy="327.9842747211584" r="6.303980293756" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_0__stack1"><circle cx="538.3169712211636" cy="472.0155676793" r="6.303980293756" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_1__stack1"><circle cx="651.7886165087716" cy="472.0155676793" r="6.303980293756" fill="red" opacity="0"/></g><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0__stack1" d="
80
+ </style><rect class="boundary" x="0" y="0" width="1200" height="800"/><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_0__stack1"><path d="M 435.553897258559 126.07960587520444 L 435.553897258559 94.55970440642437 L 764.446102741441 94.55970440642437 L 764.446102741441 126.07960587520444" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="25.215921175024px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 435.553897258559 126.07960587520444 L 435.553897258559 94.55970440642437 L 764.446102741441 94.55970440642437 L 764.446102741441 126.07960587520444" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.151990146878px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_1__stack1"><path d="M 437.129892331998 299.4390639534945 L 437.129892331998 327.9842747211584 L 538.3169712211636 327.9842747211584" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="25.215921175024px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 437.129892331998 299.4390639534945 L 437.129892331998 327.9842747211584 L 538.3169712211636 327.9842747211584" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.151990146878px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_2__stack1"><path d="M 437.129892331998 472.0155676793 L 437.129892331998 327.9842747211584 L 538.3169712211636 327.9842747211584" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="25.215921175024px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 437.129892331998 472.0155676793 L 437.129892331998 327.9842747211584 L 538.3169712211636 327.9842747211584" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.151990146878px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_3__stack1"><path d="M 435.553897258559 500.5609360464712 L 435.553897258559 472.0155676793 L 528.8610007805296 472.0155676793" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="25.215921175024px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 435.553897258559 500.5609360464712 L 435.553897258559 472.0155676793 L 528.8610007805296 472.0155676793" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.151990146878px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_4__stack1"><path d="M 642.3326460681376 472.0155676793 L 764.446102741441 472.0155676793 L 764.446102741441 327.9842747211584 L 632.8766756275036 327.9842747211584" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="25.215921175024px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 642.3326460681376 472.0155676793 L 764.446102741441 472.0155676793 L 764.446102741441 327.9842747211584 L 632.8766756275036 327.9842747211584" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.151990146878px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_5__stack1"><path d="M 764.446102741441 500.5609360464712 L 764.446102741441 472.0155676793 L 642.3326460681376 472.0155676793" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="25.215921175024px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 764.446102741441 500.5609360464712 L 764.446102741441 472.0155676793 L 642.3326460681376 472.0155676793" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.151990146878px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_6__stack1"><path d="M 762.870107668002 299.4390639534945 L 762.870107668002 327.9842747211584" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="25.215921175024px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 762.870107668002 299.4390639534945 L 762.870107668002 327.9842747211584" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.151990146878px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_7__stack1"><path d="M 437.129892331998 673.9203941247612 L 437.129892331998 705.4402955935412 L 762.870107668002 705.4402955935412 L 762.870107668002 673.9203941247612" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="25.215921175024px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 437.129892331998 673.9203941247612 L 437.129892331998 705.4402955935412 L 762.870107668002 705.4402955935412 L 762.870107668002 673.9203941247612" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.151990146878px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_0__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_1__stack1"><circle cx="437.129892331998" cy="327.9842747211584" r="4.727985220317" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/><circle cx="538.3169712211636" cy="327.9842747211584" r="4.727985220317" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_2__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_3__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_4__stack1"><circle cx="642.3326460681376" cy="472.0155676793" r="4.727985220317" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/><circle cx="764.446102741441" cy="472.0155676793" r="4.727985220317" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_5__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_6__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_7__stack1"/><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_0__stack1"><rect class="component chip sch-component-body" x="322.08225197095095" y="189.1194088127645" width="132.38358616887598" height="47.27985220316995" stroke-width="3.151990146878px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="322.08225197095095" y="189.1194088127645" width="132.38358616887598" height="47.27985220316995" fill="transparent"/><text class="sch-text" x="388.27404505538897" y="212.75933491434944" fill="#0f172a" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="28.367911321902px" transform="rotate(0, 388.27404505538897, 212.75933491434944)">Q1B</text><line class="component-pin sch-component-pin sch-port-line" x1="435.553897258559" y1="189.1194088127644" x2="435.553897258559" y2="126.07960587520444" stroke-width="3.151990146878px"/><g class="sch-port" data-schematic-port-id="source_port_0_0__stack1"><rect x="432.401907111681" y="122.92761572832643" width="6.303980293756" height="6.303980293756" opacity="0"/></g><text class="pin-number sch-pin-number" x="432.401907111681" y="157.59950734398444" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="23.639926101585px" transform="rotate(-90 432.401907111681 157.59950734398444)"></text><line class="component-pin sch-component-pin sch-port-line" x1="437.129892331998" y1="236.39926101593446" x2="437.129892331998" y2="299.4390639534945" stroke-width="3.151990146878px"/><g class="sch-port" data-schematic-port-id="source_port_0_1__stack1"><rect x="433.97790218512" y="296.2870738066165" width="6.303980293756" height="6.303980293756" opacity="0"/></g><text class="pin-number sch-pin-number" x="433.97790218512" y="267.9191624847145" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="23.639926101585px" transform="rotate(-90 433.97790218512 267.9191624847145)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_1__stack1"><rect class="component chip sch-component-body" x="322.08225197095095" y="563.6007389840312" width="132.38358616887598" height="47.27985220316998" stroke-width="3.151990146878px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="322.08225197095095" y="563.6007389840312" width="132.38358616887598" height="47.27985220316998" fill="transparent"/><text class="sch-text" x="388.27404505538897" y="587.2406650856162" fill="#0f172a" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="28.367911321902px" transform="rotate(0, 388.27404505538897, 587.2406650856162)">Q1A</text><line class="component-pin sch-component-pin sch-port-line" x1="435.553897258559" y1="563.6007389840312" x2="435.553897258559" y2="500.5609360464712" stroke-width="3.151990146878px"/><g class="sch-port" data-schematic-port-id="source_port_1_0__stack1"><rect x="432.401907111681" y="497.4089458995932" width="6.303980293756" height="6.303980293756" opacity="0"/></g><text class="pin-number sch-pin-number" x="432.401907111681" y="532.0808375152512" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="23.639926101585px" transform="rotate(-90 432.401907111681 532.0808375152512)"></text><line class="component-pin sch-component-pin sch-port-line" x1="437.129892331998" y1="610.8805911872012" x2="437.129892331998" y2="673.9203941247612" stroke-width="3.151990146878px"/><g class="sch-port" data-schematic-port-id="source_port_1_1__stack1"><rect x="433.97790218512" y="670.7684039778832" width="6.303980293756" height="6.303980293756" opacity="0"/></g><text class="pin-number sch-pin-number" x="433.97790218512" y="642.4004926559812" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="23.639926101585px" transform="rotate(-90 433.97790218512 642.4004926559812)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_2__stack1"><rect class="component chip sch-component-body" x="745.5341618601731" y="189.1194088127645" width="132.38358616887604" height="47.27985220316995" stroke-width="3.151990146878px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="745.5341618601731" y="189.1194088127645" width="132.38358616887604" height="47.27985220316995" fill="transparent"/><text class="sch-text" x="811.725954944611" y="212.75933491434944" fill="#0f172a" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="28.367911321902px" transform="rotate(0, 811.725954944611, 212.75933491434944)">Q2A</text><line class="component-pin sch-component-pin sch-port-line" x1="764.446102741441" y1="189.1194088127644" x2="764.446102741441" y2="126.07960587520444" stroke-width="3.151990146878px"/><g class="sch-port" data-schematic-port-id="source_port_2_0__stack1"><rect x="761.294112594563" y="122.92761572832643" width="6.303980293756" height="6.303980293756" opacity="0"/></g><text class="pin-number sch-pin-number" x="761.294112594563" y="157.59950734398444" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="23.639926101585px" transform="rotate(-90 761.294112594563 157.59950734398444)"></text><line class="component-pin sch-component-pin sch-port-line" x1="762.870107668002" y1="236.39926101593446" x2="762.870107668002" y2="299.4390639534945" stroke-width="3.151990146878px"/><g class="sch-port" data-schematic-port-id="source_port_2_1__stack1"><rect x="759.718117521124" y="296.2870738066165" width="6.303980293756" height="6.303980293756" opacity="0"/></g><text class="pin-number sch-pin-number" x="759.718117521124" y="267.9191624847145" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="23.639926101585px" transform="rotate(-90 759.718117521124 267.9191624847145)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_3__stack1"><rect class="component chip sch-component-body" x="745.5341618601731" y="563.6007389840312" width="132.38358616887604" height="47.27985220316998" stroke-width="3.151990146878px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="745.5341618601731" y="563.6007389840312" width="132.38358616887604" height="47.27985220316998" fill="transparent"/><text class="sch-text" x="811.725954944611" y="587.2406650856162" fill="#0f172a" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="28.367911321902px" transform="rotate(0, 811.725954944611, 587.2406650856162)">Q2B</text><line class="component-pin sch-component-pin sch-port-line" x1="764.446102741441" y1="563.6007389840312" x2="764.446102741441" y2="500.5609360464712" stroke-width="3.151990146878px"/><g class="sch-port" data-schematic-port-id="source_port_3_0__stack1"><rect x="761.294112594563" y="497.4089458995932" width="6.303980293756" height="6.303980293756" opacity="0"/></g><text class="pin-number sch-pin-number" x="761.294112594563" y="532.0808375152512" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="23.639926101585px" transform="rotate(-90 761.294112594563 532.0808375152512)"></text><line class="component-pin sch-component-pin sch-port-line" x1="762.870107668002" y1="610.8805911872012" x2="762.870107668002" y2="673.9203941247612" stroke-width="3.151990146878px"/><g class="sch-port" data-schematic-port-id="source_port_3_1__stack1"><rect x="759.718117521124" y="670.7684039778832" width="6.303980293756" height="6.303980293756" opacity="0"/></g><text class="pin-number sch-pin-number" x="759.718117521124" y="642.4004926559812" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="23.639926101585px" transform="rotate(-90 759.718117521124 642.4004926559812)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_4__stack1"><rect class="component-overlay sch-component-overlay" x="538.3169712211636" y="302.7652015559875" width="94.55970440633996" height="50.43814633034174" fill="transparent"/><path class="sch-component-symbol-path" d="M 632.8766756275036 327.9842747211584 L 595.0527938649676 327.9842747211584" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.151990146878px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 576.1408529836996 327.9842747211584 L 538.3169712211636 327.9842747211584" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.151990146878px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 595.0527938649676 302.7652015559875 L 595.0527938649676 353.20334788632925" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.151990146878px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 576.1408529836996 302.7652015559875 L 576.1408529836996 353.20334788632925" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.151990146878px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="585.5968234243336" y="290.16039295862237" stroke="rgb(245, 241, 237)" stroke-width="3.151990146878px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="28.367911321902px">C17</text><text class="sch-component-text" x="585.5968234243336" y="365.8081564836944" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="28.367911321902px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_5__stack1"><rect class="component-overlay sch-component-overlay" x="528.8610007805296" y="441.75267988109493" width="113.471645287608" height="60.525775596410085" fill="transparent"/><path class="sch-component-symbol-path" d="M 642.3326460681376 472.0155676793 L 596.9439879530944 472.0155676793" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.151990146878px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 574.2496588955728 472.0155676793 L 528.8610007805296 472.0155676793" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.151990146878px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 596.9439879530944 441.75267988109493 L 596.9439879530944 502.278455477505" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.151990146878px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 574.2496588955728 441.75267988109493 L 574.2496588955728 502.278455477505" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.151990146878px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="585.5968234243336" y="426.6269095642568" stroke="rgb(245, 241, 237)" stroke-width="3.151990146878px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="28.367911321902px">C18</text><text class="sch-component-text" x="585.5968234243336" y="517.4042257943431" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="28.367911321902px"></text></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_0__stack1"><circle cx="435.553897258559" cy="126.07960587520444" r="6.303980293756" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_1__stack1"><circle cx="437.129892331998" cy="299.4390639534945" r="6.303980293756" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_0__stack1"><circle cx="435.553897258559" cy="500.5609360464712" r="6.303980293756" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_1__stack1"><circle cx="437.129892331998" cy="673.9203941247612" r="6.303980293756" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_0__stack1"><circle cx="764.446102741441" cy="126.07960587520444" r="6.303980293756" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_1__stack1"><circle cx="762.870107668002" cy="299.4390639534945" r="6.303980293756" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_0__stack1"><circle cx="764.446102741441" cy="500.5609360464712" r="6.303980293756" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_1__stack1"><circle cx="762.870107668002" cy="673.9203941247612" r="6.303980293756" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_0__stack1"><circle cx="538.3169712211636" cy="327.9842747211584" r="6.303980293756" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_1__stack1"><circle cx="632.8766756275036" cy="327.9842747211584" r="6.303980293756" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_0__stack1"><circle cx="538.3169712211636" cy="472.0155676793" r="6.303980293756" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_1__stack1"><circle cx="651.7886165087716" cy="472.0155676793" r="6.303980293756" fill="red" opacity="0"/></g><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0__stack1" d="
81
81
  M 435.553897258559,94.55970440642437
82
82
  L 427.0435238619884,110.31965514081438
83
83
  L 392.56075165514306,110.31965514081438
@@ -1,6 +1,6 @@
1
1
  <svg width="1200" height="2016" viewBox="0 0 1200 2016" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="Solver debug visualization on top and Circuit JSON schematic on the bottom">
2
2
  <g transform="translate(0, 0) scale(1.875, 1.875) translate(0, 0)">
3
- <rect width="100%" height="100%" fill="white"/><g><polyline data-points="9.6,0.4 7.5600000000000005,2" data-type="line" data-label="" points="422.56644956873777,407.73103326879067 221.4750924133076,250.0123217743355" fill="none" stroke="hsl(64, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="9.6,0.4 7.839999999999999,2" data-type="line" data-label="" points="422.56644956873777,407.73103326879067 249.0758669248371,250.0123217743355" fill="none" stroke="hsl(64, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="9.6,0.6 8.559999999999999,2" data-type="line" data-label="" points="422.56644956873777,388.0161943319838 320.0492870973419,250.0123217743355" fill="none" stroke="hsl(16, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="9.6,0.6 8.84,2" data-type="line" data-label="" points="422.56644956873777,388.0161943319838 347.6500616088716,250.0123217743355" fill="none" stroke="hsl(16, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="9.6,0.8 9.559999999999999,2" data-type="line" data-label="" points="422.56644956873777,368.30135539517687 418.6234817813763,250.0123217743355" fill="none" stroke="hsl(240, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="9.6,0.8 9.84,2" data-type="line" data-label="" points="422.56644956873777,368.30135539517687 446.22425629290615,250.0123217743355" fill="none" stroke="hsl(240, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="10.559999999999999,2 11.200000000000001,0.8" data-type="line" data-label="" points="517.1976764654108,250.0123217743355 580.2851610631932,368.30135539517687" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.559999999999999,2 11.200000000000001,0.6" data-type="line" data-label="" points="517.1976764654108,250.0123217743355 580.2851610631932,388.0161943319838" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.559999999999999,2 11.200000000000001,0.4" data-type="line" data-label="" points="517.1976764654108,250.0123217743355 580.2851610631932,407.73103326879067" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="11.200000000000001,0.8 11.200000000000001,0.6" data-type="line" data-label="" points="580.2851610631932,368.30135539517687 580.2851610631932,388.0161943319838" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="11.200000000000001,0.8 11.200000000000001,0.4" data-type="line" data-label="" points="580.2851610631932,368.30135539517687 580.2851610631932,407.73103326879067" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="11.200000000000001,0.6 11.200000000000001,0.4" data-type="line" data-label="" points="580.2851610631932,388.0161943319838 580.2851610631932,407.73103326879067" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="7.839999999999999,2 7.5600000000000005,2" data-type="line" data-label="" points="249.0758669248371,250.0123217743355 221.4750924133076,250.0123217743355" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="8.84,2 8.64,2 8.64,0.6 9.6,0.6" data-type="line" data-label="" points="347.6500616088716,250.0123217743355 327.9352226720648,250.0123217743355 327.9352226720648,388.0161943319838 422.56644956873777,388.0161943319838" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="8.559999999999999,2 8.84,2" data-type="line" data-label="" points="320.0492870973419,250.0123217743355 347.6500616088716,250.0123217743355" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="9.559999999999999,2 9.579999999999998,2 9.579999999999998,0.8 9.6,0.8" data-type="line" data-label="" points="418.6234817813763,250.0123217743355 420.594965675057,250.0123217743355 420.594965675057,368.30135539517687 422.56644956873777,368.30135539517687" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="9.84,2 9.559999999999999,2" data-type="line" data-label="" points="446.22425629290615,250.0123217743355 418.6234817813763,250.0123217743355" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="11.200000000000001,0.6 11.4,0.6 11.4,0.8 11.200000000000001,0.8" data-type="line" data-label="" points="580.2851610631932,388.0161943319838 599.9999999999999,388.0161943319838 599.9999999999999,368.30135539517687 580.2851610631932,368.30135539517687" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="11.200000000000001,0.4 11.4,0.4 11.4,0.6 11.200000000000001,0.6" data-type="line" data-label="" points="580.2851610631932,407.73103326879067 599.9999999999999,407.73103326879067 599.9999999999999,388.0161943319838 580.2851610631932,388.0161943319838" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="10.559999999999999,2 11.4,2 11.4,0.8 11.200000000000001,0.8" data-type="line" data-label="" points="517.1976764654108,250.0123217743355 599.9999999999999,250.0123217743355 599.9999999999999,368.30135539517687 580.2851610631932,368.30135539517687" fill="none" stroke="purple" stroke-width="1px"/></g><g><rect data-type="rect" data-label="R26" data-x="7.2" data-y="2" x="150.50167224080263" y="216.49709558176377" width="70.97342017250492" height="67.03045238514346" fill="hsl(126, 100%, 50%, 0.8)" stroke="black" stroke-width="0.010144642857142859"/></g><g><rect data-type="rect" data-label="R27" data-x="8.2" data-y="2" x="249.0758669248371" y="216.49709558176377" width="70.9734201725048" height="67.03045238514346" fill="hsl(127, 100%, 50%, 0.8)" stroke="black" stroke-width="0.010144642857142859"/></g><g><rect data-type="rect" data-label="R28" data-x="9.2" data-y="2" x="347.6500616088717" y="216.49709558176377" width="70.97342017250469" height="67.03045238514346" fill="hsl(128, 100%, 50%, 0.8)" stroke="black" stroke-width="0.010144642857142859"/></g><g><rect data-type="rect" data-label="R29" data-x="10.2" data-y="2" x="446.2242562929061" y="216.49709558176377" width="70.97342017250469" height="67.03045238514346" fill="hsl(129, 100%, 50%, 0.8)" stroke="black" stroke-width="0.010144642857142859"/></g><g><rect data-type="rect" data-label="J4" data-x="10.4" data-y="0.6" x="422.56644956873777" y="348.58651645837" width="157.71871149445542" height="78.8593557472276" fill="hsl(186, 100%, 50%, 0.8)" stroke="black" stroke-width="0.010144642857142859"/></g><g><rect data-type="rect" data-label="J4" data-x="10.12" data-y="0.07" x="461.9961274423517" y="431.388839992959" width="23.657806724168154" height="17.7433550431262" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.010144642857142859"/></g><g><rect data-type="rect" data-label="J4" data-x="10.12" data-y="1.115" x="456.08167576130955" y="324.92870973420173" width="35.4867100862524" height="24.643548671008602" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.010144642857142859"/></g><g><rect data-type="rect" data-label="netId: U2_VFB
3
+ <rect width="100%" height="100%" fill="white"/><g><polyline data-points="9.6,0.4 7.5600000000000005,2" data-type="line" data-label="" points="422.56644956873777,407.73103326879067 221.4750924133076,250.0123217743355" fill="none" stroke="hsl(64, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="9.6,0.4 7.839999999999999,2" data-type="line" data-label="" points="422.56644956873777,407.73103326879067 249.0758669248371,250.0123217743355" fill="none" stroke="hsl(64, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="9.6,0.6 8.559999999999999,2" data-type="line" data-label="" points="422.56644956873777,388.0161943319838 320.0492870973419,250.0123217743355" fill="none" stroke="hsl(16, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="9.6,0.6 8.84,2" data-type="line" data-label="" points="422.56644956873777,388.0161943319838 347.6500616088716,250.0123217743355" fill="none" stroke="hsl(16, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="9.6,0.8 9.559999999999999,2" data-type="line" data-label="" points="422.56644956873777,368.30135539517687 418.6234817813763,250.0123217743355" fill="none" stroke="hsl(240, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="9.6,0.8 9.84,2" data-type="line" data-label="" points="422.56644956873777,368.30135539517687 446.22425629290615,250.0123217743355" fill="none" stroke="hsl(240, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="10.559999999999999,2 11.200000000000001,0.8" data-type="line" data-label="" points="517.1976764654108,250.0123217743355 580.2851610631932,368.30135539517687" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.559999999999999,2 11.200000000000001,0.6" data-type="line" data-label="" points="517.1976764654108,250.0123217743355 580.2851610631932,388.0161943319838" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.559999999999999,2 11.200000000000001,0.4" data-type="line" data-label="" points="517.1976764654108,250.0123217743355 580.2851610631932,407.73103326879067" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="11.200000000000001,0.8 11.200000000000001,0.6" data-type="line" data-label="" points="580.2851610631932,368.30135539517687 580.2851610631932,388.0161943319838" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="11.200000000000001,0.8 11.200000000000001,0.4" data-type="line" data-label="" points="580.2851610631932,368.30135539517687 580.2851610631932,407.73103326879067" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="11.200000000000001,0.6 11.200000000000001,0.4" data-type="line" data-label="" points="580.2851610631932,388.0161943319838 580.2851610631932,407.73103326879067" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="7.839999999999999,2 7.5600000000000005,2" data-type="line" data-label="" points="249.0758669248371,250.0123217743355 221.4750924133076,250.0123217743355" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="8.64,2 8.64,0.6 9.6,0.6" data-type="line" data-label="" points="327.9352226720648,250.0123217743355 327.9352226720648,388.0161943319838 422.56644956873777,388.0161943319838" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="8.84,2 8.559999999999999,2" data-type="line" data-label="" points="347.6500616088716,250.0123217743355 320.0492870973419,250.0123217743355" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="9.579999999999998,2 9.579999999999998,0.8 9.6,0.8" data-type="line" data-label="" points="420.594965675057,250.0123217743355 420.594965675057,368.30135539517687 422.56644956873777,368.30135539517687" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="9.559999999999999,2 9.84,2" data-type="line" data-label="" points="418.6234817813763,250.0123217743355 446.22425629290615,250.0123217743355" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="11.200000000000001,0.6 11.4,0.6 11.4,0.8 11.200000000000001,0.8" data-type="line" data-label="" points="580.2851610631932,388.0161943319838 599.9999999999999,388.0161943319838 599.9999999999999,368.30135539517687 580.2851610631932,368.30135539517687" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="11.200000000000001,0.4 11.4,0.4 11.4,0.6" data-type="line" data-label="" points="580.2851610631932,407.73103326879067 599.9999999999999,407.73103326879067 599.9999999999999,388.0161943319838" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="10.559999999999999,2 11.4,2 11.4,0.8 11.200000000000001,0.8" data-type="line" data-label="" points="517.1976764654108,250.0123217743355 599.9999999999999,250.0123217743355 599.9999999999999,368.30135539517687 580.2851610631932,368.30135539517687" fill="none" stroke="purple" stroke-width="1px"/></g><g><rect data-type="rect" data-label="R26" data-x="7.2" data-y="2" x="150.50167224080263" y="216.49709558176377" width="70.97342017250492" height="67.03045238514346" fill="hsl(126, 100%, 50%, 0.8)" stroke="black" stroke-width="0.010144642857142859"/></g><g><rect data-type="rect" data-label="R27" data-x="8.2" data-y="2" x="249.0758669248371" y="216.49709558176377" width="70.9734201725048" height="67.03045238514346" fill="hsl(127, 100%, 50%, 0.8)" stroke="black" stroke-width="0.010144642857142859"/></g><g><rect data-type="rect" data-label="R28" data-x="9.2" data-y="2" x="347.6500616088717" y="216.49709558176377" width="70.97342017250469" height="67.03045238514346" fill="hsl(128, 100%, 50%, 0.8)" stroke="black" stroke-width="0.010144642857142859"/></g><g><rect data-type="rect" data-label="R29" data-x="10.2" data-y="2" x="446.2242562929061" y="216.49709558176377" width="70.97342017250469" height="67.03045238514346" fill="hsl(129, 100%, 50%, 0.8)" stroke="black" stroke-width="0.010144642857142859"/></g><g><rect data-type="rect" data-label="J4" data-x="10.4" data-y="0.6" x="422.56644956873777" y="348.58651645837" width="157.71871149445542" height="78.8593557472276" fill="hsl(186, 100%, 50%, 0.8)" stroke="black" stroke-width="0.010144642857142859"/></g><g><rect data-type="rect" data-label="J4" data-x="10.12" data-y="0.07" x="461.9961274423517" y="431.388839992959" width="23.657806724168154" height="17.7433550431262" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.010144642857142859"/></g><g><rect data-type="rect" data-label="J4" data-x="10.12" data-y="1.115" x="456.08167576130955" y="324.92870973420173" width="35.4867100862524" height="24.643548671008602" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.010144642857142859"/></g><g><rect data-type="rect" data-label="netId: U2_VFB
4
4
  globalConnNetId: connectivity_net3" data-x="6.278999999999999" data-y="2" x="39.99999999999994" y="240.154902305932" width="110.40309804611854" height="19.714838936806956" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.010144642857142859"/></g><g><rect data-type="rect" data-label="netId: 4-Cell/J4-R27
5
5
  globalConnNetId: connectivity_net0" data-x="9.299" data-y="0.4" x="363.32335856363306" y="397.8736138003872" width="59.14451681042078" height="19.714838936806927" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.010144642857142859"/></g><g><rect data-type="rect" data-label="netId: 4-Cell/J4-R27
6
6
  globalConnNetId: connectivity_net0" data-x="7.699999999999999" data-y="2.3" x="225.4180602006689" y="190.86780496391484" width="19.714838936806814" height="59.14451681042067" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.010144642857142859"/></g><g><rect data-type="rect" data-label="netId: 3-Cell/J4-R28
@@ -83,7 +83,7 @@ orientation: y-" data-x="10.98" data-y="2" cx="558.5988382327056" cy="250.012321
83
83
  .port-label { fill: rgb(0, 100, 100); }
84
84
  .component-name { fill: rgb(0, 100, 100); }
85
85
 
86
- </style><rect class="boundary" x="0" y="0" width="1200" height="800"/><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_0__stack1"><path d="M 433.7807606261799 262.5279642059 L 381.58090976862013 262.5279642059" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="29.82848620432px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 433.7807606261799 262.5279642059 L 381.58090976862013 262.5279642059" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_1__stack1"><path d="M 620.2087994031801 262.5279642059 L 582.9231916477802 262.5279642059 L 582.9231916477802 523.5272184937 L 761.8941088737001 523.5272184937" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="29.82848620432px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 620.2087994031801 262.5279642059 L 582.9231916477802 262.5279642059 L 582.9231916477802 523.5272184937 L 761.8941088737001 523.5272184937" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_2__stack1"><path d="M 568.0089485456199 262.5279642059 L 620.2087994031801 262.5279642059" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="29.82848620432px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 568.0089485456199 262.5279642059 L 620.2087994031801 262.5279642059" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_3__stack1"><path d="M 754.4369873226199 262.5279642059 L 758.1655480981597 262.5279642059 L 758.1655480981597 486.2416107383 L 761.8941088737001 486.2416107383" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="29.82848620432px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 754.4369873226199 262.5279642059 L 758.1655480981597 262.5279642059 L 758.1655480981597 486.2416107383 L 761.8941088737001 486.2416107383" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_4__stack1"><path d="M 806.6368381801801 262.5279642059 L 754.4369873226199 262.5279642059" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="29.82848620432px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 806.6368381801801 262.5279642059 L 754.4369873226199 262.5279642059" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_5__stack1"><path d="M 1060.1789709169004 523.5272184937 L 1097.4645786723001 523.5272184937 L 1097.4645786723001 486.2416107383 L 1060.1789709169004 486.2416107383" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="29.82848620432px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1060.1789709169004 523.5272184937 L 1097.4645786723001 523.5272184937 L 1097.4645786723001 486.2416107383 L 1060.1789709169004 486.2416107383" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_6__stack1"><path d="M 1060.1789709169004 560.8128262491 L 1097.4645786723001 560.8128262491 L 1097.4645786723001 523.5272184937 L 1060.1789709169004 523.5272184937" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="29.82848620432px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1060.1789709169004 560.8128262491 L 1097.4645786723001 560.8128262491 L 1097.4645786723001 523.5272184937 L 1060.1789709169004 523.5272184937" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_7__stack1"><path d="M 940.8650260996199 262.5279642059 L 1097.4645786723001 262.5279642059 L 1097.4645786723001 486.2416107383 L 1060.1789709169004 486.2416107383" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="29.82848620432px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 940.8650260996199 262.5279642059 L 1097.4645786723001 262.5279642059 L 1097.4645786723001 486.2416107383 L 1060.1789709169004 486.2416107383" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_0__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_1__stack1"><circle cx="620.2087994031801" cy="262.5279642059" r="5.59284116331" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_2__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_3__stack1"><circle cx="754.4369873226199" cy="262.5279642059" r="5.59284116331" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_4__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_5__stack1"><circle cx="1060.1789709169004" cy="523.5272184937" r="5.59284116331" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/><circle cx="1097.4645786723001" cy="523.5272184937" r="5.59284116331" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/><circle cx="1097.4645786723001" cy="486.2416107383" r="5.59284116331" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/><circle cx="1060.1789709169004" cy="486.2416107383" r="5.59284116331" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_6__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_7__stack1"/><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_0__stack1"><rect class="component-overlay sch-component-overlay" x="247.35272184917997" y="244.63534675623862" width="134.22818791944016" height="35.785234899322745" fill="transparent"/><path class="sch-component-symbol-path" d="M 247.35272184917997 262.5279642059 L 269.7285607753506 262.5279642059" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 359.20507084244946 262.5279642059 L 381.58090976862013 262.5279642059" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 269.7285607753506 244.63534675623862 L 359.20507084244946 244.63534675623862 L 359.20507084244946 280.42058165556136 L 269.7285607753506 280.42058165556136 L 269.7285607753506 244.63534675623862" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="314.46681580890004" y="226.73378076071594" stroke="rgb(245, 241, 237)" stroke-width="3.72856077554px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="33.557046979860004px">R26</text><text class="sch-component-text" x="314.46681580890004" y="298.32214765108404" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="33.557046979860004px"></text><circle class="component-pin sch-component-pin" cx="247.35272184917997" cy="262.5279642059" r="3.72856077554px" stroke-width="3.72856077554px" fill="none" stroke="rgb(132, 0, 0)"/></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_1__stack1"><rect class="component-overlay sch-component-overlay" x="433.7807606261799" y="244.63534675623862" width="134.2281879194402" height="35.785234899322745" fill="transparent"/><path class="sch-component-symbol-path" d="M 433.7807606261799 262.5279642059 L 456.1565995523506 262.5279642059" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 545.6331096194494 262.5279642059 L 568.0089485456201 262.5279642059" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 456.1565995523506 244.63534675623862 L 545.6331096194494 244.63534675623862 L 545.6331096194494 280.42058165556136 L 456.1565995523506 280.42058165556136 L 456.1565995523506 244.63534675623862" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="500.8948545859" y="226.73378076071594" stroke="rgb(245, 241, 237)" stroke-width="3.72856077554px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="33.557046979860004px">R27</text><text class="sch-component-text" x="500.8948545859" y="298.32214765108404" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="33.557046979860004px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_2__stack1"><rect class="component-overlay sch-component-overlay" x="620.2087994031801" y="244.63534675623868" width="134.22818791943973" height="35.78523489932263" fill="transparent"/><path class="sch-component-symbol-path" d="M 620.2087994031801 262.5279642059 L 642.5846383293507 262.5279642059" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 732.0611483964493 262.5279642059 L 754.4369873226199 262.5279642059" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 642.5846383293507 244.63534675623868 L 732.0611483964493 244.63534675623868 L 732.0611483964493 280.4205816555613 L 642.5846383293507 280.4205816555613 L 642.5846383293507 244.63534675623868" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="687.3228933629" y="226.73378076071606" stroke="rgb(245, 241, 237)" stroke-width="3.72856077554px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="33.557046979860004px">R28</text><text class="sch-component-text" x="687.3228933629" y="298.3221476510839" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="33.557046979860004px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_3__stack1"><rect class="component-overlay sch-component-overlay" x="806.6368381801801" y="244.63534675623868" width="134.22818791943973" height="35.78523489932263" fill="transparent"/><path class="sch-component-symbol-path" d="M 806.6368381801801 262.5279642059 L 829.0126771063507 262.5279642059" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 918.4891871734493 262.5279642059 L 940.8650260996199 262.5279642059" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 829.0126771063507 244.63534675623868 L 918.4891871734493 244.63534675623868 L 918.4891871734493 280.4205816555613 L 829.0126771063507 280.4205816555613 L 829.0126771063507 244.63534675623868" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="873.7509321399" y="226.73378076071606" stroke="rgb(245, 241, 237)" stroke-width="3.72856077554px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="33.557046979860004px">R29</text><text class="sch-component-text" x="873.7509321399" y="298.3221476510839" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="33.557046979860004px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_4__stack1"><rect class="component chip sch-component-body" x="836.4653243845" y="448.95600298290003" width="149.14243102160026" height="149.14243102160003" stroke-width="3.72856077554px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="836.4653243845" y="448.95600298290003" width="149.14243102160026" height="149.14243102160003" fill="transparent"/><text class="sch-text" x="911.0365398953002" y="523.5272184937" fill="#0f172a" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="33.557046979860004px" transform="rotate(0, 911.0365398953002, 523.5272184937)">J4</text><line class="component-pin sch-component-pin sch-port-line" x1="836.4653243845" y1="486.2416107383" x2="761.8941088737001" y2="486.2416107383" stroke-width="3.72856077554px"/><g class="sch-port" data-schematic-port-id="source_port_4_0__stack1"><rect x="758.1655480981601" y="482.51304996275996" width="7.45712155108" height="7.45712155108" opacity="0"/></g><text class="pin-number sch-pin-number" x="799.1797166290999" y="482.51304996275996" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="27.964205816550002px" transform="">1</text><line class="component-pin sch-component-pin sch-port-line" x1="985.6077554061003" y1="486.2416107383" x2="1060.1789709169004" y2="486.2416107383" stroke-width="3.72856077554px"/><g class="sch-port" data-schematic-port-id="source_port_4_1__stack1"><rect x="1056.4504101413604" y="482.51304996275996" width="7.45712155108" height="7.45712155108" opacity="0"/></g><text class="pin-number sch-pin-number" x="1022.8933631615002" y="482.51304996275996" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="27.964205816550002px" transform="">2</text><line class="component-pin sch-component-pin sch-port-line" x1="836.4653243845" y1="523.5272184937" x2="761.8941088737001" y2="523.5272184937" stroke-width="3.72856077554px"/><g class="sch-port" data-schematic-port-id="source_port_4_2__stack1"><rect x="758.1655480981601" y="519.79865771816" width="7.45712155108" height="7.45712155108" opacity="0"/></g><text class="pin-number sch-pin-number" x="799.1797166290999" y="519.79865771816" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="27.964205816550002px" transform="">3</text><line class="component-pin sch-component-pin sch-port-line" x1="985.6077554061003" y1="523.5272184937" x2="1060.1789709169004" y2="523.5272184937" stroke-width="3.72856077554px"/><g class="sch-port" data-schematic-port-id="source_port_4_3__stack1"><rect x="1056.4504101413604" y="519.79865771816" width="7.45712155108" height="7.45712155108" opacity="0"/></g><text class="pin-number sch-pin-number" x="1022.8933631615002" y="519.79865771816" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="27.964205816550002px" transform="">4</text><line class="component-pin sch-component-pin sch-port-line" x1="836.4653243845" y1="560.8128262491" x2="765.6226696492399" y2="560.8128262491" stroke-width="3.72856077554px"/><g class="sch-port" data-schematic-port-id="source_port_4_4__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="761.8941088737001" cy="560.8128262491" r="3.72856077554" stroke-width="3.72856077554px"/><rect x="758.1655480981601" y="557.08426547356" width="7.45712155108" height="7.45712155108" opacity="0"/></g><text class="pin-number sch-pin-number" x="799.1797166290999" y="557.08426547356" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="27.964205816550002px" transform="">5</text><line class="component-pin sch-component-pin sch-port-line" x1="985.6077554061003" y1="560.8128262491" x2="1060.1789709169004" y2="560.8128262491" stroke-width="3.72856077554px"/><g class="sch-port" data-schematic-port-id="source_port_4_5__stack1"><rect x="1056.4504101413604" y="557.08426547356" width="7.45712155108" height="7.45712155108" opacity="0"/></g><text class="pin-number sch-pin-number" x="1022.8933631615002" y="557.08426547356" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="27.964205816550002px" transform="">6</text></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_0__stack1"><circle cx="258.5384041758002" cy="262.5279642059" r="7.45712155108" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_1__stack1"><circle cx="392.7665920952402" cy="262.5279642059" r="7.45712155108" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_0__stack1"><circle cx="444.96644295279975" cy="262.5279642059" r="7.45712155108" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_1__stack1"><circle cx="579.1946308722399" cy="262.5279642059" r="7.45712155108" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_0__stack1"><circle cx="631.3944817297997" cy="262.5279642059" r="7.45712155108" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_1__stack1"><circle cx="765.6226696492397" cy="262.5279642059" r="7.45712155108" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_0__stack1"><circle cx="817.8225205067997" cy="262.5279642059" r="7.45712155108" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_1__stack1"><circle cx="952.0507084262397" cy="262.5279642059" r="7.45712155108" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_0__stack1"><circle cx="761.8941088737001" cy="486.2416107383" r="7.45712155108" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_1__stack1"><circle cx="1060.1789709169004" cy="486.2416107383" r="7.45712155108" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_2__stack1"><circle cx="761.8941088737001" cy="523.5272184937" r="7.45712155108" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_3__stack1"><circle cx="1060.1789709169004" cy="523.5272184937" r="7.45712155108" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_4__stack1"><circle cx="761.8941088737001" cy="560.8128262491" r="7.45712155108" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_5__stack1"><circle cx="1060.1789709169004" cy="560.8128262491" r="7.45712155108" fill="red" opacity="0"/></g><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0__stack1" d="
86
+ </style><rect class="boundary" x="0" y="0" width="1200" height="800"/><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_0__stack1"><path d="M 433.7807606261799 262.5279642059 L 381.58090976862013 262.5279642059" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="29.82848620432px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 433.7807606261799 262.5279642059 L 381.58090976862013 262.5279642059" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_1__stack1"><path d="M 582.9231916477802 262.5279642059 L 582.9231916477802 523.5272184937 L 761.8941088737001 523.5272184937" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="29.82848620432px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 582.9231916477802 262.5279642059 L 582.9231916477802 523.5272184937 L 761.8941088737001 523.5272184937" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_2__stack1"><path d="M 620.2087994031801 262.5279642059 L 568.0089485456199 262.5279642059" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="29.82848620432px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 620.2087994031801 262.5279642059 L 568.0089485456199 262.5279642059" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_3__stack1"><path d="M 758.1655480981597 262.5279642059 L 758.1655480981597 486.2416107383 L 761.8941088737001 486.2416107383" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="29.82848620432px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 758.1655480981597 262.5279642059 L 758.1655480981597 486.2416107383 L 761.8941088737001 486.2416107383" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_4__stack1"><path d="M 754.4369873226199 262.5279642059 L 806.6368381801801 262.5279642059" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="29.82848620432px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 754.4369873226199 262.5279642059 L 806.6368381801801 262.5279642059" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_5__stack1"><path d="M 1060.1789709169004 523.5272184937 L 1097.4645786723001 523.5272184937 L 1097.4645786723001 486.2416107383 L 1060.1789709169004 486.2416107383" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="29.82848620432px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1060.1789709169004 523.5272184937 L 1097.4645786723001 523.5272184937 L 1097.4645786723001 486.2416107383 L 1060.1789709169004 486.2416107383" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_6__stack1"><path d="M 1060.1789709169004 560.8128262491 L 1097.4645786723001 560.8128262491 L 1097.4645786723001 523.5272184937" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="29.82848620432px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1060.1789709169004 560.8128262491 L 1097.4645786723001 560.8128262491 L 1097.4645786723001 523.5272184937" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_7__stack1"><path d="M 940.8650260996199 262.5279642059 L 1097.4645786723001 262.5279642059 L 1097.4645786723001 486.2416107383 L 1060.1789709169004 486.2416107383" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="29.82848620432px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 940.8650260996199 262.5279642059 L 1097.4645786723001 262.5279642059 L 1097.4645786723001 486.2416107383 L 1060.1789709169004 486.2416107383" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_0__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_1__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_2__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_3__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_4__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_5__stack1"><circle cx="1097.4645786723001" cy="523.5272184937" r="5.59284116331" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/><circle cx="1097.4645786723001" cy="486.2416107383" r="5.59284116331" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/><circle cx="1060.1789709169004" cy="486.2416107383" r="5.59284116331" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_6__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_7__stack1"/><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_0__stack1"><rect class="component-overlay sch-component-overlay" x="247.35272184917997" y="244.63534675623862" width="134.22818791944016" height="35.785234899322745" fill="transparent"/><path class="sch-component-symbol-path" d="M 247.35272184917997 262.5279642059 L 269.7285607753506 262.5279642059" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 359.20507084244946 262.5279642059 L 381.58090976862013 262.5279642059" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 269.7285607753506 244.63534675623862 L 359.20507084244946 244.63534675623862 L 359.20507084244946 280.42058165556136 L 269.7285607753506 280.42058165556136 L 269.7285607753506 244.63534675623862" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="314.46681580890004" y="226.73378076071594" stroke="rgb(245, 241, 237)" stroke-width="3.72856077554px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="33.557046979860004px">R26</text><text class="sch-component-text" x="314.46681580890004" y="298.32214765108404" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="33.557046979860004px"></text><circle class="component-pin sch-component-pin" cx="247.35272184917997" cy="262.5279642059" r="3.72856077554px" stroke-width="3.72856077554px" fill="none" stroke="rgb(132, 0, 0)"/></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_1__stack1"><rect class="component-overlay sch-component-overlay" x="433.7807606261799" y="244.63534675623862" width="134.2281879194402" height="35.785234899322745" fill="transparent"/><path class="sch-component-symbol-path" d="M 433.7807606261799 262.5279642059 L 456.1565995523506 262.5279642059" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 545.6331096194494 262.5279642059 L 568.0089485456201 262.5279642059" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 456.1565995523506 244.63534675623862 L 545.6331096194494 244.63534675623862 L 545.6331096194494 280.42058165556136 L 456.1565995523506 280.42058165556136 L 456.1565995523506 244.63534675623862" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="500.8948545859" y="226.73378076071594" stroke="rgb(245, 241, 237)" stroke-width="3.72856077554px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="33.557046979860004px">R27</text><text class="sch-component-text" x="500.8948545859" y="298.32214765108404" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="33.557046979860004px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_2__stack1"><rect class="component-overlay sch-component-overlay" x="620.2087994031801" y="244.63534675623868" width="134.22818791943973" height="35.78523489932263" fill="transparent"/><path class="sch-component-symbol-path" d="M 620.2087994031801 262.5279642059 L 642.5846383293507 262.5279642059" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 732.0611483964493 262.5279642059 L 754.4369873226199 262.5279642059" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 642.5846383293507 244.63534675623868 L 732.0611483964493 244.63534675623868 L 732.0611483964493 280.4205816555613 L 642.5846383293507 280.4205816555613 L 642.5846383293507 244.63534675623868" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="687.3228933629" y="226.73378076071606" stroke="rgb(245, 241, 237)" stroke-width="3.72856077554px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="33.557046979860004px">R28</text><text class="sch-component-text" x="687.3228933629" y="298.3221476510839" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="33.557046979860004px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_3__stack1"><rect class="component-overlay sch-component-overlay" x="806.6368381801801" y="244.63534675623868" width="134.22818791943973" height="35.78523489932263" fill="transparent"/><path class="sch-component-symbol-path" d="M 806.6368381801801 262.5279642059 L 829.0126771063507 262.5279642059" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 918.4891871734493 262.5279642059 L 940.8650260996199 262.5279642059" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 829.0126771063507 244.63534675623868 L 918.4891871734493 244.63534675623868 L 918.4891871734493 280.4205816555613 L 829.0126771063507 280.4205816555613 L 829.0126771063507 244.63534675623868" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.72856077554px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="873.7509321399" y="226.73378076071606" stroke="rgb(245, 241, 237)" stroke-width="3.72856077554px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="33.557046979860004px">R29</text><text class="sch-component-text" x="873.7509321399" y="298.3221476510839" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="33.557046979860004px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_4__stack1"><rect class="component chip sch-component-body" x="836.4653243845" y="448.95600298290003" width="149.14243102160026" height="149.14243102160003" stroke-width="3.72856077554px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="836.4653243845" y="448.95600298290003" width="149.14243102160026" height="149.14243102160003" fill="transparent"/><text class="sch-text" x="911.0365398953002" y="523.5272184937" fill="#0f172a" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="33.557046979860004px" transform="rotate(0, 911.0365398953002, 523.5272184937)">J4</text><line class="component-pin sch-component-pin sch-port-line" x1="836.4653243845" y1="486.2416107383" x2="761.8941088737001" y2="486.2416107383" stroke-width="3.72856077554px"/><g class="sch-port" data-schematic-port-id="source_port_4_0__stack1"><rect x="758.1655480981601" y="482.51304996275996" width="7.45712155108" height="7.45712155108" opacity="0"/></g><text class="pin-number sch-pin-number" x="799.1797166290999" y="482.51304996275996" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="27.964205816550002px" transform="">1</text><line class="component-pin sch-component-pin sch-port-line" x1="985.6077554061003" y1="486.2416107383" x2="1060.1789709169004" y2="486.2416107383" stroke-width="3.72856077554px"/><g class="sch-port" data-schematic-port-id="source_port_4_1__stack1"><rect x="1056.4504101413604" y="482.51304996275996" width="7.45712155108" height="7.45712155108" opacity="0"/></g><text class="pin-number sch-pin-number" x="1022.8933631615002" y="482.51304996275996" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="27.964205816550002px" transform="">2</text><line class="component-pin sch-component-pin sch-port-line" x1="836.4653243845" y1="523.5272184937" x2="761.8941088737001" y2="523.5272184937" stroke-width="3.72856077554px"/><g class="sch-port" data-schematic-port-id="source_port_4_2__stack1"><rect x="758.1655480981601" y="519.79865771816" width="7.45712155108" height="7.45712155108" opacity="0"/></g><text class="pin-number sch-pin-number" x="799.1797166290999" y="519.79865771816" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="27.964205816550002px" transform="">3</text><line class="component-pin sch-component-pin sch-port-line" x1="985.6077554061003" y1="523.5272184937" x2="1060.1789709169004" y2="523.5272184937" stroke-width="3.72856077554px"/><g class="sch-port" data-schematic-port-id="source_port_4_3__stack1"><rect x="1056.4504101413604" y="519.79865771816" width="7.45712155108" height="7.45712155108" opacity="0"/></g><text class="pin-number sch-pin-number" x="1022.8933631615002" y="519.79865771816" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="27.964205816550002px" transform="">4</text><line class="component-pin sch-component-pin sch-port-line" x1="836.4653243845" y1="560.8128262491" x2="765.6226696492399" y2="560.8128262491" stroke-width="3.72856077554px"/><g class="sch-port" data-schematic-port-id="source_port_4_4__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="761.8941088737001" cy="560.8128262491" r="3.72856077554" stroke-width="3.72856077554px"/><rect x="758.1655480981601" y="557.08426547356" width="7.45712155108" height="7.45712155108" opacity="0"/></g><text class="pin-number sch-pin-number" x="799.1797166290999" y="557.08426547356" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="27.964205816550002px" transform="">5</text><line class="component-pin sch-component-pin sch-port-line" x1="985.6077554061003" y1="560.8128262491" x2="1060.1789709169004" y2="560.8128262491" stroke-width="3.72856077554px"/><g class="sch-port" data-schematic-port-id="source_port_4_5__stack1"><rect x="1056.4504101413604" y="557.08426547356" width="7.45712155108" height="7.45712155108" opacity="0"/></g><text class="pin-number sch-pin-number" x="1022.8933631615002" y="557.08426547356" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="27.964205816550002px" transform="">6</text></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_0__stack1"><circle cx="258.5384041758002" cy="262.5279642059" r="7.45712155108" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_1__stack1"><circle cx="392.7665920952402" cy="262.5279642059" r="7.45712155108" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_0__stack1"><circle cx="444.96644295279975" cy="262.5279642059" r="7.45712155108" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_1__stack1"><circle cx="579.1946308722399" cy="262.5279642059" r="7.45712155108" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_0__stack1"><circle cx="631.3944817297997" cy="262.5279642059" r="7.45712155108" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_1__stack1"><circle cx="765.6226696492397" cy="262.5279642059" r="7.45712155108" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_0__stack1"><circle cx="817.8225205067997" cy="262.5279642059" r="7.45712155108" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_1__stack1"><circle cx="952.0507084262397" cy="262.5279642059" r="7.45712155108" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_0__stack1"><circle cx="761.8941088737001" cy="486.2416107383" r="7.45712155108" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_1__stack1"><circle cx="1060.1789709169004" cy="486.2416107383" r="7.45712155108" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_2__stack1"><circle cx="761.8941088737001" cy="523.5272184937" r="7.45712155108" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_3__stack1"><circle cx="1060.1789709169004" cy="523.5272184937" r="7.45712155108" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_4__stack1"><circle cx="761.8941088737001" cy="560.8128262491" r="7.45712155108" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_5__stack1"><circle cx="1060.1789709169004" cy="560.8128262491" r="7.45712155108" fill="red" opacity="0"/></g><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0__stack1" d="
87
87
  M 247.35272184917994,262.5279642059
88
88
  L 237.28560775522195,281.1707680836
89
89
  L 93.21401938835632,281.17076808359997
@@ -1,6 +1,6 @@
1
1
  <svg width="1200" height="2016" viewBox="0 0 1200 2016" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="Solver debug visualization on top and Circuit JSON schematic on the bottom">
2
2
  <g transform="translate(0, 0) scale(1.875, 1.875) translate(0, 0)">
3
- <rect width="100%" height="100%" fill="white"/><g><polyline data-points="0.775,0.1 0.775,-0.3" data-type="line" data-label="" points="379.5275590551181,273.70078740157476 379.5275590551181,332.4934383202099" fill="none" stroke="hsl(158, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.775,0.1 0.775,-0.7" data-type="line" data-label="" points="379.5275590551181,273.70078740157476 379.5275590551181,391.2860892388451" fill="none" stroke="hsl(158, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.775,0.1 0.775,-1.1" data-type="line" data-label="" points="379.5275590551181,273.70078740157476 379.5275590551181,450.0787401574803" fill="none" stroke="hsl(158, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.775,-0.3 0.775,-0.7" data-type="line" data-label="" points="379.5275590551181,332.4934383202099 379.5275590551181,391.2860892388451" fill="none" stroke="hsl(158, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.775,-0.3 0.775,-1.1" data-type="line" data-label="" points="379.5275590551181,332.4934383202099 379.5275590551181,450.0787401574803" fill="none" stroke="hsl(158, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.775,-0.7 0.775,-1.1" data-type="line" data-label="" points="379.5275590551181,391.2860892388451 379.5275590551181,450.0787401574803" fill="none" stroke="hsl(158, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.775,-0.3 0.9750000000000001,-0.3 0.9750000000000001,0.1 0.775,0.1" data-type="line" data-label="" points="379.5275590551181,332.4934383202099 408.9238845144357,332.4934383202099 408.9238845144357,273.70078740157476 379.5275590551181,273.70078740157476" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="0.775,-0.7 0.9750000000000001,-0.7 0.9750000000000001,-0.3 0.775,-0.3" data-type="line" data-label="" points="379.5275590551181,391.2860892388451 408.9238845144357,391.2860892388451 408.9238845144357,332.4934383202099 379.5275590551181,332.4934383202099" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="0.775,-1.1 0.9750000000000001,-1.1 0.9750000000000001,-0.7 0.775,-0.7" data-type="line" data-label="" points="379.5275590551181,450.0787401574803 408.9238845144357,450.0787401574803 408.9238845144357,391.2860892388451 379.5275590551181,391.2860892388451" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="0.9750000000000001,-1.1 0.9750000000000001,-1.7000000000000002" data-type="line" data-label="" points="408.9238845144357,450.0787401574803 408.9238845144357,538.267716535433" fill="none" stroke="purple" stroke-width="1px"/></g><g><rect data-type="rect" data-label="J4" data-x="0" data-y="0" x="151.70603674540678" y="75.27559055118104" width="227.82152230971133" height="426.24671916010504" fill="hsl(186, 100%, 50%, 0.8)" stroke="black" stroke-width="0.006803571428571429"/></g><g><rect data-type="rect" data-label="09452812800" data-x="0.285" data-y="-1.58" x="210.498687664042" y="507.4015748031495" width="194.0157480314961" height="26.456692913385893" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.006803571428571429"/></g><g><rect data-type="rect" data-label="J4" data-x="-0.255" data-y="1.565" x="201.67979002624668" y="39.99999999999997" width="52.91338582677167" height="36.74540682414698" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.006803571428571429"/></g><g><rect data-type="rect" data-label="netId: NET_AGND
3
+ <rect width="100%" height="100%" fill="white"/><g><polyline data-points="0.775,0.1 0.775,-0.3" data-type="line" data-label="" points="379.5275590551181,273.70078740157476 379.5275590551181,332.4934383202099" fill="none" stroke="hsl(158, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.775,0.1 0.775,-0.7" data-type="line" data-label="" points="379.5275590551181,273.70078740157476 379.5275590551181,391.2860892388451" fill="none" stroke="hsl(158, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.775,0.1 0.775,-1.1" data-type="line" data-label="" points="379.5275590551181,273.70078740157476 379.5275590551181,450.0787401574803" fill="none" stroke="hsl(158, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.775,-0.3 0.775,-0.7" data-type="line" data-label="" points="379.5275590551181,332.4934383202099 379.5275590551181,391.2860892388451" fill="none" stroke="hsl(158, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.775,-0.3 0.775,-1.1" data-type="line" data-label="" points="379.5275590551181,332.4934383202099 379.5275590551181,450.0787401574803" fill="none" stroke="hsl(158, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.775,-0.7 0.775,-1.1" data-type="line" data-label="" points="379.5275590551181,391.2860892388451 379.5275590551181,450.0787401574803" fill="none" stroke="hsl(158, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.775,-0.3 0.9750000000000001,-0.3 0.9750000000000001,0.1 0.775,0.1" data-type="line" data-label="" points="379.5275590551181,332.4934383202099 408.9238845144357,332.4934383202099 408.9238845144357,273.70078740157476 379.5275590551181,273.70078740157476" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="0.775,-0.7 0.9750000000000001,-0.7 0.9750000000000001,-0.3" data-type="line" data-label="" points="379.5275590551181,391.2860892388451 408.9238845144357,391.2860892388451 408.9238845144357,332.4934383202099" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="0.775,-1.1 0.9750000000000001,-1.1 0.9750000000000001,-0.7" data-type="line" data-label="" points="379.5275590551181,450.0787401574803 408.9238845144357,450.0787401574803 408.9238845144357,391.2860892388451" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="0.9750000000000001,-1.1 0.9750000000000001,-1.7000000000000002" data-type="line" data-label="" points="408.9238845144357,450.0787401574803 408.9238845144357,538.267716535433" fill="none" stroke="purple" stroke-width="1px"/></g><g><rect data-type="rect" data-label="J4" data-x="0" data-y="0" x="151.70603674540678" y="75.27559055118104" width="227.82152230971133" height="426.24671916010504" fill="hsl(186, 100%, 50%, 0.8)" stroke="black" stroke-width="0.006803571428571429"/></g><g><rect data-type="rect" data-label="09452812800" data-x="0.285" data-y="-1.58" x="210.498687664042" y="507.4015748031495" width="194.0157480314961" height="26.456692913385893" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.006803571428571429"/></g><g><rect data-type="rect" data-label="J4" data-x="-0.255" data-y="1.565" x="201.67979002624668" y="39.99999999999997" width="52.91338582677167" height="36.74540682414698" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.006803571428571429"/></g><g><rect data-type="rect" data-label="netId: NET_AGND
4
4
  globalConnNetId: connectivity_net0" data-x="0.9750000000000001" data-y="-1.9100000000000001" x="329.5538057742782" y="538.267716535433" width="158.74015748031496" height="61.73228346456699" fill="#00000066" stroke="#000000" stroke-width="0.006803571428571429"/></g><g><circle data-type="point" data-label="J4.1
5
5
  x+" data-x="0.775" data-y="1.1" cx="379.5275590551181" cy="126.71916010498683" r="3" fill="hsl(221, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="J4.2
6
6
  x+" data-x="0.775" data-y="0.7" cx="379.5275590551181" cy="185.51181102362202" r="3" fill="hsl(222, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="J4.3
@@ -65,6 +65,6 @@ orientation: y-" data-x="0.9750000000000001" data-y="-1.7000000000000002" cx="40
65
65
  .port-label { fill: rgb(0, 100, 100); }
66
66
  .component-name { fill: rgb(0, 100, 100); }
67
67
 
68
- </style><rect class="boundary" x="0" y="0" width="1200" height="800"/><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_0__stack1"><path d="M 681.8895883238 416.1328059718 L 715.3139100886 416.1328059718 L 715.3139100886 349.2841624422 L 681.8895883238 349.2841624422" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="26.73945741184px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 681.8895883238 416.1328059718 L 715.3139100886 416.1328059718 L 715.3139100886 349.2841624422 L 681.8895883238 349.2841624422" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.34243217648px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_1__stack1"><path d="M 681.8895883238 482.9814495014 L 715.3139100886 482.9814495014 L 715.3139100886 416.1328059718 L 681.8895883238 416.1328059718" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="26.73945741184px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 681.8895883238 482.9814495014 L 715.3139100886 482.9814495014 L 715.3139100886 416.1328059718 L 681.8895883238 416.1328059718" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.34243217648px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_2__stack1"><path d="M 681.8895883238 549.8300930309999 L 715.3139100886 549.8300930309999 L 715.3139100886 482.9814495014 L 681.8895883238 482.9814495014" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="26.73945741184px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 681.8895883238 549.8300930309999 L 715.3139100886 549.8300930309999 L 715.3139100886 482.9814495014 L 681.8895883238 482.9814495014" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.34243217648px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_3__stack1"><path d="M 715.3139100886 549.8300930309999 L 715.3139100886 650.1030583254001" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="26.73945741184px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 715.3139100886 549.8300930309999 L 715.3139100886 650.1030583254001" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.34243217648px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_0__stack1"><circle cx="681.8895883238" cy="416.1328059718" r="5.01364826472" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/><circle cx="715.3139100886" cy="416.1328059718" r="5.01364826472" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_1__stack1"><circle cx="681.8895883238" cy="482.9814495014" r="5.01364826472" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/><circle cx="715.3139100886" cy="482.9814495014" r="5.01364826472" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_2__stack1"><circle cx="715.3139100886" cy="549.8300930309999" r="5.01364826472" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_3__stack1"/><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_0__stack1"><rect class="component chip sch-component-body" x="489.6997381762" y="123.6699905298" width="125.34120661799994" height="484.6526655896" stroke-width="3.34243217648px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="489.6997381762" y="123.6699905298" width="125.34120661799994" height="484.6526655896" fill="transparent"/><text class="sch-text" x="552.3703414852" y="365.9963233246" fill="#0f172a" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="30.081889588319996px" transform="rotate(0, 552.3703414852, 365.9963233246)">J4</text><line class="component-pin sch-component-pin sch-port-line" x1="615.0409447942" y1="182.16255361819998" x2="678.54715614732" y2="182.16255361819998" stroke-width="3.34243217648px"/><g class="sch-port" data-schematic-port-id="source_port_0_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="681.8895883238" cy="182.16255361819998" r="3.34243217648" stroke-width="3.34243217648px"/><rect x="678.54715614732" y="178.82012144171998" width="6.68486435296" height="6.68486435296" opacity="0"/></g><text class="pin-number sch-pin-number" x="648.465266559" y="178.82012144171998" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="25.0682413236px" transform="">1</text><line class="component-pin sch-component-pin sch-port-line" x1="615.0409447942" y1="249.0111971478" x2="678.54715614732" y2="249.0111971478" stroke-width="3.34243217648px"/><g class="sch-port" data-schematic-port-id="source_port_0_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="681.8895883238" cy="249.0111971478" r="3.34243217648" stroke-width="3.34243217648px"/><rect x="678.54715614732" y="245.66876497132" width="6.68486435296" height="6.68486435296" opacity="0"/></g><text class="pin-number sch-pin-number" x="648.465266559" y="245.66876497132" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="25.0682413236px" transform="">2</text><line class="component-pin sch-component-pin sch-port-line" x1="615.0409447942" y1="349.2841624422" x2="681.8895883238" y2="349.2841624422" stroke-width="3.34243217648px"/><g class="sch-port" data-schematic-port-id="source_port_0_2__stack1"><rect x="678.54715614732" y="345.94173026572" width="6.68486435296" height="6.68486435296" opacity="0"/></g><text class="pin-number sch-pin-number" x="648.465266559" y="345.94173026571997" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="25.0682413236px" transform="">3</text><line class="component-pin sch-component-pin sch-port-line" x1="615.0409447942" y1="416.1328059718" x2="681.8895883238" y2="416.1328059718" stroke-width="3.34243217648px"/><g class="sch-port" data-schematic-port-id="source_port_0_3__stack1"><rect x="678.54715614732" y="412.79037379532" width="6.68486435296" height="6.68486435296" opacity="0"/></g><text class="pin-number sch-pin-number" x="648.465266559" y="412.79037379531997" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="25.0682413236px" transform="">4</text><line class="component-pin sch-component-pin sch-port-line" x1="615.0409447942" y1="482.9814495014" x2="681.8895883238" y2="482.9814495014" stroke-width="3.34243217648px"/><g class="sch-port" data-schematic-port-id="source_port_0_4__stack1"><rect x="678.54715614732" y="479.63901732492" width="6.68486435296" height="6.68486435296" opacity="0"/></g><text class="pin-number sch-pin-number" x="648.465266559" y="479.63901732491996" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="25.0682413236px" transform="">5</text><line class="component-pin sch-component-pin sch-port-line" x1="615.0409447942" y1="549.8300930309999" x2="681.8895883238" y2="549.8300930309999" stroke-width="3.34243217648px"/><g class="sch-port" data-schematic-port-id="source_port_0_5__stack1"><rect x="678.54715614732" y="546.48766085452" width="6.68486435296" height="6.68486435296" opacity="0"/></g><text class="pin-number sch-pin-number" x="648.465266559" y="546.48766085452" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="25.0682413236px" transform="">6</text></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_0__stack1"><circle cx="681.8895883238" cy="182.16255361819998" r="6.68486435296" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_1__stack1"><circle cx="681.8895883238" cy="249.0111971478" r="6.68486435296" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_2__stack1"><circle cx="681.8895883238" cy="349.2841624422" r="6.68486435296" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_3__stack1"><circle cx="681.8895883238" cy="416.1328059718" r="6.68486435296" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_4__stack1"><circle cx="681.8895883238" cy="482.9814495014" r="6.68486435296" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_5__stack1"><circle cx="681.8895883238" cy="549.8300930309999" r="6.68486435296" fill="red" opacity="0"/></g><rect class="component-overlay sch-component-overlay sch-net-label-overlay" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0__stack1" x="695.25931702972" y="650.1030583254001" width="40.10918611775992" height="30.081889588319996" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0__stack1" d="M 695.25931702972 680.18494791372 L 735.3685031474799 680.1849479137201" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.34243217648px" stroke-linecap="round"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0__stack1" d="M 715.3139100886 680.18494791372 L 715.3139100886 650.1030583254001" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.34243217648px" stroke-linecap="round"/><text class="sch-net-label-symbol-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0__stack1" x="715.3139100886" y="688.5410283549201" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="30.081889588319996px">XX</text><text class="sch-text" x="600.00000000004" y="630.04846526652" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="30.081889588319996px" transform="rotate(0, 600.00000000004, 630.04846526652)">09452812800</text><text class="sch-text" x="509.75433123508003" y="104.45100551503998" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="30.081889588319996px" transform="rotate(0, 509.75433123508003, 104.45100551503998)">J4</text><rect class="schematic-box sch-box" x="489.6997381762" y="615.00752047236" width="220.60052364767995" height="30.081889588319882" stroke-width="3.34243217648px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="26.73945741184 13.36972870592"/><rect class="schematic-box sch-box" x="479.67244164676003" y="83.56080441204" width="60.16377917663999" height="41.78040220600002" stroke-width="3.34243217648px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="26.73945741184 13.36972870592"/>
68
+ </style><rect class="boundary" x="0" y="0" width="1200" height="800"/><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_0__stack1"><path d="M 681.8895883238 416.1328059718 L 715.3139100886 416.1328059718 L 715.3139100886 349.2841624422 L 681.8895883238 349.2841624422" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="26.73945741184px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 681.8895883238 416.1328059718 L 715.3139100886 416.1328059718 L 715.3139100886 349.2841624422 L 681.8895883238 349.2841624422" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.34243217648px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_1__stack1"><path d="M 681.8895883238 482.9814495014 L 715.3139100886 482.9814495014 L 715.3139100886 416.1328059718" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="26.73945741184px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 681.8895883238 482.9814495014 L 715.3139100886 482.9814495014 L 715.3139100886 416.1328059718" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.34243217648px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_2__stack1"><path d="M 681.8895883238 549.8300930309999 L 715.3139100886 549.8300930309999 L 715.3139100886 482.9814495014" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="26.73945741184px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 681.8895883238 549.8300930309999 L 715.3139100886 549.8300930309999 L 715.3139100886 482.9814495014" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.34243217648px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_3__stack1"><path d="M 715.3139100886 549.8300930309999 L 715.3139100886 650.1030583254001" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="26.73945741184px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 715.3139100886 549.8300930309999 L 715.3139100886 650.1030583254001" stroke="rgb(0, 150, 0)" fill="none" stroke-width="3.34243217648px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_0__stack1"><circle cx="715.3139100886" cy="416.1328059718" r="5.01364826472" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_1__stack1"><circle cx="715.3139100886" cy="482.9814495014" r="5.01364826472" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_2__stack1"><circle cx="715.3139100886" cy="549.8300930309999" r="5.01364826472" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_3__stack1"/><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_0__stack1"><rect class="component chip sch-component-body" x="489.6997381762" y="123.6699905298" width="125.34120661799994" height="484.6526655896" stroke-width="3.34243217648px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="489.6997381762" y="123.6699905298" width="125.34120661799994" height="484.6526655896" fill="transparent"/><text class="sch-text" x="552.3703414852" y="365.9963233246" fill="#0f172a" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="30.081889588319996px" transform="rotate(0, 552.3703414852, 365.9963233246)">J4</text><line class="component-pin sch-component-pin sch-port-line" x1="615.0409447942" y1="182.16255361819998" x2="678.54715614732" y2="182.16255361819998" stroke-width="3.34243217648px"/><g class="sch-port" data-schematic-port-id="source_port_0_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="681.8895883238" cy="182.16255361819998" r="3.34243217648" stroke-width="3.34243217648px"/><rect x="678.54715614732" y="178.82012144171998" width="6.68486435296" height="6.68486435296" opacity="0"/></g><text class="pin-number sch-pin-number" x="648.465266559" y="178.82012144171998" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="25.0682413236px" transform="">1</text><line class="component-pin sch-component-pin sch-port-line" x1="615.0409447942" y1="249.0111971478" x2="678.54715614732" y2="249.0111971478" stroke-width="3.34243217648px"/><g class="sch-port" data-schematic-port-id="source_port_0_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="681.8895883238" cy="249.0111971478" r="3.34243217648" stroke-width="3.34243217648px"/><rect x="678.54715614732" y="245.66876497132" width="6.68486435296" height="6.68486435296" opacity="0"/></g><text class="pin-number sch-pin-number" x="648.465266559" y="245.66876497132" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="25.0682413236px" transform="">2</text><line class="component-pin sch-component-pin sch-port-line" x1="615.0409447942" y1="349.2841624422" x2="681.8895883238" y2="349.2841624422" stroke-width="3.34243217648px"/><g class="sch-port" data-schematic-port-id="source_port_0_2__stack1"><rect x="678.54715614732" y="345.94173026572" width="6.68486435296" height="6.68486435296" opacity="0"/></g><text class="pin-number sch-pin-number" x="648.465266559" y="345.94173026571997" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="25.0682413236px" transform="">3</text><line class="component-pin sch-component-pin sch-port-line" x1="615.0409447942" y1="416.1328059718" x2="681.8895883238" y2="416.1328059718" stroke-width="3.34243217648px"/><g class="sch-port" data-schematic-port-id="source_port_0_3__stack1"><rect x="678.54715614732" y="412.79037379532" width="6.68486435296" height="6.68486435296" opacity="0"/></g><text class="pin-number sch-pin-number" x="648.465266559" y="412.79037379531997" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="25.0682413236px" transform="">4</text><line class="component-pin sch-component-pin sch-port-line" x1="615.0409447942" y1="482.9814495014" x2="681.8895883238" y2="482.9814495014" stroke-width="3.34243217648px"/><g class="sch-port" data-schematic-port-id="source_port_0_4__stack1"><rect x="678.54715614732" y="479.63901732492" width="6.68486435296" height="6.68486435296" opacity="0"/></g><text class="pin-number sch-pin-number" x="648.465266559" y="479.63901732491996" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="25.0682413236px" transform="">5</text><line class="component-pin sch-component-pin sch-port-line" x1="615.0409447942" y1="549.8300930309999" x2="681.8895883238" y2="549.8300930309999" stroke-width="3.34243217648px"/><g class="sch-port" data-schematic-port-id="source_port_0_5__stack1"><rect x="678.54715614732" y="546.48766085452" width="6.68486435296" height="6.68486435296" opacity="0"/></g><text class="pin-number sch-pin-number" x="648.465266559" y="546.48766085452" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="25.0682413236px" transform="">6</text></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_0__stack1"><circle cx="681.8895883238" cy="182.16255361819998" r="6.68486435296" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_1__stack1"><circle cx="681.8895883238" cy="249.0111971478" r="6.68486435296" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_2__stack1"><circle cx="681.8895883238" cy="349.2841624422" r="6.68486435296" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_3__stack1"><circle cx="681.8895883238" cy="416.1328059718" r="6.68486435296" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_4__stack1"><circle cx="681.8895883238" cy="482.9814495014" r="6.68486435296" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_5__stack1"><circle cx="681.8895883238" cy="549.8300930309999" r="6.68486435296" fill="red" opacity="0"/></g><rect class="component-overlay sch-component-overlay sch-net-label-overlay" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0__stack1" x="695.25931702972" y="650.1030583254001" width="40.10918611775992" height="30.081889588319996" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0__stack1" d="M 695.25931702972 680.18494791372 L 735.3685031474799 680.1849479137201" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.34243217648px" stroke-linecap="round"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0__stack1" d="M 715.3139100886 680.18494791372 L 715.3139100886 650.1030583254001" stroke="rgb(132, 0, 0)" fill="none" stroke-width="3.34243217648px" stroke-linecap="round"/><text class="sch-net-label-symbol-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0__stack1" x="715.3139100886" y="688.5410283549201" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="30.081889588319996px">XX</text><text class="sch-text" x="600.00000000004" y="630.04846526652" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="30.081889588319996px" transform="rotate(0, 600.00000000004, 630.04846526652)">09452812800</text><text class="sch-text" x="509.75433123508003" y="104.45100551503998" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="30.081889588319996px" transform="rotate(0, 509.75433123508003, 104.45100551503998)">J4</text><rect class="schematic-box sch-box" x="489.6997381762" y="615.00752047236" width="220.60052364767995" height="30.081889588319882" stroke-width="3.34243217648px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="26.73945741184 13.36972870592"/><rect class="schematic-box sch-box" x="479.67244164676003" y="83.56080441204" width="60.16377917663999" height="41.78040220600002" stroke-width="3.34243217648px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="26.73945741184 13.36972870592"/>
69
69
  </g>
70
70
  </svg>