@tscircuit/schematic-trace-solver 0.0.186 → 0.0.188

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 (53) hide show
  1. package/dist/index.d.ts +40 -23
  2. package/dist/index.js +1041 -319
  3. package/lib/solvers/InlineNetLabelSolver/InlineNetLabelSolver.ts +611 -230
  4. package/lib/solvers/InlineNetLabelSolver/alignPortOnlyInlineNetLabelStubs.ts +2 -6
  5. package/lib/solvers/InlineNetLabelSolver/getInlineLabelObstacles.ts +64 -0
  6. package/lib/solvers/InlineNetLabelSolver/getLocalTraceLabelShifts.ts +407 -0
  7. package/lib/solvers/InlineNetLabelSolver/getOutputLabelCollisions.ts +145 -0
  8. package/lib/solvers/InlineNetLabelSolver/isLabelRepresentedInline.ts +15 -0
  9. package/lib/solvers/InlineNetLabelSolver/pushAnchoredNetLabelsAwayFromInlineLabels.ts +61 -31
  10. package/lib/solvers/NetLabelNetLabelCollisionSolver/NetLabelNetLabelCollisionSolver.ts +83 -14
  11. package/lib/solvers/NetLabelToTraceSolver/NetLabelToTraceSolver.ts +4 -3
  12. package/lib/solvers/SameNetJunctionAlignmentSolver/alignSameNetJunctions.ts +14 -11
  13. package/lib/solvers/SchematicTracePipelineSolver/SchematicTracePipelineSolver.ts +3 -0
  14. package/lib/types/InputProblem.ts +2 -2
  15. package/package.json +1 -1
  16. package/site/bug-reports/bug-report-20260907T083336Z.page.tsx +4 -0
  17. package/site/bug-reports/bug-report-20260907T110144Z.page.tsx +4 -0
  18. package/site/bug-reports/bug-report-20260907T145640Z.page.tsx +4 -0
  19. package/tests/bug-reports/bug-report-20260806T093501Z/__snapshots__/bug-report-20260806T093501Z.snap.svg +2 -2
  20. package/tests/bug-reports/bug-report-20260811T075142Z/__snapshots__/bug-report-20260811T075142Z.snap.svg +18 -18
  21. package/tests/bug-reports/bug-report-20260819T091818Z/__snapshots__/bug-report-20260819T091818Z.snap.svg +2 -2
  22. package/tests/bug-reports/bug-report-20260819T091818Z/bug-report-20260819T091818Z.test.ts +21 -0
  23. package/tests/bug-reports/bug-report-20260825T103621Z/__snapshots__/bug-report-20260825T103621Z.snap.svg +5 -38
  24. package/tests/bug-reports/bug-report-20260826T072956Z/__snapshots__/bug-report-20260826T072956Z.snap.svg +3 -9
  25. package/tests/bug-reports/bug-report-20260901T055358Z/__snapshots__/bug-report-20260901T055358Z.snap.svg +18 -30
  26. package/tests/bug-reports/bug-report-20260901T055358Z/bug-report-20260901T055358Z.test.ts +33 -0
  27. package/tests/bug-reports/bug-report-20260907T083336Z/__snapshots__/bug-report-20260907T083336Z.snap.svg +520 -0
  28. package/tests/bug-reports/bug-report-20260907T083336Z/bug-report-20260907T083336Z.json +2031 -0
  29. package/tests/bug-reports/bug-report-20260907T083336Z/bug-report-20260907T083336Z.test.ts +27 -0
  30. package/tests/bug-reports/bug-report-20260907T110144Z/__snapshots__/bug-report-20260907T110144Z.snap.svg +282 -0
  31. package/tests/bug-reports/bug-report-20260907T110144Z/bug-report-20260907T110144Z.json +1073 -0
  32. package/tests/bug-reports/bug-report-20260907T110144Z/bug-report-20260907T110144Z.test.ts +12 -0
  33. package/tests/bug-reports/bug-report-20260907T145640Z/__snapshots__/bug-report-20260907T145640Z.snap.svg +1107 -0
  34. package/tests/bug-reports/bug-report-20260907T145640Z/bug-report-20260907T145640Z.json +3563 -0
  35. package/tests/bug-reports/bug-report-20260907T145640Z/bug-report-20260907T145640Z.test.ts +117 -0
  36. package/tests/repros/__snapshots__/board-1273-trace-overlap-cycle.snap.svg +2 -2
  37. package/tests/repros/__snapshots__/repro-battery-management-bq24073.snap.svg +4 -4
  38. package/tests/repros/__snapshots__/repro-board-648-esp12f-section.snap.svg +2 -2
  39. package/tests/repros/__snapshots__/repro-core-tb67s579ftg-inline-label-routing.snap.svg +20 -20
  40. package/tests/repros/__snapshots__/repro-esp12f-section.snap.svg +37 -55
  41. package/tests/repros/__snapshots__/repro-hub-usb-sheet.snap.svg +44 -68
  42. package/tests/repros/__snapshots__/repro-mspm0l1306-capacitor-symmetry.snap.svg +3 -9
  43. package/tests/repros/__snapshots__/repro-usb-power-vbus-label-detour.snap.svg +50 -74
  44. package/tests/repros/__snapshots__/repro48-555-timer-vcc-rail-label.snap.svg +2 -2
  45. package/tests/repros/repro-battery-management-bq24073.test.ts +13 -1
  46. package/tests/repros/repro-hub-usb-sheet.test.ts +25 -0
  47. package/tests/repros/repro-usb-power-vbus-label-detour.test.ts +59 -13
  48. package/tests/solvers/InlineNetLabelSolver/local-trace-label-shifts.test.ts +296 -0
  49. package/tests/solvers/InlineNetLabelSolver/multi-pin-connected-components.test.ts +7 -4
  50. package/tests/solvers/InlineNetLabelSolver/push-anchored-net-labels-away.test.ts +2 -1
  51. package/tests/solvers/InlineNetLabelSolver/shared-direct-and-named-connection.test.ts +62 -0
  52. package/tests/solvers/InlineNetLabelSolver/two-pin-terminal-stubs-atomic.test.ts +9 -3
  53. package/tests/solvers/SameNetJunctionAlignmentSolver/parallel-load-rails.test.ts +24 -0
