@cassiomc1/forgeloop 0.1.15 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/DOCS_INDEX.md +60 -0
- package/EXECUTION_STATE.md +9 -0
- package/LOOP_ENGINEERING.md +15 -0
- package/LOOP_SYSTEM_DESIGN.md +8 -0
- package/PROTOCOL_INTEGRATION.md +8 -0
- package/QUALITY_SCORECARD.md +2 -0
- package/README.md +183 -654
- package/TERMINOLOGY.md +4 -0
- package/THREAT_MODEL.md +9 -0
- package/docs/assets/forgeloop-flow.svg +1 -0
- package/docs/forgeloop-flow.mmd +51 -0
- package/package.json +16 -3
- package/schemas/continuity.schema.json +57 -0
- package/scripts/CI_VALIDATORS.md +32 -0
- package/src/cli.js +307 -204
- package/src/commands/clear-continuity.js +9 -0
- package/src/commands/continuity.js +25 -0
- package/src/commands/doctor.js +17 -2
- package/src/commands/reconcile-continuity.js +23 -0
- package/src/commands/record-continuity.js +63 -0
- package/src/commands/status.js +14 -1
- package/src/commands/update.js +12 -13
- package/src/commands/validate-protocol.js +19 -0
- package/src/core/artifacts.js +1 -0
- package/src/core/bundles.js +6 -0
- package/src/core/command-resolution.js +295 -0
- package/src/core/command-tokenizer.js +122 -0
- package/src/core/conformance.js +8 -2
- package/src/core/continuity-cli-options.js +58 -0
- package/src/core/continuity-conformance.js +46 -0
- package/src/core/continuity-observability.js +20 -0
- package/src/core/continuity-reconciliation.js +224 -0
- package/src/core/continuity.js +245 -0
- package/src/core/inspect.js +9 -1
- package/src/core/installation-authority.js +178 -0
- package/src/core/json-safety.js +17 -13
- package/src/core/next-action-artifacts.js +118 -0
- package/src/core/next-action-continuity.js +65 -0
- package/src/core/next-action-model.js +127 -0
- package/src/core/next-action-phases.js +12 -0
- package/src/core/next-action.js +22 -249
- package/src/core/npm-classifier.js +343 -0
- package/src/core/package-manager-classifiers.js +37 -0
- package/src/core/preflight-consistency.js +221 -0
- package/src/core/preflight-loaders.js +112 -0
- package/src/core/preflight-model.js +83 -0
- package/src/core/preflight.js +34 -444
- package/src/core/protocol.js +7 -0
- package/src/core/schema-validation.js +15 -1
- package/src/core/templates.js +2 -0
- package/src/core/verification-capability.js +31 -1106
- package/src/core/verification-constants.js +61 -0
package/TERMINOLOGY.md
CHANGED
|
@@ -21,3 +21,7 @@
|
|
|
21
21
|
| Conformance | Relationship validation across route, state, receipt, task brief, and delegated-result artifacts. |
|
|
22
22
|
| Universal applicability | ForgeLoop applies whenever an execution environment discovers a project adapter, regardless of model, provider, agent, IDE, or tool name. |
|
|
23
23
|
| Integration level | The capability tier of an execution environment (`INSTRUCTION_DISCOVERED`, `PROTOCOL_CAPABLE`, `PROTOCOL_LIMITED`, `CONFORMANCE_VERIFIED`). |
|
|
24
|
+
|
|
25
|
+
| Execution continuity | Bounded current-task implementation context used to resume the same ForgeLoop task across sessions or harnesses. |
|
|
26
|
+
| Continuity artifact | `.forgeloop/continuity.json`; non-evidence operational context bound to canonical work state. |
|
|
27
|
+
| Continuity reconciliation | Read-only comparison of continuity bindings and path hints against current canonical state and checkout. |
|
package/THREAT_MODEL.md
CHANGED
|
@@ -59,3 +59,12 @@ remaining trust boundaries and their executable evidence.
|
|
|
59
59
|
- Credentials remain outside Git and outside protocol artifacts.
|
|
60
60
|
- `preflight`, `audit`, `report`, and `complete` never execute commands copied
|
|
61
61
|
from a profile, contract, receipt, state, gate, policy, or bundle.
|
|
62
|
+
|
|
63
|
+
## Stale or malicious execution continuity
|
|
64
|
+
|
|
65
|
+
A stale or malicious continuity artifact may claim unfinished work is complete,
|
|
66
|
+
point at misleading files, claim verification/publication occurred, encode
|
|
67
|
+
secret material, attempt path traversal, or imply authority. Mitigations are a
|
|
68
|
+
bounded strict schema, secret-free writes, relative safe paths, task/contract/
|
|
69
|
+
work-state fingerprint binding, current-checkout reconciliation, explicit
|
|
70
|
+
non-evidence semantics, and complete separation from authority grants.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg data-forgeloop-source-sha256="97e56b93166a6add59be9f5cd9ed5180a85344d87f49e06ae580425d0784c888" id="my-svg" width="100%" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" class="flowchart" style="max-width: 3713.42px; background-color: transparent;" viewBox="0 0 3713.41650390625 527.25" role="graphics-document document" aria-roledescription="flowchart-v2"><style>#my-svg{font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;fill:#ccc;}@keyframes edge-animation-frame{from{stroke-dashoffset:0;}}@keyframes dash{to{stroke-dashoffset:0;}}#my-svg .edge-animation-slow{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 50s linear infinite;stroke-linecap:round;}#my-svg .edge-animation-fast{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 20s linear infinite;stroke-linecap:round;}#my-svg .error-icon{fill:#a44141;}#my-svg .error-text{fill:#ddd;stroke:#ddd;}#my-svg .edge-thickness-normal{stroke-width:1px;}#my-svg .edge-thickness-thick{stroke-width:3.5px;}#my-svg .edge-pattern-solid{stroke-dasharray:0;}#my-svg .edge-thickness-invisible{stroke-width:0;fill:none;}#my-svg .edge-pattern-dashed{stroke-dasharray:3;}#my-svg .edge-pattern-dotted{stroke-dasharray:2;}#my-svg .marker{fill:lightgrey;stroke:lightgrey;}#my-svg .marker.cross{stroke:lightgrey;}#my-svg svg{font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;}#my-svg p{margin:0;}#my-svg .label{font-family:"trebuchet ms",verdana,arial,sans-serif;color:#ccc;}#my-svg .cluster-label text{fill:#F9FFFE;}#my-svg .cluster-label span{color:#F9FFFE;}#my-svg .cluster-label span p{background-color:transparent;}#my-svg .label text,#my-svg span{fill:#ccc;color:#ccc;}#my-svg .node rect,#my-svg .node circle,#my-svg .node ellipse,#my-svg .node polygon,#my-svg .node path{fill:#1f2020;stroke:#ccc;stroke-width:1px;}#my-svg .rough-node .label text,#my-svg .node .label text,#my-svg .image-shape .label,#my-svg .icon-shape .label{text-anchor:middle;}#my-svg .node .katex path{fill:#000;stroke:#000;stroke-width:1px;}#my-svg .rough-node .label,#my-svg .node .label,#my-svg .image-shape .label,#my-svg .icon-shape .label{text-align:center;}#my-svg .node.clickable{cursor:pointer;}#my-svg .root .anchor path{fill:lightgrey!important;stroke-width:0;stroke:lightgrey;}#my-svg .arrowheadPath{fill:lightgrey;}#my-svg .edgePath .path{stroke:lightgrey;stroke-width:1px;}#my-svg .flowchart-link{stroke:lightgrey;fill:none;}#my-svg .edgeLabel{background-color:hsl(0, 0%, 34.4117647059%);text-align:center;}#my-svg .edgeLabel p{background-color:hsl(0, 0%, 34.4117647059%);}#my-svg .edgeLabel rect{opacity:0.5;background-color:hsl(0, 0%, 34.4117647059%);fill:hsl(0, 0%, 34.4117647059%);}#my-svg .labelBkg{background-color:rgba(87.75, 87.75, 87.75, 0.5);}#my-svg .cluster rect{fill:hsl(180, 1.5873015873%, 28.3529411765%);stroke:rgba(255, 255, 255, 0.25);stroke-width:1px;}#my-svg .cluster text{fill:#F9FFFE;}#my-svg .cluster span{color:#F9FFFE;}#my-svg div.mermaidTooltip{position:absolute;text-align:center;max-width:200px;padding:2px;font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:12px;background:hsl(20, 1.5873015873%, 12.3529411765%);border:1px solid rgba(255, 255, 255, 0.25);border-radius:2px;pointer-events:none;z-index:100;}#my-svg .flowchartTitleText{text-anchor:middle;font-size:18px;fill:#ccc;}#my-svg rect.text{fill:none;stroke-width:0;}#my-svg .icon-shape,#my-svg .image-shape{background-color:hsl(0, 0%, 34.4117647059%);text-align:center;}#my-svg .icon-shape p,#my-svg .image-shape p{background-color:hsl(0, 0%, 34.4117647059%);padding:2px;}#my-svg .icon-shape .label rect,#my-svg .image-shape .label rect{opacity:0.5;background-color:hsl(0, 0%, 34.4117647059%);fill:hsl(0, 0%, 34.4117647059%);}#my-svg .label-icon{display:inline-block;height:1em;overflow:visible;vertical-align:-0.125em;}#my-svg .node .label-icon path{fill:currentColor;stroke:revert;stroke-width:revert;}#my-svg .node .neo-node{stroke:#ccc;}#my-svg [data-look="neo"].node rect,#my-svg [data-look="neo"].cluster rect,#my-svg [data-look="neo"].node polygon{stroke:url(#my-svg-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#my-svg [data-look="neo"].swimlane.cluster rect{filter:none;}#my-svg [data-look="neo"].node path{stroke:url(#my-svg-gradient);stroke-width:1px;}#my-svg [data-look="neo"].node .outer-path{filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#my-svg [data-look="neo"].node .neo-line path{stroke:#ccc;filter:none;}#my-svg [data-look="neo"].node circle{stroke:url(#my-svg-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#my-svg [data-look="neo"].node circle .state-start{fill:#000000;}#my-svg [data-look="neo"].icon-shape .icon{fill:url(#my-svg-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#my-svg [data-look="neo"].icon-shape .icon-neo path{stroke:url(#my-svg-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#my-svg :root{--mermaid-font-family:"trebuchet ms",verdana,arial,sans-serif;}#my-svg .entry>*{fill:rgb(31, 41, 55)!important;stroke:rgb(125, 211, 252)!important;color:rgb(248, 250, 252)!important;stroke-width:2px!important;}#my-svg .entry span{fill:rgb(31, 41, 55)!important;stroke:rgb(125, 211, 252)!important;color:rgb(248, 250, 252)!important;stroke-width:2px!important;}#my-svg .entry tspan{fill:rgb(248, 250, 252)!important;}#my-svg .contract>*{fill:rgb(23, 37, 84)!important;stroke:rgb(96, 165, 250)!important;color:rgb(219, 234, 254)!important;stroke-width:2px!important;}#my-svg .contract span{fill:rgb(23, 37, 84)!important;stroke:rgb(96, 165, 250)!important;color:rgb(219, 234, 254)!important;stroke-width:2px!important;}#my-svg .contract tspan{fill:rgb(219, 234, 254)!important;}#my-svg .execution>*{fill:rgb(49, 46, 129)!important;stroke:rgb(167, 139, 250)!important;color:rgb(237, 233, 254)!important;stroke-width:2px!important;}#my-svg .execution span{fill:rgb(49, 46, 129)!important;stroke:rgb(167, 139, 250)!important;color:rgb(237, 233, 254)!important;stroke-width:2px!important;}#my-svg .execution tspan{fill:rgb(237, 233, 254)!important;}#my-svg .evidence>*{fill:rgb(19, 78, 74)!important;stroke:rgb(94, 234, 212)!important;color:rgb(204, 251, 241)!important;stroke-width:2px!important;}#my-svg .evidence span{fill:rgb(19, 78, 74)!important;stroke:rgb(94, 234, 212)!important;color:rgb(204, 251, 241)!important;stroke-width:2px!important;}#my-svg .evidence tspan{fill:rgb(204, 251, 241)!important;}#my-svg .recovery>*{fill:rgb(69, 26, 3)!important;stroke:rgb(251, 146, 60)!important;color:rgb(255, 237, 213)!important;stroke-width:2px!important;}#my-svg .recovery span{fill:rgb(69, 26, 3)!important;stroke:rgb(251, 146, 60)!important;color:rgb(255, 237, 213)!important;stroke-width:2px!important;}#my-svg .recovery tspan{fill:rgb(255, 237, 213)!important;}#my-svg .terminal>*{fill:rgb(20, 83, 45)!important;stroke:rgb(134, 239, 172)!important;color:rgb(220, 252, 231)!important;stroke-width:2px!important;}#my-svg .terminal span{fill:rgb(20, 83, 45)!important;stroke:rgb(134, 239, 172)!important;color:rgb(220, 252, 231)!important;stroke-width:2px!important;}#my-svg .terminal tspan{fill:rgb(220, 252, 231)!important;}#my-svg .boundary>*{fill:rgb(63, 29, 63)!important;stroke:rgb(240, 171, 252)!important;color:rgb(250, 232, 255)!important;stroke-width:2px!important;}#my-svg .boundary span{fill:rgb(63, 29, 63)!important;stroke:rgb(240, 171, 252)!important;color:rgb(250, 232, 255)!important;stroke-width:2px!important;}#my-svg .boundary tspan{fill:rgb(250, 232, 255)!important;}</style><g><marker id="my-svg_flowchart-v2-pointEnd" class="marker flowchart-v2" viewBox="0 0 10 10" refX="5" refY="5" markerUnits="userSpaceOnUse" markerWidth="8" markerHeight="8" orient="auto"><path d="M 0 0 L 10 5 L 0 10 z" class="arrowMarkerPath" style="stroke-width: 1; stroke-dasharray: 1, 0;"/></marker><marker id="my-svg_flowchart-v2-pointStart" class="marker flowchart-v2" viewBox="0 0 10 10" refX="4.5" refY="5" markerUnits="userSpaceOnUse" markerWidth="8" markerHeight="8" orient="auto"><path d="M 0 5 L 10 10 L 10 0 z" class="arrowMarkerPath" style="stroke-width: 1; stroke-dasharray: 1, 0;"/></marker><marker id="my-svg_flowchart-v2-pointEnd-margin" class="marker flowchart-v2" viewBox="0 0 11.5 14" refX="11.5" refY="7" markerUnits="userSpaceOnUse" markerWidth="10.5" markerHeight="14" orient="auto"><path d="M 0 0 L 11.5 7 L 0 14 z" class="arrowMarkerPath" style="stroke-width: 0; stroke-dasharray: 1, 0;"/></marker><marker id="my-svg_flowchart-v2-pointStart-margin" class="marker flowchart-v2" viewBox="0 0 11.5 14" refX="1" refY="7" markerUnits="userSpaceOnUse" markerWidth="11.5" markerHeight="14" orient="auto"><polygon points="0,7 11.5,14 11.5,0" class="arrowMarkerPath" style="stroke-width: 0; stroke-dasharray: 1, 0;"/></marker><marker id="my-svg_flowchart-v2-circleEnd" class="marker flowchart-v2" viewBox="0 0 10 10" refX="11" refY="5" markerUnits="userSpaceOnUse" markerWidth="11" markerHeight="11" orient="auto"><circle cx="5" cy="5" r="5" class="arrowMarkerPath" style="stroke-width: 1; stroke-dasharray: 1, 0;"/></marker><marker id="my-svg_flowchart-v2-circleStart" class="marker flowchart-v2" viewBox="0 0 10 10" refX="-1" refY="5" markerUnits="userSpaceOnUse" markerWidth="11" markerHeight="11" orient="auto"><circle cx="5" cy="5" r="5" class="arrowMarkerPath" style="stroke-width: 1; stroke-dasharray: 1, 0;"/></marker><marker id="my-svg_flowchart-v2-circleEnd-margin" class="marker flowchart-v2" viewBox="0 0 10 10" refY="5" refX="12.25" markerUnits="userSpaceOnUse" markerWidth="14" markerHeight="14" orient="auto"><circle cx="5" cy="5" r="5" class="arrowMarkerPath" style="stroke-width: 0; stroke-dasharray: 1, 0;"/></marker><marker id="my-svg_flowchart-v2-circleStart-margin" class="marker flowchart-v2" viewBox="0 0 10 10" refX="-2" refY="5" markerUnits="userSpaceOnUse" markerWidth="14" markerHeight="14" orient="auto"><circle cx="5" cy="5" r="5" class="arrowMarkerPath" style="stroke-width: 0; stroke-dasharray: 1, 0;"/></marker><marker id="my-svg_flowchart-v2-crossEnd" class="marker cross flowchart-v2" viewBox="0 0 11 11" refX="12" refY="5.2" markerUnits="userSpaceOnUse" markerWidth="11" markerHeight="11" orient="auto"><path d="M 1,1 l 9,9 M 10,1 l -9,9" class="arrowMarkerPath" style="stroke-width: 2; stroke-dasharray: 1, 0;"/></marker><marker id="my-svg_flowchart-v2-crossStart" class="marker cross flowchart-v2" viewBox="0 0 11 11" refX="-1" refY="5.2" markerUnits="userSpaceOnUse" markerWidth="11" markerHeight="11" orient="auto"><path d="M 1,1 l 9,9 M 10,1 l -9,9" class="arrowMarkerPath" style="stroke-width: 2; stroke-dasharray: 1, 0;"/></marker><marker id="my-svg_flowchart-v2-crossEnd-margin" class="marker cross flowchart-v2" viewBox="0 0 15 15" refX="17.7" refY="7.5" markerUnits="userSpaceOnUse" markerWidth="12" markerHeight="12" orient="auto"><path d="M 1,1 L 14,14 M 1,14 L 14,1" class="arrowMarkerPath" style="stroke-width: 2.5;"/></marker><marker id="my-svg_flowchart-v2-crossStart-margin" class="marker cross flowchart-v2" viewBox="0 0 15 15" refX="-3.5" refY="7.5" markerUnits="userSpaceOnUse" markerWidth="12" markerHeight="12" orient="auto"><path d="M 1,1 L 14,14 M 1,14 L 14,1" class="arrowMarkerPath" style="stroke-width: 2.5; stroke-dasharray: 1, 0;"/></marker><g class="root"><g class="clusters"><g class="cluster" id="my-svg-CLOSE" data-look="classic"><rect style="" x="2639.964340209961" y="8" width="1065.4520111083984" height="171.25"/><g class="cluster-label" transform="translate(3099.45597076416, 8)"><foreignObject width="146.46875" height="24"><div xmlns="http://www.w3.org/1999/xhtml" style="display: table-cell; white-space: nowrap; line-height: 1.5;"><span class="nodeLabel"><p>4 · Review and close</p></span></div></foreignObject></g></g><g class="cluster" id="my-svg-VERIFY" data-look="classic"><rect style="" x="1659.854965209961" y="53.25" width="783.890625" height="301"/><g class="cluster-label" transform="translate(1972.894027709961, 53.25)"><foreignObject width="157.8125" height="24"><div xmlns="http://www.w3.org/1999/xhtml" style="display: table-cell; white-space: nowrap; line-height: 1.5;"><span class="nodeLabel"><p>3 · Execute and verify</p></span></div></foreignObject></g></g><g class="cluster" id="my-svg-AUTHORIZE" data-look="classic"><rect style="" x="883.2143402099609" y="145.25" width="726.640625" height="374"/><g class="cluster-label" transform="translate(1162.948715209961, 145.25)"><foreignObject width="167.171875" height="24"><div xmlns="http://www.w3.org/1999/xhtml" style="display: table-cell; white-space: nowrap; line-height: 1.5;"><span class="nodeLabel"><p>2 · Authorize execution</p></span></div></foreignObject></g></g><g class="cluster" id="my-svg-DISCOVER" data-look="classic"><rect style="" x="8" y="238.25" width="825.2143402099609" height="124"/><g class="cluster-label" transform="translate(341.41967010498047, 238.25)"><foreignObject width="158.375" height="24"><div xmlns="http://www.w3.org/1999/xhtml" style="display: table-cell; white-space: nowrap; line-height: 1.5;"><span class="nodeLabel"><p>1 · Discover and route</p></span></div></foreignObject></g></g></g><g class="edgePaths"><path d="M114.824,300.75L139.324,300.25L160.324,300.25" id="my-svg-L_REQUEST_PROFILE_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_REQUEST_PROFILE_0" data-points="W3sieCI6MTE0LjgyMzcxMjQzMTgyMjg0LCJ5IjozMDAuNzV9LHsieCI6MTM5LjMyMzcxNTIwOTk2MDk0LCJ5IjozMDAuMjV9LHsieCI6MTY0LjMyMzcxNTIwOTk2MDk0LCJ5IjozMDAuMjV9XQ==" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M328.621,300.25L353.621,300.25L374.621,300.25" id="my-svg-L_PROFILE_CONTRACT_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_PROFILE_CONTRACT_0" data-points="W3sieCI6MzI4LjYyMDU5MDIwOTk2MDk0LCJ5IjozMDAuMjV9LHsieCI6MzUzLjYyMDU5MDIwOTk2MDk0LCJ5IjozMDAuMjV9LHsieCI6Mzc4LjYyMDU5MDIwOTk2MDk0LCJ5IjozMDAuMjV9XQ==" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M558.496,300.25L583.496,300.25L604.496,300.25" id="my-svg-L_CONTRACT_ROUTE_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_CONTRACT_ROUTE_0" data-points="W3sieCI6NTU4LjQ5NTU5MDIwOTk2MDksInkiOjMwMC4yNX0seyJ4Ijo1ODMuNDk1NTkwMjA5OTYwOSwieSI6MzAwLjI1fSx7IngiOjYwOC40OTU1OTAyMDk5NjA5LCJ5IjozMDAuMjV9XQ==" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M808.214,300.25L833.214,300.25L858.214,300.25L883.214,300.25L904.214,300.25" id="my-svg-L_ROUTE_GATES_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_ROUTE_GATES_0" data-points="W3sieCI6ODA4LjIxNDM0MDIwOTk2MDksInkiOjMwMC4yNX0seyJ4Ijo4MzMuMjE0MzQwMjA5OTYwOSwieSI6MzAwLjI1fSx7IngiOjg1OC4yMTQzNDAyMDk5NjA5LCJ5IjozMDAuMjV9LHsieCI6ODgzLjIxNDM0MDIwOTk2MDksInkiOjMwMC4yNX0seyJ4Ijo5MDguMjE0MzQwMjA5OTYwOSwieSI6MzAwLjI1fV0=" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M1074.496,300.25L1099.496,300.25L1120.496,300.25" id="my-svg-L_GATES_PREFLIGHT_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_GATES_PREFLIGHT_0" data-points="W3sieCI6MTA3NC40OTU1OTAyMDk5NjEsInkiOjMwMC4yNX0seyJ4IjoxMDk5LjQ5NTU5MDIwOTk2MSwieSI6MzAwLjI1fSx7IngiOjExMjQuNDk1NTkwMjA5OTYxLCJ5IjozMDAuMjV9XQ==" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M1256.26,273.25L1342.48,207.25L1363.48,207.25" id="my-svg-L_PREFLIGHT_STATE_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_PREFLIGHT_STATE_0" data-points="W3sieCI6MTI1Ni4yNTk3MDMxMTMxODY4LCJ5IjoyNzMuMjV9LHsieCI6MTM0Mi40Nzk5NjUyMDk5NjEsInkiOjIwNy4yNX0seyJ4IjoxMzY3LjQ3OTk2NTIwOTk2MSwieSI6MjA3LjI1fV0=" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M1584.855,207.25L1609.855,207.25L1634.855,207.25L1659.855,207.25L1680.855,207.25" id="my-svg-L_STATE_EXECUTE_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_STATE_EXECUTE_0" data-points="W3sieCI6MTU4NC44NTQ5NjUyMDk5NjEsInkiOjIwNy4yNX0seyJ4IjoxNjA5Ljg1NDk2NTIwOTk2MSwieSI6MjA3LjI1fSx7IngiOjE2MzQuODU0OTY1MjA5OTYxLCJ5IjoyMDcuMjV9LHsieCI6MTY1OS44NTQ5NjUyMDk5NjEsInkiOjIwNy4yNX0seyJ4IjoxNjg0Ljg1NDk2NTIwOTk2MSwieSI6MjA3LjI1fV0=" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M1858.683,199.484L1883.683,197.25L1910.871,197.25" id="my-svg-L_EXECUTE_CHECKS_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_EXECUTE_CHECKS_0" data-points="W3sieCI6MTg1OC42ODMwOTAyMDk5NjEsInkiOjE5OS40ODM4NTY4OTM1NDI3Nn0seyJ4IjoxODgzLjY4MzA5MDIwOTk2MSwieSI6MTk3LjI1fSx7IngiOjE5MTQuODcwNTkwMjA5OTYxLCJ5IjoxOTcuMjV9XQ==" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M2076.297,170.25L2188.902,94.25L2265.058,137.282" id="my-svg-L_CHECKS_EVIDENCE_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_CHECKS_EVIDENCE_0" data-points="W3sieCI6MjA3Ni4yOTY4NjQ0ODE4MDU2LCJ5IjoxNzAuMjV9LHsieCI6MjE4OC45MDE4NDAyMDk5NjEsInkiOjk0LjI1fSx7IngiOjIyNjguNTQwNTEyMDg0OTYxLCJ5IjoxMzkuMjV9XQ==" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M2371.814,139.25L2443.746,104.25L2541.855,104.25L2639.964,104.25L2667.425,104.25" id="my-svg-L_EVIDENCE_REVIEW_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_EVIDENCE_REVIEW_0" data-points="W3sieCI6MjM3MS44MTM4ODY1ODA5Mjg3LCJ5IjoxMzkuMjV9LHsieCI6MjQ0My43NDU1OTAyMDk5NjEsInkiOjEwNC4yNX0seyJ4IjoyNTQxLjg1NDk2NTIwOTk2MSwieSI6MTA0LjI1fSx7IngiOjI2MzkuOTY0MzQwMjA5OTYxLCJ5IjoxMDQuMjV9LHsieCI6MjY3MS40MjUyNzc3MDk5NjEsInkiOjEwNC4yNX1d" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M2781.847,97.819L2864.003,88.25L2974.589,88.25" id="my-svg-L_REVIEW_COMPLETE_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_REVIEW_COMPLETE_0" data-points="W3sieCI6Mjc4MS44NDcxNTI3MDk5NjEsInkiOjk3LjgxOTI0MzAxODgyNX0seyJ4IjoyODY0LjAwMzQwMjcwOTk2MSwieSI6ODguMjV9LHsieCI6Mjk3OC41ODkzNDAyMDk5NjEsInkiOjg4LjI1fV0=" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M3160.808,80.39L3324.699,66.25L3529.403,66.74" id="my-svg-L_COMPLETE_VALID_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_COMPLETE_VALID_0" data-points="W3sieCI6MzE2MC44MDgwOTAyMDk5NjEsInkiOjgwLjM4OTU4MzMzMzMzMzMzfSx7IngiOjMzMjQuNjk4NzE1MjA5OTYxLCJ5Ijo2Ni4yNX0seyJ4IjozNTMzLjQwMzQ4ODE1OTE4ODMsInkiOjY2Ljc1fV0=" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M2362.196,193.25L2443.746,241.25L2541.855,241.25L2639.964,241.25L2660.964,241.25" id="my-svg-L_EVIDENCE_DIAGNOSE_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_EVIDENCE_DIAGNOSE_0" data-points="W3sieCI6MjM2Mi4xOTU1OTAyMDk5NjA4LCJ5IjoxOTMuMjV9LHsieCI6MjQ0My43NDU1OTAyMDk5NjEsInkiOjI0MS4yNX0seyJ4IjoyNTQxLjg1NDk2NTIwOTk2MSwieSI6MjQxLjI1fSx7IngiOjI2MzkuOTY0MzQwMjA5OTYxLCJ5IjoyNDEuMjV9LHsieCI6MjY2NC45NjQzNDAyMDk5NjEsInkiOjI0MS4yNX1d" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M2788.308,241.25L2864.003,241.25L3008.947,263.094" id="my-svg-L_DIAGNOSE_CORRECT_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_DIAGNOSE_CORRECT_0" data-points="W3sieCI6Mjc4OC4zMDgwOTAyMDk5NjEsInkiOjI0MS4yNX0seyJ4IjoyODY0LjAwMzQwMjcwOTk2MSwieSI6MjQxLjI1fSx7IngiOjMwMTIuOTAxODQwMjA5OTYxLCJ5IjoyNjMuNjkwMjM3MDAxMDI1NX1d" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M3012.902,280.81L2864.003,303.25L2726.636,303.25L2639.964,303.25L2541.855,303.25L2443.746,303.25L2316.324,303.25L2188.902,303.25L2078.45,226.532" id="my-svg-L_CORRECT_CHECKS_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_CORRECT_CHECKS_0" data-points="W3sieCI6MzAxMi45MDE4NDAyMDk5NjEsInkiOjI4MC44MDk3NjI5OTg5NzQ1fSx7IngiOjI4NjQuMDAzNDAyNzA5OTYxLCJ5IjozMDMuMjV9LHsieCI6MjcyNi42MzYyMTUyMDk5NjEsInkiOjMwMy4yNX0seyJ4IjoyNjM5Ljk2NDM0MDIwOTk2MSwieSI6MzAzLjI1fSx7IngiOjI1NDEuODU0OTY1MjA5OTYxLCJ5IjozMDMuMjV9LHsieCI6MjQ0My43NDU1OTAyMDk5NjEsInkiOjMwMy4yNX0seyJ4IjoyMzE2LjMyMzcxNTIwOTk2MSwieSI6MzAzLjI1fSx7IngiOjIxODguOTAxODQwMjA5OTYxLCJ5IjozMDMuMjV9LHsieCI6MjA3NS4xNjQ2NjQ1MDI0MTQsInkiOjIyNC4yNX1d" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M2781.847,115.504L2864.003,132.25L3044.469,435.812" id="my-svg-L_REVIEW_REVALIDATE_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_REVIEW_REVALIDATE_0" data-points="W3sieCI6Mjc4MS44NDcxNTI3MDk5NjEsInkiOjExNS41MDM4MjQ3MTcwNTYyNX0seyJ4IjoyODY0LjAwMzQwMjcwOTk2MSwieSI6MTMyLjI1fSx7IngiOjMwNDYuNTEzNDA1NDE5NDk4NywieSI6NDM5LjI1fV0=" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M2939.699,478.25L2864.003,478.25L2726.636,478.25L2639.964,478.25L2541.855,478.25L2443.746,478.25L2316.324,478.25L2188.902,478.25L2036.292,478.25L1883.683,478.25L1771.769,478.25L1659.855,478.25L1634.855,478.25L1609.855,478.25L1476.167,478.25L1342.48,478.25L1241.671,330.554" id="my-svg-L_REVALIDATE_PREFLIGHT_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_REVALIDATE_PREFLIGHT_0" data-points="W3sieCI6MjkzOS42OTg3MTUyMDk5NjEsInkiOjQ3OC4yNX0seyJ4IjoyODY0LjAwMzQwMjcwOTk2MSwieSI6NDc4LjI1fSx7IngiOjI3MjYuNjM2MjE1MjA5OTYxLCJ5Ijo0NzguMjV9LHsieCI6MjYzOS45NjQzNDAyMDk5NjEsInkiOjQ3OC4yNX0seyJ4IjoyNTQxLjg1NDk2NTIwOTk2MSwieSI6NDc4LjI1fSx7IngiOjI0NDMuNzQ1NTkwMjA5OTYxLCJ5Ijo0NzguMjV9LHsieCI6MjMxNi4zMjM3MTUyMDk5NjEsInkiOjQ3OC4yNX0seyJ4IjoyMTg4LjkwMTg0MDIwOTk2MSwieSI6NDc4LjI1fSx7IngiOjIwMzYuMjkyNDY1MjA5OTYxLCJ5Ijo0NzguMjV9LHsieCI6MTg4My42ODMwOTAyMDk5NjEsInkiOjQ3OC4yNX0seyJ4IjoxNzcxLjc2OTAyNzcwOTk2MSwieSI6NDc4LjI1fSx7IngiOjE2NTkuODU0OTY1MjA5OTYxLCJ5Ijo0NzguMjV9LHsieCI6MTYzNC44NTQ5NjUyMDk5NjEsInkiOjQ3OC4yNX0seyJ4IjoxNjA5Ljg1NDk2NTIwOTk2MSwieSI6NDc4LjI1fSx7IngiOjE0NzYuMTY3NDY1MjA5OTYxLCJ5Ijo0NzguMjV9LHsieCI6MTM0Mi40Nzk5NjUyMDk5NjEsInkiOjQ3OC4yNX0seyJ4IjoxMjM5LjQxNjM2Nzk0ODcyNDksInkiOjMyNy4yNX1d" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M1800.275,234.25L1883.683,313.25L1992.973,387.012" id="my-svg-L_EXECUTE_DELEGATE_0" class="edge-thickness-normal edge-pattern-dotted edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_EXECUTE_DELEGATE_0" data-points="W3sieCI6MTgwMC4yNzU0Mzk4NTYxODc0LCJ5IjoyMzQuMjV9LHsieCI6MTg4My42ODMwOTAyMDk5NjEsInkiOjMxMy4yNX0seyJ4IjoxOTk2LjI4ODA2NTkzODExNjIsInkiOjM4OS4yNX1d" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M2063.049,389.25L2188.902,262.25L2277.292,195.657" id="my-svg-L_DELEGATE_EVIDENCE_0" class="edge-thickness-normal edge-pattern-dotted edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_DELEGATE_EVIDENCE_0" data-points="W3sieCI6MjA2My4wNDg2NTQzMzMzMzc3LCJ5IjozODkuMjV9LHsieCI6MjE4OC45MDE4NDAyMDk5NjEsInkiOjI2Mi4yNX0seyJ4IjoyMjgwLjQ4NjMxMjg2NjIxMSwieSI6MTkzLjI1fV0=" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M3160.808,96.11L3324.699,110.25L3506.198,212.783" id="my-svg-L_COMPLETE_BLOCKED_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_COMPLETE_BLOCKED_0" data-points="W3sieCI6MzE2MC44MDgwOTAyMDk5NjEsInkiOjk2LjExMDQxNjY2NjY2NjY3fSx7IngiOjMzMjQuNjk4NzE1MjA5OTYxLCJ5IjoxMTAuMjV9LHsieCI6MzUwOS42ODA3NjAwNjMzNjgzLCJ5IjoyMTQuNzV9XQ==" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/></g><g class="edgeLabels"><g class="edgeLabel"><g class="label" data-id="L_REQUEST_PROFILE_0" transform="translate(0, 0)"><foreignObject width="0" height="0"><div xmlns="http://www.w3.org/1999/xhtml" class="labelBkg" style="display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;"><span class="edgeLabel"></span></div></foreignObject></g></g><g class="edgeLabel"><g class="label" data-id="L_PROFILE_CONTRACT_0" transform="translate(0, 0)"><foreignObject width="0" height="0"><div xmlns="http://www.w3.org/1999/xhtml" class="labelBkg" style="display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;"><span class="edgeLabel"></span></div></foreignObject></g></g><g class="edgeLabel"><g class="label" data-id="L_CONTRACT_ROUTE_0" transform="translate(0, 0)"><foreignObject width="0" height="0"><div xmlns="http://www.w3.org/1999/xhtml" class="labelBkg" style="display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;"><span class="edgeLabel"></span></div></foreignObject></g></g><g class="edgeLabel"><g class="label" data-id="L_ROUTE_GATES_0" transform="translate(0, 0)"><foreignObject width="0" height="0"><div xmlns="http://www.w3.org/1999/xhtml" class="labelBkg" style="display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;"><span class="edgeLabel"></span></div></foreignObject></g></g><g class="edgeLabel"><g class="label" data-id="L_GATES_PREFLIGHT_0" transform="translate(0, 0)"><foreignObject width="0" height="0"><div xmlns="http://www.w3.org/1999/xhtml" class="labelBkg" style="display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;"><span class="edgeLabel"></span></div></foreignObject></g></g><g class="edgeLabel"><g class="label" data-id="L_PREFLIGHT_STATE_0" transform="translate(0, 0)"><foreignObject width="0" height="0"><div xmlns="http://www.w3.org/1999/xhtml" class="labelBkg" style="display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;"><span class="edgeLabel"></span></div></foreignObject></g></g><g class="edgeLabel"><g class="label" data-id="L_STATE_EXECUTE_0" transform="translate(0, 0)"><foreignObject width="0" height="0"><div xmlns="http://www.w3.org/1999/xhtml" class="labelBkg" style="display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;"><span class="edgeLabel"></span></div></foreignObject></g></g><g class="edgeLabel"><g class="label" data-id="L_EXECUTE_CHECKS_0" transform="translate(0, 0)"><foreignObject width="0" height="0"><div xmlns="http://www.w3.org/1999/xhtml" class="labelBkg" style="display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;"><span class="edgeLabel"></span></div></foreignObject></g></g><g class="edgeLabel"><g class="label" data-id="L_CHECKS_EVIDENCE_0" transform="translate(0, 0)"><foreignObject width="0" height="0"><div xmlns="http://www.w3.org/1999/xhtml" class="labelBkg" style="display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;"><span class="edgeLabel"></span></div></foreignObject></g></g><g class="edgeLabel"><g class="label" data-id="L_EVIDENCE_REVIEW_0" transform="translate(0, 0)"><foreignObject width="0" height="0"><div xmlns="http://www.w3.org/1999/xhtml" class="labelBkg" style="display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;"><span class="edgeLabel"></span></div></foreignObject></g></g><g class="edgeLabel"><g class="label" data-id="L_REVIEW_COMPLETE_0" transform="translate(0, 0)"><foreignObject width="0" height="0"><div xmlns="http://www.w3.org/1999/xhtml" class="labelBkg" style="display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;"><span class="edgeLabel"></span></div></foreignObject></g></g><g class="edgeLabel"><g class="label" data-id="L_COMPLETE_VALID_0" transform="translate(0, 0)"><foreignObject width="0" height="0"><div xmlns="http://www.w3.org/1999/xhtml" class="labelBkg" style="display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;"><span class="edgeLabel"></span></div></foreignObject></g></g><g class="edgeLabel" transform="translate(2541.854965209961, 241.25)"><g class="label" data-id="L_EVIDENCE_DIAGNOSE_0" transform="translate(-73.109375, -12)"><foreignObject width="146.21875" height="24"><div xmlns="http://www.w3.org/1999/xhtml" class="labelBkg" style="display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;"><span class="edgeLabel"><p>failed or incomplete</p></span></div></foreignObject></g></g><g class="edgeLabel"><g class="label" data-id="L_DIAGNOSE_CORRECT_0" transform="translate(0, 0)"><foreignObject width="0" height="0"><div xmlns="http://www.w3.org/1999/xhtml" class="labelBkg" style="display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;"><span class="edgeLabel"></span></div></foreignObject></g></g><g class="edgeLabel"><g class="label" data-id="L_CORRECT_CHECKS_0" transform="translate(0, 0)"><foreignObject width="0" height="0"><div xmlns="http://www.w3.org/1999/xhtml" class="labelBkg" style="display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;"><span class="edgeLabel"></span></div></foreignObject></g></g><g class="edgeLabel" transform="translate(2864.003402709961, 132.25)"><g class="label" data-id="L_REVIEW_REVALIDATE_0" transform="translate(-50.6953125, -12)"><foreignObject width="101.390625" height="24"><div xmlns="http://www.w3.org/1999/xhtml" class="labelBkg" style="display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;"><span class="edgeLabel"><p>drift detected</p></span></div></foreignObject></g></g><g class="edgeLabel"><g class="label" data-id="L_REVALIDATE_PREFLIGHT_0" transform="translate(0, 0)"><foreignObject width="0" height="0"><div xmlns="http://www.w3.org/1999/xhtml" class="labelBkg" style="display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;"><span class="edgeLabel"></span></div></foreignObject></g></g><g class="edgeLabel"><g class="label" data-id="L_EXECUTE_DELEGATE_0" transform="translate(0, 0)"><foreignObject width="0" height="0"><div xmlns="http://www.w3.org/1999/xhtml" class="labelBkg" style="display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;"><span class="edgeLabel"></span></div></foreignObject></g></g><g class="edgeLabel"><g class="label" data-id="L_DELEGATE_EVIDENCE_0" transform="translate(0, 0)"><foreignObject width="0" height="0"><div xmlns="http://www.w3.org/1999/xhtml" class="labelBkg" style="display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;"><span class="edgeLabel"></span></div></foreignObject></g></g><g class="edgeLabel" transform="translate(3324.698715209961, 110.25)"><g class="label" data-id="L_COMPLETE_BLOCKED_0" transform="translate(-100, -24)"><foreignObject width="200" height="48"><div xmlns="http://www.w3.org/1999/xhtml" class="labelBkg" style="display: table; white-space: break-spaces; line-height: 1.5; max-width: 200px; text-align: center; width: 200px;"><span class="edgeLabel"><p>INCOMPLETE · STALE · INCONSISTENT · INVALID</p></span></div></foreignObject></g></g></g><g class="nodes"><g class="node default entry" id="my-svg-flowchart-REQUEST-0" data-look="classic" transform="translate(73.66185760498047, 300.25)"><g class="basic label-container outer-path"><path d="M-21.171875 -19.5 C-10.042506688259891 -19.5, 1.0868616234802175 -19.5, 21.171875 -19.5 C21.171875 -19.5, 21.171875 -19.5, 21.171875 -19.5 C21.558864126520337 -19.487590011941133, 21.945853253040678 -19.475180023882263, 22.4212442896239 -19.45993515863156 C22.906619091283126 -19.413111635264098, 23.39199389294235 -19.366288111896637, 23.665479652847864 -19.3399052695533 C24.11978434897318 -19.266456809469297, 24.574089045098496 -19.193008349385295, 24.89946825967676 -19.140403561325776 C25.243350781872707 -19.061914619677726, 25.587233304068654 -18.983425678029676, 26.11813938623539 -18.862249829261074 C26.5618933341724 -18.730545986825376, 27.005647282109408 -18.59884214438968, 27.316485251460602 -18.50658706670804 C27.70345719656647 -18.36417781377963, 28.09042914167234 -18.221768560851224, 28.489581595147794 -18.074876768247425 C28.93058766052126 -17.879656465086715, 29.37159372589473 -17.68443616192601, 29.63260791279238 -17.568892924097174 C29.95200931477497 -17.40226141726922, 30.27141071675756 -17.235629910441265, 30.740867264076783 -16.990714730406097 C31.121546485959342 -16.759944748981464, 31.502225707841898 -16.52917476755683, 31.809805573605697 -16.342718045390892 C32.02584057962057 -16.1920213771996, 32.24187558563544 -16.041324709008308, 32.83503034457871 -15.627565626425154 C33.15635488288613 -15.371317857930066, 33.47767942119354 -15.115070089434976, 33.812328708501866 -14.848196188198123 C34.05768113034685 -14.625373610347863, 34.30303355219183 -14.402551032497602, 34.73768473676799 -14.007812326905688 C35.07848450665489 -13.655908584315991, 35.419284276541795 -13.304004841726295, 35.60729594296865 -13.10986736009568 C35.809037853870265 -12.872889832110713, 36.01077976477188 -12.635912304125746, 36.41758890812658 -12.158051136245305 C36.64820531091559 -11.849046166094528, 36.87882171370461 -11.54004119594375, 37.165233964640635 -11.156274872382312 C37.305111155171204 -10.941385945442487, 37.444988345701766 -10.726497018502663, 37.84715887860425 -10.108655082055241 C38.000961934846764 -9.835562181448395, 38.15476499108928 -9.56246928084155, 38.460561474273504 -9.019496659696287 C38.64362463904064 -8.639362081133086, 38.82668780380777 -8.259227502569887, 39.00292114880834 -7.893275190886684 C39.113000893926014 -7.62137609219895, 39.22308063904368 -7.349476993511217, 39.472009229970325 -6.734618561215508 C39.56134701247367 -6.465547394358066, 39.65068479497701 -6.196476227500624, 39.86589813421488 -5.548287939305138 C39.94649810929038 -5.2409253020921, 40.027098084365875 -4.933562664879061, 40.18296928754556 -4.339158212148133 C40.26560991607019 -3.9148160507771728, 40.34825054459482 -3.4904738894062124, 40.421919776581774 -3.1121979531509023 C40.472383183533935 -2.720813733956789, 40.5228465904861 -2.3294295147626753, 40.58176770250937 -1.872449005199798 C40.603827966592974 -1.528842585372917, 40.62588823067659 -1.1852361655460362, 40.66185621591342 -0.6250057626472757 C40.66185621591342 -0.15964380894648394, 40.66185621591342 0.3057181447543078, 40.66185621591342 0.625005762647271 C40.64424100687439 0.8993768621709154, 40.626625797835366 1.1737479616945596, 40.58176770250937 1.8724490051997846 C40.52450100407713 2.3165982096515054, 40.467234305644894 2.7607474141032267, 40.421919776581774 3.1121979531508885 C40.368672121699035 3.3856134070779236, 40.315424466816296 3.659028861004958, 40.18296928754556 4.339158212148129 C40.08042088922982 4.730219699683014, 39.97787249091409 5.121281187217899, 39.86589813421489 5.548287939305125 C39.75466027794374 5.883318639048283, 39.643422421672604 6.21834933879144, 39.472009229970325 6.734618561215495 C39.34652724017668 7.04456150203504, 39.22104525038303 7.354504442854586, 39.00292114880834 7.893275190886679 C38.803686772112805 8.30698963702771, 38.604452395417276 8.72070408316874, 38.460561474273504 9.019496659696284 C38.29219163027316 9.318454367014366, 38.123821786272806 9.61741207433245, 37.84715887860425 10.108655082055236 C37.62049985272403 10.456864212277807, 37.393840826843814 10.805073342500377, 37.16523396464064 11.156274872382301 C36.90578690452767 11.503910296820264, 36.646339844414705 11.851545721258228, 36.41758890812658 12.158051136245302 C36.147033558717226 12.475860844697035, 35.87647820930788 12.793670553148768, 35.60729594296866 13.10986736009567 C35.31095234198175 13.415866458376772, 35.01460874099485 13.721865556657873, 34.73768473676799 14.007812326905684 C34.41790876637668 14.298224402406538, 34.098132795985364 14.588636477907391, 33.81232870850189 14.848196188198111 C33.42254802445242 15.15903591122794, 33.03276734040295 15.469875634257772, 32.83503034457871 15.627565626425152 C32.45161521963526 15.895019419812458, 32.068200094691804 16.162473213199764, 31.809805573605708 16.34271804539089 C31.504040855368654 16.528074414459123, 31.1982761371316 16.71343078352736, 30.740867264076787 16.990714730406093 C30.326103050570037 17.207096954923408, 29.911338837063283 17.423479179440722, 29.632607912792388 17.56889292409717 C29.377240482517198 17.681936510274326, 29.12187305224201 17.79498009645148, 28.489581595147804 18.07487676824742 C28.17794959180524 18.189560226172144, 27.86631758846268 18.304243684096868, 27.316485251460616 18.506587066708033 C27.049886798312997 18.58571208819841, 26.783288345165378 18.664837109688786, 26.118139386235413 18.86224982926107 C25.8168266296541 18.931022499701264, 25.515513873072784 18.999795170141454, 24.899468259676766 19.140403561325773 C24.505016374349026 19.204175483125503, 24.110564489021286 19.267947404925238, 23.66547965284788 19.3399052695533 C23.39981648879942 19.365533475482355, 23.13415332475096 19.391161681411408, 22.4212442896239 19.45993515863156 C22.033093190899855 19.47238240887736, 21.64494209217581 19.484829659123157, 21.171875000000004 19.5 C21.171875000000004 19.5, 21.171875 19.5, 21.171875 19.5 C4.873701177522889 19.5, -11.424472644954221 19.5, -21.171874999999996 19.5 C-21.607600721695217 19.486027124193903, -22.043326443390438 19.472054248387803, -22.421244289623893 19.45993515863156 C-22.74439665199447 19.428761038881248, -23.067549014365046 19.397586919130934, -23.66547965284787 19.3399052695533 C-24.065726313500168 19.275196493418246, -24.465972974152464 19.210487717283193, -24.89946825967676 19.140403561325773 C-25.161392744124267 19.080621006967625, -25.423317228571776 19.02083845260948, -26.118139386235388 18.862249829261074 C-26.39269529976714 18.78076307529825, -26.667251213298893 18.699276321335425, -27.31648525146059 18.506587066708043 C-27.58288742293498 18.40854860501079, -27.84928959440937 18.310510143313536, -28.489581595147797 18.074876768247425 C-28.911286143238033 17.888200674228834, -29.33299069132827 17.701524580210247, -29.63260791279238 17.568892924097174 C-29.85863102437548 17.45097681155898, -30.084654135958584 17.33306069902079, -30.74086726407678 16.990714730406097 C-31.103113945720462 16.771118663195903, -31.465360627364145 16.55152259598571, -31.809805573605686 16.3427180453909 C-32.1365763367343 16.114776906710727, -32.46334709986292 15.886835768030553, -32.83503034457871 15.627565626425156 C-33.16613886838106 15.363515389860643, -33.49724739218341 15.099465153296132, -33.812328708501866 14.848196188198125 C-34.038676983662064 14.642632673544819, -34.265025258822256 14.43706915889151, -34.737684736767974 14.007812326905697 C-35.07590890703312 13.65856810238613, -35.41413307729826 13.309323877866566, -35.607295942968655 13.109867360095677 C-35.84147287018223 12.834789816345975, -36.0756497973958 12.55971227259627, -36.417588908126575 12.158051136245307 C-36.60120036701851 11.912028508678137, -36.784811825910445 11.666005881110966, -37.165233964640635 11.156274872382316 C-37.32071456537951 10.917414917260219, -37.47619516611839 10.678554962138122, -37.84715887860425 10.108655082055249 C-37.98008149699815 9.872637513222218, -38.11300411539206 9.636619944389189, -38.460561474273504 9.019496659696289 C-38.591116455321774 8.748396448120456, -38.721671436370045 8.477296236544623, -39.00292114880834 7.893275190886686 C-39.13309523757091 7.5717426748983465, -39.26326932633348 7.250210158910007, -39.472009229970325 6.73461856121551 C-39.60737234475218 6.32692642667603, -39.74273545953403 5.919234292136549, -39.86589813421488 5.5482879393051325 C-39.95662921823376 5.202290992840592, -40.047360302252635 4.856294046376051, -40.18296928754556 4.339158212148136 C-40.260656254657405 3.9402520551751214, -40.33834322176925 3.541345898202107, -40.421919776581774 3.112197953150904 C-40.46976623530945 2.741110267611, -40.51761269403713 2.3700225820710963, -40.58176770250937 1.872449005199809 C-40.61216428117897 1.3989977567440766, -40.64256085984857 0.9255465082883442, -40.66185621591342 0.6250057626472781 C-40.66185621591342 0.1401781436495736, -40.66185621591342 -0.34464947534813095, -40.66185621591342 -0.6250057626472687 C-40.642483777519026 -0.9267471277907348, -40.623111339124634 -1.2284884929342008, -40.58176770250937 -1.8724490051997822 C-40.525440446281834 -2.309312081425669, -40.4691131900543 -2.746175157651556, -40.421919776581774 -3.112197953150895 C-40.368862853465075 -3.3846340397704644, -40.31580593034838 -3.6570701263900336, -40.18296928754556 -4.339158212148126 C-40.07550566117478 -4.748963594530212, -39.96804203480399 -5.1587689769123, -39.86589813421489 -5.548287939305123 C-39.732311496092464 -5.9506296091895265, -39.59872485797003 -6.35297127907393, -39.47200922997033 -6.734618561215485 C-39.305686396266715 -7.145439176096651, -39.1393635625631 -7.556259790977816, -39.00292114880834 -7.893275190886676 C-38.809835936291115 -8.29422076604041, -38.6167507237739 -8.695166341194145, -38.460561474273504 -9.019496659696282 C-38.28694853961845 -9.327764005392295, -38.113335604963396 -9.636031351088308, -37.84715887860425 -10.108655082055243 C-37.63340575180375 -10.437037285572222, -37.419652625003245 -10.7654194890892, -37.16523396464064 -11.156274872382308 C-37.015450007670054 -11.356971729123696, -36.865666050699474 -11.557668585865084, -36.41758890812659 -12.158051136245302 C-36.12206065192687 -12.505195442011646, -35.82653239572715 -12.85233974777799, -35.60729594296866 -13.10986736009567 C-35.26778417172028 -13.460441138344438, -34.9282724004719 -13.811014916593205, -34.737684736767996 -14.007812326905677 C-34.451004359021915 -14.268167860827528, -34.16432398127583 -14.52852339474938, -33.81232870850189 -14.848196188198107 C-33.55752276382968 -15.051397148403238, -33.30271681915747 -15.254598108608368, -32.83503034457872 -15.627565626425149 C-32.599351542273084 -15.79196495654264, -32.36367273996745 -15.956364286660135, -31.80980557360571 -16.342718045390885 C-31.427250179325373 -16.574625373548663, -31.044694785045035 -16.80653270170644, -30.74086726407679 -16.99071473040609 C-30.495243140197275 -17.118856678504272, -30.24961901631776 -17.24699862660246, -29.632607912792388 -17.56889292409717 C-29.308787636656042 -17.712238554555533, -28.984967360519697 -17.855584185013896, -28.489581595147804 -18.07487676824742 C-28.21783626132431 -18.174881563080795, -27.946090927500823 -18.27488635791417, -27.31648525146062 -18.506587066708033 C-26.946443565914215 -18.61641349658976, -26.576401880367815 -18.72623992647149, -26.118139386235413 -18.862249829261067 C-25.641881735848244 -18.970952530090326, -25.165624085461076 -19.07965523091958, -24.899468259676766 -19.140403561325773 C-24.538878960892323 -19.198700842741466, -24.17828966210788 -19.25699812415716, -23.665479652847882 -19.3399052695533 C-23.356150247010493 -19.369745905311394, -23.0468208411731 -19.399586541069485, -22.421244289623903 -19.45993515863156 C-22.05508501478443 -19.47167717388987, -21.68892573994496 -19.48341918914818, -21.171875000000007 -19.5 C-21.171875000000004 -19.5, -21.171875000000004 -19.5, -21.171875 -19.5" stroke="none" stroke-width="0" fill="#1f2937" style="fill:#1f2937 !important;stroke:#7dd3fc !important;stroke-width:2px !important"/><path d="M-21.171875 -19.5 C-12.702934639979503 -19.5, -4.233994279959006 -19.5, 21.171875 -19.5 M-21.171875 -19.5 C-11.79900582951086 -19.5, -2.4261366590217186 -19.5, 21.171875 -19.5 M21.171875 -19.5 C21.171875 -19.5, 21.171875 -19.5, 21.171875 -19.5 M21.171875 -19.5 C21.171875 -19.5, 21.171875 -19.5, 21.171875 -19.5 M21.171875 -19.5 C21.441329568751918 -19.491359116441625, 21.710784137503836 -19.482718232883254, 22.4212442896239 -19.45993515863156 M21.171875 -19.5 C21.641528636742702 -19.48493912199501, 22.111182273485408 -19.469878243990017, 22.4212442896239 -19.45993515863156 M22.4212442896239 -19.45993515863156 C22.778102585176633 -19.425509468044478, 23.134960880729366 -19.3910837774574, 23.665479652847864 -19.3399052695533 M22.4212442896239 -19.45993515863156 C22.87385514420361 -19.416272333834446, 23.326465998783316 -19.372609509037336, 23.665479652847864 -19.3399052695533 M23.665479652847864 -19.3399052695533 C23.93693800115995 -19.296017988989135, 24.20839634947204 -19.252130708424968, 24.89946825967676 -19.140403561325776 M23.665479652847864 -19.3399052695533 C24.06696507441944 -19.274996220159554, 24.468450495991014 -19.210087170765807, 24.89946825967676 -19.140403561325776 M24.89946825967676 -19.140403561325776 C25.30823733928854 -19.04710468637192, 25.717006418900322 -18.95380581141806, 26.11813938623539 -18.862249829261074 M24.89946825967676 -19.140403561325776 C25.19589850234283 -19.072745292825356, 25.492328745008898 -19.005087024324936, 26.11813938623539 -18.862249829261074 M26.11813938623539 -18.862249829261074 C26.380425106924662 -18.784404804126343, 26.642710827613932 -18.706559778991608, 27.316485251460602 -18.50658706670804 M26.11813938623539 -18.862249829261074 C26.48335293295259 -18.753856365640438, 26.848566479669792 -18.645462902019798, 27.316485251460602 -18.50658706670804 M27.316485251460602 -18.50658706670804 C27.734097759156906 -18.352901803508097, 28.151710266853215 -18.19921654030815, 28.489581595147794 -18.074876768247425 M27.316485251460602 -18.50658706670804 C27.689157873245215 -18.36944009694335, 28.061830495029824 -18.23229312717866, 28.489581595147794 -18.074876768247425 M28.489581595147794 -18.074876768247425 C28.7944364917786 -17.93992654870817, 29.09929138840941 -17.804976329168916, 29.63260791279238 -17.568892924097174 M28.489581595147794 -18.074876768247425 C28.74765943711734 -17.960633363214686, 29.00573727908688 -17.846389958181945, 29.63260791279238 -17.568892924097174 M29.63260791279238 -17.568892924097174 C30.008980782744977 -17.372539438921233, 30.385353652697574 -17.176185953745293, 30.740867264076783 -16.990714730406097 M29.63260791279238 -17.568892924097174 C29.992260225266595 -17.38126254304768, 30.35191253774081 -17.19363216199818, 30.740867264076783 -16.990714730406097 M30.740867264076783 -16.990714730406097 C31.132417602156107 -16.753354614457216, 31.523967940235426 -16.515994498508334, 31.809805573605697 -16.342718045390892 M30.740867264076783 -16.990714730406097 C31.143454831287077 -16.746663781296064, 31.54604239849737 -16.50261283218603, 31.809805573605697 -16.342718045390892 M31.809805573605697 -16.342718045390892 C32.1950799400451 -16.073967325621286, 32.580354306484494 -15.80521660585168, 32.83503034457871 -15.627565626425154 M31.809805573605697 -16.342718045390892 C32.04329144109543 -16.17984841167036, 32.27677730858515 -16.016978777949824, 32.83503034457871 -15.627565626425154 M32.83503034457871 -15.627565626425154 C33.195543632054836 -15.340065873324432, 33.55605691953096 -15.05256612022371, 33.812328708501866 -14.848196188198123 M32.83503034457871 -15.627565626425154 C33.14977167616311 -15.376567790105183, 33.464513007747506 -15.125569953785213, 33.812328708501866 -14.848196188198123 M33.812328708501866 -14.848196188198123 C34.1385342442489 -14.551944951558182, 34.464739779995945 -14.255693714918241, 34.73768473676799 -14.007812326905688 M33.812328708501866 -14.848196188198123 C34.10649764615495 -14.581039742305176, 34.40066658380803 -14.313883296412229, 34.73768473676799 -14.007812326905688 M34.73768473676799 -14.007812326905688 C34.97609651495025 -13.76163259196149, 35.2145082931325 -13.515452857017292, 35.60729594296865 -13.10986736009568 M34.73768473676799 -14.007812326905688 C34.91456692506105 -13.825166945195363, 35.091449113354116 -13.642521563485039, 35.60729594296865 -13.10986736009568 M35.60729594296865 -13.10986736009568 C35.81487708836026 -12.866030735016908, 36.02245823375188 -12.622194109938134, 36.41758890812658 -12.158051136245305 M35.60729594296865 -13.10986736009568 C35.86019254727839 -12.812800618449023, 36.11308915158812 -12.515733876802367, 36.41758890812658 -12.158051136245305 M36.41758890812658 -12.158051136245305 C36.66448573975571 -11.827231874626351, 36.91138257138484 -11.496412613007397, 37.165233964640635 -11.156274872382312 M36.41758890812658 -12.158051136245305 C36.59595698142704 -11.919054167688463, 36.774325054727484 -11.680057199131623, 37.165233964640635 -11.156274872382312 M37.165233964640635 -11.156274872382312 C37.35045713200755 -10.871722347922121, 37.53568029937447 -10.587169823461931, 37.84715887860425 -10.108655082055241 M37.165233964640635 -11.156274872382312 C37.33846948688917 -10.890138589957397, 37.51170500913769 -10.624002307532482, 37.84715887860425 -10.108655082055241 M37.84715887860425 -10.108655082055241 C38.05183057035128 -9.745239768102232, 38.25650226209831 -9.381824454149221, 38.460561474273504 -9.019496659696287 M37.84715887860425 -10.108655082055241 C37.983345773572715 -9.866841459620236, 38.119532668541176 -9.625027837185232, 38.460561474273504 -9.019496659696287 M38.460561474273504 -9.019496659696287 C38.6135658077889 -8.70177988738327, 38.7665701413043 -8.38406311507025, 39.00292114880834 -7.893275190886684 M38.460561474273504 -9.019496659696287 C38.576593323111204 -8.778554042900955, 38.692625171948904 -8.537611426105624, 39.00292114880834 -7.893275190886684 M39.00292114880834 -7.893275190886684 C39.157464381580034 -7.511550418050454, 39.312007614351735 -7.1298256452142255, 39.472009229970325 -6.734618561215508 M39.00292114880834 -7.893275190886684 C39.10835385658935 -7.632854364264848, 39.213786564370366 -7.37243353764301, 39.472009229970325 -6.734618561215508 M39.472009229970325 -6.734618561215508 C39.61749827239321 -6.2964287459687025, 39.7629873148161 -5.858238930721896, 39.86589813421488 -5.548287939305138 M39.472009229970325 -6.734618561215508 C39.62507709737073 -6.273602532658198, 39.77814496477114 -5.812586504100889, 39.86589813421488 -5.548287939305138 M39.86589813421488 -5.548287939305138 C39.96451697972865 -5.1722115396831185, 40.06313582524242 -4.796135140061099, 40.18296928754556 -4.339158212148133 M39.86589813421488 -5.548287939305138 C39.95923845419845 -5.192340845257227, 40.05257877418201 -4.836393751209315, 40.18296928754556 -4.339158212148133 M40.18296928754556 -4.339158212148133 C40.257889991495766 -3.9544562318602003, 40.33281069544598 -3.569754251572268, 40.421919776581774 -3.1121979531509023 M40.18296928754556 -4.339158212148133 C40.2310954848434 -4.092040360499117, 40.27922168214124 -3.8449225088501002, 40.421919776581774 -3.1121979531509023 M40.421919776581774 -3.1121979531509023 C40.47311337293086 -2.7151505291864155, 40.524306969279955 -2.3181031052219283, 40.58176770250937 -1.872449005199798 M40.421919776581774 -3.1121979531509023 C40.47867057338629 -2.6720499798474857, 40.535421370190804 -2.231902006544069, 40.58176770250937 -1.872449005199798 M40.58176770250937 -1.872449005199798 C40.605251460234506 -1.5066705228827237, 40.628735217959644 -1.1408920405656495, 40.66185621591342 -0.6250057626472757 M40.58176770250937 -1.872449005199798 C40.597966828382816 -1.6201345440217554, 40.614165954256265 -1.3678200828437126, 40.66185621591342 -0.6250057626472757 M40.66185621591342 -0.6250057626472757 C40.66185621591342 -0.19067247751562638, 40.66185621591342 0.24366080761602293, 40.66185621591342 0.625005762647271 M40.66185621591342 -0.6250057626472757 C40.66185621591342 -0.24073955343230707, 40.66185621591342 0.14352665578266155, 40.66185621591342 0.625005762647271 M40.66185621591342 0.625005762647271 C40.630987093411115 1.105817262727855, 40.60011797090881 1.5866287628084392, 40.58176770250937 1.8724490051997846 M40.66185621591342 0.625005762647271 C40.63240990298897 1.0836558550815085, 40.602963590064526 1.5423059475157457, 40.58176770250937 1.8724490051997846 M40.58176770250937 1.8724490051997846 C40.54478322334153 2.159293322214024, 40.5077987441737 2.446137639228263, 40.421919776581774 3.1121979531508885 M40.58176770250937 1.8724490051997846 C40.529210660273854 2.2800710462165523, 40.476653618038334 2.6876930872333205, 40.421919776581774 3.1121979531508885 M40.421919776581774 3.1121979531508885 C40.35844265973893 3.4381395322455233, 40.29496554289608 3.7640811113401584, 40.18296928754556 4.339158212148129 M40.421919776581774 3.1121979531508885 C40.37396747665677 3.3584228785435912, 40.32601517673177 3.604647803936294, 40.18296928754556 4.339158212148129 M40.18296928754556 4.339158212148129 C40.06908511682657 4.77344791281145, 39.95520094610758 5.207737613474772, 39.86589813421489 5.548287939305125 M40.18296928754556 4.339158212148129 C40.06469712026491 4.7901812454708095, 39.94642495298426 5.241204278793489, 39.86589813421489 5.548287939305125 M39.86589813421489 5.548287939305125 C39.744674817492985 5.913393254958899, 39.62345150077109 6.278498570612672, 39.472009229970325 6.734618561215495 M39.86589813421489 5.548287939305125 C39.7749493299744 5.822211246953398, 39.68400052573391 6.0961345546016705, 39.472009229970325 6.734618561215495 M39.472009229970325 6.734618561215495 C39.30009260418908 7.159255950677004, 39.128175978407846 7.583893340138512, 39.00292114880834 7.893275190886679 M39.472009229970325 6.734618561215495 C39.345136215557254 7.0479973597386465, 39.21826320114418 7.361376158261798, 39.00292114880834 7.893275190886679 M39.00292114880834 7.893275190886679 C38.84883244287891 8.213243685719293, 38.694743736949476 8.533212180551907, 38.460561474273504 9.019496659696284 M39.00292114880834 7.893275190886679 C38.832342878677 8.247484618604712, 38.66176460854565 8.601694046322745, 38.460561474273504 9.019496659696284 M38.460561474273504 9.019496659696284 C38.314953421656064 9.278038501532698, 38.16934536903863 9.536580343369112, 37.84715887860425 10.108655082055236 M38.460561474273504 9.019496659696284 C38.32063800855604 9.267944941864961, 38.180714542838565 9.516393224033639, 37.84715887860425 10.108655082055236 M37.84715887860425 10.108655082055236 C37.66612866425571 10.386766104713663, 37.48509844990717 10.664877127372092, 37.16523396464064 11.156274872382301 M37.84715887860425 10.108655082055236 C37.61922329734728 10.458825344139603, 37.391287716090325 10.808995606223972, 37.16523396464064 11.156274872382301 M37.16523396464064 11.156274872382301 C37.01246763784756 11.360967832986356, 36.85970131105447 11.565660793590412, 36.41758890812658 12.158051136245302 M37.16523396464064 11.156274872382301 C36.91891183332514 11.486324087937268, 36.67258970200964 11.816373303492234, 36.41758890812658 12.158051136245302 M36.41758890812658 12.158051136245302 C36.15743754288234 12.463639732893222, 35.8972861776381 12.769228329541141, 35.60729594296866 13.10986736009567 M36.41758890812658 12.158051136245302 C36.17496536009297 12.443050561436564, 35.932341812059356 12.728049986627827, 35.60729594296866 13.10986736009567 M35.60729594296866 13.10986736009567 C35.39138806747177 13.332809967912452, 35.175480191974884 13.555752575729233, 34.73768473676799 14.007812326905684 M35.60729594296866 13.10986736009567 C35.403275247283716 13.320535478801007, 35.19925455159877 13.531203597506343, 34.73768473676799 14.007812326905684 M34.73768473676799 14.007812326905684 C34.53547013328424 14.191458279484403, 34.333255529800496 14.375104232063123, 33.81232870850189 14.848196188198111 M34.73768473676799 14.007812326905684 C34.510142599578955 14.214460075465727, 34.28260046238992 14.421107824025768, 33.81232870850189 14.848196188198111 M33.81232870850189 14.848196188198111 C33.422777118950016 15.158853214462571, 33.03322552939814 15.469510240727029, 32.83503034457871 15.627565626425152 M33.81232870850189 14.848196188198111 C33.53849165379186 15.066573952219292, 33.26465459908183 15.284951716240474, 32.83503034457871 15.627565626425152 M32.83503034457871 15.627565626425152 C32.50289657976369 15.859247762921163, 32.170762814948674 16.090929899417173, 31.809805573605708 16.34271804539089 M32.83503034457871 15.627565626425152 C32.49046287969015 15.867920973846264, 32.14589541480159 16.108276321267375, 31.809805573605708 16.34271804539089 M31.809805573605708 16.34271804539089 C31.56064003742694 16.49376365768168, 31.31147450124817 16.64480926997247, 30.740867264076787 16.990714730406093 M31.809805573605708 16.34271804539089 C31.404216327115694 16.58858863012011, 30.998627080625685 16.834459214849335, 30.740867264076787 16.990714730406093 M30.740867264076787 16.990714730406093 C30.406293016402365 17.165261901112803, 30.071718768727948 17.339809071819516, 29.632607912792388 17.56889292409717 M30.740867264076787 16.990714730406093 C30.343008055392392 17.198277624735756, 29.945148846707994 17.40584051906542, 29.632607912792388 17.56889292409717 M29.632607912792388 17.56889292409717 C29.200528596340895 17.76016162031272, 28.768449279889406 17.951430316528267, 28.489581595147804 18.07487676824742 M29.632607912792388 17.56889292409717 C29.264458060398436 17.731861942974618, 28.896308208004488 17.894830961852062, 28.489581595147804 18.07487676824742 M28.489581595147804 18.07487676824742 C28.23703811958492 18.16781510174086, 27.984494644022035 18.260753435234296, 27.316485251460616 18.506587066708033 M28.489581595147804 18.07487676824742 C28.219577509215465 18.17424076776093, 27.949573423283127 18.273604767274442, 27.316485251460616 18.506587066708033 M27.316485251460616 18.506587066708033 C27.067187841315295 18.580577229450356, 26.817890431169975 18.65456739219268, 26.118139386235413 18.86224982926107 M27.316485251460616 18.506587066708033 C26.987556353250614 18.604211437113744, 26.65862745504061 18.701835807519455, 26.118139386235413 18.86224982926107 M26.118139386235413 18.86224982926107 C25.843296747384024 18.92498086806307, 25.56845410853263 18.987711906865066, 24.899468259676766 19.140403561325773 M26.118139386235413 18.86224982926107 C25.76263994773695 18.943390256247707, 25.407140509238488 19.024530683234342, 24.899468259676766 19.140403561325773 M24.899468259676766 19.140403561325773 C24.472162841792432 19.209486987486304, 24.0448574239081 19.278570413646836, 23.66547965284788 19.3399052695533 M24.899468259676766 19.140403561325773 C24.554526032126176 19.196171145609224, 24.209583804575587 19.25193872989268, 23.66547965284788 19.3399052695533 M23.66547965284788 19.3399052695533 C23.301575851234286 19.37501063163661, 22.937672049620694 19.41011599371992, 22.4212442896239 19.45993515863156 M23.66547965284788 19.3399052695533 C23.401312570414262 19.36538915028827, 23.13714548798065 19.390873031023244, 22.4212442896239 19.45993515863156 M22.4212442896239 19.45993515863156 C21.96609048354324 19.474531055289425, 21.51093667746258 19.489126951947295, 21.171875000000004 19.5 M22.4212442896239 19.45993515863156 C21.97561022595158 19.474225775679447, 21.52997616227926 19.488516392727334, 21.171875000000004 19.5 M21.171875000000004 19.5 C21.171875000000004 19.5, 21.171875 19.5, 21.171875 19.5 M21.171875000000004 19.5 C21.171875000000004 19.5, 21.171875 19.5, 21.171875 19.5 M21.171875 19.5 C9.226250365827582 19.5, -2.7193742683448363 19.5, -21.171874999999996 19.5 M21.171875 19.5 C12.619925911320024 19.5, 4.067976822640048 19.5, -21.171874999999996 19.5 M-21.171874999999996 19.5 C-21.45673138609906 19.490865210137123, -21.741587772198127 19.481730420274246, -22.421244289623893 19.45993515863156 M-21.171874999999996 19.5 C-21.59441330973801 19.48645001882763, -22.01695161947602 19.472900037655258, -22.421244289623893 19.45993515863156 M-22.421244289623893 19.45993515863156 C-22.754853626986275 19.42775226708014, -23.088462964348654 19.39556937552872, -23.66547965284787 19.3399052695533 M-22.421244289623893 19.45993515863156 C-22.77952217797715 19.425372521634323, -23.137800066330406 19.390809884637086, -23.66547965284787 19.3399052695533 M-23.66547965284787 19.3399052695533 C-24.04610142318481 19.278369293491135, -24.42672319352174 19.216833317428975, -24.89946825967676 19.140403561325773 M-23.66547965284787 19.3399052695533 C-23.929125941638265 19.297280982189175, -24.192772230428655 19.254656694825048, -24.89946825967676 19.140403561325773 M-24.89946825967676 19.140403561325773 C-25.31286203025529 19.046049130837684, -25.726255800833815 18.9516947003496, -26.118139386235388 18.862249829261074 M-24.89946825967676 19.140403561325773 C-25.34280734259269 19.039214308708097, -25.78614642550862 18.938025056090424, -26.118139386235388 18.862249829261074 M-26.118139386235388 18.862249829261074 C-26.44088422025383 18.766460856646606, -26.763629054272275 18.670671884032135, -27.31648525146059 18.506587066708043 M-26.118139386235388 18.862249829261074 C-26.463853992503815 18.759643548813607, -26.80956859877224 18.657037268366135, -27.31648525146059 18.506587066708043 M-27.31648525146059 18.506587066708043 C-27.622307826179792 18.394041532218488, -27.928130400898993 18.28149599772893, -28.489581595147797 18.074876768247425 M-27.31648525146059 18.506587066708043 C-27.73315608671165 18.353248347672675, -28.149826921962706 18.199909628637307, -28.489581595147797 18.074876768247425 M-28.489581595147797 18.074876768247425 C-28.90410838001276 17.891378057087884, -29.318635164877726 17.70787934592834, -29.63260791279238 17.568892924097174 M-28.489581595147797 18.074876768247425 C-28.905881889412736 17.8905929770858, -29.322182183677675 17.706309185924177, -29.63260791279238 17.568892924097174 M-29.63260791279238 17.568892924097174 C-29.90558245122409 17.426482282245885, -30.178556989655803 17.2840716403946, -30.74086726407678 16.990714730406097 M-29.63260791279238 17.568892924097174 C-29.925654646242155 17.416010630961818, -30.21870137969193 17.263128337826462, -30.74086726407678 16.990714730406097 M-30.74086726407678 16.990714730406097 C-30.996245346781848 16.83590303590209, -31.251623429486912 16.68109134139808, -31.809805573605686 16.3427180453909 M-30.74086726407678 16.990714730406097 C-31.135147837430445 16.751699529789267, -31.529428410784107 16.51268432917244, -31.809805573605686 16.3427180453909 M-31.809805573605686 16.3427180453909 C-32.074556078074906 16.158039554337794, -32.339306582544125 15.97336106328469, -32.83503034457871 15.627565626425156 M-31.809805573605686 16.3427180453909 C-32.08694158214401 16.14939996285902, -32.36407759068232 15.956081880327144, -32.83503034457871 15.627565626425156 M-32.83503034457871 15.627565626425156 C-33.07640286921449 15.435077461220759, -33.31777539385027 15.24258929601636, -33.812328708501866 14.848196188198125 M-32.83503034457871 15.627565626425156 C-33.086233569517354 15.42723773933515, -33.33743679445599 15.226909852245141, -33.812328708501866 14.848196188198125 M-33.812328708501866 14.848196188198125 C-34.09650450729814 14.59011524661096, -34.38068030609442 14.332034305023797, -34.737684736767974 14.007812326905697 M-33.812328708501866 14.848196188198125 C-34.023563645405055 14.656358207472813, -34.234798582308244 14.464520226747501, -34.737684736767974 14.007812326905697 M-34.737684736767974 14.007812326905697 C-35.02831726029079 13.707710384994446, -35.31894978381361 13.407608443083195, -35.607295942968655 13.109867360095677 M-34.737684736767974 14.007812326905697 C-35.00721493792944 13.72950026536543, -35.276745139090906 13.451188203825163, -35.607295942968655 13.109867360095677 M-35.607295942968655 13.109867360095677 C-35.892481689068774 12.774871955197819, -36.177667435168885 12.43987655029996, -36.417588908126575 12.158051136245307 M-35.607295942968655 13.109867360095677 C-35.90730648721913 12.757457903735494, -36.20731703146961 12.40504844737531, -36.417588908126575 12.158051136245307 M-36.417588908126575 12.158051136245307 C-36.67655493166217 11.811060256997697, -36.93552095519776 11.464069377750087, -37.165233964640635 11.156274872382316 M-36.417588908126575 12.158051136245307 C-36.593514670778376 11.922326641458582, -36.76944043343018 11.68660214667186, -37.165233964640635 11.156274872382316 M-37.165233964640635 11.156274872382316 C-37.301821234862594 10.94644014650381, -37.43840850508456 10.736605420625304, -37.84715887860425 10.108655082055249 M-37.165233964640635 11.156274872382316 C-37.30486733062501 10.941760525421508, -37.444500696609374 10.7272461784607, -37.84715887860425 10.108655082055249 M-37.84715887860425 10.108655082055249 C-38.048165340509776 9.75174775483059, -38.249171802415304 9.394840427605933, -38.460561474273504 9.019496659696289 M-37.84715887860425 10.108655082055249 C-38.01120097669648 9.817381725828811, -38.17524307478872 9.526108369602376, -38.460561474273504 9.019496659696289 M-38.460561474273504 9.019496659696289 C-38.573404723497326 8.785175238224273, -38.686247972721155 8.550853816752255, -39.00292114880834 7.893275190886686 M-38.460561474273504 9.019496659696289 C-38.578198998389645 8.775219823829323, -38.695836522505786 8.530942987962359, -39.00292114880834 7.893275190886686 M-39.00292114880834 7.893275190886686 C-39.106499073479426 7.637435714406158, -39.21007699815052 7.3815962379256295, -39.472009229970325 6.73461856121551 M-39.00292114880834 7.893275190886686 C-39.12825080725303 7.583708511444202, -39.253580465697716 7.274141832001718, -39.472009229970325 6.73461856121551 M-39.472009229970325 6.73461856121551 C-39.62153476935705 6.284271460242074, -39.77106030874378 5.833924359268639, -39.86589813421488 5.5482879393051325 M-39.472009229970325 6.73461856121551 C-39.61707958982288 6.297689751162541, -39.76214994967543 5.860760941109572, -39.86589813421488 5.5482879393051325 M-39.86589813421488 5.5482879393051325 C-39.982203853899065 5.1047638229315595, -40.09850957358326 4.661239706557987, -40.18296928754556 4.339158212148136 M-39.86589813421488 5.5482879393051325 C-39.936280249727595 5.279890429053346, -40.0066623652403 5.01149291880156, -40.18296928754556 4.339158212148136 M-40.18296928754556 4.339158212148136 C-40.24695193476309 4.0106208414234175, -40.31093458198061 3.682083470698699, -40.421919776581774 3.112197953150904 M-40.18296928754556 4.339158212148136 C-40.2778759668089 3.851832472664636, -40.372782646072245 3.364506733181136, -40.421919776581774 3.112197953150904 M-40.421919776581774 3.112197953150904 C-40.45472606607315 2.8577588501903963, -40.48753235556453 2.6033197472298886, -40.58176770250937 1.872449005199809 M-40.421919776581774 3.112197953150904 C-40.47719752516149 2.683474650992758, -40.532475273741206 2.2547513488346116, -40.58176770250937 1.872449005199809 M-40.58176770250937 1.872449005199809 C-40.6036927614889 1.530948514004458, -40.62561782046844 1.189448022809107, -40.66185621591342 0.6250057626472781 M-40.58176770250937 1.872449005199809 C-40.607260344376094 1.4753805308353678, -40.63275298624282 1.0783120564709265, -40.66185621591342 0.6250057626472781 M-40.66185621591342 0.6250057626472781 C-40.66185621591342 0.15745652555885553, -40.66185621591342 -0.3100927115295671, -40.66185621591342 -0.6250057626472687 M-40.66185621591342 0.6250057626472781 C-40.66185621591342 0.15094451069358866, -40.66185621591342 -0.3231167412601008, -40.66185621591342 -0.6250057626472687 M-40.66185621591342 -0.6250057626472687 C-40.634042976011244 -1.0582194245667491, -40.60622973610907 -1.4914330864862295, -40.58176770250937 -1.8724490051997822 M-40.66185621591342 -0.6250057626472687 C-40.63598688887254 -1.0279414126539295, -40.61011756183166 -1.43087706266059, -40.58176770250937 -1.8724490051997822 M-40.58176770250937 -1.8724490051997822 C-40.54826058173426 -2.132323617202081, -40.51475346095916 -2.3921982292043795, -40.421919776581774 -3.112197953150895 M-40.58176770250937 -1.8724490051997822 C-40.53551047633337 -2.2312109168983096, -40.489253250157375 -2.5899728285968373, -40.421919776581774 -3.112197953150895 M-40.421919776581774 -3.112197953150895 C-40.353472849089044 -3.463658459562832, -40.28502592159631 -3.8151189659747686, -40.18296928754556 -4.339158212148126 M-40.421919776581774 -3.112197953150895 C-40.35520791924358 -3.454749241026482, -40.288496061905384 -3.7973005289020683, -40.18296928754556 -4.339158212148126 M-40.18296928754556 -4.339158212148126 C-40.104709265376385 -4.637597594787359, -40.02644924320721 -4.9360369774265935, -39.86589813421489 -5.548287939305123 M-40.18296928754556 -4.339158212148126 C-40.065683720088266 -4.786418912749276, -39.94839815263097 -5.233679613350425, -39.86589813421489 -5.548287939305123 M-39.86589813421489 -5.548287939305123 C-39.77222400526525 -5.830419490755821, -39.678549876315614 -6.11255104220652, -39.47200922997033 -6.734618561215485 M-39.86589813421489 -5.548287939305123 C-39.77479278245668 -5.822682743134307, -39.68368743069847 -6.097077546963493, -39.47200922997033 -6.734618561215485 M-39.47200922997033 -6.734618561215485 C-39.322407185298836 -7.104138503912848, -39.17280514062734 -7.4736584466102105, -39.00292114880834 -7.893275190886676 M-39.47200922997033 -6.734618561215485 C-39.3120288051494 -7.129773303534275, -39.15204838032847 -7.524928045853065, -39.00292114880834 -7.893275190886676 M-39.00292114880834 -7.893275190886676 C-38.7879363555981 -8.339695713925423, -38.572951562387864 -8.786116236964167, -38.460561474273504 -9.019496659696282 M-39.00292114880834 -7.893275190886676 C-38.84001794188597 -8.231547185631236, -38.677114734963595 -8.569819180375795, -38.460561474273504 -9.019496659696282 M-38.460561474273504 -9.019496659696282 C-38.30253012425001 -9.300097324072423, -38.14449877422652 -9.580697988448565, -37.84715887860425 -10.108655082055243 M-38.460561474273504 -9.019496659696282 C-38.30744864599553 -9.29136399065892, -38.15433581771756 -9.563231321621561, -37.84715887860425 -10.108655082055243 M-37.84715887860425 -10.108655082055243 C-37.638770529960574 -10.428795545678687, -37.43038218131691 -10.748936009302131, -37.16523396464064 -11.156274872382308 M-37.84715887860425 -10.108655082055243 C-37.585327649288885 -10.510898161813257, -37.323496419973516 -10.913141241571271, -37.16523396464064 -11.156274872382308 M-37.16523396464064 -11.156274872382308 C-36.87133310363317 -11.550075251213075, -36.5774322426257 -11.943875630043841, -36.41758890812659 -12.158051136245302 M-37.16523396464064 -11.156274872382308 C-36.889377361712405 -11.525897589252626, -36.61352075878417 -11.895520306122943, -36.41758890812659 -12.158051136245302 M-36.41758890812659 -12.158051136245302 C-36.12807901010604 -12.498125936040108, -35.838569112085494 -12.838200735834914, -35.60729594296866 -13.10986736009567 M-36.41758890812659 -12.158051136245302 C-36.20995994712451 -12.401943928260915, -36.00233098612242 -12.645836720276527, -35.60729594296866 -13.10986736009567 M-35.60729594296866 -13.10986736009567 C-35.38648069489412 -13.33787723300166, -35.16566544681958 -13.565887105907649, -34.737684736767996 -14.007812326905677 M-35.60729594296866 -13.10986736009567 C-35.347249601489196 -13.378386557874911, -35.08720326000973 -13.646905755654153, -34.737684736767996 -14.007812326905677 M-34.737684736767996 -14.007812326905677 C-34.46766449670554 -14.253037564586345, -34.19764425664309 -14.49826280226701, -33.81232870850189 -14.848196188198107 M-34.737684736767996 -14.007812326905677 C-34.48977340503084 -14.232958839014966, -34.24186207329369 -14.458105351124255, -33.81232870850189 -14.848196188198107 M-33.81232870850189 -14.848196188198107 C-33.551269814109624 -15.056383709407, -33.29021091971737 -15.26457123061589, -32.83503034457872 -15.627565626425149 M-33.81232870850189 -14.848196188198107 C-33.5520624438413 -15.055751608288752, -33.29179617918071 -15.263307028379398, -32.83503034457872 -15.627565626425149 M-32.83503034457872 -15.627565626425149 C-32.529650021726276 -15.840585719945901, -32.22426969887383 -16.053605813466653, -31.80980557360571 -16.342718045390885 M-32.83503034457872 -15.627565626425149 C-32.58258020485514 -15.803663915505904, -32.33013006513156 -15.97976220458666, -31.80980557360571 -16.342718045390885 M-31.80980557360571 -16.342718045390885 C-31.533845522997925 -16.51000664979059, -31.25788547239014 -16.677295254190295, -30.74086726407679 -16.99071473040609 M-31.80980557360571 -16.342718045390885 C-31.570531636703077 -16.487767312070993, -31.331257699800442 -16.632816578751104, -30.74086726407679 -16.99071473040609 M-30.74086726407679 -16.99071473040609 C-30.394349200133032 -17.171492982410136, -30.047831136189277 -17.352271234414182, -29.632607912792388 -17.56889292409717 M-30.74086726407679 -16.99071473040609 C-30.30303672295862 -17.219130643263593, -29.86520618184045 -17.4475465561211, -29.632607912792388 -17.56889292409717 M-29.632607912792388 -17.56889292409717 C-29.231468950230525 -17.74646524345877, -28.830329987668662 -17.924037562820367, -28.489581595147804 -18.07487676824742 M-29.632607912792388 -17.56889292409717 C-29.231127226883796 -17.746616514247503, -28.8296465409752 -17.924340104397835, -28.489581595147804 -18.07487676824742 M-28.489581595147804 -18.07487676824742 C-28.112046683992236 -18.21381310544713, -27.734511772836672 -18.352749442646843, -27.31648525146062 -18.506587066708033 M-28.489581595147804 -18.07487676824742 C-28.02647540495084 -18.245304127146596, -27.56336921475388 -18.415731486045775, -27.31648525146062 -18.506587066708033 M-27.31648525146062 -18.506587066708033 C-26.99555914833871 -18.601836249539126, -26.6746330452168 -18.697085432370216, -26.118139386235413 -18.862249829261067 M-27.31648525146062 -18.506587066708033 C-26.89144187024735 -18.632737711153894, -26.46639848903408 -18.75888835559976, -26.118139386235413 -18.862249829261067 M-26.118139386235413 -18.862249829261067 C-25.802014621951116 -18.934403243802084, -25.485889857666816 -19.006556658343097, -24.899468259676766 -19.140403561325773 M-26.118139386235413 -18.862249829261067 C-25.749698509074847 -18.94634405517155, -25.381257631914284 -19.03043828108203, -24.899468259676766 -19.140403561325773 M-24.899468259676766 -19.140403561325773 C-24.616233422803425 -19.18619477323249, -24.332998585930085 -19.231985985139207, -23.665479652847882 -19.3399052695533 M-24.899468259676766 -19.140403561325773 C-24.446685425620597 -19.213605978552653, -23.99390259156443 -19.286808395779534, -23.665479652847882 -19.3399052695533 M-23.665479652847882 -19.3399052695533 C-23.282399043410756 -19.37686059522386, -22.89931843397363 -19.41381592089442, -22.421244289623903 -19.45993515863156 M-23.665479652847882 -19.3399052695533 C-23.352859912542385 -19.370063319920323, -23.04024017223689 -19.40022137028735, -22.421244289623903 -19.45993515863156 M-22.421244289623903 -19.45993515863156 C-22.10225590461704 -19.470164495265504, -21.78326751961017 -19.48039383189945, -21.171875000000007 -19.5 M-22.421244289623903 -19.45993515863156 C-22.11233905118221 -19.469841148380812, -21.803433812740522 -19.479747138130065, -21.171875000000007 -19.5 M-21.171875000000007 -19.5 C-21.171875000000004 -19.5, -21.171875 -19.5, -21.171875 -19.5 M-21.171875000000007 -19.5 C-21.171875000000004 -19.5, -21.171875000000004 -19.5, -21.171875 -19.5" stroke="#7dd3fc" stroke-width="2" fill="none" stroke-dasharray="0 0" style="fill:#1f2937 !important;stroke:#7dd3fc !important;stroke-width:2px !important"/></g><g class="label" style="color:#f8fafc !important" transform="translate(-28.296875, -12)"><rect/><foreignObject width="56.59375" height="24"><div style="color: rgb(248, 250, 252) !important; display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;" xmlns="http://www.w3.org/1999/xhtml"><span style="color:#f8fafc !important" class="nodeLabel"><p>Request</p></span></div></foreignObject></g></g><g class="node default contract" id="my-svg-flowchart-PROFILE-1" data-look="classic" transform="translate(246.47215270996094, 300.25)"><rect class="basic label-container" style="fill:#172554 !important;stroke:#60a5fa !important;stroke-width:2px !important" x="-82.1484375" y="-27" width="164.296875" height="54"/><g class="label" style="color:#dbeafe !important" transform="translate(-52.1484375, -12)"><rect/><foreignObject width="104.296875" height="24"><div style="color: rgb(219, 234, 254) !important; display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;" xmlns="http://www.w3.org/1999/xhtml"><span style="color:#dbeafe !important" class="nodeLabel"><p>Project profile</p></span></div></foreignObject></g></g><g class="node default contract" id="my-svg-flowchart-CONTRACT-3" data-look="classic" transform="translate(468.55809020996094, 300.25)"><rect class="basic label-container" style="fill:#172554 !important;stroke:#60a5fa !important;stroke-width:2px !important" x="-89.9375" y="-27" width="179.875" height="54"/><g class="label" style="color:#dbeafe !important" transform="translate(-59.9375, -12)"><rect/><foreignObject width="119.875" height="24"><div style="color: rgb(219, 234, 254) !important; display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;" xmlns="http://www.w3.org/1999/xhtml"><span style="color:#dbeafe !important" class="nodeLabel"><p>Current contract</p></span></div></foreignObject></g></g><g class="node default contract" id="my-svg-flowchart-ROUTE-5" data-look="classic" transform="translate(708.3549652099609, 300.25)"><rect class="basic label-container" style="fill:#172554 !important;stroke:#60a5fa !important;stroke-width:2px !important" x="-99.859375" y="-27" width="199.71875" height="54"/><g class="label" style="color:#dbeafe !important" transform="translate(-69.859375, -12)"><rect/><foreignObject width="139.71875" height="24"><div style="color: rgb(219, 234, 254) !important; display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;" xmlns="http://www.w3.org/1999/xhtml"><span style="color:#dbeafe !important" class="nodeLabel"><p>Deterministic route</p></span></div></foreignObject></g></g><g class="node default contract" id="my-svg-flowchart-GATES-7" data-look="classic" transform="translate(991.3549652099609, 300.25)"><rect class="basic label-container" style="fill:#172554 !important;stroke:#60a5fa !important;stroke-width:2px !important" x="-83.140625" y="-27" width="166.28125" height="54"/><g class="label" style="color:#dbeafe !important" transform="translate(-53.140625, -12)"><rect/><foreignObject width="106.28125" height="24"><div style="color: rgb(219, 234, 254) !important; display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;" xmlns="http://www.w3.org/1999/xhtml"><span style="color:#dbeafe !important" class="nodeLabel"><p>Required gates</p></span></div></foreignObject></g></g><g class="node default contract" id="my-svg-flowchart-PREFLIGHT-9" data-look="classic" transform="translate(1220.987777709961, 300.25)"><rect class="basic label-container" style="fill:#172554 !important;stroke:#60a5fa !important;stroke-width:2px !important" x="-96.4921875" y="-27" width="192.984375" height="54"/><g class="label" style="color:#dbeafe !important" transform="translate(-66.4921875, -12)"><rect/><foreignObject width="132.984375" height="24"><div style="color: rgb(219, 234, 254) !important; display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;" xmlns="http://www.w3.org/1999/xhtml"><span style="color:#dbeafe !important" class="nodeLabel"><p>PREFLIGHT_READY</p></span></div></foreignObject></g></g><g class="node default contract" id="my-svg-flowchart-STATE-11" data-look="classic" transform="translate(1476.167465209961, 207.25)"><rect class="basic label-container" style="fill:#172554 !important;stroke:#60a5fa !important;stroke-width:2px !important" x="-108.6875" y="-27" width="217.375" height="54"/><g class="label" style="color:#dbeafe !important" transform="translate(-78.6875, -12)"><rect/><foreignObject width="157.375" height="24"><div style="color: rgb(219, 234, 254) !important; display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;" xmlns="http://www.w3.org/1999/xhtml"><span style="color:#dbeafe !important" class="nodeLabel"><p>Resumable work state</p></span></div></foreignObject></g></g><g class="node default execution" id="my-svg-flowchart-EXECUTE-13" data-look="classic" transform="translate(1771.769027709961, 207.25)"><rect class="basic label-container" style="fill:#312e81 !important;stroke:#a78bfa !important;stroke-width:2px !important" x="-86.9140625" y="-27" width="173.828125" height="54"/><g class="label" style="color:#ede9fe !important" transform="translate(-56.9140625, -12)"><rect/><foreignObject width="113.828125" height="24"><div style="color: rgb(237, 233, 254) !important; display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;" xmlns="http://www.w3.org/1999/xhtml"><span style="color:#ede9fe !important" class="nodeLabel"><p>Implementation</p></span></div></foreignObject></g></g><g class="node default execution" id="my-svg-flowchart-CHECKS-15" data-look="classic" transform="translate(2036.292465209961, 197.25)"><rect class="basic label-container" style="fill:#312e81 !important;stroke:#a78bfa !important;stroke-width:2px !important" x="-121.421875" y="-27" width="242.84375" height="54"/><g class="label" style="color:#ede9fe !important" transform="translate(-91.421875, -12)"><rect/><foreignObject width="182.84375" height="24"><div style="color: rgb(237, 233, 254) !important; display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;" xmlns="http://www.w3.org/1999/xhtml"><span style="color:#ede9fe !important" class="nodeLabel"><p>run-check / record-check</p></span></div></foreignObject></g></g><g class="node default evidence" id="my-svg-flowchart-EVIDENCE-17" data-look="classic" transform="translate(2316.323715209961, 166.25)"><rect class="basic label-container" style="fill:#134e4a !important;stroke:#5eead4 !important;stroke-width:2px !important" x="-102.421875" y="-27" width="204.84375" height="54"/><g class="label" style="color:#ccfbf1 !important" transform="translate(-72.421875, -12)"><rect/><foreignObject width="144.84375" height="24"><div style="color: rgb(204, 251, 241) !important; display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;" xmlns="http://www.w3.org/1999/xhtml"><span style="color:#ccfbf1 !important" class="nodeLabel"><p>Structured evidence</p></span></div></foreignObject></g></g><g class="node default evidence" id="my-svg-flowchart-REVIEW-19" data-look="classic" transform="translate(2726.636215209961, 104.25)"><rect class="basic label-container" style="fill:#134e4a !important;stroke:#5eead4 !important;stroke-width:2px !important" x="-55.2109375" y="-27" width="110.421875" height="54"/><g class="label" style="color:#ccfbf1 !important" transform="translate(-25.2109375, -12)"><rect/><foreignObject width="50.421875" height="24"><div style="color: rgb(204, 251, 241) !important; display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;" xmlns="http://www.w3.org/1999/xhtml"><span style="color:#ccfbf1 !important" class="nodeLabel"><p>Review</p></span></div></foreignObject></g></g><g class="node default terminal" id="my-svg-flowchart-COMPLETE-21" data-look="classic" transform="translate(3069.698715209961, 88.25)"><rect class="basic label-container" style="fill:#14532d !important;stroke:#86efac !important;stroke-width:2px !important" x="-91.109375" y="-27" width="182.21875" height="54"/><g class="label" style="color:#dcfce7 !important" transform="translate(-61.109375, -12)"><rect/><foreignObject width="122.21875" height="24"><div style="color: rgb(220, 252, 231) !important; display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;" xmlns="http://www.w3.org/1999/xhtml"><span style="color:#dcfce7 !important" class="nodeLabel"><p>complete / audit</p></span></div></foreignObject></g></g><g class="node default terminal" id="my-svg-flowchart-VALID-23" data-look="classic" transform="translate(3565.05753326416, 66.25)"><g class="basic label-container outer-path"><path d="M-12.6640625 -19.5 C-6.006975402829994 -19.5, 0.650111694340012 -19.5, 12.6640625 -19.5 C12.6640625 -19.5, 12.664062499999998 -19.5, 12.664062499999998 -19.5 C13.051051626520337 -19.487590011941133, 13.438040753040676 -19.475180023882263, 13.9134317896239 -19.45993515863156 C14.398806591283124 -19.413111635264098, 14.88418139294235 -19.366288111896637, 15.157667152847864 -19.3399052695533 C15.61197184897318 -19.266456809469297, 16.066276545098496 -19.193008349385295, 16.39165575967676 -19.140403561325776 C16.735538281872707 -19.061914619677726, 17.079420804068654 -18.983425678029676, 17.61032688623539 -18.862249829261074 C18.0540808341724 -18.730545986825376, 18.497834782109408 -18.59884214438968, 18.808672751460602 -18.50658706670804 C19.19564469656647 -18.36417781377963, 19.58261664167234 -18.221768560851224, 19.981769095147794 -18.074876768247425 C20.42277516052126 -17.879656465086715, 20.86378122589473 -17.68443616192601, 21.12479541279238 -17.568892924097174 C21.44419681477497 -17.40226141726922, 21.76359821675756 -17.235629910441265, 22.233054764076783 -16.990714730406097 C22.613733985959342 -16.759944748981464, 22.994413207841898 -16.52917476755683, 23.301993073605697 -16.342718045390892 C23.51802807962057 -16.1920213771996, 23.73406308563544 -16.041324709008308, 24.327217844578712 -15.627565626425154 C24.648542382886127 -15.371317857930066, 24.969866921193542 -15.115070089434976, 25.30451620850187 -14.848196188198123 C25.54986863034685 -14.625373610347863, 25.79522105219183 -14.402551032497602, 26.229872236767985 -14.007812326905688 C26.57067200665489 -13.655908584315991, 26.91147177654179 -13.304004841726295, 27.099483442968648 -13.10986736009568 C27.301225353870265 -12.872889832110713, 27.502967264771883 -12.635912304125746, 27.909776408126582 -12.158051136245305 C28.140392810915596 -11.849046166094528, 28.37100921370461 -11.54004119594375, 28.657421464640635 -11.156274872382312 C28.7972986551712 -10.941385945442487, 28.93717584570177 -10.726497018502663, 29.339346378604247 -10.108655082055241 C29.493149434846764 -9.835562181448395, 29.64695249108928 -9.56246928084155, 29.9527489742735 -9.019496659696287 C30.135812139040635 -8.639362081133086, 30.31887530380777 -8.259227502569887, 30.49510864880834 -7.893275190886684 C30.60518839392601 -7.62137609219895, 30.71526813904368 -7.349476993511217, 30.964196729970325 -6.734618561215508 C31.053534512473668 -6.465547394358066, 31.142872294977007 -6.196476227500624, 31.35808563421488 -5.548287939305138 C31.438685609290378 -5.2409253020921, 31.519285584365875 -4.933562664879061, 31.67515678754556 -4.339158212148133 C31.757797416070193 -3.9148160507771728, 31.840438044594823 -3.4904738894062124, 31.914107276581777 -3.1121979531509023 C31.964570683533935 -2.720813733956789, 32.0150340904861 -2.3294295147626753, 32.07395520250937 -1.872449005199798 C32.096015466592974 -1.528842585372917, 32.11807573067659 -1.1852361655460362, 32.15404371591342 -0.6250057626472757 C32.15404371591342 -0.15964380894648394, 32.15404371591342 0.3057181447543078, 32.15404371591342 0.625005762647271 C32.13642850687439 0.8993768621709154, 32.118813297835366 1.1737479616945596, 32.07395520250937 1.8724490051997846 C32.01668850407713 2.3165982096515054, 31.959421805644897 2.7607474141032267, 31.914107276581777 3.1121979531508885 C31.860859621699035 3.3856134070779236, 31.807611966816296 3.659028861004958, 31.67515678754556 4.339158212148129 C31.57260838922982 4.730219699683014, 31.470059990914084 5.121281187217899, 31.358085634214884 5.548287939305125 C31.246847777943742 5.883318639048283, 31.135609921672604 6.21834933879144, 30.96419672997033 6.734618561215495 C30.83871474017668 7.04456150203504, 30.713232750383032 7.354504442854586, 30.495108648808344 7.893275190886679 C30.29587427211281 8.30698963702771, 30.096639895417276 8.72070408316874, 29.952748974273504 9.019496659696284 C29.78437913027316 9.318454367014366, 29.61600928627281 9.61741207433245, 29.33934637860425 10.108655082055236 C29.112687352724034 10.456864212277807, 28.886028326843817 10.805073342500377, 28.65742146464064 11.156274872382301 C28.397974404527673 11.503910296820264, 28.1385273444147 11.851545721258228, 27.909776408126582 12.158051136245302 C27.639221058717226 12.475860844697035, 27.36866570930787 12.793670553148768, 27.09948344296866 13.10986736009567 C26.803139841981753 13.415866458376772, 26.50679624099485 13.721865556657873, 26.22987223676799 14.007812326905684 C25.910096266376677 14.298224402406538, 25.59032029598536 14.588636477907391, 25.304516208501887 14.848196188198111 C24.91473552445242 15.15903591122794, 24.524954840402952 15.469875634257772, 24.327217844578715 15.627565626425152 C23.94380271963526 15.895019419812458, 23.560387594691804 16.162473213199764, 23.301993073605708 16.34271804539089 C22.996228355368654 16.528074414459123, 22.6904636371316 16.71343078352736, 22.233054764076787 16.990714730406093 C21.818290550570037 17.207096954923408, 21.403526337063283 17.423479179440722, 21.124795412792388 17.56889292409717 C20.869427982517198 17.681936510274326, 20.61406055224201 17.79498009645148, 19.981769095147804 18.07487676824742 C19.67013709180524 18.189560226172144, 19.35850508846268 18.304243684096868, 18.808672751460616 18.506587066708033 C18.542074298312997 18.58571208819841, 18.275475845165378 18.664837109688786, 17.610326886235413 18.86224982926107 C17.3090141296541 18.931022499701264, 17.007701373072784 18.999795170141454, 16.391655759676766 19.140403561325773 C15.997203874349026 19.204175483125503, 15.602751989021284 19.267947404925238, 15.157667152847878 19.3399052695533 C14.89200398879942 19.365533475482355, 14.626340824750963 19.391161681411408, 13.9134317896239 19.45993515863156 C13.525280690899855 19.47238240887736, 13.137129592175812 19.484829659123157, 12.664062500000004 19.5 C12.664062500000002 19.5, 12.664062500000002 19.5, 12.6640625 19.5 C2.915228637920519 19.5, -6.833605224158962 19.5, -12.664062499999996 19.5 C-13.099788221695217 19.486027124193903, -13.535513943390436 19.472054248387803, -13.913431789623893 19.45993515863156 C-14.23658415199447 19.428761038881248, -14.559736514365046 19.397586919130934, -15.157667152847871 19.3399052695533 C-15.557913813500168 19.275196493418246, -15.958160474152463 19.210487717283193, -16.39165575967676 19.140403561325773 C-16.653580244124267 19.080621006967625, -16.915504728571776 19.02083845260948, -17.610326886235388 18.862249829261074 C-17.88488279976714 18.78076307529825, -18.159438713298893 18.699276321335425, -18.80867275146059 18.506587066708043 C-19.07507492293498 18.40854860501079, -19.34147709440937 18.310510143313536, -19.981769095147797 18.074876768247425 C-20.403473643238033 17.888200674228834, -20.82517819132827 17.701524580210247, -21.12479541279238 17.568892924097174 C-21.35081852437548 17.45097681155898, -21.576841635958584 17.33306069902079, -22.23305476407678 16.990714730406097 C-22.595301445720462 16.771118663195903, -22.957548127364145 16.55152259598571, -23.301993073605686 16.3427180453909 C-23.628763836734304 16.114776906710727, -23.95553459986292 15.886835768030553, -24.327217844578712 15.627565626425156 C-24.658326368381065 15.363515389860643, -24.989434892183414 15.099465153296132, -25.30451620850187 14.848196188198125 C-25.530864483662064 14.642632673544819, -25.75721275882226 14.43706915889151, -26.229872236767974 14.007812326905697 C-26.568096407033117 13.65856810238613, -26.90632057729826 13.309323877866566, -27.099483442968655 13.109867360095677 C-27.333660370182226 12.834789816345975, -27.5678372973958 12.55971227259627, -27.90977640812658 12.158051136245307 C-28.09338786701851 11.912028508678137, -28.276999325910445 11.666005881110966, -28.657421464640635 11.156274872382316 C-28.81290206537951 10.917414917260219, -28.968382666118387 10.678554962138122, -29.339346378604244 10.108655082055249 C-29.47226899699815 9.872637513222218, -29.605191615392055 9.636619944389189, -29.9527489742735 9.019496659696289 C-30.083303955321774 8.748396448120456, -30.213858936370045 8.477296236544623, -30.49510864880834 7.893275190886686 C-30.62528273757091 7.5717426748983465, -30.75545682633348 7.250210158910007, -30.964196729970325 6.73461856121551 C-31.09955984475218 6.32692642667603, -31.23492295953403 5.919234292136549, -31.35808563421488 5.5482879393051325 C-31.448816718233758 5.202290992840592, -31.539547802252635 4.856294046376051, -31.675156787545557 4.339158212148136 C-31.752843754657405 3.9402520551751214, -31.83053072176925 3.541345898202107, -31.914107276581777 3.112197953150904 C-31.961953735309454 2.741110267611, -32.00980019403713 2.3700225820710963, -32.07395520250937 1.872449005199809 C-32.10435178117897 1.3989977567440766, -32.13474835984857 0.9255465082883442, -32.15404371591342 0.6250057626472781 C-32.15404371591342 0.1401781436495736, -32.15404371591342 -0.34464947534813095, -32.15404371591342 -0.6250057626472687 C-32.134671277519026 -0.9267471277907348, -32.115298839124634 -1.2284884929342008, -32.07395520250937 -1.8724490051997822 C-32.017627946281834 -2.309312081425669, -31.961300690054305 -2.746175157651556, -31.914107276581777 -3.112197953150895 C-31.86105035346508 -3.3846340397704644, -31.807993430348382 -3.6570701263900336, -31.67515678754556 -4.339158212148126 C-31.567693161174777 -4.748963594530212, -31.460229534803993 -5.1587689769123, -31.358085634214884 -5.548287939305123 C-31.22449899609246 -5.9506296091895265, -31.090912357970033 -6.35297127907393, -30.964196729970332 -6.734618561215485 C-30.797873896266715 -7.145439176096651, -30.6315510625631 -7.556259790977816, -30.495108648808344 -7.893275190886676 C-30.30202343629112 -8.29422076604041, -30.108938223773894 -8.695166341194145, -29.952748974273504 -9.019496659696282 C-29.77913603961845 -9.327764005392295, -29.6055231049634 -9.636031351088308, -29.339346378604247 -10.108655082055243 C-29.125593251803746 -10.437037285572222, -28.91184012500325 -10.7654194890892, -28.65742146464064 -11.156274872382308 C-28.507637507670058 -11.356971729123696, -28.35785355069947 -11.557668585865084, -27.909776408126586 -12.158051136245302 C-27.61424815192687 -12.505195442011646, -27.31871989572715 -12.85233974777799, -27.099483442968662 -13.10986736009567 C-26.75997167172028 -13.460441138344438, -26.420459900471897 -13.811014916593205, -26.229872236767996 -14.007812326905677 C-25.943191859021912 -14.268167860827528, -25.656511481275828 -14.52852339474938, -25.304516208501887 -14.848196188198107 C-25.049710263829677 -15.051397148403238, -24.794904319157467 -15.254598108608368, -24.32721784457872 -15.627565626425149 C-24.091539042273084 -15.79196495654264, -23.85586023996745 -15.956364286660135, -23.30199307360571 -16.342718045390885 C-22.919437679325373 -16.574625373548663, -22.536882285045035 -16.80653270170644, -22.23305476407679 -16.99071473040609 C-21.987430640197275 -17.118856678504272, -21.74180651631776 -17.24699862660246, -21.124795412792388 -17.56889292409717 C-20.800975136656042 -17.712238554555533, -20.477154860519697 -17.855584185013896, -19.981769095147804 -18.07487676824742 C-19.71002376132431 -18.174881563080795, -19.438278427500823 -18.27488635791417, -18.80867275146062 -18.506587066708033 C-18.438631065914215 -18.61641349658976, -18.068589380367815 -18.72623992647149, -17.610326886235413 -18.862249829261067 C-17.134069235848244 -18.970952530090326, -16.657811585461076 -19.07965523091958, -16.391655759676766 -19.140403561325773 C-16.031066460892323 -19.198700842741466, -15.670477162107876 -19.25699812415716, -15.15766715284788 -19.3399052695533 C-14.848337747010492 -19.369745905311394, -14.539008341173101 -19.399586541069485, -13.913431789623903 -19.45993515863156 C-13.547272514784432 -19.47167717388987, -13.18111323994496 -19.48341918914818, -12.664062500000005 -19.5 C-12.664062500000004 -19.5, -12.664062500000002 -19.5, -12.6640625 -19.5" stroke="none" stroke-width="0" fill="#14532d" style="fill:#14532d !important;stroke:#86efac !important;stroke-width:2px !important"/><path d="M-12.6640625 -19.5 C-7.5983236352054515 -19.5, -2.532584770410903 -19.5, 12.6640625 -19.5 M-12.6640625 -19.5 C-7.057634114257234 -19.5, -1.4512057285144682 -19.5, 12.6640625 -19.5 M12.6640625 -19.5 C12.6640625 -19.5, 12.6640625 -19.5, 12.664062499999998 -19.5 M12.6640625 -19.5 C12.6640625 -19.5, 12.664062499999998 -19.5, 12.664062499999998 -19.5 M12.664062499999998 -19.5 C12.933517068751918 -19.491359116441625, 13.202971637503836 -19.482718232883254, 13.9134317896239 -19.45993515863156 M12.664062499999998 -19.5 C13.133716136742702 -19.48493912199501, 13.603369773485406 -19.469878243990017, 13.9134317896239 -19.45993515863156 M13.9134317896239 -19.45993515863156 C14.270290085176633 -19.425509468044478, 14.627148380729368 -19.3910837774574, 15.157667152847864 -19.3399052695533 M13.9134317896239 -19.45993515863156 C14.366042644203608 -19.416272333834446, 14.818653498783318 -19.372609509037336, 15.157667152847864 -19.3399052695533 M15.157667152847864 -19.3399052695533 C15.429125501159952 -19.296017988989135, 15.700583849472038 -19.252130708424968, 16.39165575967676 -19.140403561325776 M15.157667152847864 -19.3399052695533 C15.55915257441944 -19.274996220159554, 15.960637995991014 -19.210087170765807, 16.39165575967676 -19.140403561325776 M16.39165575967676 -19.140403561325776 C16.80042483928854 -19.04710468637192, 17.209193918900322 -18.95380581141806, 17.61032688623539 -18.862249829261074 M16.39165575967676 -19.140403561325776 C16.68808600234283 -19.072745292825356, 16.984516245008898 -19.005087024324936, 17.61032688623539 -18.862249829261074 M17.61032688623539 -18.862249829261074 C17.872612606924662 -18.784404804126343, 18.134898327613932 -18.706559778991608, 18.808672751460602 -18.50658706670804 M17.61032688623539 -18.862249829261074 C17.97554043295259 -18.753856365640438, 18.340753979669792 -18.645462902019798, 18.808672751460602 -18.50658706670804 M18.808672751460602 -18.50658706670804 C19.226285259156906 -18.352901803508097, 19.643897766853215 -18.19921654030815, 19.981769095147794 -18.074876768247425 M18.808672751460602 -18.50658706670804 C19.181345373245215 -18.36944009694335, 19.554017995029824 -18.23229312717866, 19.981769095147794 -18.074876768247425 M19.981769095147794 -18.074876768247425 C20.2866239917786 -17.93992654870817, 20.59147888840941 -17.804976329168916, 21.12479541279238 -17.568892924097174 M19.981769095147794 -18.074876768247425 C20.23984693711734 -17.960633363214686, 20.49792477908688 -17.846389958181945, 21.12479541279238 -17.568892924097174 M21.12479541279238 -17.568892924097174 C21.501168282744977 -17.372539438921233, 21.877541152697574 -17.176185953745293, 22.233054764076783 -16.990714730406097 M21.12479541279238 -17.568892924097174 C21.484447725266595 -17.38126254304768, 21.84410003774081 -17.19363216199818, 22.233054764076783 -16.990714730406097 M22.233054764076783 -16.990714730406097 C22.624605102156107 -16.753354614457216, 23.016155440235426 -16.515994498508334, 23.301993073605697 -16.342718045390892 M22.233054764076783 -16.990714730406097 C22.635642331287077 -16.746663781296064, 23.03822989849737 -16.50261283218603, 23.301993073605697 -16.342718045390892 M23.301993073605697 -16.342718045390892 C23.687267440045094 -16.073967325621286, 24.072541806484494 -15.80521660585168, 24.327217844578712 -15.627565626425154 M23.301993073605697 -16.342718045390892 C23.535478941095427 -16.17984841167036, 23.768964808585153 -16.016978777949824, 24.327217844578712 -15.627565626425154 M24.327217844578712 -15.627565626425154 C24.687731132054836 -15.340065873324432, 25.04824441953096 -15.05256612022371, 25.30451620850187 -14.848196188198123 M24.327217844578712 -15.627565626425154 C24.64195917616311 -15.376567790105183, 24.95670050774751 -15.125569953785213, 25.30451620850187 -14.848196188198123 M25.30451620850187 -14.848196188198123 C25.630721744248905 -14.551944951558182, 25.95692727999594 -14.255693714918241, 26.229872236767985 -14.007812326905688 M25.30451620850187 -14.848196188198123 C25.59868514615495 -14.581039742305176, 25.89285408380803 -14.313883296412229, 26.229872236767985 -14.007812326905688 M26.229872236767985 -14.007812326905688 C26.468284014950243 -13.76163259196149, 26.706695793132504 -13.515452857017292, 27.099483442968648 -13.10986736009568 M26.229872236767985 -14.007812326905688 C26.40675442506105 -13.825166945195363, 26.583636613354113 -13.642521563485039, 27.099483442968648 -13.10986736009568 M27.099483442968648 -13.10986736009568 C27.307064588360262 -12.866030735016908, 27.514645733751877 -12.622194109938134, 27.909776408126582 -12.158051136245305 M27.099483442968648 -13.10986736009568 C27.352380047278384 -12.812800618449023, 27.60527665158812 -12.515733876802367, 27.909776408126582 -12.158051136245305 M27.909776408126582 -12.158051136245305 C28.156673239755712 -11.827231874626351, 28.40357007138484 -11.496412613007397, 28.657421464640635 -11.156274872382312 M27.909776408126582 -12.158051136245305 C28.088144481427033 -11.919054167688463, 28.266512554727484 -11.680057199131623, 28.657421464640635 -11.156274872382312 M28.657421464640635 -11.156274872382312 C28.842644632007552 -10.871722347922121, 29.027867799374466 -10.587169823461931, 29.339346378604247 -10.108655082055241 M28.657421464640635 -11.156274872382312 C28.830656986889164 -10.890138589957397, 29.003892509137696 -10.624002307532482, 29.339346378604247 -10.108655082055241 M29.339346378604247 -10.108655082055241 C29.544018070351278 -9.745239768102232, 29.748689762098305 -9.381824454149221, 29.9527489742735 -9.019496659696287 M29.339346378604247 -10.108655082055241 C29.47553327357271 -9.866841459620236, 29.611720168541176 -9.625027837185232, 29.9527489742735 -9.019496659696287 M29.9527489742735 -9.019496659696287 C30.105753307788902 -8.70177988738327, 30.258757641304303 -8.38406311507025, 30.49510864880834 -7.893275190886684 M29.9527489742735 -9.019496659696287 C30.0687808231112 -8.778554042900955, 30.1848126719489 -8.537611426105624, 30.49510864880834 -7.893275190886684 M30.49510864880834 -7.893275190886684 C30.649651881580038 -7.511550418050454, 30.80419511435173 -7.1298256452142255, 30.964196729970325 -6.734618561215508 M30.49510864880834 -7.893275190886684 C30.600541356589353 -7.632854364264848, 30.70597406437037 -7.37243353764301, 30.964196729970325 -6.734618561215508 M30.964196729970325 -6.734618561215508 C31.109685772393213 -6.2964287459687025, 31.2551748148161 -5.858238930721896, 31.35808563421488 -5.548287939305138 M30.964196729970325 -6.734618561215508 C31.11726459737073 -6.273602532658198, 31.270332464771133 -5.812586504100889, 31.35808563421488 -5.548287939305138 M31.35808563421488 -5.548287939305138 C31.45670447972865 -5.1722115396831185, 31.55532332524242 -4.796135140061099, 31.67515678754556 -4.339158212148133 M31.35808563421488 -5.548287939305138 C31.451425954198445 -5.192340845257227, 31.54476627418201 -4.836393751209315, 31.67515678754556 -4.339158212148133 M31.67515678754556 -4.339158212148133 C31.75007749149577 -3.9544562318602003, 31.82499819544598 -3.569754251572268, 31.914107276581777 -3.1121979531509023 M31.67515678754556 -4.339158212148133 C31.7232829848434 -4.092040360499117, 31.771409182141245 -3.8449225088501002, 31.914107276581777 -3.1121979531509023 M31.914107276581777 -3.1121979531509023 C31.965300872930865 -2.7151505291864155, 32.016494469279955 -2.3181031052219283, 32.07395520250937 -1.872449005199798 M31.914107276581777 -3.1121979531509023 C31.970858073386292 -2.6720499798474857, 32.027608870190804 -2.231902006544069, 32.07395520250937 -1.872449005199798 M32.07395520250937 -1.872449005199798 C32.097438960234506 -1.5066705228827237, 32.120922717959644 -1.1408920405656495, 32.15404371591342 -0.6250057626472757 M32.07395520250937 -1.872449005199798 C32.090154328382816 -1.6201345440217554, 32.106353454256265 -1.3678200828437126, 32.15404371591342 -0.6250057626472757 M32.15404371591342 -0.6250057626472757 C32.15404371591342 -0.19067247751562638, 32.15404371591342 0.24366080761602293, 32.15404371591342 0.625005762647271 M32.15404371591342 -0.6250057626472757 C32.15404371591342 -0.24073955343230707, 32.15404371591342 0.14352665578266155, 32.15404371591342 0.625005762647271 M32.15404371591342 0.625005762647271 C32.123174593411115 1.105817262727855, 32.09230547090881 1.5866287628084392, 32.07395520250937 1.8724490051997846 M32.15404371591342 0.625005762647271 C32.12459740298897 1.0836558550815085, 32.095151090064526 1.5423059475157457, 32.07395520250937 1.8724490051997846 M32.07395520250937 1.8724490051997846 C32.03697072334153 2.159293322214024, 31.999986244173698 2.446137639228263, 31.914107276581777 3.1121979531508885 M32.07395520250937 1.8724490051997846 C32.021398160273854 2.2800710462165523, 31.968841118038338 2.6876930872333205, 31.914107276581777 3.1121979531508885 M31.914107276581777 3.1121979531508885 C31.85063015973893 3.4381395322455233, 31.78715304289608 3.7640811113401584, 31.67515678754556 4.339158212148129 M31.914107276581777 3.1121979531508885 C31.866154976656777 3.3584228785435912, 31.818202676731776 3.604647803936294, 31.67515678754556 4.339158212148129 M31.67515678754556 4.339158212148129 C31.56127261682657 4.77344791281145, 31.44738844610758 5.207737613474772, 31.358085634214884 5.548287939305125 M31.67515678754556 4.339158212148129 C31.556884620264906 4.7901812454708095, 31.438612452984255 5.241204278793489, 31.358085634214884 5.548287939305125 M31.358085634214884 5.548287939305125 C31.236862317492985 5.913393254958899, 31.115639000771086 6.278498570612672, 30.96419672997033 6.734618561215495 M31.358085634214884 5.548287939305125 C31.267136829974397 5.822211246953398, 31.176188025733907 6.0961345546016705, 30.96419672997033 6.734618561215495 M30.96419672997033 6.734618561215495 C30.79228010418909 7.159255950677004, 30.62036347840785 7.583893340138512, 30.495108648808344 7.893275190886679 M30.96419672997033 6.734618561215495 C30.837323715557257 7.0479973597386465, 30.710450701144186 7.361376158261798, 30.495108648808344 7.893275190886679 M30.495108648808344 7.893275190886679 C30.34101994287891 8.213243685719293, 30.186931236949476 8.533212180551907, 29.952748974273504 9.019496659696284 M30.495108648808344 7.893275190886679 C30.324530378677 8.247484618604712, 30.153952108545656 8.601694046322745, 29.952748974273504 9.019496659696284 M29.952748974273504 9.019496659696284 C29.807140921656067 9.278038501532698, 29.66153286903863 9.536580343369112, 29.33934637860425 10.108655082055236 M29.952748974273504 9.019496659696284 C29.81282550855604 9.267944941864961, 29.67290204283857 9.516393224033639, 29.33934637860425 10.108655082055236 M29.33934637860425 10.108655082055236 C29.158316164255712 10.386766104713663, 28.977285949907174 10.664877127372092, 28.65742146464064 11.156274872382301 M29.33934637860425 10.108655082055236 C29.11141079734729 10.458825344139603, 28.883475216090325 10.808995606223972, 28.65742146464064 11.156274872382301 M28.65742146464064 11.156274872382301 C28.504655137847557 11.360967832986356, 28.351888811054476 11.565660793590412, 27.909776408126582 12.158051136245302 M28.65742146464064 11.156274872382301 C28.41109933332514 11.486324087937268, 28.164777202009642 11.816373303492234, 27.909776408126582 12.158051136245302 M27.909776408126582 12.158051136245302 C27.64962504288234 12.463639732893222, 27.3894736776381 12.769228329541141, 27.09948344296866 13.10986736009567 M27.909776408126582 12.158051136245302 C27.66715286009297 12.443050561436564, 27.424529312059356 12.728049986627827, 27.09948344296866 13.10986736009567 M27.09948344296866 13.10986736009567 C26.88357556747177 13.332809967912452, 26.66766769197488 13.555752575729233, 26.22987223676799 14.007812326905684 M27.09948344296866 13.10986736009567 C26.895462747283712 13.320535478801007, 26.69144205159877 13.531203597506343, 26.22987223676799 14.007812326905684 M26.22987223676799 14.007812326905684 C26.027657633284242 14.191458279484403, 25.825443029800493 14.375104232063123, 25.304516208501887 14.848196188198111 M26.22987223676799 14.007812326905684 C26.002330099578955 14.214460075465727, 25.77478796238992 14.421107824025768, 25.304516208501887 14.848196188198111 M25.304516208501887 14.848196188198111 C24.914964618950016 15.158853214462571, 24.52541302939814 15.469510240727029, 24.327217844578715 15.627565626425152 M25.304516208501887 14.848196188198111 C25.030679153791862 15.066573952219292, 24.756842099081833 15.284951716240474, 24.327217844578715 15.627565626425152 M24.327217844578715 15.627565626425152 C23.995084079763693 15.859247762921163, 23.662950314948674 16.090929899417173, 23.301993073605708 16.34271804539089 M24.327217844578715 15.627565626425152 C23.982650379690153 15.867920973846264, 23.638082914801593 16.108276321267375, 23.301993073605708 16.34271804539089 M23.301993073605708 16.34271804539089 C23.05282753742694 16.49376365768168, 22.80366200124817 16.64480926997247, 22.233054764076787 16.990714730406093 M23.301993073605708 16.34271804539089 C22.896403827115694 16.58858863012011, 22.490814580625685 16.834459214849335, 22.233054764076787 16.990714730406093 M22.233054764076787 16.990714730406093 C21.898480516402365 17.165261901112803, 21.563906268727948 17.339809071819516, 21.124795412792388 17.56889292409717 M22.233054764076787 16.990714730406093 C21.835195555392392 17.198277624735756, 21.437336346707994 17.40584051906542, 21.124795412792388 17.56889292409717 M21.124795412792388 17.56889292409717 C20.692716096340895 17.76016162031272, 20.260636779889406 17.951430316528267, 19.981769095147804 18.07487676824742 M21.124795412792388 17.56889292409717 C20.756645560398436 17.731861942974618, 20.388495708004488 17.894830961852062, 19.981769095147804 18.07487676824742 M19.981769095147804 18.07487676824742 C19.72922561958492 18.16781510174086, 19.476682144022035 18.260753435234296, 18.808672751460616 18.506587066708033 M19.981769095147804 18.07487676824742 C19.711765009215465 18.17424076776093, 19.441760923283127 18.273604767274442, 18.808672751460616 18.506587066708033 M18.808672751460616 18.506587066708033 C18.559375341315295 18.580577229450356, 18.310077931169975 18.65456739219268, 17.610326886235413 18.86224982926107 M18.808672751460616 18.506587066708033 C18.479743853250614 18.604211437113744, 18.15081495504061 18.701835807519455, 17.610326886235413 18.86224982926107 M17.610326886235413 18.86224982926107 C17.335484247384024 18.92498086806307, 17.06064160853263 18.987711906865066, 16.391655759676766 19.140403561325773 M17.610326886235413 18.86224982926107 C17.25482744773695 18.943390256247707, 16.899328009238488 19.024530683234342, 16.391655759676766 19.140403561325773 M16.391655759676766 19.140403561325773 C15.964350341792432 19.209486987486304, 15.5370449239081 19.278570413646836, 15.157667152847878 19.3399052695533 M16.391655759676766 19.140403561325773 C16.046713532126176 19.196171145609224, 15.701771304575589 19.25193872989268, 15.157667152847878 19.3399052695533 M15.157667152847878 19.3399052695533 C14.793763351234286 19.37501063163661, 14.429859549620696 19.41011599371992, 13.9134317896239 19.45993515863156 M15.157667152847878 19.3399052695533 C14.893500070414264 19.36538915028827, 14.62933298798065 19.390873031023244, 13.9134317896239 19.45993515863156 M13.9134317896239 19.45993515863156 C13.45827798354324 19.474531055289425, 13.00312417746258 19.489126951947295, 12.664062500000004 19.5 M13.9134317896239 19.45993515863156 C13.46779772595158 19.474225775679447, 13.022163662279262 19.488516392727334, 12.664062500000004 19.5 M12.664062500000004 19.5 C12.664062500000002 19.5, 12.664062500000002 19.5, 12.6640625 19.5 M12.664062500000004 19.5 C12.664062500000002 19.5, 12.664062500000002 19.5, 12.6640625 19.5 M12.6640625 19.5 C5.518727617345577 19.5, -1.6266072653088468 19.5, -12.664062499999996 19.5 M12.6640625 19.5 C7.548671550645668 19.5, 2.4332806012913366 19.5, -12.664062499999996 19.5 M-12.664062499999996 19.5 C-12.948918886099062 19.490865210137123, -13.233775272198127 19.481730420274246, -13.913431789623893 19.45993515863156 M-12.664062499999996 19.5 C-13.086600809738009 19.48645001882763, -13.509139119476021 19.472900037655258, -13.913431789623893 19.45993515863156 M-13.913431789623893 19.45993515863156 C-14.247041126986273 19.42775226708014, -14.580650464348654 19.39556937552872, -15.157667152847871 19.3399052695533 M-13.913431789623893 19.45993515863156 C-14.27170967797715 19.425372521634323, -14.629987566330405 19.390809884637086, -15.157667152847871 19.3399052695533 M-15.157667152847871 19.3399052695533 C-15.538288923184806 19.278369293491135, -15.918910693521742 19.216833317428975, -16.39165575967676 19.140403561325773 M-15.157667152847871 19.3399052695533 C-15.421313441638263 19.297280982189175, -15.684959730428655 19.254656694825048, -16.39165575967676 19.140403561325773 M-16.39165575967676 19.140403561325773 C-16.80504953025529 19.046049130837684, -17.218443300833815 18.9516947003496, -17.610326886235388 18.862249829261074 M-16.39165575967676 19.140403561325773 C-16.83499484259269 19.039214308708097, -17.27833392550862 18.938025056090424, -17.610326886235388 18.862249829261074 M-17.610326886235388 18.862249829261074 C-17.93307172025383 18.766460856646606, -18.255816554272275 18.670671884032135, -18.80867275146059 18.506587066708043 M-17.610326886235388 18.862249829261074 C-17.956041492503815 18.759643548813607, -18.30175609877224 18.657037268366135, -18.80867275146059 18.506587066708043 M-18.80867275146059 18.506587066708043 C-19.114495326179792 18.394041532218488, -19.420317900898993 18.28149599772893, -19.981769095147797 18.074876768247425 M-18.80867275146059 18.506587066708043 C-19.22534358671165 18.353248347672675, -19.642014421962706 18.199909628637307, -19.981769095147797 18.074876768247425 M-19.981769095147797 18.074876768247425 C-20.39629588001276 17.891378057087884, -20.810822664877726 17.70787934592834, -21.12479541279238 17.568892924097174 M-19.981769095147797 18.074876768247425 C-20.398069389412736 17.8905929770858, -20.814369683677675 17.706309185924177, -21.12479541279238 17.568892924097174 M-21.12479541279238 17.568892924097174 C-21.39776995122409 17.426482282245885, -21.670744489655803 17.2840716403946, -22.23305476407678 16.990714730406097 M-21.12479541279238 17.568892924097174 C-21.417842146242155 17.416010630961818, -21.71088887969193 17.263128337826462, -22.23305476407678 16.990714730406097 M-22.23305476407678 16.990714730406097 C-22.488432846781848 16.83590303590209, -22.743810929486912 16.68109134139808, -23.301993073605686 16.3427180453909 M-22.23305476407678 16.990714730406097 C-22.627335337430445 16.751699529789267, -23.021615910784107 16.51268432917244, -23.301993073605686 16.3427180453909 M-23.301993073605686 16.3427180453909 C-23.566743578074906 16.158039554337794, -23.831494082544125 15.97336106328469, -24.327217844578712 15.627565626425156 M-23.301993073605686 16.3427180453909 C-23.579129082144004 16.14939996285902, -23.85626509068232 15.956081880327144, -24.327217844578712 15.627565626425156 M-24.327217844578712 15.627565626425156 C-24.56859036921449 15.435077461220759, -24.809962893850273 15.24258929601636, -25.30451620850187 14.848196188198125 M-24.327217844578712 15.627565626425156 C-24.578421069517354 15.42723773933515, -24.829624294455993 15.226909852245141, -25.30451620850187 14.848196188198125 M-25.30451620850187 14.848196188198125 C-25.588692007298146 14.59011524661096, -25.872867806094423 14.332034305023797, -26.229872236767974 14.007812326905697 M-25.30451620850187 14.848196188198125 C-25.51575114540506 14.656358207472813, -25.726986082308247 14.464520226747501, -26.229872236767974 14.007812326905697 M-26.229872236767974 14.007812326905697 C-26.52050476029079 13.707710384994446, -26.81113728381361 13.407608443083195, -27.099483442968655 13.109867360095677 M-26.229872236767974 14.007812326905697 C-26.49940243792944 13.72950026536543, -26.768932639090902 13.451188203825163, -27.099483442968655 13.109867360095677 M-27.099483442968655 13.109867360095677 C-27.384669189068774 12.774871955197819, -27.669854935168892 12.43987655029996, -27.90977640812658 12.158051136245307 M-27.099483442968655 13.109867360095677 C-27.399493987219135 12.757457903735494, -27.69950453146961 12.40504844737531, -27.90977640812658 12.158051136245307 M-27.90977640812658 12.158051136245307 C-28.16874243166217 11.811060256997697, -28.427708455197763 11.464069377750087, -28.657421464640635 11.156274872382316 M-27.90977640812658 12.158051136245307 C-28.08570217077838 11.922326641458582, -28.26162793343018 11.68660214667186, -28.657421464640635 11.156274872382316 M-28.657421464640635 11.156274872382316 C-28.794008734862597 10.94644014650381, -28.930596005084556 10.736605420625304, -29.339346378604244 10.108655082055249 M-28.657421464640635 11.156274872382316 C-28.797054830625004 10.941760525421508, -28.936688196609374 10.7272461784607, -29.339346378604244 10.108655082055249 M-29.339346378604244 10.108655082055249 C-29.540352840509772 9.75174775483059, -29.7413593024153 9.394840427605933, -29.9527489742735 9.019496659696289 M-29.339346378604244 10.108655082055249 C-29.50338847669648 9.817381725828811, -29.667430574788714 9.526108369602376, -29.9527489742735 9.019496659696289 M-29.9527489742735 9.019496659696289 C-30.065592223497326 8.785175238224273, -30.17843547272115 8.550853816752255, -30.49510864880834 7.893275190886686 M-29.9527489742735 9.019496659696289 C-30.070386498389645 8.775219823829323, -30.188024022505786 8.530942987962359, -30.49510864880834 7.893275190886686 M-30.49510864880834 7.893275190886686 C-30.59868657347943 7.637435714406158, -30.702264498150516 7.3815962379256295, -30.964196729970325 6.73461856121551 M-30.49510864880834 7.893275190886686 C-30.62043830725303 7.583708511444202, -30.745767965697716 7.274141832001718, -30.964196729970325 6.73461856121551 M-30.964196729970325 6.73461856121551 C-31.11372226935705 6.284271460242074, -31.263247808743778 5.833924359268639, -31.35808563421488 5.5482879393051325 M-30.964196729970325 6.73461856121551 C-31.10926708982288 6.297689751162541, -31.254337449675432 5.860760941109572, -31.35808563421488 5.5482879393051325 M-31.35808563421488 5.5482879393051325 C-31.474391353899065 5.1047638229315595, -31.590697073583254 4.661239706557987, -31.675156787545557 4.339158212148136 M-31.35808563421488 5.5482879393051325 C-31.42846774972759 5.279890429053346, -31.498849865240302 5.01149291880156, -31.675156787545557 4.339158212148136 M-31.675156787545557 4.339158212148136 C-31.739139434763086 4.0106208414234175, -31.80312208198061 3.682083470698699, -31.914107276581777 3.112197953150904 M-31.675156787545557 4.339158212148136 C-31.770063466808903 3.851832472664636, -31.864970146072245 3.364506733181136, -31.914107276581777 3.112197953150904 M-31.914107276581777 3.112197953150904 C-31.946913566073153 2.8577588501903963, -31.979719855564532 2.6033197472298886, -32.07395520250937 1.872449005199809 M-31.914107276581777 3.112197953150904 C-31.969385025161493 2.683474650992758, -32.024662773741206 2.2547513488346116, -32.07395520250937 1.872449005199809 M-32.07395520250937 1.872449005199809 C-32.0958802614889 1.530948514004458, -32.11780532046844 1.189448022809107, -32.15404371591342 0.6250057626472781 M-32.07395520250937 1.872449005199809 C-32.099447844376094 1.4753805308353678, -32.12494048624282 1.0783120564709265, -32.15404371591342 0.6250057626472781 M-32.15404371591342 0.6250057626472781 C-32.15404371591342 0.15745652555885553, -32.15404371591342 -0.3100927115295671, -32.15404371591342 -0.6250057626472687 M-32.15404371591342 0.6250057626472781 C-32.15404371591342 0.15094451069358866, -32.15404371591342 -0.3231167412601008, -32.15404371591342 -0.6250057626472687 M-32.15404371591342 -0.6250057626472687 C-32.126230476011244 -1.0582194245667491, -32.09841723610907 -1.4914330864862295, -32.07395520250937 -1.8724490051997822 M-32.15404371591342 -0.6250057626472687 C-32.12817438887254 -1.0279414126539295, -32.10230506183166 -1.43087706266059, -32.07395520250937 -1.8724490051997822 M-32.07395520250937 -1.8724490051997822 C-32.04044808173426 -2.132323617202081, -32.00694096095916 -2.3921982292043795, -31.914107276581777 -3.112197953150895 M-32.07395520250937 -1.8724490051997822 C-32.02769797633337 -2.2312109168983096, -31.981440750157375 -2.5899728285968373, -31.914107276581777 -3.112197953150895 M-31.914107276581777 -3.112197953150895 C-31.845660349089044 -3.463658459562832, -31.77721342159631 -3.8151189659747686, -31.67515678754556 -4.339158212148126 M-31.914107276581777 -3.112197953150895 C-31.847395419243583 -3.454749241026482, -31.780683561905388 -3.7973005289020683, -31.67515678754556 -4.339158212148126 M-31.67515678754556 -4.339158212148126 C-31.596896765376385 -4.637597594787359, -31.518636743207207 -4.9360369774265935, -31.358085634214884 -5.548287939305123 M-31.67515678754556 -4.339158212148126 C-31.557871220088266 -4.786418912749276, -31.440585652630972 -5.233679613350425, -31.358085634214884 -5.548287939305123 M-31.358085634214884 -5.548287939305123 C-31.26441150526525 -5.830419490755821, -31.170737376315614 -6.11255104220652, -30.964196729970332 -6.734618561215485 M-31.358085634214884 -5.548287939305123 C-31.266980282456675 -5.822682743134307, -31.17587493069847 -6.097077546963493, -30.964196729970332 -6.734618561215485 M-30.964196729970332 -6.734618561215485 C-30.814594685298836 -7.104138503912848, -30.664992640627343 -7.4736584466102105, -30.495108648808344 -7.893275190886676 M-30.964196729970332 -6.734618561215485 C-30.804216305149406 -7.129773303534275, -30.644235880328477 -7.524928045853065, -30.495108648808344 -7.893275190886676 M-30.495108648808344 -7.893275190886676 C-30.280123855598102 -8.339695713925423, -30.06513906238786 -8.786116236964167, -29.952748974273504 -9.019496659696282 M-30.495108648808344 -7.893275190886676 C-30.33220544188597 -8.231547185631236, -30.1693022349636 -8.569819180375795, -29.952748974273504 -9.019496659696282 M-29.952748974273504 -9.019496659696282 C-29.794717624250012 -9.300097324072423, -29.63668627422652 -9.580697988448565, -29.339346378604247 -10.108655082055243 M-29.952748974273504 -9.019496659696282 C-29.79963614599553 -9.29136399065892, -29.64652331771756 -9.563231321621561, -29.339346378604247 -10.108655082055243 M-29.339346378604247 -10.108655082055243 C-29.130958029960578 -10.428795545678687, -28.922569681316904 -10.748936009302131, -28.65742146464064 -11.156274872382308 M-29.339346378604247 -10.108655082055243 C-29.07751514928888 -10.510898161813257, -28.81568391997352 -10.913141241571271, -28.65742146464064 -11.156274872382308 M-28.65742146464064 -11.156274872382308 C-28.363520603633166 -11.550075251213075, -28.069619742625694 -11.943875630043841, -27.909776408126586 -12.158051136245302 M-28.65742146464064 -11.156274872382308 C-28.381564861712405 -11.525897589252626, -28.105708258784166 -11.895520306122943, -27.909776408126586 -12.158051136245302 M-27.909776408126586 -12.158051136245302 C-27.620266510106042 -12.498125936040108, -27.330756612085494 -12.838200735834914, -27.099483442968662 -13.10986736009567 M-27.909776408126586 -12.158051136245302 C-27.702147447124506 -12.401943928260915, -27.494518486122423 -12.645836720276527, -27.099483442968662 -13.10986736009567 M-27.099483442968662 -13.10986736009567 C-26.87866819489412 -13.33787723300166, -26.657852946819578 -13.565887105907649, -26.229872236767996 -14.007812326905677 M-27.099483442968662 -13.10986736009567 C-26.839437101489196 -13.378386557874911, -26.579390760009733 -13.646905755654153, -26.229872236767996 -14.007812326905677 M-26.229872236767996 -14.007812326905677 C-25.95985199670554 -14.253037564586345, -25.689831756643088 -14.49826280226701, -25.304516208501887 -14.848196188198107 M-26.229872236767996 -14.007812326905677 C-25.981960905030842 -14.232958839014966, -25.734049573293685 -14.458105351124255, -25.304516208501887 -14.848196188198107 M-25.304516208501887 -14.848196188198107 C-25.043457314109627 -15.056383709407, -24.782398419717364 -15.26457123061589, -24.32721784457872 -15.627565626425149 M-25.304516208501887 -14.848196188198107 C-25.044249943841297 -15.055751608288752, -24.78398367918071 -15.263307028379398, -24.32721784457872 -15.627565626425149 M-24.32721784457872 -15.627565626425149 C-24.021837521726276 -15.840585719945901, -23.716457198873833 -16.053605813466653, -23.30199307360571 -16.342718045390885 M-24.32721784457872 -15.627565626425149 C-24.07476770485514 -15.803663915505904, -23.82231756513156 -15.97976220458666, -23.30199307360571 -16.342718045390885 M-23.30199307360571 -16.342718045390885 C-23.026033022997925 -16.51000664979059, -22.75007297239014 -16.677295254190295, -22.23305476407679 -16.99071473040609 M-23.30199307360571 -16.342718045390885 C-23.062719136703077 -16.487767312070993, -22.823445199800442 -16.632816578751104, -22.23305476407679 -16.99071473040609 M-22.23305476407679 -16.99071473040609 C-21.886536700133032 -17.171492982410136, -21.540018636189277 -17.352271234414182, -21.124795412792388 -17.56889292409717 M-22.23305476407679 -16.99071473040609 C-21.79522422295862 -17.219130643263593, -21.35739368184045 -17.4475465561211, -21.124795412792388 -17.56889292409717 M-21.124795412792388 -17.56889292409717 C-20.723656450230525 -17.74646524345877, -20.322517487668662 -17.924037562820367, -19.981769095147804 -18.07487676824742 M-21.124795412792388 -17.56889292409717 C-20.723314726883796 -17.746616514247503, -20.3218340409752 -17.924340104397835, -19.981769095147804 -18.07487676824742 M-19.981769095147804 -18.07487676824742 C-19.604234183992236 -18.21381310544713, -19.226699272836672 -18.352749442646843, -18.80867275146062 -18.506587066708033 M-19.981769095147804 -18.07487676824742 C-19.51866290495084 -18.245304127146596, -19.05555671475388 -18.415731486045775, -18.80867275146062 -18.506587066708033 M-18.80867275146062 -18.506587066708033 C-18.48774664833871 -18.601836249539126, -18.1668205452168 -18.697085432370216, -17.610326886235413 -18.862249829261067 M-18.80867275146062 -18.506587066708033 C-18.38362937024735 -18.632737711153894, -17.95858598903408 -18.75888835559976, -17.610326886235413 -18.862249829261067 M-17.610326886235413 -18.862249829261067 C-17.294202121951116 -18.934403243802084, -16.978077357666816 -19.006556658343097, -16.391655759676766 -19.140403561325773 M-17.610326886235413 -18.862249829261067 C-17.241886009074847 -18.94634405517155, -16.873445131914284 -19.03043828108203, -16.391655759676766 -19.140403561325773 M-16.391655759676766 -19.140403561325773 C-16.108420922803425 -19.18619477323249, -15.825186085930083 -19.231985985139207, -15.15766715284788 -19.3399052695533 M-16.391655759676766 -19.140403561325773 C-15.938872925620599 -19.213605978552653, -15.48609009156443 -19.286808395779534, -15.15766715284788 -19.3399052695533 M-15.15766715284788 -19.3399052695533 C-14.774586543410754 -19.37686059522386, -14.391505933973628 -19.41381592089442, -13.913431789623903 -19.45993515863156 M-15.15766715284788 -19.3399052695533 C-14.845047412542385 -19.370063319920323, -14.532427672236889 -19.40022137028735, -13.913431789623903 -19.45993515863156 M-13.913431789623903 -19.45993515863156 C-13.594443404617037 -19.470164495265504, -13.27545501961017 -19.48039383189945, -12.664062500000005 -19.5 M-13.913431789623903 -19.45993515863156 C-13.604526551182213 -19.469841148380812, -13.29562131274052 -19.479747138130065, -12.664062500000005 -19.5 M-12.664062500000005 -19.5 C-12.664062500000004 -19.5, -12.664062500000002 -19.5, -12.6640625 -19.5 M-12.664062500000005 -19.5 C-12.664062500000004 -19.5, -12.664062500000002 -19.5, -12.6640625 -19.5" stroke="#86efac" stroke-width="2" fill="none" stroke-dasharray="0 0" style="fill:#14532d !important;stroke:#86efac !important;stroke-width:2px !important"/></g><g class="label" style="color:#dcfce7 !important" transform="translate(-19.7890625, -12)"><rect/><foreignObject width="39.578125" height="24"><div style="color: rgb(220, 252, 231) !important; display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;" xmlns="http://www.w3.org/1999/xhtml"><span style="color:#dcfce7 !important" class="nodeLabel"><p>VALID</p></span></div></foreignObject></g></g><g class="node default recovery" id="my-svg-flowchart-DIAGNOSE-25" data-look="classic" transform="translate(2726.636215209961, 241.25)"><rect class="basic label-container" style="fill:#451a03 !important;stroke:#fb923c !important;stroke-width:2px !important" x="-61.671875" y="-27" width="123.34375" height="54"/><g class="label" style="color:#ffedd5 !important" transform="translate(-31.671875, -12)"><rect/><foreignObject width="63.34375" height="24"><div style="color: rgb(255, 237, 213) !important; display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;" xmlns="http://www.w3.org/1999/xhtml"><span style="color:#ffedd5 !important" class="nodeLabel"><p>Diagnose</p></span></div></foreignObject></g></g><g class="node default recovery" id="my-svg-flowchart-CORRECT-27" data-look="classic" transform="translate(3069.698715209961, 272.25)"><rect class="basic label-container" style="fill:#451a03 !important;stroke:#fb923c !important;stroke-width:2px !important" x="-56.796875" y="-27" width="113.59375" height="54"/><g class="label" style="color:#ffedd5 !important" transform="translate(-26.796875, -12)"><rect/><foreignObject width="53.59375" height="24"><div style="color: rgb(255, 237, 213) !important; display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;" xmlns="http://www.w3.org/1999/xhtml"><span style="color:#ffedd5 !important" class="nodeLabel"><p>Correct</p></span></div></foreignObject></g></g><g class="node default recovery" id="my-svg-flowchart-REVALIDATE-31" data-look="classic" transform="translate(3069.698715209961, 478.25)"><rect class="basic label-container" style="fill:#451a03 !important;stroke:#fb923c !important;stroke-width:2px !important" x="-130" y="-39" width="260" height="78"/><g class="label" style="color:#ffedd5 !important" transform="translate(-100, -24)"><rect/><foreignObject width="200" height="48"><div style="color: rgb(255, 237, 213) !important; display: table; white-space: break-spaces; line-height: 1.5; max-width: 200px; text-align: center; width: 200px;" xmlns="http://www.w3.org/1999/xhtml"><span style="color:#ffedd5 !important" class="nodeLabel"><p>Revalidate contract, route, and artifacts</p></span></div></foreignObject></g></g><g class="node default boundary" id="my-svg-flowchart-DELEGATE-35" data-look="classic" transform="translate(2036.292465209961, 416.25)"><rect class="basic label-container" style="fill:#3f1d3f !important;stroke:#f0abfc !important;stroke-width:2px !important" x="-127.609375" y="-27" width="255.21875" height="54"/><g class="label" style="color:#fae8ff !important" transform="translate(-97.609375, -12)"><rect/><foreignObject width="195.21875" height="24"><div style="color: rgb(250, 232, 255) !important; display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;" xmlns="http://www.w3.org/1999/xhtml"><span style="color:#fae8ff !important" class="nodeLabel"><p>Optional delegation bundle</p></span></div></foreignObject></g></g><g class="node default boundary" id="my-svg-flowchart-BLOCKED-39" data-look="classic" transform="translate(3565.05753326416, 245.75)"><g class="basic label-container outer-path"><path d="M-83.875 -31.5 C-39.78463166242 -31.5, 4.305736675160006 -31.5, 83.875 -31.5 C83.875 -31.5, 83.875 -31.5, 83.875 -31.5 C84.50013628130209 -31.479953096212597, 85.12527256260417 -31.459906192425194, 85.89321192939245 -31.435279871635593 C86.67727891668812 -31.359641872349695, 87.4613459039838 -31.284003873063796, 87.90313059306193 -31.241385435432253 C88.63700740987974 -31.122737922988865, 89.37088422669757 -31.004090410545473, 89.89649680409322 -30.91911344521856 C90.4519993399482 -30.792323616402477, 91.0075018758032 -30.665533787586394, 91.86511939314947 -30.469788185729428 C92.5819526936631 -30.25703582487176, 93.29878599417674 -30.044283464014093, 93.80090886774406 -29.895256030836062 C94.42601739445354 -29.665210314567098, 95.05112592116302 -29.43516459829813, 95.69591065370028 -29.197877856399685 C96.40830506699588 -28.882521982063157, 97.12069948029149 -28.567166107726628, 97.54233778220308 -28.380519338926202 C98.05829389309802 -28.111345366357966, 98.57425000399299 -27.842171393789734, 99.33260288812403 -27.44653917988677 C99.9475462465497 -27.073756902200827, 100.56248960497537 -26.700974624514885, 101.05934938813228 -26.399775304092984 C101.40832901323323 -26.15634222470705, 101.75730863833417 -25.912909145321116, 102.7154817104733 -25.244529088840633 C103.23454442620067 -24.830590385887028, 103.75360714192803 -24.416651682933423, 104.29419445219533 -23.985547688627737 C104.69053297979106 -23.625603524408085, 105.0868715073868 -23.265659360188433, 105.78900034400982 -22.62800452807842 C106.33952304921173 -22.059544636202755, 106.89004575441366 -21.491084744327093, 107.19375690787243 -21.177478043231485 C107.51964768702119 -20.79466819033269, 107.84553846616996 -20.411858337433898, 108.50269169774293 -19.63992875855011 C108.87522588686365 -19.14076688369116, 109.24776007598436 -18.641605008832215, 109.7104260198041 -18.02167479384835 C109.9363814814304 -17.67454652725325, 110.1623369430567 -17.32741826065815, 110.8119970346684 -16.329365901781543 C111.06044812552169 -15.888215831570484, 111.308899216375 -15.447065761359426, 111.8028781507495 -14.56995614258631 C112.09859557075795 -13.955892592599602, 112.3943129907664 -13.341829042612895, 112.67899762499809 -12.750675308355413 C112.85681875172664 -12.311453687398306, 113.03463987845518 -11.872232066441198, 113.43675529456745 -10.878999214271206 C113.58107017399593 -10.444345790886107, 113.7253850534244 -10.009692367501009, 114.07303737065482 -8.962618978877531 C114.20323733039216 -8.466110103379545, 114.3334372901295 -7.969601227881561, 114.58522923372745 -7.009409419623907 C114.71872563365186 -6.323933620486202, 114.85222203357625 -5.6384578213484975, 114.97122617755518 -5.027396693551458 C115.0527439887856 -4.395160647160966, 115.134261800016 -3.762924600770476, 115.22944205789975 -3.024725316091981 C115.26507786911174 -2.4696687917562503, 115.30071368032371 -1.9146122674205195, 115.35881581032167 -1.0096246935071378 C115.35881581032167 -0.257886152913551, 115.35881581032167 0.4938523876800358, 115.35881581032167 1.00962469350713 C115.33036047264325 1.4528395465837862, 115.30190513496481 1.8960543996604424, 115.22944205789975 3.02472531609196 C115.13693431427845 3.742197107898586, 115.04442657065714 4.459668899705212, 114.97122617755518 5.027396693551435 C114.8852107350523 5.469067811433568, 114.7991952925494 5.910738929315702, 114.58522923372745 7.0094094196239 C114.41957412875587 7.641124130257175, 114.25391902378429 8.27283884089045, 114.07303737065482 8.96261897887751 C113.89334544898605 9.503822416924148, 113.71365352731729 10.045025854970788, 113.43675529456746 10.878999214271184 C113.23405361874696 11.379676272518143, 113.03135194292643 11.8803533307651, 112.67899762499809 12.750675308355405 C112.35715747802838 13.418983259813993, 112.03531733105868 14.087291211272582, 111.8028781507495 14.569956142586303 C111.53089609505663 15.05288782363859, 111.25891403936377 15.535819504690878, 110.81199703466841 16.329365901781536 C110.44585553132345 16.891857573679534, 110.07971402797848 17.454349245577532, 109.71042601980412 18.021674793848334 C109.29131923039085 18.58323971024812, 108.8722124409776 19.144804626647907, 108.50269169774295 19.639928758550102 C108.06564074869706 20.153313672202902, 107.62858979965118 20.666698585855702, 107.19375690787246 21.177478043231467 C106.71504801397053 21.671784278916324, 106.2363391200686 22.16609051460118, 105.78900034400982 22.628004528078414 C105.27243916107001 23.097131726964406, 104.7558779781302 23.5662589258504, 104.29419445219536 23.985547688627715 C103.66454873180776 24.48767339506052, 103.03490301142016 24.989799101493322, 102.71548171047331 25.24452908884063 C102.09611881633388 25.676569832004738, 101.47675592219444 26.108610575168846, 101.05934938813229 26.399775304092973 C100.56542176636475 26.699197131049353, 100.0714941445972 26.998618958005736, 99.33260288812404 27.446539179886766 C98.66259915861313 27.796079696414736, 97.99259542910224 28.145620212942703, 97.54233778220309 28.3805193389262 C97.12982116406624 28.56312820890468, 96.7173045459294 28.74573707888316, 95.6959106537003 29.197877856399682 C95.19250510983923 29.38313574997039, 94.68909956597817 29.568393643541093, 93.80090886774407 29.895256030836055 C93.37024982804407 30.023073373243587, 92.93959078834406 30.15089071565112, 91.86511939314951 30.46978818572942 C91.37838340174893 30.580882499517426, 90.89164741034834 30.691976813305427, 89.89649680409323 30.919113445218557 C89.25930529702535 31.022129626587354, 88.62211378995745 31.12514580795615, 87.90313059306196 31.24138543543225 C87.47398240498369 31.282784845009953, 87.0448342169054 31.324184254587657, 85.89321192939245 31.435279871635593 C85.26619861606899 31.4553869681865, 84.63918530274553 31.475494064737408, 83.875 31.5 C83.875 31.5, 83.875 31.5, 83.875 31.5 C19.307769683352674 31.5, -45.25946063329465 31.5, -83.875 31.5 C-84.57886462735381 31.47742843139015, -85.28272925470762 31.454856862780296, -85.89321192939244 31.435279871635593 C-86.41522728399106 31.384921678192782, -86.9372426385897 31.334563484749967, -87.90313059306195 31.24138543543225 C-88.54968289103873 31.13685587398332, -89.19623518901552 31.03232631253439, -89.89649680409323 30.919113445218557 C-90.31960558666228 30.82254162664001, -90.74271436923134 30.725969808061464, -91.86511939314947 30.469788185729428 C-92.30863279193153 30.33815573702025, -92.75214619071359 30.20652328831107, -93.80090886774403 29.89525603083607 C-94.2312508370488 29.736886208094354, -94.6615928063536 29.578516385352636, -95.69591065370028 29.197877856399685 C-96.37712569292297 28.896324166061966, -97.05834073214567 28.594770475724243, -97.54233778220308 28.380519338926206 C-97.90745203937578 28.19003946482605, -98.27256629654848 27.999559590725895, -99.33260288812403 27.446539179886773 C-99.91777060462536 27.09180707131646, -100.50293832112669 26.737074962746146, -101.05934938813226 26.399775304092994 C-101.58720985164771 26.03156269545579, -102.11507031516317 25.663350086818586, -102.7154817104733 25.244529088840636 C-103.25034932584633 24.817986399005655, -103.78521694121936 24.391443709170673, -104.29419445219533 23.98554768862774 C-104.65983397360795 23.6534835495724, -105.02547349502058 23.32141941051706, -105.7890003440098 22.628004528078435 C-106.33536246520734 22.063840780777596, -106.88172458640489 21.49967703347676, -107.19375690787244 21.177478043231478 C-107.57204271337129 20.73312201102042, -107.95032851887014 20.288765978809362, -108.50269169774293 19.639928758550113 C-108.79929482364528 19.242507590941607, -109.09589794954763 18.8450864233331, -109.7104260198041 18.021674793848355 C-109.96158699022844 17.63582409711266, -110.21274796065278 17.24997340037697, -110.8119970346684 16.329365901781557 C-111.02671818745856 15.9481067521282, -111.2414393402487 15.566847602474844, -111.8028781507495 14.569956142586314 C-112.01377465859672 14.1320250315792, -112.22467116644393 13.694093920572085, -112.67899762499809 12.750675308355417 C-112.88927884530686 12.231276628681945, -113.09956006561562 11.711877949008475, -113.43675529456745 10.878999214271209 C-113.6554187876766 10.220419612322818, -113.87408228078574 9.561840010374427, -114.07303737065482 8.962618978877522 C-114.21960296791607 8.403700834588648, -114.36616856517733 7.844782690299775, -114.58522923372743 7.009409419623911 C-114.7107235652158 6.365022550667504, -114.83621789670417 5.720635681711096, -114.97122617755518 5.027396693551461 C-115.0485166108845 4.427947355371616, -115.12580704421383 3.828498017191771, -115.22944205789975 3.024725316091999 C-115.27854422344295 2.2599194532019697, -115.32764638898615 1.4951135903119406, -115.35881581032167 1.0096246935071416 C-115.35881581032167 0.22644161666469564, -115.35881581032167 -0.5567414601777503, -115.35881581032167 -1.0096246935071262 C-115.32752187137689 -1.497053052585033, -115.2962279324321 -1.9844814116629397, -115.22944205789975 -3.024725316091956 C-115.13845187476296 -3.73042720845685, -115.04746169162618 -4.436129100821745, -114.97122617755518 -5.027396693551446 C-114.88551884021282 -5.467485756552288, -114.79981150287047 -5.9075748195531315, -114.58522923372745 -7.009409419623896 C-114.41163414497464 -7.671402729625728, -114.23803905622184 -8.33339603962756, -114.07303737065482 -8.962618978877506 C-113.8572435706109 -9.612555522536928, -113.64144977056698 -10.262492066196348, -113.43675529456746 -10.878999214271168 C-113.16807994781546 -11.542632515233052, -112.89940460106347 -12.206265816194934, -112.67899762499809 -12.750675308355401 C-112.3670907432395 -13.398356622065279, -112.05518386148091 -14.046037935775155, -111.8028781507495 -14.5699561425863 C-111.52242648707596 -15.06792647024909, -111.24197482340242 -15.565896797911881, -110.8119970346684 -16.329365901781546 C-110.46670352214451 -16.859829461308973, -110.12141000962063 -17.3902930208364, -109.71042601980412 -18.021674793848344 C-109.4684673200824 -18.345877408584432, -109.22650862036069 -18.67008002332052, -108.50269169774295 -19.639928758550102 C-108.02529989926649 -20.200700329403425, -107.54790810079001 -20.76147190025675, -107.19375690787246 -21.177478043231467 C-106.64531481585584 -21.743789531171785, -106.09687272383921 -22.310101019112103, -105.78900034400984 -22.628004528078403 C-105.32590127226617 -23.048578852106008, -104.8628022005225 -23.469153176133613, -104.29419445219536 -23.98554768862771 C-103.88258484926332 -24.31379539357446, -103.47097524633129 -24.64204309852121, -102.71548171047331 -25.244529088840626 C-102.33476979905652 -25.51009723749196, -101.95405788763972 -25.775665386143295, -101.0593493881323 -26.39977530409297 C-100.44137528967944 -26.774394834193995, -99.8234011912266 -27.14901436429502, -99.33260288812404 -27.446539179886763 C-98.93582545724175 -27.653537711429983, -98.53904802635945 -27.860536242973204, -97.54233778220309 -28.3805193389262 C-97.01924348998284 -28.612077665051245, -96.49614919776259 -28.843635991176292, -95.6959106537003 -29.19787785639968 C-95.25693742213927 -29.359424063438205, -94.81796419057825 -29.520970270476734, -93.80090886774407 -29.895256030836055 C-93.20314922186142 -30.072667956029616, -92.60538957597878 -30.250079881223176, -91.86511939314951 -30.469788185729417 C-91.09578011175486 -30.645384856299756, -90.3264408303602 -30.820981526870092, -89.89649680409325 -30.919113445218553 C-89.31400639836453 -31.01328597673621, -88.7315159926358 -31.10745850825387, -87.90313059306196 -31.24138543543225 C-87.40344462978618 -31.28958953934917, -86.9037586665104 -31.33779364326609, -85.89321192939246 -31.435279871635593 C-85.3017238700364 -31.454247742437477, -84.71023581068033 -31.47321561323936, -83.87500000000001 -31.5 C-83.87500000000001 -31.5, -83.875 -31.5, -83.875 -31.5" stroke="none" stroke-width="0" fill="#3f1d3f" style="fill:#3f1d3f !important;stroke:#f0abfc !important;stroke-width:2px !important"/><path d="M-83.875 -31.5 C-50.324245865247214 -31.5, -16.773491730494428 -31.5, 83.875 -31.5 M-83.875 -31.5 C-46.74322014229838 -31.5, -9.611440284596753 -31.5, 83.875 -31.5 M83.875 -31.5 C83.875 -31.5, 83.875 -31.5, 83.875 -31.5 M83.875 -31.5 C83.875 -31.5, 83.875 -31.5, 83.875 -31.5 M83.875 -31.5 C84.31027276490694 -31.486041649636473, 84.7455455298139 -31.47208329927295, 85.89321192939245 -31.435279871635593 M83.875 -31.5 C84.63367125935359 -31.475670889376552, 85.3923425187072 -31.451341778753104, 85.89321192939245 -31.435279871635593 M85.89321192939245 -31.435279871635593 C86.46967532990071 -31.379669140687234, 87.04613873040897 -31.324058409738875, 87.90313059306193 -31.241385435432253 M85.89321192939245 -31.435279871635593 C86.6243525406366 -31.364747616194105, 87.35549315188074 -31.294215360752617, 87.90313059306193 -31.241385435432253 M87.90313059306193 -31.241385435432253 C88.34164023264299 -31.17049059759783, 88.78014987222406 -31.09959575976341, 89.89649680409322 -30.91911344521856 M87.90313059306193 -31.241385435432253 C88.55168396636986 -31.136532355642355, 89.20023733967778 -31.031679275852458, 89.89649680409322 -30.91911344521856 M89.89649680409322 -30.91911344521856 C90.55681608654302 -30.768399877985406, 91.21713536899281 -30.617686310752255, 91.86511939314947 -30.469788185729428 M89.89649680409322 -30.91911344521856 C90.37534565763072 -30.80981931917942, 90.85419451116822 -30.700525193140283, 91.86511939314947 -30.469788185729428 M91.86511939314947 -30.469788185729428 C92.28881171118599 -30.34403852974255, 92.7125040292225 -30.218288873755675, 93.80090886774406 -29.895256030836062 M91.86511939314947 -30.469788185729428 C92.45507973784649 -30.294691052188398, 93.04504008254351 -30.119593918647364, 93.80090886774406 -29.895256030836062 M93.80090886774406 -29.895256030836062 C94.47551368786885 -29.646995221051537, 95.15011850799365 -29.398734411267014, 95.69591065370028 -29.197877856399685 M93.80090886774406 -29.895256030836062 C94.40291848754997 -29.673710925831564, 95.00492810735587 -29.45216582082707, 95.69591065370028 -29.197877856399685 M95.69591065370028 -29.197877856399685 C96.18836856364236 -28.979881347913196, 96.68082647358443 -28.761884839426706, 97.54233778220308 -28.380519338926202 M95.69591065370028 -29.197877856399685 C96.11280562918955 -29.013330817500645, 96.52970060467881 -28.828783778601604, 97.54233778220308 -28.380519338926202 M97.54233778220308 -28.380519338926202 C98.15032472597265 -28.06333293979584, 98.75831166974223 -27.746146540665475, 99.33260288812403 -27.44653917988677 M97.54233778220308 -28.380519338926202 C98.12331459466142 -28.077424108000095, 98.70429140711977 -27.774328877073984, 99.33260288812403 -27.44653917988677 M99.33260288812403 -27.44653917988677 C99.96510728040602 -27.063111300277043, 100.59761167268799 -26.679683420667313, 101.05934938813228 -26.399775304092984 M99.33260288812403 -27.44653917988677 C99.98293665054065 -27.05230303132441, 100.63327041295729 -26.65806688276205, 101.05934938813228 -26.399775304092984 M101.05934938813228 -26.399775304092984 C101.68171567238053 -25.965639526003617, 102.30408195662879 -25.53150374791425, 102.7154817104733 -25.244529088840633 M101.05934938813228 -26.399775304092984 C101.43651886638492 -26.136678203467504, 101.81368834463755 -25.873581102842024, 102.7154817104733 -25.244529088840633 M102.7154817104733 -25.244529088840633 C103.29784932870396 -24.78010641075485, 103.88021694693462 -24.315683732669072, 104.29419445219533 -23.985547688627737 M102.7154817104733 -25.244529088840633 C103.22391001534041 -24.839071045554526, 103.73233832020752 -24.43361300226842, 104.29419445219533 -23.985547688627737 M104.29419445219533 -23.985547688627737 C104.82114185609439 -23.50698799867091, 105.34808925999344 -23.02842830871408, 105.78900034400982 -22.62800452807842 M104.29419445219533 -23.985547688627737 C104.76939042840415 -23.55398727603144, 105.24458640461297 -23.12242686343514, 105.78900034400982 -22.62800452807842 M105.78900034400982 -22.62800452807842 C106.17412706261193 -22.2303295716301, 106.55925378121404 -21.83265461518178, 107.19375690787243 -21.177478043231485 M105.78900034400982 -22.62800452807842 C106.074733109714 -22.332961988392512, 106.36046587541817 -22.037919448706603, 107.19375690787243 -21.177478043231485 M107.19375690787243 -21.177478043231485 C107.52908029658195 -20.783588110411927, 107.86440368529149 -20.389698177592372, 108.50269169774293 -19.63992875855011 M107.19375690787243 -21.177478043231485 C107.60228219175738 -20.69760099903304, 108.01080747564234 -20.217723954834593, 108.50269169774293 -19.63992875855011 M108.50269169774293 -19.63992875855011 C108.90152504114384 -19.105528412857954, 109.30035838454474 -18.571128067165798, 109.7104260198041 -18.02167479384835 M108.50269169774293 -19.63992875855011 C108.79082473922828 -19.253856732419827, 109.07895778071362 -18.867784706289545, 109.7104260198041 -18.02167479384835 M109.7104260198041 -18.02167479384835 C110.00963267478143 -17.562013023566504, 110.30883932975875 -17.10235125328466, 110.8119970346684 -16.329365901781543 M109.7104260198041 -18.02167479384835 C109.9902680172825 -17.59176233762349, 110.27011001476089 -17.161849881398624, 110.8119970346684 -16.329365901781543 M110.8119970346684 -16.329365901781543 C111.1426205367213 -15.742310394626681, 111.47324403877418 -15.15525488747182, 111.8028781507495 -14.56995614258631 M110.8119970346684 -16.329365901781543 C111.03199124961745 -15.938743896309612, 111.25198546456652 -15.548121890837683, 111.8028781507495 -14.56995614258631 M111.8028781507495 -14.56995614258631 C112.05003899719746 -14.056721356542203, 112.29719984364542 -13.543486570498096, 112.67899762499809 -12.750675308355413 M111.8028781507495 -14.56995614258631 C111.99031421425656 -14.18074114622462, 112.17775027776361 -13.79152614986293, 112.67899762499809 -12.750675308355413 M112.67899762499809 -12.750675308355413 C112.92864438562928 -12.134042983004582, 113.17829114626049 -11.517410657653748, 113.43675529456745 -10.878999214271206 M112.67899762499809 -12.750675308355413 C112.84931199910588 -12.329995511504753, 113.01962637321367 -11.909315714654094, 113.43675529456745 -10.878999214271206 M113.43675529456745 -10.878999214271206 C113.67177605540442 -10.17115412810329, 113.9067968162414 -9.463309041935371, 114.07303737065482 -8.962618978877531 M113.43675529456745 -10.878999214271206 C113.6840187726758 -10.134281014294013, 113.93128225078415 -9.38956281431682, 114.07303737065482 -8.962618978877531 M114.07303737065482 -8.962618978877531 C114.23234473648475 -8.355110948718885, 114.39165210231468 -7.747602918560236, 114.58522923372745 -7.009409419623907 M114.07303737065482 -8.962618978877531 C114.22381788755135 -8.387627519261674, 114.37459840444787 -7.8126360596458175, 114.58522923372745 -7.009409419623907 M114.58522923372745 -7.009409419623907 C114.7062549862624 -6.387967759158785, 114.82728073879736 -5.766526098693664, 114.97122617755518 -5.027396693551458 M114.58522923372745 -7.009409419623907 C114.66297155243934 -6.6102190438831885, 114.74071387115124 -6.21102866814247, 114.97122617755518 -5.027396693551458 M114.97122617755518 -5.027396693551458 C115.0539235255037 -4.386012393301132, 115.13662087345223 -3.7446280930508076, 115.22944205789975 -3.024725316091981 M114.97122617755518 -5.027396693551458 C115.062900541624 -4.3163884289844, 115.15457490569284 -3.605380164417342, 115.22944205789975 -3.024725316091981 M115.22944205789975 -3.024725316091981 C115.26737735884035 -2.433852383118246, 115.30531265978097 -1.8429794501445105, 115.35881581032167 -1.0096246935071378 M115.22944205789975 -3.024725316091981 C115.2556098766184 -2.617140417265912, 115.28177769533704 -2.2095555184398434, 115.35881581032167 -1.0096246935071378 M115.35881581032167 -1.0096246935071378 C115.35881581032167 -0.30800938675601186, 115.35881581032167 0.3936059199951141, 115.35881581032167 1.00962469350713 M115.35881581032167 -1.0096246935071378 C115.35881581032167 -0.3888869709291114, 115.35881581032167 0.231850751648915, 115.35881581032167 1.00962469350713 M115.35881581032167 1.00962469350713 C115.30895030474103 1.7863201936373043, 115.25908479916038 2.5630156937674786, 115.22944205789975 3.02472531609196 M115.35881581032167 1.00962469350713 C115.31124868944372 1.750520996670129, 115.26368156856577 2.4914172998331274, 115.22944205789975 3.02472531609196 M115.22944205789975 3.02472531609196 C115.16969789924401 3.488089212807269, 115.10995374058828 3.9514531095225784, 114.97122617755518 5.027396693551435 M115.22944205789975 3.02472531609196 C115.14454222044237 3.6831916900421233, 115.059642382985 4.341658063992287, 114.97122617755518 5.027396693551435 M114.97122617755518 5.027396693551435 C114.86868621957827 5.553917705935076, 114.76614626160136 6.080438718318717, 114.58522923372745 7.0094094196239 M114.97122617755518 5.027396693551435 C114.89376476998403 5.4251446499550315, 114.81630336241287 5.822892606358629, 114.58522923372745 7.0094094196239 M114.58522923372745 7.0094094196239 C114.40126249641216 7.71095432069542, 114.21729575909686 8.41249922176694, 114.07303737065482 8.96261897887751 M114.58522923372745 7.0094094196239 C114.39417419427409 7.73798508883746, 114.20311915482073 8.46656075805102, 114.07303737065482 8.96261897887751 M114.07303737065482 8.96261897887751 C113.87721508979637 9.552404488779759, 113.68139280893791 10.142189998682008, 113.43675529456746 10.878999214271184 M114.07303737065482 8.96261897887751 C113.92612007149711 9.405110475847797, 113.7792027723394 9.847601972818083, 113.43675529456746 10.878999214271184 M113.43675529456746 10.878999214271184 C113.1590438221516 11.56495192032439, 112.88133234973576 12.250904626377597, 112.67899762499809 12.750675308355405 M113.43675529456746 10.878999214271184 C113.23180657897711 11.385226504193199, 113.02685786338677 11.891453794115213, 112.67899762499809 12.750675308355405 M112.67899762499809 12.750675308355405 C112.43008510003516 13.267547492315781, 112.18117257507222 13.784419676276157, 111.8028781507495 14.569956142586303 M112.67899762499809 12.750675308355405 C112.403448111709 13.322859768515304, 112.1278985984199 13.895044228675204, 111.8028781507495 14.569956142586303 M111.8028781507495 14.569956142586303 C111.56766514267518 14.98760065632205, 111.33245213460087 15.405245170057796, 110.81199703466841 16.329365901781536 M111.8028781507495 14.569956142586303 C111.57684793689822 14.971295675320322, 111.35081772304692 15.37263520805434, 110.81199703466841 16.329365901781536 M110.81199703466841 16.329365901781536 C110.51956361149 16.778622169152843, 110.22713018831159 17.227878436524147, 109.71042601980412 18.021674793848334 M110.81199703466841 16.329365901781536 C110.44379340340716 16.895025555917822, 110.07558977214592 17.46068521005411, 109.71042601980412 18.021674793848334 M109.71042601980412 18.021674793848334 C109.46364964575375 18.352332653285654, 109.21687327170339 18.682990512722974, 108.50269169774295 19.639928758550102 M109.71042601980412 18.021674793848334 C109.31252103844831 18.554831218975586, 108.9146160570925 19.08798764410284, 108.50269169774295 19.639928758550102 M108.50269169774295 19.639928758550102 C108.08244718465609 20.133571876212127, 107.66220267156925 20.62721499387415, 107.19375690787246 21.177478043231467 M108.50269169774295 19.639928758550102 C108.11076135091942 20.100312445397527, 107.71883100409589 20.56069613224495, 107.19375690787246 21.177478043231467 M107.19375690787246 21.177478043231467 C106.8449826474544 21.53761610201242, 106.49620838703635 21.89775416079338, 105.78900034400982 22.628004528078414 M107.19375690787246 21.177478043231467 C106.86418501484293 21.51778808114009, 106.5346131218134 21.85809811904871, 105.78900034400982 22.628004528078414 M105.78900034400982 22.628004528078414 C105.46234598453607 22.924663374551727, 105.13569162506234 23.221322221025044, 104.29419445219536 23.985547688627715 M105.78900034400982 22.628004528078414 C105.42143227624292 22.96182012190617, 105.05386420847601 23.295635715733933, 104.29419445219536 23.985547688627715 M104.29419445219536 23.985547688627715 C103.66491880753465 24.48737826951646, 103.03564316287392 24.9892088504052, 102.71548171047331 25.24452908884063 M104.29419445219536 23.985547688627715 C103.85184228689454 24.338311768969625, 103.40949012159373 24.69107584931153, 102.71548171047331 25.24452908884063 M102.71548171047331 25.24452908884063 C102.17895793654135 25.618784847795723, 101.64243416260939 25.993040606750817, 101.05934938813229 26.399775304092973 M102.71548171047331 25.24452908884063 C102.15887272873024 25.632795419290115, 101.60226374698719 26.0210617497396, 101.05934938813229 26.399775304092973 M101.05934938813229 26.399775304092973 C100.65685121430505 26.643772062408864, 100.25435304047781 26.887768820724755, 99.33260288812404 27.446539179886766 M101.05934938813229 26.399775304092973 C100.4041667591869 26.79695086404018, 99.74898413024148 27.194126423987385, 99.33260288812404 27.446539179886766 M99.33260288812404 27.446539179886766 C98.7921367957269 27.7284999941053, 98.25167070332976 28.010460808323835, 97.54233778220309 28.3805193389262 M99.33260288812404 27.446539179886766 C98.68990724332618 27.781833086111607, 98.0472115985283 28.11712699233645, 97.54233778220309 28.3805193389262 M97.54233778220309 28.3805193389262 C96.84436350178144 28.68949184819747, 96.14638922135981 28.998464357468738, 95.6959106537003 29.197877856399682 M97.54233778220309 28.3805193389262 C96.94763417448978 28.64377698480515, 96.35293056677648 28.907034630684105, 95.6959106537003 29.197877856399682 M95.6959106537003 29.197877856399682 C95.28795580856026 29.348009010504466, 94.8800009634202 29.498140164609254, 93.80090886774407 29.895256030836055 M95.6959106537003 29.197877856399682 C95.25975020719422 29.35838893253689, 94.82358976068812 29.518900008674102, 93.80090886774407 29.895256030836055 M93.80090886774407 29.895256030836055 C93.39819766674009 30.014778601419806, 92.99548646573611 30.13430117200356, 91.86511939314951 30.46978818572942 M93.80090886774407 29.895256030836055 C93.26956218602022 30.052956936876047, 92.73821550429636 30.21065784291604, 91.86511939314951 30.46978818572942 M91.86511939314951 30.46978818572942 C91.42114282269726 30.571122940717263, 90.97716625224501 30.67245769570511, 89.89649680409323 30.919113445218557 M91.86511939314951 30.46978818572942 C91.29085106942122 30.60086118316937, 90.71658274569293 30.731934180609322, 89.89649680409323 30.919113445218557 M89.89649680409323 30.919113445218557 C89.2062342059724 31.03070974901634, 88.51597160785154 31.14230605281412, 87.90313059306196 31.24138543543225 M89.89649680409323 30.919113445218557 C89.33928243651151 31.00919954290721, 88.78206806892979 31.099285640595863, 87.90313059306196 31.24138543543225 M87.90313059306196 31.24138543543225 C87.3152859904554 31.298094097259135, 86.72744138784881 31.35480275908602, 85.89321192939245 31.435279871635593 M87.90313059306196 31.24138543543225 C87.47639915220766 31.28255170431182, 87.04966771135335 31.32371797319139, 85.89321192939245 31.435279871635593 M85.89321192939245 31.435279871635593 C85.157963473416 31.45885785854446, 84.42271501743954 31.48243584545332, 83.875 31.5 M85.89321192939245 31.435279871635593 C85.17334151884485 31.458364714559103, 84.45347110829726 31.481449557482613, 83.875 31.5 M83.875 31.5 C83.875 31.5, 83.875 31.5, 83.875 31.5 M83.875 31.5 C83.875 31.5, 83.875 31.5, 83.875 31.5 M83.875 31.5 C36.55093133857008 31.5, -10.773137322859839 31.5, -83.875 31.5 M83.875 31.5 C49.99539652543608 31.5, 16.115793050872156 31.5, -83.875 31.5 M-83.875 31.5 C-84.33515262369849 31.485243800990737, -84.79530524739697 31.47048760198147, -85.89321192939244 31.435279871635593 M-83.875 31.5 C-84.5575618849614 31.4781115688754, -85.2401237699228 31.4562231377508, -85.89321192939244 31.435279871635593 M-85.89321192939244 31.435279871635593 C-86.43211932051628 31.383292123744837, -86.97102671164014 31.331304375854085, -87.90313059306195 31.24138543543225 M-85.89321192939244 31.435279871635593 C-86.47196851827077 31.379447919563134, -87.05072510714912 31.323615967490678, -87.90313059306195 31.24138543543225 M-87.90313059306195 31.24138543543225 C-88.51798114514469 31.14198116640876, -89.13283169722743 31.042576897385263, -89.89649680409323 30.919113445218557 M-87.90313059306195 31.24138543543225 C-88.3290207518772 31.17253081738251, -88.75491091069244 31.10367619933277, -89.89649680409323 30.919113445218557 M-89.89649680409323 30.919113445218557 C-90.56428674118162 30.76669474981472, -91.23207667827 30.61427605441089, -91.86511939314947 30.469788185729428 M-89.89649680409323 30.919113445218557 C-90.61265993803434 30.755653883297697, -91.32882307197546 30.59219432137684, -91.86511939314947 30.469788185729428 M-91.86511939314947 30.469788185729428 C-92.38647643271773 30.315052153044515, -92.90783347228599 30.160316120359603, -93.80090886774403 29.89525603083607 M-91.86511939314947 30.469788185729428 C-92.42358144942924 30.30403957885275, -92.982043505709 30.138290971976065, -93.80090886774403 29.89525603083607 M-93.80090886774403 29.89525603083607 C-94.29492994998273 29.7134517058914, -94.78895103222145 29.531647380946733, -95.69591065370028 29.197877856399685 M-93.80090886774403 29.89525603083607 C-94.47399252468804 29.64755502316355, -95.14707618163206 29.399854015491037, -95.69591065370028 29.197877856399685 M-95.69591065370028 29.197877856399685 C-96.365530844636 28.901456861449656, -97.03515103557172 28.605035866499627, -97.54233778220308 28.380519338926206 M-95.69591065370028 29.197877856399685 C-96.36839574443596 28.900188655292446, -97.04088083517163 28.602499454185207, -97.54233778220308 28.380519338926206 M-97.54233778220308 28.380519338926206 C-97.98329665197738 28.15047137901259, -98.42425552175168 27.92042341909897, -99.33260288812403 27.446539179886773 M-97.54233778220308 28.380519338926206 C-98.01572096700656 28.133555634630632, -98.48910415181004 27.886591930335054, -99.33260288812403 27.446539179886773 M-99.33260288812403 27.446539179886773 C-99.74513671403221 27.196458750303375, -100.1576705399404 26.94637832071998, -101.05934938813226 26.399775304092994 M-99.33260288812403 27.446539179886773 C-99.96951766046456 27.06043770196728, -100.6064324328051 26.67433622404779, -101.05934938813226 26.399775304092994 M-101.05934938813226 26.399775304092994 C-101.48702327996715 26.101448510853363, -101.91469717180205 25.80312171761373, -102.7154817104733 25.244529088840636 M-101.05934938813226 26.399775304092994 C-101.50703063269415 26.087492247695344, -101.95471187725606 25.775209191297698, -102.7154817104733 25.244529088840636 M-102.7154817104733 25.244529088840636 C-103.10539117334649 24.93358666812584, -103.49530063621967 24.622644247411046, -104.29419445219533 23.98554768862774 M-102.7154817104733 25.244529088840636 C-103.12127153537418 24.92092250200293, -103.52706136027507 24.59731591516523, -104.29419445219533 23.98554768862774 M-104.29419445219533 23.98554768862774 C-104.75324766563547 23.56864770606386, -105.21230087907561 23.15174772349998, -105.7890003440098 22.628004528078435 M-104.29419445219533 23.98554768862774 C-104.63542011950048 23.675655565917623, -104.97664578680563 23.365763443207502, -105.7890003440098 22.628004528078435 M-105.7890003440098 22.628004528078435 C-106.25848365123898 22.143224468067952, -106.72796695846814 21.65844440805747, -107.19375690787244 21.177478043231478 M-105.7890003440098 22.628004528078435 C-106.22439528434755 22.17842350559031, -106.65979022468531 21.728842483102188, -107.19375690787244 21.177478043231478 M-107.19375690787244 21.177478043231478 C-107.65444157464955 20.63633161993494, -108.11512624142667 20.0951851966384, -108.50269169774293 19.639928758550113 M-107.19375690787244 21.177478043231478 C-107.67838932550782 20.608201229111184, -108.16302174314322 20.038924414990888, -108.50269169774293 19.639928758550113 M-108.50269169774293 19.639928758550113 C-108.92102142806966 19.07940503053474, -109.33935115839638 18.51888130251937, -109.7104260198041 18.021674793848355 M-108.50269169774293 19.639928758550113 C-108.78687946818046 19.259143036202328, -109.07106723861799 18.87835731385454, -109.7104260198041 18.021674793848355 M-109.7104260198041 18.021674793848355 C-109.93106699477804 17.68271100589077, -110.15170796975198 17.343747217933185, -110.8119970346684 16.329365901781557 M-109.7104260198041 18.021674793848355 C-109.93598761100962 17.67515161798859, -110.16154920221514 17.328628442128824, -110.8119970346684 16.329365901781557 M-110.8119970346684 16.329365901781557 C-111.13669978082348 15.752823296264802, -111.46140252697857 15.176280690748046, -111.8028781507495 14.569956142586314 M-110.8119970346684 16.329365901781557 C-111.076988116202 15.85884740326193, -111.34197919773561 15.3883289047423, -111.8028781507495 14.569956142586314 M-111.8028781507495 14.569956142586314 C-111.98516339949569 14.191436923285364, -112.16744864824186 13.812917703984414, -112.67899762499809 12.750675308355417 M-111.8028781507495 14.569956142586314 C-111.99290799739866 14.175355100031984, -112.18293784404781 13.780754057477656, -112.67899762499809 12.750675308355417 M-112.67899762499809 12.750675308355417 C-112.84631581100523 12.337396154040718, -113.01363399701238 11.924116999726017, -113.43675529456745 10.878999214271209 M-112.67899762499809 12.750675308355417 C-112.88145322710105 12.250606056948328, -113.083908829204 11.75053680554124, -113.43675529456745 10.878999214271209 M-113.43675529456745 10.878999214271209 C-113.67829655049985 10.151515435775659, -113.91983780643226 9.42403165728011, -114.07303737065482 8.962618978877522 M-113.43675529456745 10.878999214271209 C-113.67109972202158 10.173191136493335, -113.9054441494757 9.467383058715463, -114.07303737065482 8.962618978877522 M-114.07303737065482 8.962618978877522 C-114.26091584091388 8.246156944735597, -114.44879431117295 7.529694910593671, -114.58522923372743 7.009409419623911 M-114.07303737065482 8.962618978877522 C-114.18673155725227 8.529053770009252, -114.30042574384971 8.09548856114098, -114.58522923372743 7.009409419623911 M-114.58522923372743 7.009409419623911 C-114.6885858176942 6.478695205376289, -114.79194240166099 5.947980991128668, -114.97122617755518 5.027396693551461 M-114.58522923372743 7.009409419623911 C-114.73854002330668 6.222190917381335, -114.89185081288593 5.434972415138759, -114.97122617755518 5.027396693551461 M-114.97122617755518 5.027396693551461 C-115.0242209528874 4.616379681076794, -115.07721572821963 4.2053626686021275, -115.22944205789975 3.024725316091999 M-114.97122617755518 5.027396693551461 C-115.06052100218395 4.334843666988301, -115.14981582681273 3.6422906404251423, -115.22944205789975 3.024725316091999 M-115.22944205789975 3.024725316091999 C-115.26485946086669 2.47307067646874, -115.30027686383363 1.921416036845481, -115.35881581032167 1.0096246935071416 M-115.22944205789975 3.024725316091999 C-115.27062247937677 2.3833070113494403, -115.31180290085379 1.7418887066068816, -115.35881581032167 1.0096246935071416 M-115.35881581032167 1.0096246935071416 C-115.35881581032167 0.25435284897968957, -115.35881581032167 -0.5009189955477624, -115.35881581032167 -1.0096246935071262 M-115.35881581032167 1.0096246935071416 C-115.35881581032167 0.2438334403511816, -115.35881581032167 -0.5219578128047784, -115.35881581032167 -1.0096246935071262 M-115.35881581032167 -1.0096246935071262 C-115.31388673047971 -1.7094313781462867, -115.26895765063773 -2.4092380627854473, -115.22944205789975 -3.024725316091956 M-115.35881581032167 -1.0096246935071262 C-115.31702689740948 -1.660520743517886, -115.2752379844973 -2.3114167935286454, -115.22944205789975 -3.024725316091956 M-115.22944205789975 -3.024725316091956 C-115.17531517049382 -3.4445227662495155, -115.12118828308787 -3.8643202164070747, -114.97122617755518 -5.027396693551446 M-115.22944205789975 -3.024725316091956 C-115.15471884638468 -3.6042637888357314, -115.0799956348696 -4.1838022615795065, -114.97122617755518 -5.027396693551446 M-114.97122617755518 -5.027396693551446 C-114.86065806391308 -5.595140588524575, -114.75008995027096 -6.162884483497703, -114.58522923372745 -7.009409419623896 M-114.97122617755518 -5.027396693551446 C-114.86346086954732 -5.580748773965856, -114.75569556153948 -6.134100854380264, -114.58522923372745 -7.009409419623896 M-114.58522923372745 -7.009409419623896 C-114.4588091979157 -7.491503806964197, -114.33238916210395 -7.973598194304497, -114.07303737065482 -8.962618978877506 M-114.58522923372745 -7.009409419623896 C-114.39576793245028 -7.731907474441138, -114.2063066311731 -8.454405529258379, -114.07303737065482 -8.962618978877506 M-114.07303737065482 -8.962618978877506 C-113.92171762389002 -9.418369946605559, -113.77039787712523 -9.87412091433361, -113.43675529456746 -10.878999214271168 M-114.07303737065482 -8.962618978877506 C-113.9258671870454 -9.40587212352465, -113.778697003436 -9.849125268171797, -113.43675529456746 -10.878999214271168 M-113.43675529456746 -10.878999214271168 C-113.19509045317504 -11.475916044782293, -112.95342561178262 -12.072832875293418, -112.67899762499809 -12.750675308355401 M-113.43675529456746 -10.878999214271168 C-113.17832537754904 -11.517326105709214, -112.91989546053061 -12.15565299714726, -112.67899762499809 -12.750675308355401 M-112.67899762499809 -12.750675308355401 C-112.33171449750462 -13.471816153264143, -111.98443137001117 -14.192956998172885, -111.8028781507495 -14.5699561425863 M-112.67899762499809 -12.750675308355401 C-112.41584629073887 -13.297114684481228, -112.15269495647965 -13.843554060607053, -111.8028781507495 -14.5699561425863 M-111.8028781507495 -14.5699561425863 C-111.5475967391731 -15.02323413888622, -111.29231532759668 -15.476512135186143, -110.8119970346684 -16.329365901781546 M-111.8028781507495 -14.5699561425863 C-111.55554204353125 -15.009126446449025, -111.30820593631297 -15.448296750311751, -110.8119970346684 -16.329365901781546 M-110.8119970346684 -16.329365901781546 C-110.47536970224401 -16.846515881480954, -110.13874236981962 -17.363665861180365, -109.71042601980412 -18.021674793848344 M-110.8119970346684 -16.329365901781546 C-110.38903889500511 -16.97914318446757, -109.96608075534184 -17.62892046715359, -109.71042601980412 -18.021674793848344 M-109.71042601980412 -18.021674793848344 C-109.23566309048435 -18.657813867344196, -108.76090016116459 -19.29395294084005, -108.50269169774295 -19.639928758550102 M-109.71042601980412 -18.021674793848344 C-109.26481150738158 -18.618757644177318, -108.81919699495904 -19.215840494506292, -108.50269169774295 -19.639928758550102 M-108.50269169774295 -19.639928758550102 C-108.03502186247898 -20.189280358218635, -107.56735202721504 -20.738631957887165, -107.19375690787246 -21.177478043231467 M-108.50269169774295 -19.639928758550102 C-108.1672910684319 -20.033909422575324, -107.83189043912084 -20.42789008660054, -107.19375690787246 -21.177478043231467 M-107.19375690787246 -21.177478043231467 C-106.8370553532905 -21.545801684079603, -106.48035379870855 -21.914125324927742, -105.78900034400984 -22.628004528078403 M-107.19375690787246 -21.177478043231467 C-106.77368204855948 -21.611239824259474, -106.35360718924649 -22.045001605287478, -105.78900034400984 -22.628004528078403 M-105.78900034400984 -22.628004528078403 C-105.35281380237049 -23.024137604331788, -104.91662726073113 -23.420270680585173, -104.29419445219536 -23.98554768862771 M-105.78900034400984 -22.628004528078403 C-105.38852819274213 -22.991702739947254, -104.98805604147441 -23.355400951816105, -104.29419445219536 -23.98554768862771 M-104.29419445219536 -23.98554768862771 C-103.87248393048478 -24.321850607503613, -103.4507734087742 -24.658153526379515, -102.71548171047331 -25.244529088840626 M-104.29419445219536 -23.98554768862771 C-103.87376433235902 -24.32082952108183, -103.45333421252269 -24.656111353535948, -102.71548171047331 -25.244529088840626 M-102.71548171047331 -25.244529088840626 C-102.22217503509629 -25.58863847068184, -101.72886835971927 -25.932747852523057, -101.0593493881323 -26.39977530409297 M-102.71548171047331 -25.244529088840626 C-102.30767763861215 -25.52899555581723, -101.89987356675098 -25.813462022793836, -101.0593493881323 -26.39977530409297 M-101.0593493881323 -26.39977530409297 C-100.61356776791973 -26.670010741969417, -100.16778614770715 -26.940246179845865, -99.33260288812404 -27.446539179886763 M-101.0593493881323 -26.39977530409297 C-100.67282995159728 -26.63408565796084, -100.28631051506225 -26.868396011828704, -99.33260288812404 -27.446539179886763 M-99.33260288812404 -27.446539179886763 C-98.77284293867643 -27.73856558697022, -98.21308298922884 -28.030591994053676, -97.54233778220309 -28.3805193389262 M-99.33260288812404 -27.446539179886763 C-98.62533816785623 -27.815518731425808, -97.91807344758841 -28.184498282964853, -97.54233778220309 -28.3805193389262 M-97.54233778220309 -28.3805193389262 C-96.89434407344932 -28.667366931741086, -96.24635036469553 -28.954214524555972, -95.6959106537003 -29.19787785639968 M-97.54233778220309 -28.3805193389262 C-96.89379205881228 -28.667611292245965, -96.24524633542148 -28.95470324556573, -95.6959106537003 -29.19787785639968 M-95.6959106537003 -29.19787785639968 C-95.086046566449 -29.42231347802998, -94.47618247919769 -29.646749099660283, -93.80090886774407 -29.895256030836055 M-95.6959106537003 -29.19787785639968 C-94.94781603876675 -29.47318359000604, -94.19972142383318 -29.748489323612407, -93.80090886774407 -29.895256030836055 M-93.80090886774407 -29.895256030836055 C-93.2824897780856 -30.049120095409357, -92.76407068842714 -30.20298415998266, -91.86511939314951 -30.469788185729417 M-93.80090886774407 -29.895256030836055 C-93.1143003288611 -30.099037841094756, -92.42769178997813 -30.302819651353456, -91.86511939314951 -30.469788185729417 M-91.86511939314951 -30.469788185729417 C-91.35445631238257 -30.58634370152644, -90.84379323161563 -30.702899217323466, -89.89649680409325 -30.919113445218553 M-91.86511939314951 -30.469788185729417 C-91.26994566850553 -30.605632704507887, -90.67477194386154 -30.741477223286356, -89.89649680409325 -30.919113445218553 M-89.89649680409325 -30.919113445218553 C-89.43896360606708 -30.99308386445248, -88.98143040804091 -31.06705428368641, -87.90313059306196 -31.24138543543225 M-89.89649680409325 -30.919113445218553 C-89.16507837984867 -31.037363503815822, -88.43365995560409 -31.155613562413095, -87.90313059306196 -31.24138543543225 M-87.90313059306196 -31.24138543543225 C-87.28430807012506 -31.301082499977003, -86.66548554718817 -31.360779564521753, -85.89321192939246 -31.435279871635593 M-87.90313059306196 -31.24138543543225 C-87.39812947410692 -31.29010228602514, -86.8931283551519 -31.338819136618024, -85.89321192939246 -31.435279871635593 M-85.89321192939246 -31.435279871635593 C-85.37792299976599 -31.451804184659657, -84.8626340701395 -31.468328497683725, -83.87500000000001 -31.5 M-85.89321192939246 -31.435279871635593 C-85.39421115960204 -31.451281855076697, -84.89521038981161 -31.467283838517798, -83.87500000000001 -31.5 M-83.87500000000001 -31.5 C-83.87500000000001 -31.5, -83.875 -31.5, -83.875 -31.5 M-83.87500000000001 -31.5 C-83.87500000000001 -31.5, -83.875 -31.5, -83.875 -31.5" stroke="#f0abfc" stroke-width="2" fill="none" stroke-dasharray="0 0" style="fill:#3f1d3f !important;stroke:#f0abfc !important;stroke-width:2px !important"/></g><g class="label" style="color:#fae8ff !important" transform="translate(-100, -24)"><rect/><foreignObject width="200" height="48"><div style="color: rgb(250, 232, 255) !important; display: table; white-space: break-spaces; line-height: 1.5; max-width: 200px; text-align: center; width: 200px;" xmlns="http://www.w3.org/1999/xhtml"><span style="color:#fae8ff !important" class="nodeLabel"><p>Resolve blocker / next cycle</p></span></div></foreignObject></g></g></g></g></g><defs><filter id="my-svg-drop-shadow" height="130%" width="130%"><feDropShadow dx="4" dy="4" stdDeviation="0" flood-opacity="0.06" flood-color="#FFFFFF"/></filter></defs><defs><filter id="my-svg-drop-shadow-small" height="150%" width="150%"><feDropShadow dx="2" dy="2" stdDeviation="0" flood-opacity="0.06" flood-color="#FFFFFF"/></filter></defs><linearGradient id="my-svg-gradient" gradientUnits="objectBoundingBox" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" stop-color="#cccccc" stop-opacity="1"/><stop offset="100%" stop-color="hsl(180, 0%, 18.3529411765%)" stop-opacity="1"/></linearGradient></svg>
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
%% ForgeLoop canonical architecture flow. Render with npm run docs:flow.
|
|
2
|
+
%%{init: {"look": "classic", "handDrawnSeed": 1, "flowchart": {"curve": "linear"}}}%%
|
|
3
|
+
flowchart LR
|
|
4
|
+
classDef entry fill:#1f2937,stroke:#7dd3fc,color:#f8fafc,stroke-width:2px
|
|
5
|
+
classDef contract fill:#172554,stroke:#60a5fa,color:#dbeafe,stroke-width:2px
|
|
6
|
+
classDef execution fill:#312e81,stroke:#a78bfa,color:#ede9fe,stroke-width:2px
|
|
7
|
+
classDef evidence fill:#134e4a,stroke:#5eead4,color:#ccfbf1,stroke-width:2px
|
|
8
|
+
classDef recovery fill:#451a03,stroke:#fb923c,color:#ffedd5,stroke-width:2px
|
|
9
|
+
classDef terminal fill:#14532d,stroke:#86efac,color:#dcfce7,stroke-width:2px
|
|
10
|
+
classDef boundary fill:#3f1d3f,stroke:#f0abfc,color:#fae8ff,stroke-width:2px
|
|
11
|
+
|
|
12
|
+
subgraph DISCOVER["1 · Discover and route"]
|
|
13
|
+
REQUEST(["Request"]) --> PROFILE["Project profile"]
|
|
14
|
+
PROFILE --> CONTRACT["Current contract"]
|
|
15
|
+
CONTRACT --> ROUTE["Deterministic route"]
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
subgraph AUTHORIZE["2 · Authorize execution"]
|
|
19
|
+
ROUTE --> GATES["Required gates"]
|
|
20
|
+
GATES --> PREFLIGHT["PREFLIGHT_READY"]
|
|
21
|
+
PREFLIGHT --> STATE["Resumable work state"]
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
subgraph VERIFY["3 · Execute and verify"]
|
|
25
|
+
STATE --> EXECUTE["Implementation"]
|
|
26
|
+
EXECUTE --> CHECKS["run-check / record-check"]
|
|
27
|
+
CHECKS --> EVIDENCE["Structured evidence"]
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
subgraph CLOSE["4 · Review and close"]
|
|
31
|
+
EVIDENCE --> REVIEW["Review"]
|
|
32
|
+
REVIEW --> COMPLETE["complete / audit"]
|
|
33
|
+
COMPLETE --> VALID(["VALID"])
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
EVIDENCE -->|"failed or incomplete"| DIAGNOSE["Diagnose"]
|
|
37
|
+
DIAGNOSE --> CORRECT["Correct"]
|
|
38
|
+
CORRECT --> CHECKS
|
|
39
|
+
REVIEW -->|"drift detected"| REVALIDATE["Revalidate contract, route, and artifacts"]
|
|
40
|
+
REVALIDATE --> PREFLIGHT
|
|
41
|
+
EXECUTE -.-> DELEGATE["Optional delegation bundle"]
|
|
42
|
+
DELEGATE -.-> EVIDENCE
|
|
43
|
+
COMPLETE -->|"INCOMPLETE · STALE · INCONSISTENT · INVALID"| BLOCKED(["Resolve blocker / next cycle"])
|
|
44
|
+
|
|
45
|
+
class REQUEST entry
|
|
46
|
+
class PROFILE,CONTRACT,ROUTE,GATES,PREFLIGHT,STATE contract
|
|
47
|
+
class EXECUTE,CHECKS execution
|
|
48
|
+
class EVIDENCE,REVIEW evidence
|
|
49
|
+
class DIAGNOSE,CORRECT,REVALIDATE recovery
|
|
50
|
+
class COMPLETE,VALID terminal
|
|
51
|
+
class DELEGATE,BLOCKED boundary
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cassiomc1/forgeloop",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Portable, verifiable engineering protocol for AI coding environments and developer workflows",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -43,12 +43,25 @@
|
|
|
43
43
|
"LICENSE-DOCS.md",
|
|
44
44
|
".cursor",
|
|
45
45
|
".github/copilot-instructions.md",
|
|
46
|
-
"README.md"
|
|
46
|
+
"README.md",
|
|
47
|
+
"DOCS_INDEX.md",
|
|
48
|
+
"docs/forgeloop-flow.mmd",
|
|
49
|
+
"docs/assets/forgeloop-flow.svg",
|
|
50
|
+
"scripts/CI_VALIDATORS.md"
|
|
47
51
|
],
|
|
48
52
|
"scripts": {
|
|
49
53
|
"test": "node scripts/run-tests.js",
|
|
50
54
|
"pack:check": "node --test tests/package.test.js",
|
|
51
55
|
"release:identity": "node scripts/verify_release_identity.mjs",
|
|
52
|
-
"docs:flow": "node scripts/generate-readme-flow.mjs"
|
|
56
|
+
"docs:flow": "node scripts/generate-readme-flow.mjs",
|
|
57
|
+
"docs:check": "node scripts/check-generated-diagram.mjs",
|
|
58
|
+
"lint": "eslint .",
|
|
59
|
+
"coverage": "c8 --all --include=src/**/*.js --reporter=text --reporter=lcov --check-coverage --lines=80 --functions=75 --branches=70 --statements=80 node scripts/run-tests.js",
|
|
60
|
+
"dependency:policy": "node scripts/check-dependency-policy.mjs"
|
|
61
|
+
},
|
|
62
|
+
"devDependencies": {
|
|
63
|
+
"@mermaid-js/mermaid-cli": "^11.16.0",
|
|
64
|
+
"c8": "^12.0.0",
|
|
65
|
+
"eslint": "^9.39.5"
|
|
53
66
|
}
|
|
54
67
|
}
|