@@ -1,9 +1,9 @@
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="-5.48,2.6 -2.045,2.600000000000001" data-type="line" data-label="" points="140.46621422248447,244.98082030097373 253.98642667453527,244.98082030097368" fill="none" stroke="hsl(216, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5.48,2.4 -2.045,2.400000000000001" data-type="line" data-label="" points="140.46621422248447,251.59043965771613 253.98642667453527,251.5904396577161" fill="none" stroke="hsl(8, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5.48,2.1999999999999997 -2.045,2.200000000000001" data-type="line" data-label="" points="140.46621422248447,258.20005901445853 253.98642667453527,258.2000590144585" fill="none" stroke="hsl(271, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5.48,1.9999999999999996 -2.045,2.000000000000001" data-type="line" data-label="" points="140.46621422248447,264.80967837120096 253.98642667453527,264.8096783712009" fill="none" stroke="hsl(355, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5.48,1.7999999999999994 -2.045,1.800000000000001" data-type="line" data-label="" points="140.46621422248447,271.41929772794333 253.98642667453527,271.41929772794333" fill="none" stroke="hsl(182, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5.48,1.5999999999999992 -2.045,1.600000000000001" data-type="line" data-label="" points="140.46621422248447,278.02891708468576 253.98642667453527,278.0289170846857" fill="none" stroke="hsl(296, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5.48,1.3999999999999992 -2.045,1.400000000000001" data-type="line" data-label="" points="140.46621422248447,284.6385364414282 253.98642667453527,284.6385364414281" fill="none" stroke="hsl(303, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5.48,1.1999999999999993 -2.045,1.200000000000001" data-type="line" data-label="" points="140.46621422248447,291.24815579817056 253.98642667453527,291.2481557981705" fill="none" stroke="hsl(296, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5.48,0.9999999999999993 -2.045,1.000000000000001" data-type="line" data-label="" points="140.46621422248447,297.857775154913 253.98642667453527,297.85777515491293" fill="none" stroke="hsl(2, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5.48,0.7999999999999994 -2.045,0.8000000000000012" data-type="line" data-label="" points="140.46621422248447,304.46739451165536 253.98642667453527,304.4673945116553" fill="none" stroke="hsl(101, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5.48,0.5999999999999994 -2.045,0.6000000000000012" data-type="line" data-label="" points="140.46621422248447,311.0770138683978 253.98642667453527,311.0770138683977" fill="none" stroke="hsl(107, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5.48,0.39999999999999947 -2.045,0.40000000000000124" data-type="line" data-label="" points="140.46621422248447,317.68663322514016 253.98642667453527,317.6866332251401" fill="none" stroke="hsl(91, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5.48,2.8000000000000003 -1.4450000000000003,3.5749999999999997" data-type="line" data-label="" points="140.46621422248447,238.3712009442313 273.81528474476244,212.75892593685452" fill="none" stroke="hsl(217, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5.48,2.8000000000000003 2.220446049250313e-16,3.5749999999999997" data-type="line" data-label="" points="140.46621422248447,238.3712009442313 321.5697845972263,212.75892593685452" fill="none" stroke="hsl(218, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5.48,-4.440892098500626e-16 1.4450000000000003,3.5749999999999997" data-type="line" data-label="" points="140.46621422248447,330.90587193862495 369.3242844496902,212.75892593685452" fill="none" stroke="hsl(278, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5.48,-0.2000000000000004 0.48299999999999965,-3.5749999999999997" data-type="line" data-label="" points="140.46621422248447,337.5154912953674 337.5320153437592,449.05281794039536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,1.4000000000000004 2.045,2.600000000000001" data-type="line" data-label="" points="505.81292416642077,284.63853644142813 389.15314251991737,244.98082030097368" fill="none" stroke="hsl(193, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,1.2000000000000006 2.045,2.400000000000001" data-type="line" data-label="" points="505.81292416642077,291.2481557981705 389.15314251991737,251.5904396577161" fill="none" stroke="hsl(191, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,1.0000000000000004 2.045,2.2000000000000006" data-type="line" data-label="" points="505.81292416642077,297.85777515491293 389.15314251991737,258.2000590144585" fill="none" stroke="hsl(72, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,0.8000000000000004 2.045,2.0000000000000004" data-type="line" data-label="" points="505.81292416642077,304.46739451165536 389.15314251991737,264.8096783712009" fill="none" stroke="hsl(74, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,0.6000000000000004 2.045,0.7000000000000002" data-type="line" data-label="" points="505.81292416642077,311.0770138683977 389.15314251991737,307.7722041900265" fill="none" stroke="hsl(184, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,0.40000000000000047 2.045,0.5" data-type="line" data-label="" points="505.81292416642077,317.68663322514016 389.15314251991737,314.38182354676894" fill="none" stroke="hsl(311, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,0.2000000000000005 2.045,0.2999999999999998" data-type="line" data-label="" points="505.81292416642077,324.2962525818825 389.15314251991737,320.99144290351137" fill="none" stroke="hsl(171, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,5.551115123125783e-16 2.045,0.09999999999999964" data-type="line" data-label="" points="505.81292416642077,330.90587193862495 389.15314251991737,327.60106226025374" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,-0.1999999999999994 2.045,-0.10000000000000053" data-type="line" data-label="" points="505.81292416642077,337.5154912953673 389.15314251991737,334.21068161699617" fill="none" stroke="hsl(169, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,-0.39999999999999936 2.045,-0.3000000000000007" data-type="line" data-label="" points="505.81292416642077,344.12511065210975 389.15314251991737,340.8203009737386" fill="none" stroke="hsl(218, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,-0.5999999999999993 2.045,-0.5000000000000009" data-type="line" data-label="" points="505.81292416642077,350.7347300088521 389.15314251991737,347.42992033048097" fill="none" stroke="hsl(260, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,-0.7999999999999993 2.045,-0.7000000000000011" data-type="line" data-label="" points="505.81292416642077,357.34434936559455 389.15314251991737,354.0395396872234" fill="none" stroke="hsl(3, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,-0.9999999999999994 2.045,-0.900000000000001" data-type="line" data-label="" points="505.81292416642077,363.9539687223369 389.15314251991737,360.6491590439658" fill="none" stroke="hsl(240, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,-1.1999999999999997 2.045,-1.100000000000001" data-type="line" data-label="" points="505.81292416642077,370.56358807907935 389.15314251991737,367.2587784007082" fill="none" stroke="hsl(80, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,-1.4 2.045,-2.000000000000001" data-type="line" data-label="" points="505.81292416642077,377.1732074358218 389.15314251991737,397.002065506049" fill="none" stroke="hsl(295, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,-1.6 2.045,-2.200000000000001" data-type="line" data-label="" points="505.81292416642077,383.78282679256415 389.15314251991737,403.61168486279144" fill="none" stroke="hsl(294, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,-1.8000000000000003 2.045,-2.400000000000001" data-type="line" data-label="" points="505.81292416642077,390.3924461493066 389.15314251991737,410.2213042195338" fill="none" stroke="hsl(293, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,-2.0000000000000004 2.045,-2.600000000000001" data-type="line" data-label="" points="505.81292416642077,397.002065506049 389.15314251991737,416.83092357627623" fill="none" stroke="hsl(306, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,-2.2000000000000006 -2.045,-2.0000000000000004" data-type="line" data-label="" points="505.81292416642077,403.61168486279144 253.98642667453527,397.002065506049" fill="none" stroke="hsl(156, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5.48,2.6 -2.045,2.600000000000001" data-type="line" data-label="" points="140.46621422248447,244.98082030097373 253.98642667453527,244.98082030097368" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.48,2.4 -2.045,2.400000000000001" data-type="line" data-label="" points="140.46621422248447,251.59043965771613 253.98642667453527,251.5904396577161" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.48,2.1999999999999997 -2.045,2.200000000000001" data-type="line" data-label="" points="140.46621422248447,258.20005901445853 253.98642667453527,258.2000590144585" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.48,1.9999999999999996 -2.045,2.000000000000001" data-type="line" data-label="" points="140.46621422248447,264.80967837120096 253.98642667453527,264.8096783712009" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.48,1.7999999999999994 -2.045,1.800000000000001" data-type="line" data-label="" points="140.46621422248447,271.41929772794333 253.98642667453527,271.41929772794333" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.48,1.5999999999999992 -2.045,1.600000000000001" data-type="line" data-label="" points="140.46621422248447,278.02891708468576 253.98642667453527,278.0289170846857" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.48,1.3999999999999992 -2.045,1.400000000000001" data-type="line" data-label="" points="140.46621422248447,284.6385364414282 253.98642667453527,284.6385364414281" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.48,1.1999999999999993 -2.045,1.200000000000001" data-type="line" data-label="" points="140.46621422248447,291.24815579817056 253.98642667453527,291.2481557981705" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.48,0.9999999999999993 -2.045,1.000000000000001" data-type="line" data-label="" points="140.46621422248447,297.857775154913 253.98642667453527,297.85777515491293" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.48,0.7999999999999994 -2.045,0.8000000000000012" data-type="line" data-label="" points="140.46621422248447,304.46739451165536 253.98642667453527,304.4673945116553" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.48,0.5999999999999994 -2.045,0.6000000000000012" data-type="line" data-label="" points="140.46621422248447,311.0770138683978 253.98642667453527,311.0770138683977" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.48,0.39999999999999947 -2.045,0.40000000000000124" data-type="line" data-label="" points="140.46621422248447,317.68663322514016 253.98642667453527,317.6866332251401" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.440892098500626e-16,3.5749999999999997 4.440892098500626e-16,3.7749999999999995 -1.4450000000000003,3.7749999999999995 -1.4450000000000003,3.5749999999999997" data-type="line" data-label="" points="321.5697845972263,212.75892593685452 321.5697845972263,206.14930658011212 273.81528474476244,206.14930658011212 273.81528474476244,212.75892593685452" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.48,2.8000000000000003 -3.4625000000000004,2.8000000000000003 -3.4625000000000004,3.775 -1.4450000000000003,3.775 -1.4450000000000003,3.5749999999999997" data-type="line" data-label="" points="140.46621422248447,238.3712009442313 207.14074948362347,238.3712009442313 207.14074948362347,206.14930658011212 273.81528474476244,206.14930658011212 273.81528474476244,212.75892593685452" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.48,-4.440892098500626e-16 -3.7625,-4.440892098500626e-16 -3.7625,4.265 1.4450000000000003,4.265 1.4450000000000003,3.5749999999999997" data-type="line" data-label="" points="140.46621422248447,330.90587193862495 197.22632044850985,330.90587193862495 197.22632044850985,189.95573915609324 369.3242844496902,189.95573915609324 369.3242844496902,212.75892593685452" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,1.4000000000000004 5.375,1.4000000000000004 5.375,2.600000000000001 2.045,2.600000000000001" data-type="line" data-label="" points="505.81292416642077,284.63853644142813 499.20330480967834,284.63853644142813 499.20330480967834,244.98082030097368 389.15314251991737,244.98082030097368" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,1.2000000000000006 3.81,1.2000000000000006 3.81,2.400000000000001 2.045,2.400000000000001" data-type="line" data-label="" points="505.81292416642077,291.2481557981705 447.4830333431691,291.2481557981705 447.4830333431691,251.5904396577161 389.15314251991737,251.5904396577161" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,1.0000000000000004 3.71,1.0000000000000004 3.71,2.2000000000000006 2.045,2.2000000000000006" data-type="line" data-label="" points="505.81292416642077,297.85777515491293 444.1782236647979,297.85777515491293 444.1782236647979,258.2000590144585 389.15314251991737,258.2000590144585" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,0.8000000000000004 3.61,0.8000000000000004 3.61,2.0000000000000004 2.045,2.0000000000000004" data-type="line" data-label="" points="505.81292416642077,304.46739451165536 440.87341398642667,304.46739451165536 440.87341398642667,264.8096783712009 389.15314251991737,264.8096783712009" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,0.6000000000000004 3.81,0.6000000000000004 3.81,0.7000000000000002 2.045,0.7000000000000002" data-type="line" data-label="" points="505.81292416642077,311.0770138683977 447.4830333431691,311.0770138683977 447.4830333431691,307.7722041900265 389.15314251991737,307.7722041900265" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,0.40000000000000047 3.81,0.40000000000000047 3.81,0.5 2.045,0.5" data-type="line" data-label="" points="505.81292416642077,317.68663322514016 447.4830333431691,317.68663322514016 447.4830333431691,314.38182354676894 389.15314251991737,314.38182354676894" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,0.2000000000000005 3.81,0.2000000000000005 3.81,0.2999999999999998 2.045,0.2999999999999998" data-type="line" data-label="" points="505.81292416642077,324.2962525818825 447.4830333431691,324.2962525818825 447.4830333431691,320.99144290351137 389.15314251991737,320.99144290351137" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,5.551115123125783e-16 3.81,5.551115123125783e-16 3.81,0.09999999999999964 2.045,0.09999999999999964" data-type="line" data-label="" points="505.81292416642077,330.90587193862495 447.4830333431691,330.90587193862495 447.4830333431691,327.60106226025374 389.15314251991737,327.60106226025374" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,-0.1999999999999994 3.81,-0.1999999999999994 3.81,-0.10000000000000053 2.045,-0.10000000000000053" data-type="line" data-label="" points="505.81292416642077,337.5154912953673 447.4830333431691,337.5154912953673 447.4830333431691,334.21068161699617 389.15314251991737,334.21068161699617" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,-0.39999999999999936 3.81,-0.39999999999999936 3.81,-0.3000000000000007 2.045,-0.3000000000000007" data-type="line" data-label="" points="505.81292416642077,344.12511065210975 447.4830333431691,344.12511065210975 447.4830333431691,340.8203009737386 389.15314251991737,340.8203009737386" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,-0.5999999999999993 3.81,-0.5999999999999993 3.81,-0.5000000000000009 2.045,-0.5000000000000009" data-type="line" data-label="" points="505.81292416642077,350.7347300088521 447.4830333431691,350.7347300088521 447.4830333431691,347.42992033048097 389.15314251991737,347.42992033048097" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,-0.7999999999999993 3.81,-0.7999999999999993 3.81,-0.7000000000000011 2.045,-0.7000000000000011" data-type="line" data-label="" points="505.81292416642077,357.34434936559455 447.4830333431691,357.34434936559455 447.4830333431691,354.0395396872234 389.15314251991737,354.0395396872234" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,-0.9999999999999994 3.81,-0.9999999999999994 3.81,-0.900000000000001 2.045,-0.900000000000001" data-type="line" data-label="" points="505.81292416642077,363.9539687223369 447.4830333431691,363.9539687223369 447.4830333431691,360.6491590439658 389.15314251991737,360.6491590439658" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,-1.1999999999999997 3.81,-1.1999999999999997 3.81,-1.100000000000001 2.045,-1.100000000000001" data-type="line" data-label="" points="505.81292416642077,370.56358807907935 447.4830333431691,370.56358807907935 447.4830333431691,367.2587784007082 389.15314251991737,367.2587784007082" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,-1.4 3.61,-1.4 3.61,-2.000000000000001 2.045,-2.000000000000001" data-type="line" data-label="" points="505.81292416642077,377.1732074358218 440.87341398642667,377.1732074358218 440.87341398642667,397.002065506049 389.15314251991737,397.002065506049" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,-1.6 3.81,-1.6 3.81,-2.200000000000001 2.045,-2.200000000000001" data-type="line" data-label="" points="505.81292416642077,383.78282679256415 447.4830333431691,383.78282679256415 447.4830333431691,403.61168486279144 389.15314251991737,403.61168486279144" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,-1.8000000000000003 3.91,-1.8000000000000003 3.91,-2.400000000000001 2.045,-2.400000000000001" data-type="line" data-label="" points="505.81292416642077,390.3924461493066 450.7878430215403,390.3924461493066 450.7878430215403,410.2213042195338 389.15314251991737,410.2213042195338" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,-2.0000000000000004 4.01,-2.0000000000000004 4.01,-2.600000000000001 2.045,-2.600000000000001" data-type="line" data-label="" points="505.81292416642077,397.002065506049 454.09265269991147,397.002065506049 454.09265269991147,416.83092357627623 389.15314251991737,416.83092357627623" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.48,-0.2000000000000004 -3.106,-0.2000000000000004 -3.106,-3.775 0.48299999999999965,-3.775 0.48299999999999965,-3.5749999999999997" data-type="line" data-label="" points="140.46621422248447,337.5154912953674 218.9223959870168,337.5154912953674 218.9223959870168,455.6624372971378 337.5320153437592,455.6624372971378 337.5320153437592,449.05281794039536" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,-2.2000000000000006 4.735,-2.2000000000000006" data-type="line" data-label="" points="505.81292416642077,403.61168486279144 478.0525228681027,403.61168486279144" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-2.045,-2.0000000000000004 -2.885,-2.0000000000000004" data-type="line" data-label="" points="253.98642667453527,397.002065506049 226.22602537621717,397.002065506049" fill="none" stroke="purple" stroke-width="1px"/></g><g><rect data-type="rect" data-label="schematic_component_0" data-x="0" data-y="0" x="253.98642667453527" y="212.75892593685455" width="135.1667158453821" height="236.29389200354083" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="schematic_component_1" data-x="-7" data-y="1.1999999999999997" x="40.000000000000014" y="225.1519622307465" width="100.46621422248447" height="132.1923871348481" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="schematic_component_2" data-x="7" data-y="-0.3999999999999999" x="505.81292416642077" y="278.0289170846857" width="94.18707583357923" height="132.1923871348481" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="TB67S579FTG" data-x="2.4050000000000002" data-y="3.525" x="379.23871348480384" y="211.43700206550605" width="43.62348775449988" height="5.948657421068162" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="U1" data-x="1.865" data-y="3.29" x="377.25582767778104" y="218.04662142224845" width="11.897314842136325" height="8.262024195928007" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="J1" data-x="-8.000000000000002" data-y="3.3150000000000004" x="51.236352906462" y="217.2204190026556" width="11.897314842136325" height="8.262024195928007" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="J4" data-x="6.095" data-y="1.7150000000000007" x="517.0492770728829" y="270.0973738565948" width="11.897314842136325" height="8.262024195928007" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="netId: VM_2
3
+ <rect width="100%" height="100%" fill="white"/><g><polyline data-points="-5.48,2.6 -2.045,2.600000000000001" data-type="line" data-label="" points="140.46621422248447,244.98082030097373 253.98642667453527,244.98082030097368" fill="none" stroke="hsl(216, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5.48,2.4 -2.045,2.400000000000001" data-type="line" data-label="" points="140.46621422248447,251.59043965771613 253.98642667453527,251.5904396577161" fill="none" stroke="hsl(8, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5.48,2.1999999999999997 -2.045,2.200000000000001" data-type="line" data-label="" points="140.46621422248447,258.20005901445853 253.98642667453527,258.2000590144585" fill="none" stroke="hsl(271, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5.48,1.9999999999999996 -2.045,2.000000000000001" data-type="line" data-label="" points="140.46621422248447,264.80967837120096 253.98642667453527,264.8096783712009" fill="none" stroke="hsl(355, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5.48,1.7999999999999994 -2.045,1.800000000000001" data-type="line" data-label="" points="140.46621422248447,271.41929772794333 253.98642667453527,271.41929772794333" fill="none" stroke="hsl(182, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5.48,1.5999999999999992 -2.045,1.600000000000001" data-type="line" data-label="" points="140.46621422248447,278.02891708468576 253.98642667453527,278.0289170846857" fill="none" stroke="hsl(296, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5.48,1.3999999999999992 -2.045,1.400000000000001" data-type="line" data-label="" points="140.46621422248447,284.6385364414282 253.98642667453527,284.6385364414281" fill="none" stroke="hsl(303, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5.48,1.1999999999999993 -2.045,1.200000000000001" data-type="line" data-label="" points="140.46621422248447,291.24815579817056 253.98642667453527,291.2481557981705" fill="none" stroke="hsl(296, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5.48,0.9999999999999993 -2.045,1.000000000000001" data-type="line" data-label="" points="140.46621422248447,297.857775154913 253.98642667453527,297.85777515491293" fill="none" stroke="hsl(2, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5.48,0.7999999999999994 -2.045,0.8000000000000012" data-type="line" data-label="" points="140.46621422248447,304.46739451165536 253.98642667453527,304.4673945116553" fill="none" stroke="hsl(101, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5.48,0.5999999999999994 -2.045,0.6000000000000012" data-type="line" data-label="" points="140.46621422248447,311.0770138683978 253.98642667453527,311.0770138683977" fill="none" stroke="hsl(107, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5.48,0.39999999999999947 -2.045,0.40000000000000124" data-type="line" data-label="" points="140.46621422248447,317.68663322514016 253.98642667453527,317.6866332251401" fill="none" stroke="hsl(91, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5.48,2.8000000000000003 -1.4450000000000003,3.5749999999999997" data-type="line" data-label="" points="140.46621422248447,238.3712009442313 273.81528474476244,212.75892593685452" fill="none" stroke="hsl(217, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5.48,2.8000000000000003 2.220446049250313e-16,3.5749999999999997" data-type="line" data-label="" points="140.46621422248447,238.3712009442313 321.5697845972263,212.75892593685452" fill="none" stroke="hsl(218, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5.48,-4.440892098500626e-16 1.4450000000000003,3.5749999999999997" data-type="line" data-label="" points="140.46621422248447,330.90587193862495 369.3242844496902,212.75892593685452" fill="none" stroke="hsl(278, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5.48,-0.2000000000000004 0.48299999999999965,-3.5749999999999997" data-type="line" data-label="" points="140.46621422248447,337.5154912953674 337.5320153437592,449.05281794039536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,1.4000000000000004 2.045,2.600000000000001" data-type="line" data-label="" points="505.81292416642077,284.63853644142813 389.15314251991737,244.98082030097368" fill="none" stroke="hsl(193, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,1.2000000000000006 2.045,2.400000000000001" data-type="line" data-label="" points="505.81292416642077,291.2481557981705 389.15314251991737,251.5904396577161" fill="none" stroke="hsl(191, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,1.0000000000000004 2.045,2.2000000000000006" data-type="line" data-label="" points="505.81292416642077,297.85777515491293 389.15314251991737,258.2000590144585" fill="none" stroke="hsl(72, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,0.8000000000000004 2.045,2.0000000000000004" data-type="line" data-label="" points="505.81292416642077,304.46739451165536 389.15314251991737,264.8096783712009" fill="none" stroke="hsl(74, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,0.6000000000000004 2.045,0.7000000000000002" data-type="line" data-label="" points="505.81292416642077,311.0770138683977 389.15314251991737,307.7722041900265" fill="none" stroke="hsl(184, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,0.40000000000000047 2.045,0.5" data-type="line" data-label="" points="505.81292416642077,317.68663322514016 389.15314251991737,314.38182354676894" fill="none" stroke="hsl(311, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,0.2000000000000005 2.045,0.2999999999999998" data-type="line" data-label="" points="505.81292416642077,324.2962525818825 389.15314251991737,320.99144290351137" fill="none" stroke="hsl(171, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,5.551115123125783e-16 2.045,0.09999999999999964" data-type="line" data-label="" points="505.81292416642077,330.90587193862495 389.15314251991737,327.60106226025374" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,-0.1999999999999994 2.045,-0.10000000000000053" data-type="line" data-label="" points="505.81292416642077,337.5154912953673 389.15314251991737,334.21068161699617" fill="none" stroke="hsl(169, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,-0.39999999999999936 2.045,-0.3000000000000007" data-type="line" data-label="" points="505.81292416642077,344.12511065210975 389.15314251991737,340.8203009737386" fill="none" stroke="hsl(218, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,-0.5999999999999993 2.045,-0.5000000000000009" data-type="line" data-label="" points="505.81292416642077,350.7347300088521 389.15314251991737,347.42992033048097" fill="none" stroke="hsl(260, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,-0.7999999999999993 2.045,-0.7000000000000011" data-type="line" data-label="" points="505.81292416642077,357.34434936559455 389.15314251991737,354.0395396872234" fill="none" stroke="hsl(3, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,-0.9999999999999994 2.045,-0.900000000000001" data-type="line" data-label="" points="505.81292416642077,363.9539687223369 389.15314251991737,360.6491590439658" fill="none" stroke="hsl(240, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,-1.1999999999999997 2.045,-1.100000000000001" data-type="line" data-label="" points="505.81292416642077,370.56358807907935 389.15314251991737,367.2587784007082" fill="none" stroke="hsl(80, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,-1.4 2.045,-2.000000000000001" data-type="line" data-label="" points="505.81292416642077,377.1732074358218 389.15314251991737,397.002065506049" fill="none" stroke="hsl(295, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,-1.6 2.045,-2.200000000000001" data-type="line" data-label="" points="505.81292416642077,383.78282679256415 389.15314251991737,403.61168486279144" fill="none" stroke="hsl(294, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,-1.8000000000000003 2.045,-2.400000000000001" data-type="line" data-label="" points="505.81292416642077,390.3924461493066 389.15314251991737,410.2213042195338" fill="none" stroke="hsl(293, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,-2.0000000000000004 2.045,-2.600000000000001" data-type="line" data-label="" points="505.81292416642077,397.002065506049 389.15314251991737,416.83092357627623" fill="none" stroke="hsl(306, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="5.575,-2.2000000000000006 -2.045,-2.0000000000000004" data-type="line" data-label="" points="505.81292416642077,403.61168486279144 253.98642667453527,397.002065506049" fill="none" stroke="hsl(156, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5.48,2.6 -2.045,2.600000000000001" data-type="line" data-label="" points="140.46621422248447,244.98082030097373 253.98642667453527,244.98082030097368" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.48,2.4 -2.045,2.400000000000001" data-type="line" data-label="" points="140.46621422248447,251.59043965771613 253.98642667453527,251.5904396577161" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.48,2.1999999999999997 -2.045,2.200000000000001" data-type="line" data-label="" points="140.46621422248447,258.20005901445853 253.98642667453527,258.2000590144585" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.48,1.9999999999999996 -2.045,2.000000000000001" data-type="line" data-label="" points="140.46621422248447,264.80967837120096 253.98642667453527,264.8096783712009" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.48,1.7999999999999994 -2.045,1.800000000000001" data-type="line" data-label="" points="140.46621422248447,271.41929772794333 253.98642667453527,271.41929772794333" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.48,1.5999999999999992 -2.045,1.600000000000001" data-type="line" data-label="" points="140.46621422248447,278.02891708468576 253.98642667453527,278.0289170846857" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.48,1.3999999999999992 -2.045,1.400000000000001" data-type="line" data-label="" points="140.46621422248447,284.6385364414282 253.98642667453527,284.6385364414281" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.48,1.1999999999999993 -2.045,1.200000000000001" data-type="line" data-label="" points="140.46621422248447,291.24815579817056 253.98642667453527,291.2481557981705" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.48,0.9999999999999993 -2.045,1.000000000000001" data-type="line" data-label="" points="140.46621422248447,297.857775154913 253.98642667453527,297.85777515491293" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.48,0.7999999999999994 -2.045,0.8000000000000012" data-type="line" data-label="" points="140.46621422248447,304.46739451165536 253.98642667453527,304.4673945116553" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.48,0.5999999999999994 -2.045,0.6000000000000012" data-type="line" data-label="" points="140.46621422248447,311.0770138683978 253.98642667453527,311.0770138683977" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.48,0.39999999999999947 -2.045,0.40000000000000124" data-type="line" data-label="" points="140.46621422248447,317.68663322514016 253.98642667453527,317.6866332251401" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.440892098500626e-16,3.5749999999999997 4.440892098500626e-16,3.7749999999999995 -1.4450000000000003,3.7749999999999995 -1.4450000000000003,3.5749999999999997" data-type="line" data-label="" points="321.5697845972263,212.75892593685452 321.5697845972263,206.14930658011212 273.81528474476244,206.14930658011212 273.81528474476244,212.75892593685452" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.48,2.8000000000000003 -3.4625000000000004,2.8000000000000003 -3.4625000000000004,3.775 -1.4450000000000003,3.775 -1.4450000000000003,3.5749999999999997" data-type="line" data-label="" points="140.46621422248447,238.3712009442313 207.14074948362347,238.3712009442313 207.14074948362347,206.14930658011212 273.81528474476244,206.14930658011212 273.81528474476244,212.75892593685452" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.48,-4.440892098500626e-16 -3.8125,-4.440892098500626e-16 -3.8125,4.265 1.4450000000000003,4.265 1.4450000000000003,3.5749999999999997" data-type="line" data-label="" points="140.46621422248447,330.90587193862495 195.57391560932427,330.90587193862495 195.57391560932427,189.95573915609324 369.3242844496902,189.95573915609324 369.3242844496902,212.75892593685452" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,1.4000000000000004 5.375,1.4000000000000004 5.375,2.600000000000001 2.045,2.600000000000001" data-type="line" data-label="" points="505.81292416642077,284.63853644142813 499.20330480967834,284.63853644142813 499.20330480967834,244.98082030097368 389.15314251991737,244.98082030097368" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,1.2000000000000006 3.81,1.2000000000000006 3.81,2.400000000000001 2.045,2.400000000000001" data-type="line" data-label="" points="505.81292416642077,291.2481557981705 447.4830333431691,291.2481557981705 447.4830333431691,251.5904396577161 389.15314251991737,251.5904396577161" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,1.0000000000000004 3.71,1.0000000000000004 3.71,2.2000000000000006 2.045,2.2000000000000006" data-type="line" data-label="" points="505.81292416642077,297.85777515491293 444.1782236647979,297.85777515491293 444.1782236647979,258.2000590144585 389.15314251991737,258.2000590144585" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,0.8000000000000004 3.61,0.8000000000000004 3.61,2.0000000000000004 2.045,2.0000000000000004" data-type="line" data-label="" points="505.81292416642077,304.46739451165536 440.87341398642667,304.46739451165536 440.87341398642667,264.8096783712009 389.15314251991737,264.8096783712009" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,0.6000000000000004 3.81,0.6000000000000004 3.81,0.7000000000000002 2.045,0.7000000000000002" data-type="line" data-label="" points="505.81292416642077,311.0770138683977 447.4830333431691,311.0770138683977 447.4830333431691,307.7722041900265 389.15314251991737,307.7722041900265" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,0.40000000000000047 3.81,0.40000000000000047 3.81,0.5 2.045,0.5" data-type="line" data-label="" points="505.81292416642077,317.68663322514016 447.4830333431691,317.68663322514016 447.4830333431691,314.38182354676894 389.15314251991737,314.38182354676894" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,0.2000000000000005 3.81,0.2000000000000005 3.81,0.2999999999999998 2.045,0.2999999999999998" data-type="line" data-label="" points="505.81292416642077,324.2962525818825 447.4830333431691,324.2962525818825 447.4830333431691,320.99144290351137 389.15314251991737,320.99144290351137" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,5.551115123125783e-16 3.81,5.551115123125783e-16 3.81,0.09999999999999964 2.045,0.09999999999999964" data-type="line" data-label="" points="505.81292416642077,330.90587193862495 447.4830333431691,330.90587193862495 447.4830333431691,327.60106226025374 389.15314251991737,327.60106226025374" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,-0.1999999999999994 3.81,-0.1999999999999994 3.81,-0.10000000000000053 2.045,-0.10000000000000053" data-type="line" data-label="" points="505.81292416642077,337.5154912953673 447.4830333431691,337.5154912953673 447.4830333431691,334.21068161699617 389.15314251991737,334.21068161699617" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,-0.39999999999999936 3.81,-0.39999999999999936 3.81,-0.3000000000000007 2.045,-0.3000000000000007" data-type="line" data-label="" points="505.81292416642077,344.12511065210975 447.4830333431691,344.12511065210975 447.4830333431691,340.8203009737386 389.15314251991737,340.8203009737386" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,-0.5999999999999993 3.81,-0.5999999999999993 3.81,-0.5000000000000009 2.045,-0.5000000000000009" data-type="line" data-label="" points="505.81292416642077,350.7347300088521 447.4830333431691,350.7347300088521 447.4830333431691,347.42992033048097 389.15314251991737,347.42992033048097" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,-0.7999999999999993 3.81,-0.7999999999999993 3.81,-0.7000000000000011 2.045,-0.7000000000000011" data-type="line" data-label="" points="505.81292416642077,357.34434936559455 447.4830333431691,357.34434936559455 447.4830333431691,354.0395396872234 389.15314251991737,354.0395396872234" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,-0.9999999999999994 3.81,-0.9999999999999994 3.81,-0.900000000000001 2.045,-0.900000000000001" data-type="line" data-label="" points="505.81292416642077,363.9539687223369 447.4830333431691,363.9539687223369 447.4830333431691,360.6491590439658 389.15314251991737,360.6491590439658" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,-1.1999999999999997 3.81,-1.1999999999999997 3.81,-1.100000000000001 2.045,-1.100000000000001" data-type="line" data-label="" points="505.81292416642077,370.56358807907935 447.4830333431691,370.56358807907935 447.4830333431691,367.2587784007082 389.15314251991737,367.2587784007082" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,-1.4 3.61,-1.4 3.61,-2.000000000000001 2.045,-2.000000000000001" data-type="line" data-label="" points="505.81292416642077,377.1732074358218 440.87341398642667,377.1732074358218 440.87341398642667,397.002065506049 389.15314251991737,397.002065506049" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,-1.6 3.81,-1.6 3.81,-2.200000000000001 2.045,-2.200000000000001" data-type="line" data-label="" points="505.81292416642077,383.78282679256415 447.4830333431691,383.78282679256415 447.4830333431691,403.61168486279144 389.15314251991737,403.61168486279144" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,-1.8000000000000003 3.91,-1.8000000000000003 3.91,-2.400000000000001 2.045,-2.400000000000001" data-type="line" data-label="" points="505.81292416642077,390.3924461493066 450.7878430215403,390.3924461493066 450.7878430215403,410.2213042195338 389.15314251991737,410.2213042195338" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,-2.0000000000000004 4.01,-2.0000000000000004 4.01,-2.600000000000001 2.045,-2.600000000000001" data-type="line" data-label="" points="505.81292416642077,397.002065506049 454.09265269991147,397.002065506049 454.09265269991147,416.83092357627623 389.15314251991737,416.83092357627623" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.48,-0.2000000000000004 -3.106,-0.2000000000000004 -3.106,-3.775 0.48299999999999965,-3.775 0.48299999999999965,-3.5749999999999997" data-type="line" data-label="" points="140.46621422248447,337.5154912953674 218.9223959870168,337.5154912953674 218.9223959870168,455.6624372971378 337.5320153437592,455.6624372971378 337.5320153437592,449.05281794039536" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.575,-2.2000000000000006 4.735,-2.2000000000000006" data-type="line" data-label="" points="505.81292416642077,403.61168486279144 478.0525228681027,403.61168486279144" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-2.045,-2.0000000000000004 -2.885,-2.0000000000000004" data-type="line" data-label="" points="253.98642667453527,397.002065506049 226.22602537621717,397.002065506049" fill="none" stroke="purple" stroke-width="1px"/></g><g><rect data-type="rect" data-label="schematic_component_0" data-x="0" data-y="0" x="253.98642667453527" y="212.75892593685455" width="135.1667158453821" height="236.29389200354083" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="schematic_component_1" data-x="-7" data-y="1.1999999999999997" x="40.000000000000014" y="225.1519622307465" width="100.46621422248447" height="132.1923871348481" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="schematic_component_2" data-x="7" data-y="-0.3999999999999999" x="505.81292416642077" y="278.0289170846857" width="94.18707583357923" height="132.1923871348481" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="TB67S579FTG" data-x="2.4050000000000002" data-y="3.525" x="379.23871348480384" y="211.43700206550605" width="43.62348775449988" height="5.948657421068162" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="U1" data-x="1.865" data-y="3.29" x="377.25582767778104" y="218.04662142224845" width="11.897314842136325" height="8.262024195928007" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="J1" data-x="-8.000000000000002" data-y="3.3150000000000004" x="51.236352906462" y="217.2204190026556" width="11.897314842136325" height="8.262024195928007" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="J4" data-x="6.095" data-y="1.7150000000000007" x="517.0492770728829" y="270.0973738565948" width="11.897314842136325" height="8.262024195928007" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="netId: VM_2
4
4
  globalConnNetId: connectivity_net12" data-x="-1.4450000000000003" data-y="4" x="270.5104750663912" y="191.2776630274417" width="6.609619356742428" height="14.871643552670406" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="INLINE netId: STOP_DET_VTH
5
5
  axis: x
6
- side: y+" data-x="-3.1625" data-y="2.71" x="199.87016819120683" y="239.36264384774267" width="34.3700206550605" height="3.965771614045451" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="INLINE netId: KPKI_NANO
6
+ side: y+" data-x="-3.2625" data-y="2.71" x="196.56535851283564" y="239.36264384774267" width="34.37002065506047" height="3.965771614045451" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="INLINE netId: KPKI_NANO
7
7
  axis: x
8
8
  side: y+" data-x="-3.3625000000000003" data-y="2.51" x="197.22632044850985" y="245.9722632044851" width="26.438477426969598" height="3.9657716140454227" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="INLINE netId: AGC_TIME
9
9
  axis: x
@@ -11,23 +11,23 @@ side: y+" data-x="-3.3625000000000003" data-y="2.3099999999999996" x="198.548244
11
11
  axis: x
12
12
  side: y+" data-x="-3.3625000000000003" data-y="2.1099999999999994" x="198.54824431985833" y="259.19150191796996" width="23.79462968427265" height="3.9657716140454227" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="INLINE netId: VSP_MIN
13
13
  axis: x
14
- side: y+" data-x="-3.3625000000000003" data-y="1.9099999999999995" x="199.8701681912068" y="265.8011212747123" width="21.150781941575673" height="3.9657716140454795" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="INLINE netId: AGC_KI
14
+ side: y+" data-x="-3.4625000000000004" data-y="1.9099999999999995" x="196.56535851283564" y="265.8011212747123" width="21.150781941575644" height="3.9657716140454795" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="INLINE netId: AGC_KI
15
15
  axis: x
16
16
  side: y+" data-x="-3.4625000000000004" data-y="1.7099999999999993" x="197.88728238418412" y="272.4107406314547" width="18.506934198878724" height="3.9657716140454795" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="INLINE netId: AGC_KP
17
17
  axis: x
18
18
  side: y+" data-x="-3.4625000000000004" data-y="1.5099999999999993" x="197.88728238418412" y="279.02035998819713" width="18.506934198878724" height="3.9657716140454227" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="INLINE netId: TARGET_ANGLE
19
19
  axis: x
20
- side: y+" data-x="-3.1625" data-y="1.3099999999999994" x="199.87016819120683" y="285.6299793449395" width="34.3700206550605" height="3.9657716140454795" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="INLINE netId: NFHYS
20
+ side: y+" data-x="-3.2625" data-y="1.3099999999999994" x="196.56535851283564" y="285.6299793449395" width="34.37002065506047" height="3.9657716140454795" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="INLINE netId: NFHYS
21
21
  axis: x
22
- side: y+" data-x="-3.4625000000000004" data-y="1.1099999999999994" x="199.2092062555326" y="292.23959870168187" width="15.863086456181748" height="3.9657716140454227" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="INLINE netId: MTBLANK
22
+ side: y+" data-x="-3.5625" data-y="1.1099999999999994" x="195.90439657716138" y="292.23959870168187" width="15.863086456181804" height="3.9657716140454227" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="INLINE netId: MTBLANK
23
23
  axis: x
24
- side: y+" data-x="-3.3625000000000003" data-y="0.9099999999999994" x="199.8701681912068" y="298.8492180584243" width="21.150781941575673" height="3.9657716140454795" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="INLINE netId: STBLANK
24
+ side: y+" data-x="-3.4625000000000004" data-y="0.9099999999999994" x="196.56535851283564" y="298.8492180584243" width="21.150781941575644" height="3.9657716140454795" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="INLINE netId: STBLANK
25
25
  axis: x
26
- side: y+" data-x="-3.3625000000000003" data-y="0.7099999999999994" x="199.8701681912068" y="305.4588374151667" width="21.150781941575673" height="3.9657716140454227" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="INLINE netId: CTBLANK
26
+ side: y+" data-x="-3.4625000000000004" data-y="0.7099999999999994" x="196.56535851283564" y="305.4588374151667" width="21.150781941575644" height="3.9657716140454227" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="INLINE netId: CTBLANK
27
27
  axis: x
28
- side: y+" data-x="-3.3625000000000003" data-y="0.5099999999999995" x="199.8701681912068" y="312.06845677190915" width="21.150781941575673" height="3.9657716140454227" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="INLINE netId: VREG
28
+ side: y+" data-x="-3.4625000000000004" data-y="0.5099999999999995" x="196.56535851283564" y="312.06845677190915" width="21.150781941575644" height="3.9657716140454227" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="INLINE netId: VREG
29
29
  axis: x
30
- side: y+" data-x="-1.15875" data-y="4.375" x="276.66568309235765" y="184.3375627028622" width="13.219238713484742" height="3.9657716140454227" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="INLINE netId: GND
30
+ side: y+" data-x="-1.1837499999999999" data-y="4.375" x="275.8394806727648" y="184.3375627028622" width="13.219238713484799" height="3.9657716140454227" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="INLINE netId: GND
31
31
  axis: x
32
32
  side: y+" data-x="-1.3115" data-y="-3.665" x="272.93951017999404" y="450.0442608439067" width="10.57539097078785" height="3.9657716140454795" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="INLINE netId: OUT_A_P
33
33
  axis: x
@@ -69,7 +69,7 @@ side: y+" data-x="3.0275" data-y="-2.490000000000001" x="417.657125995869" y="41
69
69
  axis: x
70
70
  side: y+" data-x="5.155" data-y="-2.0900000000000007" x="481.35733254647386" y="397.9935084095604" width="21.1507819415757" height="3.9657716140454227" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03025892857142857"/></g><g><rect data-type="rect" data-label="INLINE netId: AGC_OUT
71
71
  axis: x
72
- side: y+" data-x="-2.465" data-y="-1.8900000000000003" x="229.53083505458835" y="391.38388905281795" width="21.150781941575673" height="3.9657716140454227" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03025892857142857"/></g><text data-type="text" data-label="STOP_DET_VTH" data-x="-3.1625" data-y="2.71" x="217.05517851873708" y="241.34552965476541" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">STOP_DET_VTH</text><text data-type="text" data-label="KPKI_NANO" data-x="-3.3625000000000003" data-y="2.51" x="210.44555916199465" y="247.9551490115078" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">KPKI_NANO</text><text data-type="text" data-label="AGC_TIME" data-x="-3.3625000000000003" data-y="2.3099999999999996" x="210.44555916199465" y="254.5647683682502" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">AGC_TIME</text><text data-type="text" data-label="FREQ_MIN" data-x="-3.3625000000000003" data-y="2.1099999999999994" x="210.44555916199465" y="261.17438772499264" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">FREQ_MIN</text><text data-type="text" data-label="VSP_MIN" data-x="-3.3625000000000003" data-y="1.9099999999999995" x="210.44555916199465" y="267.784007081735" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">VSP_MIN</text><text data-type="text" data-label="AGC_KI" data-x="-3.4625000000000004" data-y="1.7099999999999993" x="207.14074948362347" y="274.39362643847744" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">AGC_KI</text><text data-type="text" data-label="AGC_KP" data-x="-3.4625000000000004" data-y="1.5099999999999993" x="207.14074948362347" y="281.00324579521987" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">AGC_KP</text><text data-type="text" data-label="TARGET_ANGLE" data-x="-3.1625" data-y="1.3099999999999994" x="217.05517851873708" y="287.61286515196224" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">TARGET_ANGLE</text><text data-type="text" data-label="NFHYS" data-x="-3.4625000000000004" data-y="1.1099999999999994" x="207.14074948362347" y="294.2224845087046" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">NFHYS</text><text data-type="text" data-label="MTBLANK" data-x="-3.3625000000000003" data-y="0.9099999999999994" x="210.44555916199465" y="300.83210386544704" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">MTBLANK</text><text data-type="text" data-label="STBLANK" data-x="-3.3625000000000003" data-y="0.7099999999999994" x="210.44555916199465" y="307.44172322218947" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">STBLANK</text><text data-type="text" data-label="CTBLANK" data-x="-3.3625000000000003" data-y="0.5099999999999995" x="210.44555916199465" y="314.05134257893184" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">CTBLANK</text><text data-type="text" data-label="VREG" data-x="-1.15875" data-y="4.375" x="283.2753024491" y="186.3204485098849" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">VREG</text><text data-type="text" data-label="GND" data-x="-1.3115" data-y="-3.665" x="278.227205665388" y="452.02714665092947" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">GND</text><text data-type="text" data-label="OUT_A_P" data-x="3.71" data-y="2.710000000000001" x="444.1782236647979" y="241.34552965476536" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">OUT_A_P</text><text data-type="text" data-label="OUT_A_N" data-x="4.6925" data-y="1.3100000000000007" x="476.64797875479496" y="287.6128651519622" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">OUT_A_N</text><text data-type="text" data-label="OUT_B_N" data-x="4.6425" data-y="1.1100000000000005" x="474.9955739156093" y="294.2224845087046" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">OUT_B_N</text><text data-type="text" data-label="OUT_B_P" data-x="4.5925" data-y="0.9100000000000004" x="473.34316907642375" y="300.83210386544704" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">OUT_B_P</text><text data-type="text" data-label="SERIAL_IN" data-x="4.6925" data-y="0.7100000000000004" x="476.64797875479496" y="307.4417232221894" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">SERIAL_IN</text><text data-type="text" data-label="SERIAL_CLK" data-x="4.6925" data-y="0.5100000000000005" x="476.64797875479496" y="314.05134257893184" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">SERIAL_CLK</text><text data-type="text" data-label="DMODE2" data-x="4.6925" data-y="0.3100000000000005" x="476.64797875479496" y="320.6609619356742" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">DMODE2</text><text data-type="text" data-label="DMODE1" data-x="4.6925" data-y="0.11000000000000056" x="476.64797875479496" y="327.27058129241664" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">DMODE1</text><text data-type="text" data-label="DMODE0" data-x="4.6925" data-y="-0.0899999999999994" x="476.64797875479496" y="333.880200649159" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">DMODE0</text><text data-type="text" data-label="CLK" data-x="4.6925" data-y="-0.28999999999999937" x="476.64797875479496" y="340.48982000590144" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">CLK</text><text data-type="text" data-label="CW_CCW" data-x="4.6925" data-y="-0.4899999999999993" x="476.64797875479496" y="347.0994393626438" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">CW_CCW</text><text data-type="text" data-label="ENABLE" data-x="4.6925" data-y="-0.6899999999999993" x="476.64797875479496" y="353.70905871938623" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">ENABLE</text><text data-type="text" data-label="RESET_X" data-x="4.6925" data-y="-0.8899999999999995" x="476.64797875479496" y="360.3186780761286" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">RESET_X</text><text data-type="text" data-label="SLEEP_X" data-x="4.6925" data-y="-1.0899999999999996" x="476.64797875479496" y="366.92829743287103" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">SLEEP_X</text><text data-type="text" data-label="LO2" data-x="4.5925" data-y="-1.2899999999999998" x="473.34316907642375" y="373.53791678961346" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">LO2</text><text data-type="text" data-label="LO1" data-x="4.6925" data-y="-1.49" x="476.64797875479496" y="380.14753614635583" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">LO1</text><text data-type="text" data-label="LO0" data-x="2.9775" data-y="-2.290000000000001" x="419.9704927707288" y="406.5860135733255" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">LO0</text><text data-type="text" data-label="MO" data-x="3.0275" data-y="-2.490000000000001" x="421.62289760991445" y="413.1956329300679" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">MO</text><text data-type="text" data-label="AGC_OUT" data-x="5.4750000000000005" data-y="-2.0900000000000007" x="502.5081144880496" y="399.9763942165831" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="end" dominant-baseline="central">AGC_OUT</text><text data-type="text" data-label="AGC_OUT" data-x="-2.145" data-y="-1.8900000000000003" x="250.68161699616405" y="393.3667748598407" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="end" dominant-baseline="central">AGC_OUT</text><g><circle data-type="point" data-label="schematic_port_0
72
+ side: y+" data-x="-2.465" data-y="-1.8900000000000003" x="229.53083505458835" y="391.38388905281795" width="21.150781941575673" height="3.9657716140454227" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03025892857142857"/></g><text data-type="text" data-label="STOP_DET_VTH" data-x="-3.2625" data-y="2.71" x="213.75036884036587" y="241.34552965476541" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">STOP_DET_VTH</text><text data-type="text" data-label="KPKI_NANO" data-x="-3.3625000000000003" data-y="2.51" x="210.44555916199465" y="247.9551490115078" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">KPKI_NANO</text><text data-type="text" data-label="AGC_TIME" data-x="-3.3625000000000003" data-y="2.3099999999999996" x="210.44555916199465" y="254.5647683682502" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">AGC_TIME</text><text data-type="text" data-label="FREQ_MIN" data-x="-3.3625000000000003" data-y="2.1099999999999994" x="210.44555916199465" y="261.17438772499264" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">FREQ_MIN</text><text data-type="text" data-label="VSP_MIN" data-x="-3.4625000000000004" data-y="1.9099999999999995" x="207.14074948362347" y="267.784007081735" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">VSP_MIN</text><text data-type="text" data-label="AGC_KI" data-x="-3.4625000000000004" data-y="1.7099999999999993" x="207.14074948362347" y="274.39362643847744" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">AGC_KI</text><text data-type="text" data-label="AGC_KP" data-x="-3.4625000000000004" data-y="1.5099999999999993" x="207.14074948362347" y="281.00324579521987" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">AGC_KP</text><text data-type="text" data-label="TARGET_ANGLE" data-x="-3.2625" data-y="1.3099999999999994" x="213.75036884036587" y="287.61286515196224" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">TARGET_ANGLE</text><text data-type="text" data-label="NFHYS" data-x="-3.5625" data-y="1.1099999999999994" x="203.83593980525228" y="294.2224845087046" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">NFHYS</text><text data-type="text" data-label="MTBLANK" data-x="-3.4625000000000004" data-y="0.9099999999999994" x="207.14074948362347" y="300.83210386544704" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">MTBLANK</text><text data-type="text" data-label="STBLANK" data-x="-3.4625000000000004" data-y="0.7099999999999994" x="207.14074948362347" y="307.44172322218947" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">STBLANK</text><text data-type="text" data-label="CTBLANK" data-x="-3.4625000000000004" data-y="0.5099999999999995" x="207.14074948362347" y="314.05134257893184" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">CTBLANK</text><text data-type="text" data-label="VREG" data-x="-1.1837499999999999" data-y="4.375" x="282.44910002950724" y="186.3204485098849" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">VREG</text><text data-type="text" data-label="GND" data-x="-1.3115" data-y="-3.665" x="278.227205665388" y="452.02714665092947" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">GND</text><text data-type="text" data-label="OUT_A_P" data-x="3.71" data-y="2.710000000000001" x="444.1782236647979" y="241.34552965476536" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">OUT_A_P</text><text data-type="text" data-label="OUT_A_N" data-x="4.6925" data-y="1.3100000000000007" x="476.64797875479496" y="287.6128651519622" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">OUT_A_N</text><text data-type="text" data-label="OUT_B_N" data-x="4.6425" data-y="1.1100000000000005" x="474.9955739156093" y="294.2224845087046" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">OUT_B_N</text><text data-type="text" data-label="OUT_B_P" data-x="4.5925" data-y="0.9100000000000004" x="473.34316907642375" y="300.83210386544704" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">OUT_B_P</text><text data-type="text" data-label="SERIAL_IN" data-x="4.6925" data-y="0.7100000000000004" x="476.64797875479496" y="307.4417232221894" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">SERIAL_IN</text><text data-type="text" data-label="SERIAL_CLK" data-x="4.6925" data-y="0.5100000000000005" x="476.64797875479496" y="314.05134257893184" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">SERIAL_CLK</text><text data-type="text" data-label="DMODE2" data-x="4.6925" data-y="0.3100000000000005" x="476.64797875479496" y="320.6609619356742" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">DMODE2</text><text data-type="text" data-label="DMODE1" data-x="4.6925" data-y="0.11000000000000056" x="476.64797875479496" y="327.27058129241664" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">DMODE1</text><text data-type="text" data-label="DMODE0" data-x="4.6925" data-y="-0.0899999999999994" x="476.64797875479496" y="333.880200649159" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">DMODE0</text><text data-type="text" data-label="CLK" data-x="4.6925" data-y="-0.28999999999999937" x="476.64797875479496" y="340.48982000590144" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">CLK</text><text data-type="text" data-label="CW_CCW" data-x="4.6925" data-y="-0.4899999999999993" x="476.64797875479496" y="347.0994393626438" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">CW_CCW</text><text data-type="text" data-label="ENABLE" data-x="4.6925" data-y="-0.6899999999999993" x="476.64797875479496" y="353.70905871938623" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">ENABLE</text><text data-type="text" data-label="RESET_X" data-x="4.6925" data-y="-0.8899999999999995" x="476.64797875479496" y="360.3186780761286" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">RESET_X</text><text data-type="text" data-label="SLEEP_X" data-x="4.6925" data-y="-1.0899999999999996" x="476.64797875479496" y="366.92829743287103" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">SLEEP_X</text><text data-type="text" data-label="LO2" data-x="4.5925" data-y="-1.2899999999999998" x="473.34316907642375" y="373.53791678961346" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">LO2</text><text data-type="text" data-label="LO1" data-x="4.6925" data-y="-1.49" x="476.64797875479496" y="380.14753614635583" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">LO1</text><text data-type="text" data-label="LO0" data-x="2.9775" data-y="-2.290000000000001" x="419.9704927707288" y="406.5860135733255" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">LO0</text><text data-type="text" data-label="MO" data-x="3.0275" data-y="-2.490000000000001" x="421.62289760991445" y="413.1956329300679" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">MO</text><text data-type="text" data-label="AGC_OUT" data-x="5.4750000000000005" data-y="-2.0900000000000007" x="502.5081144880496" y="399.9763942165831" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="end" dominant-baseline="central">AGC_OUT</text><text data-type="text" data-label="AGC_OUT" data-x="-2.145" data-y="-1.8900000000000003" x="250.68161699616405" y="393.3667748598407" fill="green" font-size="3.9657716140454413" font-family="sans-serif" text-anchor="end" dominant-baseline="central">AGC_OUT</text><g><circle data-type="point" data-label="schematic_port_0
73
73
  x-" data-x="-2.045" data-y="-2.0000000000000004" cx="253.98642667453527" cy="397.002065506049" r="3" fill="hsl(248, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="schematic_port_1
74
74
  y-" data-x="-1.4450000000000003" data-y="-3.5749999999999997" cx="273.81528474476244" cy="449.05281794039536" r="3" fill="hsl(248, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="schematic_port_2
75
75
  y+" data-x="-1.4450000000000003" data-y="3.5749999999999997" cx="273.81528474476244" cy="212.75892593685452" r="3" fill="hsl(248, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="schematic_port_3
@@ -158,19 +158,19 @@ x-" data-x="5.575" data-y="-1.8000000000000003" cx="505.81292416642077" cy="390.
158
158
  x-" data-x="5.575" data-y="-2.0000000000000004" cx="505.81292416642077" cy="397.002065506049" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="schematic_port_86
159
159
  x-" data-x="5.575" data-y="-2.2000000000000006" cx="505.81292416642077" cy="403.61168486279144" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anchorPoint
160
160
  orientation: y+" data-x="-1.4450000000000003" data-y="3.775" cx="273.81528474476244" cy="206.14930658011212" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="inline anchor
161
- STOP_DET_VTH" data-x="-3.1625" data-y="2.6" cx="217.05517851873708" cy="244.98082030097373" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
161
+ STOP_DET_VTH" data-x="-3.2625" data-y="2.6" cx="213.75036884036587" cy="244.98082030097373" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
162
162
  KPKI_NANO" data-x="-3.3625000000000003" data-y="2.4" cx="210.44555916199465" cy="251.59043965771613" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
163
163
  AGC_TIME" data-x="-3.3625000000000003" data-y="2.1999999999999997" cx="210.44555916199465" cy="258.20005901445853" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
164
164
  FREQ_MIN" data-x="-3.3625000000000003" data-y="1.9999999999999996" cx="210.44555916199465" cy="264.80967837120096" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
165
- VSP_MIN" data-x="-3.3625000000000003" data-y="1.7999999999999994" cx="210.44555916199465" cy="271.41929772794333" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
165
+ VSP_MIN" data-x="-3.4625000000000004" data-y="1.7999999999999994" cx="207.14074948362347" cy="271.41929772794333" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
166
166
  AGC_KI" data-x="-3.4625000000000004" data-y="1.5999999999999992" cx="207.14074948362347" cy="278.02891708468576" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
167
167
  AGC_KP" data-x="-3.4625000000000004" data-y="1.3999999999999992" cx="207.14074948362347" cy="284.6385364414282" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
168
- TARGET_ANGLE" data-x="-3.1625" data-y="1.1999999999999993" cx="217.05517851873708" cy="291.24815579817056" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
169
- NFHYS" data-x="-3.4625000000000004" data-y="0.9999999999999993" cx="207.14074948362347" cy="297.857775154913" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
170
- MTBLANK" data-x="-3.3625000000000003" data-y="0.7999999999999994" cx="210.44555916199465" cy="304.46739451165536" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
171
- STBLANK" data-x="-3.3625000000000003" data-y="0.5999999999999994" cx="210.44555916199465" cy="311.0770138683978" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
172
- CTBLANK" data-x="-3.3625000000000003" data-y="0.39999999999999947" cx="210.44555916199465" cy="317.68663322514016" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
173
- VREG" data-x="-1.15875" data-y="4.265" cx="283.2753024491" cy="189.95573915609324" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
168
+ TARGET_ANGLE" data-x="-3.2625" data-y="1.1999999999999993" cx="213.75036884036587" cy="291.24815579817056" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
169
+ NFHYS" data-x="-3.5625" data-y="0.9999999999999993" cx="203.83593980525228" cy="297.857775154913" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
170
+ MTBLANK" data-x="-3.4625000000000004" data-y="0.7999999999999994" cx="207.14074948362347" cy="304.46739451165536" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
171
+ STBLANK" data-x="-3.4625000000000004" data-y="0.5999999999999994" cx="207.14074948362347" cy="311.0770138683978" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
172
+ CTBLANK" data-x="-3.4625000000000004" data-y="0.39999999999999947" cx="207.14074948362347" cy="317.68663322514016" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
173
+ VREG" data-x="-1.1837499999999999" data-y="4.265" cx="282.44910002950724" cy="189.95573915609324" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
174
174
  GND" data-x="-1.3115" data-y="-3.775" cx="278.227205665388" cy="455.6624372971378" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
175
175
  OUT_A_P" data-x="3.71" data-y="2.600000000000001" cx="444.1782236647979" cy="244.98082030097368" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
176
176
  OUT_A_N" data-x="4.6925" data-y="1.2000000000000006" cx="476.64797875479496" cy="291.2481557981705" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
@@ -248,13 +248,13 @@ AGC_OUT" data-x="-2.465" data-y="-2.0000000000000004" cx="240.1062260253762" cy=
248
248
  .port-label { fill: rgb(0, 100, 100); }
249
249
  .component-name { fill: rgb(0, 100, 100); }
250
250
 
251
- </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 223.1909328681279 239.93025283335996 L 462.77244986913695 239.9302528333599" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 223.1909328681279 239.93025283335996 L 462.77244986913695 239.9302528333599" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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 223.1909328681279 253.87968613764 L 462.77244986913695 253.8796861376399" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 223.1909328681279 253.87968613764 L 462.77244986913695 253.8796861376399" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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 223.1909328681279 267.82911944192 L 462.77244986913695 267.82911944191994" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 223.1909328681279 267.82911944192 L 462.77244986913695 267.82911944191994" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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 223.1909328681279 281.77855274620003 L 462.77244986913695 281.7785527461999" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 223.1909328681279 281.77855274620003 L 462.77244986913695 281.7785527461999" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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 223.1909328681279 295.72798605048 L 462.77244986913695 295.7279860504799" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 223.1909328681279 295.72798605048 L 462.77244986913695 295.7279860504799" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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 223.1909328681279 309.67741935476005 L 462.77244986913695 309.6774193547599" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 223.1909328681279 309.67741935476005 L 462.77244986913695 309.6774193547599" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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 223.1909328681279 323.62685265904 L 462.77244986913695 323.6268526590399" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 223.1909328681279 323.62685265904 L 462.77244986913695 323.6268526590399" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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 223.1909328681279 337.57628596332006 L 462.77244986913695 337.5762859633199" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 223.1909328681279 337.57628596332006 L 462.77244986913695 337.5762859633199" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_8__stack1"><path d="M 223.1909328681279 351.52571926760004 L 462.77244986913695 351.5257192675999" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 223.1909328681279 351.52571926760004 L 462.77244986913695 351.5257192675999" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_9__stack1"><path d="M 223.1909328681279 365.47515257188 L 462.77244986913695 365.4751525718799" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 223.1909328681279 365.47515257188 L 462.77244986913695 365.4751525718799" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_10__stack1"><path d="M 223.1909328681279 379.42458587616 L 462.77244986913695 379.4245858761599" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 223.1909328681279 379.42458587616 L 462.77244986913695 379.4245858761599" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_11__stack1"><path d="M 223.1909328681279 393.37401918044003 L 462.77244986913695 393.3740191804399" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 223.1909328681279 393.37401918044003 L 462.77244986913695 393.3740191804399" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_12__stack1"><path d="M 605.4054054054 171.926765474995 L 605.4054054054 157.977332170715 L 504.62074978197694 157.977332170715 L 504.62074978197694 171.926765474995" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 605.4054054054 171.926765474995 L 605.4054054054 157.977332170715 L 504.62074978197694 157.977332170715 L 504.62074978197694 171.926765474995" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_13__stack1"><path d="M 223.1909328681279 225.98081952907995 L 363.9058413250524 225.98081952907995 L 363.9058413250524 157.977332170715 L 504.62074978197694 157.977332170715 L 504.62074978197694 171.926765474995" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 223.1909328681279 225.98081952907995 L 363.9058413250524 225.98081952907995 L 363.9058413250524 157.977332170715 L 504.62074978197694 157.977332170715 L 504.62074978197694 171.926765474995" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_14__stack1"><path d="M 223.1909328681279 421.27288578900004 L 342.9816913686324 421.27288578900004 L 342.9816913686324 123.80122057522897 L 706.190061028823 123.80122057522897 L 706.190061028823 171.926765474995" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 223.1909328681279 421.27288578900004 L 342.9816913686324 421.27288578900004 L 342.9816913686324 123.80122057522897 L 706.190061028823 123.80122057522897 L 706.190061028823 171.926765474995" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_15__stack1"><path d="M 994.245858762205 323.62685265903997 L 980.296425457925 323.62685265903997 L 980.296425457925 239.9302528333599 L 748.038360941663 239.9302528333599" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 323.62685265903997 L 980.296425457925 323.62685265903997 L 980.296425457925 239.9302528333599 L 748.038360941663 239.9302528333599" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_16__stack1"><path d="M 994.245858762205 337.57628596331995 L 871.142109851934 337.57628596331995 L 871.142109851934 253.8796861376399 L 748.038360941663 253.8796861376399" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 337.57628596331995 L 871.142109851934 337.57628596331995 L 871.142109851934 253.8796861376399 L 748.038360941663 253.8796861376399" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_17__stack1"><path d="M 994.245858762205 351.5257192675999 L 864.167393199794 351.5257192675999 L 864.167393199794 267.82911944191994 L 748.038360941663 267.82911944191994" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 351.5257192675999 L 864.167393199794 351.5257192675999 L 864.167393199794 267.82911944191994 L 748.038360941663 267.82911944191994" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_18__stack1"><path d="M 994.245858762205 365.47515257187996 L 857.192676547654 365.47515257187996 L 857.192676547654 281.7785527461999 L 748.038360941663 281.7785527461999" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 365.47515257187996 L 857.192676547654 365.47515257187996 L 857.192676547654 281.7785527461999 L 748.038360941663 281.7785527461999" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_19__stack1"><path d="M 994.245858762205 379.42458587615994 L 871.142109851934 379.42458587615994 L 871.142109851934 372.44986922401995 L 748.038360941663 372.44986922401995" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 379.42458587615994 L 871.142109851934 379.42458587615994 L 871.142109851934 372.44986922401995 L 748.038360941663 372.44986922401995" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_20__stack1"><path d="M 994.245858762205 393.37401918044 L 871.142109851934 393.37401918044 L 871.142109851934 386.3993025283 L 748.038360941663 386.3993025283" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 393.37401918044 L 871.142109851934 393.37401918044 L 871.142109851934 386.3993025283 L 748.038360941663 386.3993025283" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_21__stack1"><path d="M 994.245858762205 407.32345248471995 L 871.142109851934 407.32345248471995 L 871.142109851934 400.34873583258 L 748.038360941663 400.34873583258" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 407.32345248471995 L 871.142109851934 407.32345248471995 L 871.142109851934 400.34873583258 L 748.038360941663 400.34873583258" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_22__stack1"><path d="M 994.245858762205 421.27288578899993 L 871.142109851934 421.27288578899993 L 871.142109851934 414.29816913686 L 748.038360941663 414.29816913686" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 421.27288578899993 L 871.142109851934 421.27288578899993 L 871.142109851934 414.29816913686 L 748.038360941663 414.29816913686" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_23__stack1"><path d="M 994.245858762205 435.22231909327996 L 871.142109851934 435.22231909327996 L 871.142109851934 428.24760244114003 L 748.038360941663 428.24760244114003" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 435.22231909327996 L 871.142109851934 435.22231909327996 L 871.142109851934 428.24760244114003 L 748.038360941663 428.24760244114003" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_24__stack1"><path d="M 994.245858762205 449.17175239755994 L 871.142109851934 449.17175239755994 L 871.142109851934 442.19703574542007 L 748.038360941663 442.19703574542007" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 449.17175239755994 L 871.142109851934 449.17175239755994 L 871.142109851934 442.19703574542007 L 748.038360941663 442.19703574542007" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_25__stack1"><path d="M 994.245858762205 463.1211857018399 L 871.142109851934 463.1211857018399 L 871.142109851934 456.14646904970004 L 748.038360941663 456.14646904970004" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 463.1211857018399 L 871.142109851934 463.1211857018399 L 871.142109851934 456.14646904970004 L 748.038360941663 456.14646904970004" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_26__stack1"><path d="M 994.245858762205 477.07061900611995 L 871.142109851934 477.07061900611995 L 871.142109851934 470.0959023539801 L 748.038360941663 470.0959023539801" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 477.07061900611995 L 871.142109851934 477.07061900611995 L 871.142109851934 470.0959023539801 L 748.038360941663 470.0959023539801" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_27__stack1"><path d="M 994.245858762205 491.02005231039993 L 871.142109851934 491.02005231039993 L 871.142109851934 484.04533565826006 L 748.038360941663 484.04533565826006" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 491.02005231039993 L 871.142109851934 491.02005231039993 L 871.142109851934 484.04533565826006 L 748.038360941663 484.04533565826006" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_28__stack1"><path d="M 994.245858762205 504.96948561467997 L 871.142109851934 504.96948561467997 L 871.142109851934 497.9947689625401 L 748.038360941663 497.9947689625401" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 504.96948561467997 L 871.142109851934 504.96948561467997 L 871.142109851934 497.9947689625401 L 748.038360941663 497.9947689625401" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_29__stack1"><path d="M 994.245858762205 518.91891891896 L 857.192676547654 518.91891891896 L 857.192676547654 560.7672188318 L 748.038360941663 560.7672188318" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 518.91891891896 L 857.192676547654 518.91891891896 L 857.192676547654 560.7672188318 L 748.038360941663 560.7672188318" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_30__stack1"><path d="M 994.245858762205 532.86835222324 L 871.142109851934 532.86835222324 L 871.142109851934 574.71665213608 L 748.038360941663 574.71665213608" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 532.86835222324 L 871.142109851934 532.86835222324 L 871.142109851934 574.71665213608 L 748.038360941663 574.71665213608" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_31__stack1"><path d="M 994.245858762205 546.8177855275201 L 878.116826504074 546.8177855275201 L 878.116826504074 588.6660854403601 L 748.038360941663 588.6660854403601" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 546.8177855275201 L 878.116826504074 546.8177855275201 L 878.116826504074 588.6660854403601 L 748.038360941663 588.6660854403601" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_32__stack1"><path d="M 994.245858762205 560.7672188318 L 885.0915431562139 560.7672188318 L 885.0915431562139 602.6155187446401 L 748.038360941663 602.6155187446401" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 560.7672188318 L 885.0915431562139 560.7672188318 L 885.0915431562139 602.6155187446401 L 748.038360941663 602.6155187446401" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_33__stack1"><path d="M 223.1909328681279 435.22231909328 L 388.77070618993156 435.22231909328 L 388.77070618993156 684.568439407285 L 639.0932868352361 684.568439407285 L 639.0932868352361 670.619006103005" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 223.1909328681279 435.22231909328 L 388.77070618993156 435.22231909328 L 388.77070618993156 684.568439407285 L 639.0932868352361 684.568439407285 L 639.0932868352361 670.619006103005" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_34__stack1"><path d="M 994.245858762205 574.71665213608 L 935.6582388842289 574.71665213608" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 574.71665213608 L 935.6582388842289 574.71665213608" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_35__stack1"><path d="M 462.77244986913695 560.7672188318 L 404.184829991161 560.7672188318" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 462.77244986913695 560.7672188318 L 404.184829991161 560.7672188318" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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"/><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="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_8__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_9__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_10__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_11__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_12__stack1"><circle cx="504.62074978197694" cy="157.977332170715" r="2.092414995642" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/><circle cx="504.62074978197694" cy="171.926765474995" r="2.092414995642" 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_13__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_14__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_15__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_16__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_17__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_18__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_19__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_20__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_21__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_22__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_23__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_24__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_25__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_26__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_27__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_28__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_29__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_30__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_31__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_32__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_33__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_34__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_35__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="490.67131647769696" y="199.82563208355498" width="229.46817785540605" height="442.89450741089" stroke-width="1.3949433304280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="490.67131647769696" y="199.82563208355498" width="229.46817785540605" height="442.89450741089" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="560.7672188318" x2="462.77244986913695" y2="560.7672188318" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_0__stack1"><rect x="461.37750653870893" y="559.3722755013721" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="559.3722755013721" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="504.62074978197694" y1="642.720139494445" x2="504.62074978197694" y2="669.224062772577" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="504.62074978197694" cy="670.619006103005" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="503.2258064515489" y="669.224062772577" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="503.2258064515489" y="656.669572798725" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform="rotate(-90 503.2258064515489 656.669572798725)"></text><line class="component-pin sch-component-pin sch-port-line" x1="504.62074978197694" y1="199.82563208355498" x2="504.62074978197694" y2="171.926765474995" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_2__stack1"><rect x="503.2258064515489" y="170.531822144567" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="503.2258064515489" y="185.87619877927497" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform="rotate(-90 503.2258064515489 185.87619877927497)"></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="239.9302528333599" x2="748.038360941663" y2="239.9302528333599" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_3__stack1"><rect x="746.643417611235" y="238.5353095029319" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="238.5353095029319" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="538.2388840452918" y1="642.720139494445" x2="538.2388840452918" y2="669.224062772577" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_4__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="538.2388840452918" cy="670.619006103005" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="536.8439407148638" y="669.224062772577" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="536.8439407148637" y="656.669572798725" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform="rotate(-90 536.8439407148637 656.669572798725)"></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="253.8796861376399" x2="748.038360941663" y2="253.8796861376399" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_5__stack1"><rect x="746.643417611235" y="252.48474280721192" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="252.48474280721192" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="267.82911944191994" x2="748.038360941663" y2="267.82911944191994" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_6__stack1"><rect x="746.643417611235" y="266.4341761114919" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="266.4341761114919" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="571.8570183086065" y1="642.720139494445" x2="571.8570183086065" y2="669.224062772577" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_7__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="571.8570183086065" cy="670.619006103005" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="570.4620749781785" y="669.224062772577" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="570.4620749781785" y="656.669572798725" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform="rotate(-90 570.4620749781785 656.669572798725)"></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="281.7785527461999" x2="748.038360941663" y2="281.7785527461999" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_8__stack1"><rect x="746.643417611235" y="280.3836094157719" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="280.38360941577196" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="605.4054054054" y1="199.82563208355498" x2="605.4054054054" y2="171.926765474995" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_9__stack1"><rect x="604.010462074972" y="170.531822144567" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="604.010462074972" y="185.87619877927497" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform="rotate(-90 604.010462074972 185.87619877927497)"></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="477.07061900611995" x2="464.16739319956497" y2="477.07061900611995" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_10__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="462.77244986913695" cy="477.07061900611995" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="461.37750653870893" y="475.67567567569193" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="475.67567567569193" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="463.1211857018399" x2="464.16739319956497" y2="463.1211857018399" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_11__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="462.77244986913695" cy="463.1211857018399" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="461.37750653870893" y="461.7262423714119" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="461.7262423714119" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="435.2223190932799" x2="464.16739319956497" y2="435.2223190932799" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_12__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="462.77244986913695" cy="435.2223190932799" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="461.37750653870893" y="433.8273757628519" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="433.8273757628519" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="449.17175239755994" x2="464.16739319956497" y2="449.17175239755994" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_13__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="462.77244986913695" cy="449.17175239755994" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="461.37750653870893" y="447.7768090671319" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="447.7768090671319" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="605.4751525719213" y1="642.720139494445" x2="605.4751525719213" y2="669.224062772577" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_14__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="605.4751525719213" cy="670.619006103005" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="604.0802092414933" y="669.224062772577" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="604.0802092414933" y="656.669572798725" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform="rotate(-90 604.0802092414933 656.669572798725)"></text><line class="component-pin sch-component-pin sch-port-line" x1="639.0932868352361" y1="642.720139494445" x2="639.0932868352361" y2="670.619006103005" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_15__stack1"><rect x="637.6983435048081" y="669.224062772577" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="637.6983435048081" y="656.669572798725" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform="rotate(-90 637.6983435048081 656.669572798725)"></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="239.9302528333599" x2="462.77244986913695" y2="239.9302528333599" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_16__stack1"><rect x="461.37750653870893" y="238.5353095029319" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="238.5353095029319" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="602.6155187446401" x2="464.16739319956497" y2="602.6155187446401" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_17__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="462.77244986913695" cy="602.6155187446401" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="461.37750653870893" y="601.2205754142121" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="601.220575414212" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="253.8796861376399" x2="462.77244986913695" y2="253.8796861376399" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_18__stack1"><rect x="461.37750653870893" y="252.48474280721192" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="252.48474280721192" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="267.82911944191994" x2="462.77244986913695" y2="267.82911944191994" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_19__stack1"><rect x="461.37750653870893" y="266.4341761114919" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="266.43417611149187" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="281.7785527461999" x2="462.77244986913695" y2="281.7785527461999" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_20__stack1"><rect x="461.37750653870893" y="280.3836094157719" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="280.3836094157719" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="295.7279860504799" x2="462.77244986913695" y2="295.7279860504799" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_21__stack1"><rect x="461.37750653870893" y="294.3330427200519" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="294.33304272005194" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="309.6774193547599" x2="462.77244986913695" y2="309.6774193547599" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_22__stack1"><rect x="461.37750653870893" y="308.28247602433186" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="308.2824760243319" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="323.6268526590399" x2="462.77244986913695" y2="323.6268526590399" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_23__stack1"><rect x="461.37750653870893" y="322.2319093286119" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="322.2319093286119" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="337.5762859633199" x2="462.77244986913695" y2="337.5762859633199" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_24__stack1"><rect x="461.37750653870893" y="336.18134263289187" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="336.1813426328919" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="351.5257192675999" x2="462.77244986913695" y2="351.5257192675999" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_25__stack1"><rect x="461.37750653870893" y="350.1307759371719" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="350.1307759371719" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="365.4751525718799" x2="462.77244986913695" y2="365.4751525718799" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_26__stack1"><rect x="461.37750653870893" y="364.0802092414519" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="364.0802092414519" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="379.4245858761599" x2="462.77244986913695" y2="379.4245858761599" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_27__stack1"><rect x="461.37750653870893" y="378.02964254573186" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="378.0296425457319" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="393.3740191804399" x2="462.77244986913695" y2="393.3740191804399" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_28__stack1"><rect x="461.37750653870893" y="391.9790758500119" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="391.9790758500119" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="706.190061028823" y1="199.82563208355498" x2="706.190061028823" y2="171.926765474995" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_29__stack1"><rect x="704.7951176983951" y="170.531822144567" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="704.795117698395" y="185.87619877927497" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform="rotate(-90 704.795117698395 185.87619877927497)"></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="560.7672188318" x2="748.038360941663" y2="560.7672188318" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_30__stack1"><rect x="746.643417611235" y="559.3722755013721" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="559.3722755013721" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="574.71665213608" x2="748.038360941663" y2="574.71665213608" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_31__stack1"><rect x="746.643417611235" y="573.3217088056521" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="573.3217088056521" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="588.6660854403601" x2="748.038360941663" y2="588.6660854403601" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_32__stack1"><rect x="746.643417611235" y="587.2711421099322" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="587.271142109932" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="602.6155187446401" x2="748.038360941663" y2="602.6155187446401" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_33__stack1"><rect x="746.643417611235" y="601.2205754142121" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="601.220575414212" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="546.8177855275201" x2="464.16739319956497" y2="546.8177855275201" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_34__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="462.77244986913695" cy="546.8177855275201" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="461.37750653870893" y="545.4228421970921" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="545.422842197092" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="497.9947689625401" x2="748.038360941663" y2="497.9947689625401" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_35__stack1"><rect x="746.643417611235" y="496.5998256321121" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="496.5998256321121" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="484.04533565826006" x2="748.038360941663" y2="484.04533565826006" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_36__stack1"><rect x="746.643417611235" y="482.65039232783204" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="482.65039232783204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="456.14646904970004" x2="748.038360941663" y2="456.14646904970004" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_37__stack1"><rect x="746.643417611235" y="454.751525719272" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="454.751525719272" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="470.0959023539801" x2="748.038360941663" y2="470.0959023539801" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_38__stack1"><rect x="746.643417611235" y="468.70095902355206" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="468.70095902355206" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="442.19703574542007" x2="748.038360941663" y2="442.19703574542007" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_39__stack1"><rect x="746.643417611235" y="440.80209241499205" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="440.80209241499205" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="428.24760244114003" x2="748.038360941663" y2="428.24760244114003" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_40__stack1"><rect x="746.643417611235" y="426.852659110712" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="426.852659110712" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="414.29816913686" x2="748.038360941663" y2="414.29816913686" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_41__stack1"><rect x="746.643417611235" y="412.903225806432" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="412.90322580643203" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="400.34873583258" x2="748.038360941663" y2="400.34873583258" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_42__stack1"><rect x="746.643417611235" y="398.953792502152" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="398.953792502152" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="504.96948561467997" x2="464.16739319956497" y2="504.96948561467997" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_43__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="462.77244986913695" cy="504.96948561467997" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="461.37750653870893" y="503.57454228425195" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="503.57454228425195" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="491.02005231039993" x2="464.16739319956497" y2="491.02005231039993" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_44__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="462.77244986913695" cy="491.02005231039993" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="461.37750653870893" y="489.6251089799719" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="489.62510897997197" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="672.711421098551" y1="642.720139494445" x2="672.711421098551" y2="669.224062772577" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_45__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="672.711421098551" cy="670.619006103005" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="671.316477768123" y="669.224062772577" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="671.3164777681229" y="656.669572798725" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform="rotate(-90 671.3164777681229 656.669572798725)"></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="386.3993025283" x2="748.038360941663" y2="386.3993025283" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_46__stack1"><rect x="746.643417611235" y="385.00435919787196" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="385.00435919787196" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="372.44986922401995" x2="748.038360941663" y2="372.44986922401995" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_47__stack1"><rect x="746.643417611235" y="371.0549258935919" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="371.054925893592" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="706.190061028823" y1="642.720139494445" x2="706.190061028823" y2="669.224062772577" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_48__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="706.190061028823" cy="670.619006103005" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="704.7951176983951" y="669.224062772577" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="704.795117698395" y="656.669572798725" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform="rotate(-90 704.795117698395 656.669572798725)"></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="39.05841325163203" y="198.08195292051997" width="156.23365300793586" height="278.98866608560013" stroke-width="1.3949433304280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="39.05841325163203" y="198.08195292051997" width="156.23365300793586" height="278.98866608560013" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="212.03138622479995" x2="221.79598953769994" y2="212.03138622479995" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="223.1909328681279" cy="212.03138622479995" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="221.7959895376999" y="210.63644289437195" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="210.63644289437195" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="225.98081952907995" x2="223.1909328681279" y2="225.98081952907995" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_1__stack1"><rect x="221.7959895376999" y="224.58587619865196" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="224.58587619865196" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="239.93025283335996" x2="223.1909328681279" y2="239.93025283335996" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_2__stack1"><rect x="221.7959895376999" y="238.53530950293197" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="238.53530950293197" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="253.87968613764" x2="223.1909328681279" y2="253.87968613764" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_3__stack1"><rect x="221.7959895376999" y="252.484742807212" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="252.48474280721197" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="267.82911944192" x2="223.1909328681279" y2="267.82911944192" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_4__stack1"><rect x="221.7959895376999" y="266.434176111492" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="266.434176111492" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="281.77855274620003" x2="223.1909328681279" y2="281.77855274620003" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_5__stack1"><rect x="221.7959895376999" y="280.383609415772" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="280.383609415772" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="295.72798605048" x2="223.1909328681279" y2="295.72798605048" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_6__stack1"><rect x="221.7959895376999" y="294.333042720052" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="294.33304272005205" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="309.67741935476005" x2="223.1909328681279" y2="309.67741935476005" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_7__stack1"><rect x="221.7959895376999" y="308.282476024332" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="308.282476024332" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="323.62685265904" x2="223.1909328681279" y2="323.62685265904" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_8__stack1"><rect x="221.7959895376999" y="322.231909328612" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="322.231909328612" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="337.57628596332006" x2="223.1909328681279" y2="337.57628596332006" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_9__stack1"><rect x="221.7959895376999" y="336.18134263289204" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="336.18134263289204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="351.52571926760004" x2="223.1909328681279" y2="351.52571926760004" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_10__stack1"><rect x="221.7959895376999" y="350.130775937172" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="350.130775937172" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="365.47515257188" x2="223.1909328681279" y2="365.47515257188" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_11__stack1"><rect x="221.7959895376999" y="364.080209241452" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="364.08020924145205" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="379.42458587616" x2="223.1909328681279" y2="379.42458587616" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_12__stack1"><rect x="221.7959895376999" y="378.029642545732" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="378.02964254573203" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="393.37401918044003" x2="223.1909328681279" y2="393.37401918044003" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_13__stack1"><rect x="221.7959895376999" y="391.979075850012" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="391.979075850012" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="407.32345248472" x2="221.79598953769994" y2="407.32345248472" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_14__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="223.1909328681279" cy="407.32345248472" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="221.7959895376999" y="405.928509154292" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="405.92850915429204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="421.27288578900004" x2="223.1909328681279" y2="421.27288578900004" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_15__stack1"><rect x="221.7959895376999" y="419.877942458572" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="419.877942458572" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="435.22231909328" x2="223.1909328681279" y2="435.22231909328" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_16__stack1"><rect x="221.7959895376999" y="433.827375762852" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="433.827375762852" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="449.17175239756" x2="221.79598953769994" y2="449.17175239756" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_17__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="223.1909328681279" cy="449.17175239756" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="221.7959895376999" y="447.776809067132" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="447.77680906713204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="463.12118570184003" x2="221.79598953769994" y2="463.12118570184003" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_18__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="223.1909328681279" cy="463.12118570184003" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="221.7959895376999" y="461.726242371412" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="461.726242371412" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></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="1022.144725370765" y="309.67741935475993" width="142.9816913688701" height="278.9886660856001" stroke-width="1.3949433304280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="1022.144725370765" y="309.67741935475993" width="142.9816913688701" height="278.9886660856001" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="323.62685265903997" x2="994.245858762205" y2="323.62685265903997" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_0__stack1"><rect x="992.850915431777" y="322.23190932861195" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="322.23190932861195" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="337.57628596331995" x2="994.245858762205" y2="337.57628596331995" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_1__stack1"><rect x="992.850915431777" y="336.1813426328919" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="336.1813426328919" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="351.5257192675999" x2="994.245858762205" y2="351.5257192675999" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_2__stack1"><rect x="992.850915431777" y="350.1307759371719" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="350.13077593717196" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="365.47515257187996" x2="994.245858762205" y2="365.47515257187996" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_3__stack1"><rect x="992.850915431777" y="364.08020924145194" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="364.08020924145194" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="379.42458587615994" x2="994.245858762205" y2="379.42458587615994" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_4__stack1"><rect x="992.850915431777" y="378.0296425457319" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="378.029642545732" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="393.37401918044" x2="994.245858762205" y2="393.37401918044" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_5__stack1"><rect x="992.850915431777" y="391.97907585001195" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="391.97907585001195" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="407.32345248471995" x2="994.245858762205" y2="407.32345248471995" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_6__stack1"><rect x="992.850915431777" y="405.92850915429193" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="405.92850915429193" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="421.27288578899993" x2="994.245858762205" y2="421.27288578899993" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_7__stack1"><rect x="992.850915431777" y="419.8779424585719" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="419.87794245857197" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="435.22231909327996" x2="994.245858762205" y2="435.22231909327996" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_8__stack1"><rect x="992.850915431777" y="433.82737576285194" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="433.82737576285194" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="449.17175239755994" x2="994.245858762205" y2="449.17175239755994" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_9__stack1"><rect x="992.850915431777" y="447.7768090671319" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="447.7768090671319" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="463.1211857018399" x2="994.245858762205" y2="463.1211857018399" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_10__stack1"><rect x="992.850915431777" y="461.7262423714119" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="461.72624237141196" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="477.07061900611995" x2="994.245858762205" y2="477.07061900611995" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_11__stack1"><rect x="992.850915431777" y="475.67567567569193" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="475.67567567569193" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="491.02005231039993" x2="994.245858762205" y2="491.02005231039993" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_12__stack1"><rect x="992.850915431777" y="489.6251089799719" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="489.62510897997197" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="504.96948561467997" x2="994.245858762205" y2="504.96948561467997" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_13__stack1"><rect x="992.850915431777" y="503.57454228425195" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="503.57454228425195" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="518.91891891896" x2="994.245858762205" y2="518.91891891896" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_14__stack1"><rect x="992.850915431777" y="517.523975588532" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="517.523975588532" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="532.86835222324" x2="994.245858762205" y2="532.86835222324" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_15__stack1"><rect x="992.850915431777" y="531.473408892812" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="531.473408892812" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="546.8177855275201" x2="994.245858762205" y2="546.8177855275201" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_16__stack1"><rect x="992.850915431777" y="545.4228421970921" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="545.422842197092" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="560.7672188318" x2="994.245858762205" y2="560.7672188318" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_17__stack1"><rect x="992.850915431777" y="559.3722755013721" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="559.3722755013721" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="574.71665213608" x2="994.245858762205" y2="574.71665213608" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_18__stack1"><rect x="992.850915431777" y="573.3217088056521" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="573.3217088056521" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_0__stack1"><circle cx="462.77244986913695" cy="560.7672188318" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_1__stack1"><circle cx="504.62074978197694" cy="670.619006103005" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_2__stack1"><circle cx="504.62074978197694" cy="171.926765474995" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_3__stack1"><circle cx="748.038360941663" cy="239.9302528333599" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_4__stack1"><circle cx="538.2388840452918" cy="670.619006103005" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_5__stack1"><circle cx="748.038360941663" cy="253.8796861376399" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_6__stack1"><circle cx="748.038360941663" cy="267.82911944191994" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_7__stack1"><circle cx="571.8570183086065" cy="670.619006103005" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_8__stack1"><circle cx="748.038360941663" cy="281.7785527461999" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_9__stack1"><circle cx="605.4054054054" cy="171.926765474995" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_10__stack1"><circle cx="462.77244986913695" cy="477.07061900611995" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_11__stack1"><circle cx="462.77244986913695" cy="463.1211857018399" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_12__stack1"><circle cx="462.77244986913695" cy="435.2223190932799" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_13__stack1"><circle cx="462.77244986913695" cy="449.17175239755994" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_14__stack1"><circle cx="605.4751525719213" cy="670.619006103005" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_15__stack1"><circle cx="639.0932868352361" cy="670.619006103005" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_16__stack1"><circle cx="462.77244986913695" cy="239.9302528333599" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_17__stack1"><circle cx="462.77244986913695" cy="602.6155187446401" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_18__stack1"><circle cx="462.77244986913695" cy="253.8796861376399" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_19__stack1"><circle cx="462.77244986913695" cy="267.82911944191994" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_20__stack1"><circle cx="462.77244986913695" cy="281.7785527461999" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_21__stack1"><circle cx="462.77244986913695" cy="295.7279860504799" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_22__stack1"><circle cx="462.77244986913695" cy="309.6774193547599" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_23__stack1"><circle cx="462.77244986913695" cy="323.6268526590399" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_24__stack1"><circle cx="462.77244986913695" cy="337.5762859633199" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_25__stack1"><circle cx="462.77244986913695" cy="351.5257192675999" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_26__stack1"><circle cx="462.77244986913695" cy="365.4751525718799" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_27__stack1"><circle cx="462.77244986913695" cy="379.4245858761599" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_28__stack1"><circle cx="462.77244986913695" cy="393.3740191804399" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_29__stack1"><circle cx="706.190061028823" cy="171.926765474995" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_30__stack1"><circle cx="748.038360941663" cy="560.7672188318" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_31__stack1"><circle cx="748.038360941663" cy="574.71665213608" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_32__stack1"><circle cx="748.038360941663" cy="588.6660854403601" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_33__stack1"><circle cx="748.038360941663" cy="602.6155187446401" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_34__stack1"><circle cx="462.77244986913695" cy="546.8177855275201" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_35__stack1"><circle cx="748.038360941663" cy="497.9947689625401" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_36__stack1"><circle cx="748.038360941663" cy="484.04533565826006" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_37__stack1"><circle cx="748.038360941663" cy="456.14646904970004" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_38__stack1"><circle cx="748.038360941663" cy="470.0959023539801" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_39__stack1"><circle cx="748.038360941663" cy="442.19703574542007" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_40__stack1"><circle cx="748.038360941663" cy="428.24760244114003" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_41__stack1"><circle cx="748.038360941663" cy="414.29816913686" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_42__stack1"><circle cx="748.038360941663" cy="400.34873583258" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_43__stack1"><circle cx="462.77244986913695" cy="504.96948561467997" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_44__stack1"><circle cx="462.77244986913695" cy="491.02005231039993" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_45__stack1"><circle cx="672.711421098551" cy="670.619006103005" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_46__stack1"><circle cx="748.038360941663" cy="386.3993025283" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_47__stack1"><circle cx="748.038360941663" cy="372.44986922401995" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_48__stack1"><circle cx="706.190061028823" cy="670.619006103005" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_0__stack1"><circle cx="223.1909328681279" cy="212.03138622479995" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_1__stack1"><circle cx="223.1909328681279" cy="225.98081952907995" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_2__stack1"><circle cx="223.1909328681279" cy="239.93025283335996" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_3__stack1"><circle cx="223.1909328681279" cy="253.87968613764" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_4__stack1"><circle cx="223.1909328681279" cy="267.82911944192" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_5__stack1"><circle cx="223.1909328681279" cy="281.77855274620003" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_6__stack1"><circle cx="223.1909328681279" cy="295.72798605048" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_7__stack1"><circle cx="223.1909328681279" cy="309.67741935476005" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_8__stack1"><circle cx="223.1909328681279" cy="323.62685265904" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_9__stack1"><circle cx="223.1909328681279" cy="337.57628596332006" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_10__stack1"><circle cx="223.1909328681279" cy="351.52571926760004" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_11__stack1"><circle cx="223.1909328681279" cy="365.47515257188" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_12__stack1"><circle cx="223.1909328681279" cy="379.42458587616" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_13__stack1"><circle cx="223.1909328681279" cy="393.37401918044003" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_14__stack1"><circle cx="223.1909328681279" cy="407.32345248472" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_15__stack1"><circle cx="223.1909328681279" cy="421.27288578900004" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_16__stack1"><circle cx="223.1909328681279" cy="435.22231909328" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_17__stack1"><circle cx="223.1909328681279" cy="449.17175239756" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_18__stack1"><circle cx="223.1909328681279" cy="463.12118570184003" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_0__stack1"><circle cx="994.245858762205" cy="323.62685265903997" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_1__stack1"><circle cx="994.245858762205" cy="337.57628596331995" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_2__stack1"><circle cx="994.245858762205" cy="351.5257192675999" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_3__stack1"><circle cx="994.245858762205" cy="365.47515257187996" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_4__stack1"><circle cx="994.245858762205" cy="379.42458587615994" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_5__stack1"><circle cx="994.245858762205" cy="393.37401918044" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_6__stack1"><circle cx="994.245858762205" cy="407.32345248471995" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_7__stack1"><circle cx="994.245858762205" cy="421.27288578899993" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_8__stack1"><circle cx="994.245858762205" cy="435.22231909327996" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_9__stack1"><circle cx="994.245858762205" cy="449.17175239755994" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_10__stack1"><circle cx="994.245858762205" cy="463.1211857018399" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_11__stack1"><circle cx="994.245858762205" cy="477.07061900611995" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_12__stack1"><circle cx="994.245858762205" cy="491.02005231039993" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_13__stack1"><circle cx="994.245858762205" cy="504.96948561467997" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_14__stack1"><circle cx="994.245858762205" cy="518.91891891896" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_15__stack1"><circle cx="994.245858762205" cy="532.86835222324" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_16__stack1"><circle cx="994.245858762205" cy="546.8177855275201" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_17__stack1"><circle cx="994.245858762205" cy="560.7672188318" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_18__stack1"><circle cx="994.245858762205" cy="574.71665213608" r="2.7898866608560002" 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="
251
+ </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 223.1909328681279 239.93025283335996 L 462.77244986913695 239.9302528333599" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 223.1909328681279 239.93025283335996 L 462.77244986913695 239.9302528333599" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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 223.1909328681279 253.87968613764 L 462.77244986913695 253.8796861376399" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 223.1909328681279 253.87968613764 L 462.77244986913695 253.8796861376399" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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 223.1909328681279 267.82911944192 L 462.77244986913695 267.82911944191994" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 223.1909328681279 267.82911944192 L 462.77244986913695 267.82911944191994" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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 223.1909328681279 281.77855274620003 L 462.77244986913695 281.7785527461999" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 223.1909328681279 281.77855274620003 L 462.77244986913695 281.7785527461999" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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 223.1909328681279 295.72798605048 L 462.77244986913695 295.7279860504799" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 223.1909328681279 295.72798605048 L 462.77244986913695 295.7279860504799" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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 223.1909328681279 309.67741935476005 L 462.77244986913695 309.6774193547599" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 223.1909328681279 309.67741935476005 L 462.77244986913695 309.6774193547599" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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 223.1909328681279 323.62685265904 L 462.77244986913695 323.6268526590399" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 223.1909328681279 323.62685265904 L 462.77244986913695 323.6268526590399" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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 223.1909328681279 337.57628596332006 L 462.77244986913695 337.5762859633199" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 223.1909328681279 337.57628596332006 L 462.77244986913695 337.5762859633199" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_8__stack1"><path d="M 223.1909328681279 351.52571926760004 L 462.77244986913695 351.5257192675999" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 223.1909328681279 351.52571926760004 L 462.77244986913695 351.5257192675999" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_9__stack1"><path d="M 223.1909328681279 365.47515257188 L 462.77244986913695 365.4751525718799" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 223.1909328681279 365.47515257188 L 462.77244986913695 365.4751525718799" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_10__stack1"><path d="M 223.1909328681279 379.42458587616 L 462.77244986913695 379.4245858761599" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 223.1909328681279 379.42458587616 L 462.77244986913695 379.4245858761599" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_11__stack1"><path d="M 223.1909328681279 393.37401918044003 L 462.77244986913695 393.3740191804399" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 223.1909328681279 393.37401918044003 L 462.77244986913695 393.3740191804399" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_12__stack1"><path d="M 605.4054054054 171.926765474995 L 605.4054054054 157.977332170715 L 504.62074978197694 157.977332170715 L 504.62074978197694 171.926765474995" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 605.4054054054 171.926765474995 L 605.4054054054 157.977332170715 L 504.62074978197694 157.977332170715 L 504.62074978197694 171.926765474995" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_13__stack1"><path d="M 223.1909328681279 225.98081952907995 L 363.9058413250524 225.98081952907995 L 363.9058413250524 157.977332170715 L 504.62074978197694 157.977332170715 L 504.62074978197694 171.926765474995" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 223.1909328681279 225.98081952907995 L 363.9058413250524 225.98081952907995 L 363.9058413250524 157.977332170715 L 504.62074978197694 157.977332170715 L 504.62074978197694 171.926765474995" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_14__stack1"><path d="M 223.1909328681279 421.27288578900004 L 339.49433304256246 421.27288578900004 L 339.49433304256246 123.80122057522897 L 706.190061028823 123.80122057522897 L 706.190061028823 171.926765474995" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 223.1909328681279 421.27288578900004 L 339.49433304256246 421.27288578900004 L 339.49433304256246 123.80122057522897 L 706.190061028823 123.80122057522897 L 706.190061028823 171.926765474995" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_15__stack1"><path d="M 994.245858762205 323.62685265903997 L 980.296425457925 323.62685265903997 L 980.296425457925 239.9302528333599 L 748.038360941663 239.9302528333599" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 323.62685265903997 L 980.296425457925 323.62685265903997 L 980.296425457925 239.9302528333599 L 748.038360941663 239.9302528333599" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_16__stack1"><path d="M 994.245858762205 337.57628596331995 L 871.142109851934 337.57628596331995 L 871.142109851934 253.8796861376399 L 748.038360941663 253.8796861376399" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 337.57628596331995 L 871.142109851934 337.57628596331995 L 871.142109851934 253.8796861376399 L 748.038360941663 253.8796861376399" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_17__stack1"><path d="M 994.245858762205 351.5257192675999 L 864.167393199794 351.5257192675999 L 864.167393199794 267.82911944191994 L 748.038360941663 267.82911944191994" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 351.5257192675999 L 864.167393199794 351.5257192675999 L 864.167393199794 267.82911944191994 L 748.038360941663 267.82911944191994" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_18__stack1"><path d="M 994.245858762205 365.47515257187996 L 857.192676547654 365.47515257187996 L 857.192676547654 281.7785527461999 L 748.038360941663 281.7785527461999" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 365.47515257187996 L 857.192676547654 365.47515257187996 L 857.192676547654 281.7785527461999 L 748.038360941663 281.7785527461999" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_19__stack1"><path d="M 994.245858762205 379.42458587615994 L 871.142109851934 379.42458587615994 L 871.142109851934 372.44986922401995 L 748.038360941663 372.44986922401995" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 379.42458587615994 L 871.142109851934 379.42458587615994 L 871.142109851934 372.44986922401995 L 748.038360941663 372.44986922401995" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_20__stack1"><path d="M 994.245858762205 393.37401918044 L 871.142109851934 393.37401918044 L 871.142109851934 386.3993025283 L 748.038360941663 386.3993025283" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 393.37401918044 L 871.142109851934 393.37401918044 L 871.142109851934 386.3993025283 L 748.038360941663 386.3993025283" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_21__stack1"><path d="M 994.245858762205 407.32345248471995 L 871.142109851934 407.32345248471995 L 871.142109851934 400.34873583258 L 748.038360941663 400.34873583258" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 407.32345248471995 L 871.142109851934 407.32345248471995 L 871.142109851934 400.34873583258 L 748.038360941663 400.34873583258" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_22__stack1"><path d="M 994.245858762205 421.27288578899993 L 871.142109851934 421.27288578899993 L 871.142109851934 414.29816913686 L 748.038360941663 414.29816913686" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 421.27288578899993 L 871.142109851934 421.27288578899993 L 871.142109851934 414.29816913686 L 748.038360941663 414.29816913686" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_23__stack1"><path d="M 994.245858762205 435.22231909327996 L 871.142109851934 435.22231909327996 L 871.142109851934 428.24760244114003 L 748.038360941663 428.24760244114003" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 435.22231909327996 L 871.142109851934 435.22231909327996 L 871.142109851934 428.24760244114003 L 748.038360941663 428.24760244114003" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_24__stack1"><path d="M 994.245858762205 449.17175239755994 L 871.142109851934 449.17175239755994 L 871.142109851934 442.19703574542007 L 748.038360941663 442.19703574542007" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 449.17175239755994 L 871.142109851934 449.17175239755994 L 871.142109851934 442.19703574542007 L 748.038360941663 442.19703574542007" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_25__stack1"><path d="M 994.245858762205 463.1211857018399 L 871.142109851934 463.1211857018399 L 871.142109851934 456.14646904970004 L 748.038360941663 456.14646904970004" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 463.1211857018399 L 871.142109851934 463.1211857018399 L 871.142109851934 456.14646904970004 L 748.038360941663 456.14646904970004" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_26__stack1"><path d="M 994.245858762205 477.07061900611995 L 871.142109851934 477.07061900611995 L 871.142109851934 470.0959023539801 L 748.038360941663 470.0959023539801" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 477.07061900611995 L 871.142109851934 477.07061900611995 L 871.142109851934 470.0959023539801 L 748.038360941663 470.0959023539801" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_27__stack1"><path d="M 994.245858762205 491.02005231039993 L 871.142109851934 491.02005231039993 L 871.142109851934 484.04533565826006 L 748.038360941663 484.04533565826006" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 491.02005231039993 L 871.142109851934 491.02005231039993 L 871.142109851934 484.04533565826006 L 748.038360941663 484.04533565826006" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_28__stack1"><path d="M 994.245858762205 504.96948561467997 L 871.142109851934 504.96948561467997 L 871.142109851934 497.9947689625401 L 748.038360941663 497.9947689625401" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 504.96948561467997 L 871.142109851934 504.96948561467997 L 871.142109851934 497.9947689625401 L 748.038360941663 497.9947689625401" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_29__stack1"><path d="M 994.245858762205 518.91891891896 L 857.192676547654 518.91891891896 L 857.192676547654 560.7672188318 L 748.038360941663 560.7672188318" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 518.91891891896 L 857.192676547654 518.91891891896 L 857.192676547654 560.7672188318 L 748.038360941663 560.7672188318" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_30__stack1"><path d="M 994.245858762205 532.86835222324 L 871.142109851934 532.86835222324 L 871.142109851934 574.71665213608 L 748.038360941663 574.71665213608" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 532.86835222324 L 871.142109851934 532.86835222324 L 871.142109851934 574.71665213608 L 748.038360941663 574.71665213608" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_31__stack1"><path d="M 994.245858762205 546.8177855275201 L 878.116826504074 546.8177855275201 L 878.116826504074 588.6660854403601 L 748.038360941663 588.6660854403601" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 546.8177855275201 L 878.116826504074 546.8177855275201 L 878.116826504074 588.6660854403601 L 748.038360941663 588.6660854403601" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_32__stack1"><path d="M 994.245858762205 560.7672188318 L 885.0915431562139 560.7672188318 L 885.0915431562139 602.6155187446401 L 748.038360941663 602.6155187446401" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 560.7672188318 L 885.0915431562139 560.7672188318 L 885.0915431562139 602.6155187446401 L 748.038360941663 602.6155187446401" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_33__stack1"><path d="M 223.1909328681279 435.22231909328 L 388.77070618993156 435.22231909328 L 388.77070618993156 684.568439407285 L 639.0932868352361 684.568439407285 L 639.0932868352361 670.619006103005" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 223.1909328681279 435.22231909328 L 388.77070618993156 435.22231909328 L 388.77070618993156 684.568439407285 L 639.0932868352361 684.568439407285 L 639.0932868352361 670.619006103005" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_34__stack1"><path d="M 994.245858762205 574.71665213608 L 935.6582388842289 574.71665213608" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.245858762205 574.71665213608 L 935.6582388842289 574.71665213608" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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_35__stack1"><path d="M 462.77244986913695 560.7672188318 L 404.184829991161 560.7672188318" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.159546643424001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 462.77244986913695 560.7672188318 L 404.184829991161 560.7672188318" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3949433304280001px" 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"/><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="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_8__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_9__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_10__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_11__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_12__stack1"><circle cx="504.62074978197694" cy="157.977332170715" r="2.092414995642" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/><circle cx="504.62074978197694" cy="171.926765474995" r="2.092414995642" 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_13__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_14__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_15__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_16__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_17__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_18__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_19__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_20__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_21__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_22__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_23__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_24__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_25__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_26__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_27__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_28__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_29__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_30__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_31__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_32__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_33__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_34__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_35__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="490.67131647769696" y="199.82563208355498" width="229.46817785540605" height="442.89450741089" stroke-width="1.3949433304280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="490.67131647769696" y="199.82563208355498" width="229.46817785540605" height="442.89450741089" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="560.7672188318" x2="462.77244986913695" y2="560.7672188318" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_0__stack1"><rect x="461.37750653870893" y="559.3722755013721" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="559.3722755013721" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="504.62074978197694" y1="642.720139494445" x2="504.62074978197694" y2="669.224062772577" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="504.62074978197694" cy="670.619006103005" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="503.2258064515489" y="669.224062772577" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="503.2258064515489" y="656.669572798725" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform="rotate(-90 503.2258064515489 656.669572798725)"></text><line class="component-pin sch-component-pin sch-port-line" x1="504.62074978197694" y1="199.82563208355498" x2="504.62074978197694" y2="171.926765474995" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_2__stack1"><rect x="503.2258064515489" y="170.531822144567" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="503.2258064515489" y="185.87619877927497" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform="rotate(-90 503.2258064515489 185.87619877927497)"></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="239.9302528333599" x2="748.038360941663" y2="239.9302528333599" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_3__stack1"><rect x="746.643417611235" y="238.5353095029319" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="238.5353095029319" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="538.2388840452918" y1="642.720139494445" x2="538.2388840452918" y2="669.224062772577" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_4__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="538.2388840452918" cy="670.619006103005" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="536.8439407148638" y="669.224062772577" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="536.8439407148637" y="656.669572798725" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform="rotate(-90 536.8439407148637 656.669572798725)"></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="253.8796861376399" x2="748.038360941663" y2="253.8796861376399" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_5__stack1"><rect x="746.643417611235" y="252.48474280721192" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="252.48474280721192" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="267.82911944191994" x2="748.038360941663" y2="267.82911944191994" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_6__stack1"><rect x="746.643417611235" y="266.4341761114919" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="266.4341761114919" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="571.8570183086065" y1="642.720139494445" x2="571.8570183086065" y2="669.224062772577" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_7__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="571.8570183086065" cy="670.619006103005" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="570.4620749781785" y="669.224062772577" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="570.4620749781785" y="656.669572798725" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform="rotate(-90 570.4620749781785 656.669572798725)"></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="281.7785527461999" x2="748.038360941663" y2="281.7785527461999" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_8__stack1"><rect x="746.643417611235" y="280.3836094157719" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="280.38360941577196" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="605.4054054054" y1="199.82563208355498" x2="605.4054054054" y2="171.926765474995" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_9__stack1"><rect x="604.010462074972" y="170.531822144567" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="604.010462074972" y="185.87619877927497" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform="rotate(-90 604.010462074972 185.87619877927497)"></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="477.07061900611995" x2="464.16739319956497" y2="477.07061900611995" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_10__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="462.77244986913695" cy="477.07061900611995" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="461.37750653870893" y="475.67567567569193" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="475.67567567569193" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="463.1211857018399" x2="464.16739319956497" y2="463.1211857018399" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_11__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="462.77244986913695" cy="463.1211857018399" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="461.37750653870893" y="461.7262423714119" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="461.7262423714119" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="435.2223190932799" x2="464.16739319956497" y2="435.2223190932799" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_12__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="462.77244986913695" cy="435.2223190932799" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="461.37750653870893" y="433.8273757628519" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="433.8273757628519" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="449.17175239755994" x2="464.16739319956497" y2="449.17175239755994" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_13__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="462.77244986913695" cy="449.17175239755994" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="461.37750653870893" y="447.7768090671319" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="447.7768090671319" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="605.4751525719213" y1="642.720139494445" x2="605.4751525719213" y2="669.224062772577" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_14__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="605.4751525719213" cy="670.619006103005" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="604.0802092414933" y="669.224062772577" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="604.0802092414933" y="656.669572798725" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform="rotate(-90 604.0802092414933 656.669572798725)"></text><line class="component-pin sch-component-pin sch-port-line" x1="639.0932868352361" y1="642.720139494445" x2="639.0932868352361" y2="670.619006103005" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_15__stack1"><rect x="637.6983435048081" y="669.224062772577" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="637.6983435048081" y="656.669572798725" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform="rotate(-90 637.6983435048081 656.669572798725)"></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="239.9302528333599" x2="462.77244986913695" y2="239.9302528333599" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_16__stack1"><rect x="461.37750653870893" y="238.5353095029319" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="238.5353095029319" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="602.6155187446401" x2="464.16739319956497" y2="602.6155187446401" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_17__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="462.77244986913695" cy="602.6155187446401" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="461.37750653870893" y="601.2205754142121" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="601.220575414212" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="253.8796861376399" x2="462.77244986913695" y2="253.8796861376399" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_18__stack1"><rect x="461.37750653870893" y="252.48474280721192" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="252.48474280721192" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="267.82911944191994" x2="462.77244986913695" y2="267.82911944191994" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_19__stack1"><rect x="461.37750653870893" y="266.4341761114919" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="266.43417611149187" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="281.7785527461999" x2="462.77244986913695" y2="281.7785527461999" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_20__stack1"><rect x="461.37750653870893" y="280.3836094157719" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="280.3836094157719" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="295.7279860504799" x2="462.77244986913695" y2="295.7279860504799" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_21__stack1"><rect x="461.37750653870893" y="294.3330427200519" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="294.33304272005194" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="309.6774193547599" x2="462.77244986913695" y2="309.6774193547599" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_22__stack1"><rect x="461.37750653870893" y="308.28247602433186" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="308.2824760243319" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="323.6268526590399" x2="462.77244986913695" y2="323.6268526590399" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_23__stack1"><rect x="461.37750653870893" y="322.2319093286119" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="322.2319093286119" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="337.5762859633199" x2="462.77244986913695" y2="337.5762859633199" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_24__stack1"><rect x="461.37750653870893" y="336.18134263289187" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="336.1813426328919" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="351.5257192675999" x2="462.77244986913695" y2="351.5257192675999" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_25__stack1"><rect x="461.37750653870893" y="350.1307759371719" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="350.1307759371719" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="365.4751525718799" x2="462.77244986913695" y2="365.4751525718799" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_26__stack1"><rect x="461.37750653870893" y="364.0802092414519" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="364.0802092414519" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="379.4245858761599" x2="462.77244986913695" y2="379.4245858761599" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_27__stack1"><rect x="461.37750653870893" y="378.02964254573186" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="378.0296425457319" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="393.3740191804399" x2="462.77244986913695" y2="393.3740191804399" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_28__stack1"><rect x="461.37750653870893" y="391.9790758500119" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="391.9790758500119" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="706.190061028823" y1="199.82563208355498" x2="706.190061028823" y2="171.926765474995" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_29__stack1"><rect x="704.7951176983951" y="170.531822144567" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="704.795117698395" y="185.87619877927497" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform="rotate(-90 704.795117698395 185.87619877927497)"></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="560.7672188318" x2="748.038360941663" y2="560.7672188318" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_30__stack1"><rect x="746.643417611235" y="559.3722755013721" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="559.3722755013721" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="574.71665213608" x2="748.038360941663" y2="574.71665213608" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_31__stack1"><rect x="746.643417611235" y="573.3217088056521" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="573.3217088056521" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="588.6660854403601" x2="748.038360941663" y2="588.6660854403601" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_32__stack1"><rect x="746.643417611235" y="587.2711421099322" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="587.271142109932" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="602.6155187446401" x2="748.038360941663" y2="602.6155187446401" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_33__stack1"><rect x="746.643417611235" y="601.2205754142121" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="601.220575414212" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="546.8177855275201" x2="464.16739319956497" y2="546.8177855275201" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_34__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="462.77244986913695" cy="546.8177855275201" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="461.37750653870893" y="545.4228421970921" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="545.422842197092" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="497.9947689625401" x2="748.038360941663" y2="497.9947689625401" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_35__stack1"><rect x="746.643417611235" y="496.5998256321121" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="496.5998256321121" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="484.04533565826006" x2="748.038360941663" y2="484.04533565826006" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_36__stack1"><rect x="746.643417611235" y="482.65039232783204" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="482.65039232783204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="456.14646904970004" x2="748.038360941663" y2="456.14646904970004" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_37__stack1"><rect x="746.643417611235" y="454.751525719272" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="454.751525719272" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="470.0959023539801" x2="748.038360941663" y2="470.0959023539801" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_38__stack1"><rect x="746.643417611235" y="468.70095902355206" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="468.70095902355206" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="442.19703574542007" x2="748.038360941663" y2="442.19703574542007" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_39__stack1"><rect x="746.643417611235" y="440.80209241499205" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="440.80209241499205" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="428.24760244114003" x2="748.038360941663" y2="428.24760244114003" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_40__stack1"><rect x="746.643417611235" y="426.852659110712" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="426.852659110712" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="414.29816913686" x2="748.038360941663" y2="414.29816913686" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_41__stack1"><rect x="746.643417611235" y="412.903225806432" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="412.90322580643203" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="400.34873583258" x2="748.038360941663" y2="400.34873583258" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_42__stack1"><rect x="746.643417611235" y="398.953792502152" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="398.953792502152" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="504.96948561467997" x2="464.16739319956497" y2="504.96948561467997" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_43__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="462.77244986913695" cy="504.96948561467997" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="461.37750653870893" y="503.57454228425195" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="503.57454228425195" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="490.67131647769696" y1="491.02005231039993" x2="464.16739319956497" y2="491.02005231039993" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_44__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="462.77244986913695" cy="491.02005231039993" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="461.37750653870893" y="489.6251089799719" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.7218831734169" y="489.62510897997197" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="672.711421098551" y1="642.720139494445" x2="672.711421098551" y2="669.224062772577" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_45__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="672.711421098551" cy="670.619006103005" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="671.316477768123" y="669.224062772577" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="671.3164777681229" y="656.669572798725" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform="rotate(-90 671.3164777681229 656.669572798725)"></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="386.3993025283" x2="748.038360941663" y2="386.3993025283" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_46__stack1"><rect x="746.643417611235" y="385.00435919787196" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="385.00435919787196" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="720.139494333103" y1="372.44986922401995" x2="748.038360941663" y2="372.44986922401995" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_47__stack1"><rect x="746.643417611235" y="371.0549258935919" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="734.088927637383" y="371.054925893592" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="706.190061028823" y1="642.720139494445" x2="706.190061028823" y2="669.224062772577" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_48__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="706.190061028823" cy="670.619006103005" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="704.7951176983951" y="669.224062772577" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="704.795117698395" y="656.669572798725" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform="rotate(-90 704.795117698395 656.669572798725)"></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="39.05841325163203" y="198.08195292051997" width="156.23365300793586" height="278.98866608560013" stroke-width="1.3949433304280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="39.05841325163203" y="198.08195292051997" width="156.23365300793586" height="278.98866608560013" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="212.03138622479995" x2="221.79598953769994" y2="212.03138622479995" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="223.1909328681279" cy="212.03138622479995" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="221.7959895376999" y="210.63644289437195" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="210.63644289437195" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="225.98081952907995" x2="223.1909328681279" y2="225.98081952907995" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_1__stack1"><rect x="221.7959895376999" y="224.58587619865196" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="224.58587619865196" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="239.93025283335996" x2="223.1909328681279" y2="239.93025283335996" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_2__stack1"><rect x="221.7959895376999" y="238.53530950293197" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="238.53530950293197" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="253.87968613764" x2="223.1909328681279" y2="253.87968613764" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_3__stack1"><rect x="221.7959895376999" y="252.484742807212" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="252.48474280721197" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="267.82911944192" x2="223.1909328681279" y2="267.82911944192" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_4__stack1"><rect x="221.7959895376999" y="266.434176111492" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="266.434176111492" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="281.77855274620003" x2="223.1909328681279" y2="281.77855274620003" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_5__stack1"><rect x="221.7959895376999" y="280.383609415772" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="280.383609415772" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="295.72798605048" x2="223.1909328681279" y2="295.72798605048" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_6__stack1"><rect x="221.7959895376999" y="294.333042720052" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="294.33304272005205" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="309.67741935476005" x2="223.1909328681279" y2="309.67741935476005" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_7__stack1"><rect x="221.7959895376999" y="308.282476024332" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="308.282476024332" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="323.62685265904" x2="223.1909328681279" y2="323.62685265904" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_8__stack1"><rect x="221.7959895376999" y="322.231909328612" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="322.231909328612" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="337.57628596332006" x2="223.1909328681279" y2="337.57628596332006" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_9__stack1"><rect x="221.7959895376999" y="336.18134263289204" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="336.18134263289204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="351.52571926760004" x2="223.1909328681279" y2="351.52571926760004" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_10__stack1"><rect x="221.7959895376999" y="350.130775937172" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="350.130775937172" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="365.47515257188" x2="223.1909328681279" y2="365.47515257188" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_11__stack1"><rect x="221.7959895376999" y="364.080209241452" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="364.08020924145205" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="379.42458587616" x2="223.1909328681279" y2="379.42458587616" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_12__stack1"><rect x="221.7959895376999" y="378.029642545732" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="378.02964254573203" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="393.37401918044003" x2="223.1909328681279" y2="393.37401918044003" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_13__stack1"><rect x="221.7959895376999" y="391.979075850012" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="391.979075850012" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="407.32345248472" x2="221.79598953769994" y2="407.32345248472" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_14__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="223.1909328681279" cy="407.32345248472" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="221.7959895376999" y="405.928509154292" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="405.92850915429204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="421.27288578900004" x2="223.1909328681279" y2="421.27288578900004" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_15__stack1"><rect x="221.7959895376999" y="419.877942458572" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="419.877942458572" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="435.22231909328" x2="223.1909328681279" y2="435.22231909328" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_16__stack1"><rect x="221.7959895376999" y="433.827375762852" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="433.827375762852" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="449.17175239756" x2="221.79598953769994" y2="449.17175239756" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_17__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="223.1909328681279" cy="449.17175239756" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="221.7959895376999" y="447.776809067132" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="447.77680906713204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="195.2920662595679" y1="463.12118570184003" x2="221.79598953769994" y2="463.12118570184003" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_18__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="223.1909328681279" cy="463.12118570184003" r="1.3949433304280001" stroke-width="1.3949433304280001px"/><rect x="221.7959895376999" y="461.726242371412" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="209.24149956384787" y="461.726242371412" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></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="1022.144725370765" y="309.67741935475993" width="142.9816913688701" height="278.9886660856001" stroke-width="1.3949433304280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="1022.144725370765" y="309.67741935475993" width="142.9816913688701" height="278.9886660856001" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="323.62685265903997" x2="994.245858762205" y2="323.62685265903997" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_0__stack1"><rect x="992.850915431777" y="322.23190932861195" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="322.23190932861195" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="337.57628596331995" x2="994.245858762205" y2="337.57628596331995" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_1__stack1"><rect x="992.850915431777" y="336.1813426328919" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="336.1813426328919" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="351.5257192675999" x2="994.245858762205" y2="351.5257192675999" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_2__stack1"><rect x="992.850915431777" y="350.1307759371719" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="350.13077593717196" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="365.47515257187996" x2="994.245858762205" y2="365.47515257187996" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_3__stack1"><rect x="992.850915431777" y="364.08020924145194" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="364.08020924145194" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="379.42458587615994" x2="994.245858762205" y2="379.42458587615994" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_4__stack1"><rect x="992.850915431777" y="378.0296425457319" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="378.029642545732" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="393.37401918044" x2="994.245858762205" y2="393.37401918044" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_5__stack1"><rect x="992.850915431777" y="391.97907585001195" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="391.97907585001195" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="407.32345248471995" x2="994.245858762205" y2="407.32345248471995" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_6__stack1"><rect x="992.850915431777" y="405.92850915429193" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="405.92850915429193" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="421.27288578899993" x2="994.245858762205" y2="421.27288578899993" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_7__stack1"><rect x="992.850915431777" y="419.8779424585719" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="419.87794245857197" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="435.22231909327996" x2="994.245858762205" y2="435.22231909327996" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_8__stack1"><rect x="992.850915431777" y="433.82737576285194" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="433.82737576285194" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="449.17175239755994" x2="994.245858762205" y2="449.17175239755994" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_9__stack1"><rect x="992.850915431777" y="447.7768090671319" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="447.7768090671319" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="463.1211857018399" x2="994.245858762205" y2="463.1211857018399" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_10__stack1"><rect x="992.850915431777" y="461.7262423714119" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="461.72624237141196" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="477.07061900611995" x2="994.245858762205" y2="477.07061900611995" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_11__stack1"><rect x="992.850915431777" y="475.67567567569193" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="475.67567567569193" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="491.02005231039993" x2="994.245858762205" y2="491.02005231039993" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_12__stack1"><rect x="992.850915431777" y="489.6251089799719" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="489.62510897997197" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="504.96948561467997" x2="994.245858762205" y2="504.96948561467997" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_13__stack1"><rect x="992.850915431777" y="503.57454228425195" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="503.57454228425195" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="518.91891891896" x2="994.245858762205" y2="518.91891891896" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_14__stack1"><rect x="992.850915431777" y="517.523975588532" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="517.523975588532" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="532.86835222324" x2="994.245858762205" y2="532.86835222324" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_15__stack1"><rect x="992.850915431777" y="531.473408892812" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="531.473408892812" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="546.8177855275201" x2="994.245858762205" y2="546.8177855275201" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_16__stack1"><rect x="992.850915431777" y="545.4228421970921" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="545.422842197092" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="560.7672188318" x2="994.245858762205" y2="560.7672188318" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_17__stack1"><rect x="992.850915431777" y="559.3722755013721" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="559.3722755013721" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1022.144725370765" y1="574.71665213608" x2="994.245858762205" y2="574.71665213608" stroke-width="1.3949433304280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_18__stack1"><rect x="992.850915431777" y="573.3217088056521" width="2.7898866608560002" height="2.7898866608560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1008.1952920664851" y="573.3217088056521" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.46207497821px" transform=""></text></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_0__stack1"><circle cx="462.77244986913695" cy="560.7672188318" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_1__stack1"><circle cx="504.62074978197694" cy="670.619006103005" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_2__stack1"><circle cx="504.62074978197694" cy="171.926765474995" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_3__stack1"><circle cx="748.038360941663" cy="239.9302528333599" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_4__stack1"><circle cx="538.2388840452918" cy="670.619006103005" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_5__stack1"><circle cx="748.038360941663" cy="253.8796861376399" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_6__stack1"><circle cx="748.038360941663" cy="267.82911944191994" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_7__stack1"><circle cx="571.8570183086065" cy="670.619006103005" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_8__stack1"><circle cx="748.038360941663" cy="281.7785527461999" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_9__stack1"><circle cx="605.4054054054" cy="171.926765474995" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_10__stack1"><circle cx="462.77244986913695" cy="477.07061900611995" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_11__stack1"><circle cx="462.77244986913695" cy="463.1211857018399" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_12__stack1"><circle cx="462.77244986913695" cy="435.2223190932799" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_13__stack1"><circle cx="462.77244986913695" cy="449.17175239755994" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_14__stack1"><circle cx="605.4751525719213" cy="670.619006103005" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_15__stack1"><circle cx="639.0932868352361" cy="670.619006103005" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_16__stack1"><circle cx="462.77244986913695" cy="239.9302528333599" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_17__stack1"><circle cx="462.77244986913695" cy="602.6155187446401" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_18__stack1"><circle cx="462.77244986913695" cy="253.8796861376399" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_19__stack1"><circle cx="462.77244986913695" cy="267.82911944191994" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_20__stack1"><circle cx="462.77244986913695" cy="281.7785527461999" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_21__stack1"><circle cx="462.77244986913695" cy="295.7279860504799" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_22__stack1"><circle cx="462.77244986913695" cy="309.6774193547599" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_23__stack1"><circle cx="462.77244986913695" cy="323.6268526590399" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_24__stack1"><circle cx="462.77244986913695" cy="337.5762859633199" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_25__stack1"><circle cx="462.77244986913695" cy="351.5257192675999" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_26__stack1"><circle cx="462.77244986913695" cy="365.4751525718799" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_27__stack1"><circle cx="462.77244986913695" cy="379.4245858761599" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_28__stack1"><circle cx="462.77244986913695" cy="393.3740191804399" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_29__stack1"><circle cx="706.190061028823" cy="171.926765474995" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_30__stack1"><circle cx="748.038360941663" cy="560.7672188318" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_31__stack1"><circle cx="748.038360941663" cy="574.71665213608" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_32__stack1"><circle cx="748.038360941663" cy="588.6660854403601" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_33__stack1"><circle cx="748.038360941663" cy="602.6155187446401" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_34__stack1"><circle cx="462.77244986913695" cy="546.8177855275201" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_35__stack1"><circle cx="748.038360941663" cy="497.9947689625401" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_36__stack1"><circle cx="748.038360941663" cy="484.04533565826006" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_37__stack1"><circle cx="748.038360941663" cy="456.14646904970004" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_38__stack1"><circle cx="748.038360941663" cy="470.0959023539801" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_39__stack1"><circle cx="748.038360941663" cy="442.19703574542007" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_40__stack1"><circle cx="748.038360941663" cy="428.24760244114003" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_41__stack1"><circle cx="748.038360941663" cy="414.29816913686" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_42__stack1"><circle cx="748.038360941663" cy="400.34873583258" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_43__stack1"><circle cx="462.77244986913695" cy="504.96948561467997" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_44__stack1"><circle cx="462.77244986913695" cy="491.02005231039993" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_45__stack1"><circle cx="672.711421098551" cy="670.619006103005" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_46__stack1"><circle cx="748.038360941663" cy="386.3993025283" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_47__stack1"><circle cx="748.038360941663" cy="372.44986922401995" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_48__stack1"><circle cx="706.190061028823" cy="670.619006103005" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_0__stack1"><circle cx="223.1909328681279" cy="212.03138622479995" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_1__stack1"><circle cx="223.1909328681279" cy="225.98081952907995" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_2__stack1"><circle cx="223.1909328681279" cy="239.93025283335996" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_3__stack1"><circle cx="223.1909328681279" cy="253.87968613764" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_4__stack1"><circle cx="223.1909328681279" cy="267.82911944192" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_5__stack1"><circle cx="223.1909328681279" cy="281.77855274620003" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_6__stack1"><circle cx="223.1909328681279" cy="295.72798605048" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_7__stack1"><circle cx="223.1909328681279" cy="309.67741935476005" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_8__stack1"><circle cx="223.1909328681279" cy="323.62685265904" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_9__stack1"><circle cx="223.1909328681279" cy="337.57628596332006" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_10__stack1"><circle cx="223.1909328681279" cy="351.52571926760004" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_11__stack1"><circle cx="223.1909328681279" cy="365.47515257188" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_12__stack1"><circle cx="223.1909328681279" cy="379.42458587616" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_13__stack1"><circle cx="223.1909328681279" cy="393.37401918044003" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_14__stack1"><circle cx="223.1909328681279" cy="407.32345248472" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_15__stack1"><circle cx="223.1909328681279" cy="421.27288578900004" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_16__stack1"><circle cx="223.1909328681279" cy="435.22231909328" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_17__stack1"><circle cx="223.1909328681279" cy="449.17175239756" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_18__stack1"><circle cx="223.1909328681279" cy="463.12118570184003" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_0__stack1"><circle cx="994.245858762205" cy="323.62685265903997" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_1__stack1"><circle cx="994.245858762205" cy="337.57628596331995" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_2__stack1"><circle cx="994.245858762205" cy="351.5257192675999" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_3__stack1"><circle cx="994.245858762205" cy="365.47515257187996" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_4__stack1"><circle cx="994.245858762205" cy="379.42458587615994" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_5__stack1"><circle cx="994.245858762205" cy="393.37401918044" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_6__stack1"><circle cx="994.245858762205" cy="407.32345248471995" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_7__stack1"><circle cx="994.245858762205" cy="421.27288578899993" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_8__stack1"><circle cx="994.245858762205" cy="435.22231909327996" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_9__stack1"><circle cx="994.245858762205" cy="449.17175239755994" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_10__stack1"><circle cx="994.245858762205" cy="463.1211857018399" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_11__stack1"><circle cx="994.245858762205" cy="477.07061900611995" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_12__stack1"><circle cx="994.245858762205" cy="491.02005231039993" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_13__stack1"><circle cx="994.245858762205" cy="504.96948561467997" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_14__stack1"><circle cx="994.245858762205" cy="518.91891891896" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_15__stack1"><circle cx="994.245858762205" cy="532.86835222324" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_16__stack1"><circle cx="994.245858762205" cy="546.8177855275201" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_17__stack1"><circle cx="994.245858762205" cy="560.7672188318" r="2.7898866608560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_18__stack1"><circle cx="994.245858762205" cy="574.71665213608" r="2.7898866608560002" 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="
252
252
  M 504.62074978197694,157.977332170715
253
253
  L 497.64603312983695,154.21098517855938
254
254
  L 497.64603312983695,130.29235687282062
255
255
  L 511.59546643411693,130.29235687282062
256
256
  L 511.59546643411693,154.21098517855938
257
257
  Z
258
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="1.3949433304280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0__stack1" x="504.62074978197694" y="151.70008718378898" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="12.554489973852px" transform="rotate(-90 504.62074978197694 151.70008718378898)">XX</text><text class="sch-text" x="773.147340889367" y="175.414123801065" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="12.55448997385198px" transform="rotate(0, 773.147340889367, 175.414123801065)">TB67S579FTG</text><text class="sch-text" x="735.483870967811" y="191.80470793359396" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="12.554489973852px" transform="rotate(0, 735.483870967811, 191.80470793359396)">U1</text><text class="sch-text" x="47.428073234199815" y="190.06102877055895" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="12.554489973852px" transform="rotate(0, 47.428073234199815, 190.06102877055895)">J1</text><text class="sch-text" x="1030.514385353333" y="301.65649520479894" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="12.554489973852px" transform="rotate(0, 1030.514385353333, 301.65649520479894)">J4</text><text class="sch-text" x="384.8299912814724" y="232.258064516006" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 384.8299912814724, 232.258064516006)">XXXXXXXXXXXX</text><text class="sch-text" x="370.88055797719244" y="246.207497820286" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 370.88055797719244, 246.207497820286)">XXXXXXXXX</text><text class="sch-text" x="370.88055797719244" y="260.156931124566" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 370.88055797719244, 260.156931124566)">XXXXXXXX</text><text class="sch-text" x="370.88055797719244" y="274.106364428846" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 370.88055797719244, 274.106364428846)">XXXXXXXX</text><text class="sch-text" x="370.88055797719244" y="288.05579773312604" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 370.88055797719244, 288.05579773312604)">XXXXXXX</text><text class="sch-text" x="363.9058413250524" y="302.005231037406" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 363.9058413250524, 302.005231037406)">XXXXXX</text><text class="sch-text" x="363.9058413250524" y="315.954664341686" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 363.9058413250524, 315.954664341686)">XXXXXX</text><text class="sch-text" x="384.8299912814724" y="329.90409764596603" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 384.8299912814724, 329.90409764596603)">XXXXXXXXXXXX</text><text class="sch-text" x="363.9058413250524" y="343.853530950246" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 363.9058413250524, 343.853530950246)">XXXXX</text><text class="sch-text" x="370.88055797719244" y="357.80296425452605" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 370.88055797719244, 357.80296425452605)">XXXXXXX</text><text class="sch-text" x="370.88055797719244" y="371.752397558806" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 370.88055797719244, 371.752397558806)">XXXXXXX</text><text class="sch-text" x="370.88055797719244" y="385.701830863086" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 370.88055797719244, 385.701830863086)">XXXXXXX</text><text class="sch-text" x="524.5858761987276" y="116.12903225787494" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 524.5858761987276, 116.12903225787494)">XXXX</text><text class="sch-text" x="513.9319965125839" y="676.896251089931" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 513.9319965125839, 676.896251089931)">XXX</text><text class="sch-text" x="864.167393199794" y="232.2580645160059" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 864.167393199794, 232.2580645160059)">XXXXXXX</text><text class="sch-text" x="932.6939843070695" y="329.9040976459659" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 932.6939843070695, 329.9040976459659)">XXXXXXX</text><text class="sch-text" x="929.2066259809994" y="343.85353095024595" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 929.2066259809994, 343.85353095024595)">XXXXXXX</text><text class="sch-text" x="925.7192676549296" y="357.80296425452593" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 925.7192676549296, 357.80296425452593)">XXXXXXX</text><text class="sch-text" x="932.6939843070695" y="371.75239755880597" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 932.6939843070695, 371.75239755880597)">XXXXXXXXX</text><text class="sch-text" x="932.6939843070695" y="385.70183086308595" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 932.6939843070695, 385.70183086308595)">XXXXXXXXXX</text><text class="sch-text" x="932.6939843070695" y="399.651264167366" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 932.6939843070695, 399.651264167366)">XXXXXX</text><text class="sch-text" x="932.6939843070695" y="413.60069747164596" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 932.6939843070695, 413.60069747164596)">XXXXXX</text><text class="sch-text" x="932.6939843070695" y="427.55013077592594" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 932.6939843070695, 427.55013077592594)">XXXXXX</text><text class="sch-text" x="932.6939843070695" y="441.4995640802059" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 932.6939843070695, 441.4995640802059)">XXX</text><text class="sch-text" x="932.6939843070695" y="455.44899738448595" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 932.6939843070695, 455.44899738448595)">XXXXXX</text><text class="sch-text" x="932.6939843070695" y="469.3984306887659" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 932.6939843070695, 469.3984306887659)">XXXXXX</text><text class="sch-text" x="932.6939843070695" y="483.34786399304596" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 932.6939843070695, 483.34786399304596)">XXXXXXX</text><text class="sch-text" x="932.6939843070695" y="497.29729729732594" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 932.6939843070695, 497.29729729732594)">XXXXXXX</text><text class="sch-text" x="925.7192676549296" y="511.246730601606" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 925.7192676549296, 511.246730601606)">XXX</text><text class="sch-text" x="932.6939843070695" y="525.196163905886" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 932.6939843070695, 525.196163905886)">XXX</text><text class="sch-text" x="813.0775937228684" y="580.993897123006" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 813.0775937228684, 580.993897123006)">XXX</text><text class="sch-text" x="816.5649520489385" y="594.9433304272861" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 816.5649520489385, 594.9433304272861)">XX</text><text class="sch-text" x="964.952048823217" y="567.0444638187261" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 964.952048823217, 567.0444638187261)">XXXXXXX</text><text class="sch-text" x="433.478639930149" y="553.0950305144461" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 433.478639930149, 553.0950305144461)">XXXXXXX</text><rect class="schematic-box sch-box" x="727.114210985243" y="169.13687881413898" width="92.06625980824799" height="12.554489973851986" stroke-width="1.3949433304280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="11.159546643424001 5.5797733217120005"/><rect class="schematic-box sch-box" x="722.929380993959" y="183.086312118419" width="25.10897994770403" height="17.436791630349973" stroke-width="1.3949433304280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="11.159546643424001 5.5797733217120005"/><rect class="schematic-box sch-box" x="34.8735832603478" y="181.34263295538398" width="25.10897994770403" height="17.436791630349973" stroke-width="1.3949433304280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="11.159546643424001 5.5797733217120005"/><rect class="schematic-box sch-box" x="1017.9598953794809" y="292.9380993896239" width="25.10897994770403" height="17.43679163035" stroke-width="1.3949433304280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="11.159546643424001 5.5797733217120005"/>
258
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="1.3949433304280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0__stack1" x="504.62074978197694" y="151.70008718378898" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="12.554489973852px" transform="rotate(-90 504.62074978197694 151.70008718378898)">XX</text><text class="sch-text" x="773.147340889367" y="175.414123801065" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="12.55448997385198px" transform="rotate(0, 773.147340889367, 175.414123801065)">TB67S579FTG</text><text class="sch-text" x="735.483870967811" y="191.80470793359396" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="12.554489973852px" transform="rotate(0, 735.483870967811, 191.80470793359396)">U1</text><text class="sch-text" x="47.428073234199815" y="190.06102877055895" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="12.554489973852px" transform="rotate(0, 47.428073234199815, 190.06102877055895)">J1</text><text class="sch-text" x="1030.514385353333" y="301.65649520479894" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="12.554489973852px" transform="rotate(0, 1030.514385353333, 301.65649520479894)">J4</text><text class="sch-text" x="377.8552746293324" y="232.258064516006" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 377.8552746293324, 232.258064516006)">XXXXXXXXXXXX</text><text class="sch-text" x="370.88055797719244" y="246.207497820286" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 370.88055797719244, 246.207497820286)">XXXXXXXXX</text><text class="sch-text" x="370.88055797719244" y="260.156931124566" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 370.88055797719244, 260.156931124566)">XXXXXXXX</text><text class="sch-text" x="370.88055797719244" y="274.106364428846" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 370.88055797719244, 274.106364428846)">XXXXXXXX</text><text class="sch-text" x="363.9058413250524" y="288.05579773312604" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 363.9058413250524, 288.05579773312604)">XXXXXXX</text><text class="sch-text" x="363.9058413250524" y="302.005231037406" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 363.9058413250524, 302.005231037406)">XXXXXX</text><text class="sch-text" x="363.9058413250524" y="315.954664341686" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 363.9058413250524, 315.954664341686)">XXXXXX</text><text class="sch-text" x="377.8552746293324" y="329.90409764596603" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 377.8552746293324, 329.90409764596603)">XXXXXXXXXXXX</text><text class="sch-text" x="356.93112467291246" y="343.853530950246" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 356.93112467291246, 343.853530950246)">XXXXX</text><text class="sch-text" x="363.9058413250524" y="357.80296425452605" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 363.9058413250524, 357.80296425452605)">XXXXXXX</text><text class="sch-text" x="363.9058413250524" y="371.752397558806" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 363.9058413250524, 371.752397558806)">XXXXXXX</text><text class="sch-text" x="363.9058413250524" y="385.701830863086" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 363.9058413250524, 385.701830863086)">XXXXXXX</text><text class="sch-text" x="522.8421970356927" y="116.12903225787494" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 522.8421970356927, 116.12903225787494)">XXXX</text><text class="sch-text" x="513.9319965125839" y="676.896251089931" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 513.9319965125839, 676.896251089931)">XXX</text><text class="sch-text" x="864.167393199794" y="232.2580645160059" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 864.167393199794, 232.2580645160059)">XXXXXXX</text><text class="sch-text" x="932.6939843070695" y="329.9040976459659" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 932.6939843070695, 329.9040976459659)">XXXXXXX</text><text class="sch-text" x="929.2066259809994" y="343.85353095024595" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 929.2066259809994, 343.85353095024595)">XXXXXXX</text><text class="sch-text" x="925.7192676549296" y="357.80296425452593" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 925.7192676549296, 357.80296425452593)">XXXXXXX</text><text class="sch-text" x="932.6939843070695" y="371.75239755880597" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 932.6939843070695, 371.75239755880597)">XXXXXXXXX</text><text class="sch-text" x="932.6939843070695" y="385.70183086308595" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 932.6939843070695, 385.70183086308595)">XXXXXXXXXX</text><text class="sch-text" x="932.6939843070695" y="399.651264167366" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 932.6939843070695, 399.651264167366)">XXXXXX</text><text class="sch-text" x="932.6939843070695" y="413.60069747164596" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 932.6939843070695, 413.60069747164596)">XXXXXX</text><text class="sch-text" x="932.6939843070695" y="427.55013077592594" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 932.6939843070695, 427.55013077592594)">XXXXXX</text><text class="sch-text" x="932.6939843070695" y="441.4995640802059" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 932.6939843070695, 441.4995640802059)">XXX</text><text class="sch-text" x="932.6939843070695" y="455.44899738448595" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 932.6939843070695, 455.44899738448595)">XXXXXX</text><text class="sch-text" x="932.6939843070695" y="469.3984306887659" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 932.6939843070695, 469.3984306887659)">XXXXXX</text><text class="sch-text" x="932.6939843070695" y="483.34786399304596" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 932.6939843070695, 483.34786399304596)">XXXXXXX</text><text class="sch-text" x="932.6939843070695" y="497.29729729732594" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 932.6939843070695, 497.29729729732594)">XXXXXXX</text><text class="sch-text" x="925.7192676549296" y="511.246730601606" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 925.7192676549296, 511.246730601606)">XXX</text><text class="sch-text" x="932.6939843070695" y="525.196163905886" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 932.6939843070695, 525.196163905886)">XXX</text><text class="sch-text" x="813.0775937228684" y="580.993897123006" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 813.0775937228684, 580.993897123006)">XXX</text><text class="sch-text" x="816.5649520489385" y="594.9433304272861" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 816.5649520489385, 594.9433304272861)">XX</text><text class="sch-text" x="964.952048823217" y="567.0444638187261" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 964.952048823217, 567.0444638187261)">XXXXXXX</text><text class="sch-text" x="433.478639930149" y="553.0950305144461" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.369659982568px" transform="rotate(0, 433.478639930149, 553.0950305144461)">XXXXXXX</text><rect class="schematic-box sch-box" x="727.114210985243" y="169.13687881413898" width="92.06625980824799" height="12.554489973851986" stroke-width="1.3949433304280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="11.159546643424001 5.5797733217120005"/><rect class="schematic-box sch-box" x="722.929380993959" y="183.086312118419" width="25.10897994770403" height="17.436791630349973" stroke-width="1.3949433304280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="11.159546643424001 5.5797733217120005"/><rect class="schematic-box sch-box" x="34.8735832603478" y="181.34263295538398" width="25.10897994770403" height="17.436791630349973" stroke-width="1.3949433304280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="11.159546643424001 5.5797733217120005"/><rect class="schematic-box sch-box" x="1017.9598953794809" y="292.9380993896239" width="25.10897994770403" height="17.43679163035" stroke-width="1.3949433304280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="11.159546643424001 5.5797733217120005"/>
259
259
  </g>
260
260
  </svg>