cli-claw-kit 0.0.1
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/LICENSE +21 -0
- package/README.md +245 -0
- package/config/default-groups.json +1 -0
- package/config/global-agents-md.template.md +37 -0
- package/config/mount-allowlist.json +11 -0
- package/container/Dockerfile +160 -0
- package/container/agent-runner/dist/.tsbuildinfo +1 -0
- package/container/agent-runner/dist/agent-definitions.js +22 -0
- package/container/agent-runner/dist/channel-prefixes.js +16 -0
- package/container/agent-runner/dist/codex-config.js +29 -0
- package/container/agent-runner/dist/image-detector.js +96 -0
- package/container/agent-runner/dist/index.js +2587 -0
- package/container/agent-runner/dist/mcp-tools.js +1076 -0
- package/container/agent-runner/dist/stream-event.types.js +5 -0
- package/container/agent-runner/dist/stream-processor.js +867 -0
- package/container/agent-runner/dist/types.js +6 -0
- package/container/agent-runner/dist/utils.js +115 -0
- package/container/agent-runner/package.json +36 -0
- package/container/agent-runner/prompts/security-rules.md +31 -0
- package/container/agent-runner/src/agent-definitions.ts +27 -0
- package/container/agent-runner/src/channel-prefixes.ts +16 -0
- package/container/agent-runner/src/codex-config.ts +40 -0
- package/container/agent-runner/src/image-detector.ts +116 -0
- package/container/agent-runner/src/index.ts +3107 -0
- package/container/agent-runner/src/mcp-tools.ts +1295 -0
- package/container/agent-runner/src/stream-event.types.ts +10 -0
- package/container/agent-runner/src/stream-processor.ts +932 -0
- package/container/agent-runner/src/types.ts +75 -0
- package/container/agent-runner/src/utils.ts +114 -0
- package/container/agent-runner/tsconfig.json +17 -0
- package/container/build.sh +28 -0
- package/container/entrypoint.sh +64 -0
- package/container/skills/agent-browser/SKILL.md +159 -0
- package/container/skills/install-skill/SKILL.md +64 -0
- package/container/skills/post-test-cleanup/SKILL.md +121 -0
- package/dist/.tsbuildinfo +1 -0
- package/dist/agent-output-parser.js +459 -0
- package/dist/app-root.js +52 -0
- package/dist/assistant-meta-footer.js +1 -0
- package/dist/auth.js +91 -0
- package/dist/billing.js +694 -0
- package/dist/channel-prefixes.js +16 -0
- package/dist/cli.js +86 -0
- package/dist/commands.js +79 -0
- package/dist/config.js +120 -0
- package/dist/container-runner.js +981 -0
- package/dist/daily-summary.js +210 -0
- package/dist/db.js +3683 -0
- package/dist/dingtalk.js +1347 -0
- package/dist/feishu-markdown-style.js +97 -0
- package/dist/feishu-streaming-card.js +1875 -0
- package/dist/feishu.js +1628 -0
- package/dist/file-manager.js +270 -0
- package/dist/group-queue.js +1070 -0
- package/dist/group-runtime.js +35 -0
- package/dist/host-workspace-cwd.js +85 -0
- package/dist/im-channel.js +384 -0
- package/dist/im-command-utils.js +142 -0
- package/dist/im-downloader.js +45 -0
- package/dist/im-manager.js +527 -0
- package/dist/im-utils.js +53 -0
- package/dist/image-detector.js +96 -0
- package/dist/index.js +5828 -0
- package/dist/logger.js +22 -0
- package/dist/mcp-utils.js +66 -0
- package/dist/message-attachments.js +69 -0
- package/dist/message-notifier.js +36 -0
- package/dist/middleware/auth.js +85 -0
- package/dist/mount-security.js +315 -0
- package/dist/permissions.js +67 -0
- package/dist/project-memory.js +6 -0
- package/dist/provider-pool.js +189 -0
- package/dist/qq.js +826 -0
- package/dist/reset-admin.js +42 -0
- package/dist/routes/admin.js +543 -0
- package/dist/routes/agent-definitions.js +241 -0
- package/dist/routes/agents.js +533 -0
- package/dist/routes/auth.js +675 -0
- package/dist/routes/billing.js +490 -0
- package/dist/routes/browse.js +210 -0
- package/dist/routes/bug-report.js +387 -0
- package/dist/routes/config.js +1868 -0
- package/dist/routes/files.js +671 -0
- package/dist/routes/groups.js +1367 -0
- package/dist/routes/mcp-servers.js +320 -0
- package/dist/routes/memory.js +523 -0
- package/dist/routes/monitor.js +307 -0
- package/dist/routes/skills.js +777 -0
- package/dist/routes/tasks.js +509 -0
- package/dist/routes/usage.js +64 -0
- package/dist/routes/workspace-config.js +458 -0
- package/dist/runtime-build.js +112 -0
- package/dist/runtime-command-handler.js +189 -0
- package/dist/runtime-command-registry.js +1 -0
- package/dist/runtime-config.js +1777 -0
- package/dist/runtime-identity.js +52 -0
- package/dist/schemas.js +590 -0
- package/dist/script-runner.js +64 -0
- package/dist/sdk-query.js +82 -0
- package/dist/skill-utils.js +145 -0
- package/dist/sqlite-compat.js +19 -0
- package/dist/stream-event.types.js +5 -0
- package/dist/streaming-runtime-meta.js +29 -0
- package/dist/task-scheduler.js +695 -0
- package/dist/task-utils.js +13 -0
- package/dist/telegram-pairing.js +59 -0
- package/dist/telegram.js +897 -0
- package/dist/terminal-manager.js +307 -0
- package/dist/tool-step-display.js +1 -0
- package/dist/types.js +1 -0
- package/dist/utils.js +85 -0
- package/dist/web-context.js +161 -0
- package/dist/web.js +1377 -0
- package/dist/wechat-crypto.js +182 -0
- package/dist/wechat.js +589 -0
- package/dist/workspace-runtime-reset.js +35 -0
- package/package.json +107 -0
- package/shared/assistant-meta-footer.ts +127 -0
- package/shared/channel-prefixes.ts +16 -0
- package/shared/dist/assistant-meta-footer.d.ts +29 -0
- package/shared/dist/assistant-meta-footer.js +85 -0
- package/shared/dist/channel-prefixes.d.ts +4 -0
- package/shared/dist/channel-prefixes.js +16 -0
- package/shared/dist/image-detector.d.ts +20 -0
- package/shared/dist/image-detector.js +96 -0
- package/shared/dist/runtime-command-registry.d.ts +38 -0
- package/shared/dist/runtime-command-registry.js +185 -0
- package/shared/dist/stream-event.d.ts +65 -0
- package/shared/dist/stream-event.js +8 -0
- package/shared/dist/tool-step-display.d.ts +4 -0
- package/shared/dist/tool-step-display.js +11 -0
- package/shared/image-detector.ts +116 -0
- package/shared/runtime-command-registry.ts +252 -0
- package/shared/stream-event.ts +67 -0
- package/shared/tool-step-display.ts +21 -0
- package/shared/tsconfig.json +24 -0
- package/web/dist/assets/BillingPage-B1wBR_o-.js +52 -0
- package/web/dist/assets/ChatPage-6GBZ9nXN.css +32 -0
- package/web/dist/assets/ChatPage-BOJcXtaj.js +161 -0
- package/web/dist/assets/KaTeX_AMS-Regular-BQhdFMY1.woff2 +0 -0
- package/web/dist/assets/KaTeX_AMS-Regular-DMm9YOAa.woff +0 -0
- package/web/dist/assets/KaTeX_AMS-Regular-DRggAlZN.ttf +0 -0
- package/web/dist/assets/KaTeX_Caligraphic-Bold-ATXxdsX0.ttf +0 -0
- package/web/dist/assets/KaTeX_Caligraphic-Bold-BEiXGLvX.woff +0 -0
- package/web/dist/assets/KaTeX_Caligraphic-Bold-Dq_IR9rO.woff2 +0 -0
- package/web/dist/assets/KaTeX_Caligraphic-Regular-CTRA-rTL.woff +0 -0
- package/web/dist/assets/KaTeX_Caligraphic-Regular-Di6jR-x-.woff2 +0 -0
- package/web/dist/assets/KaTeX_Caligraphic-Regular-wX97UBjC.ttf +0 -0
- package/web/dist/assets/KaTeX_Fraktur-Bold-BdnERNNW.ttf +0 -0
- package/web/dist/assets/KaTeX_Fraktur-Bold-BsDP51OF.woff +0 -0
- package/web/dist/assets/KaTeX_Fraktur-Bold-CL6g_b3V.woff2 +0 -0
- package/web/dist/assets/KaTeX_Fraktur-Regular-CB_wures.ttf +0 -0
- package/web/dist/assets/KaTeX_Fraktur-Regular-CTYiF6lA.woff2 +0 -0
- package/web/dist/assets/KaTeX_Fraktur-Regular-Dxdc4cR9.woff +0 -0
- package/web/dist/assets/KaTeX_Main-Bold-Cx986IdX.woff2 +0 -0
- package/web/dist/assets/KaTeX_Main-Bold-Jm3AIy58.woff +0 -0
- package/web/dist/assets/KaTeX_Main-Bold-waoOVXN0.ttf +0 -0
- package/web/dist/assets/KaTeX_Main-BoldItalic-DxDJ3AOS.woff2 +0 -0
- package/web/dist/assets/KaTeX_Main-BoldItalic-DzxPMmG6.ttf +0 -0
- package/web/dist/assets/KaTeX_Main-BoldItalic-SpSLRI95.woff +0 -0
- package/web/dist/assets/KaTeX_Main-Italic-3WenGoN9.ttf +0 -0
- package/web/dist/assets/KaTeX_Main-Italic-BMLOBm91.woff +0 -0
- package/web/dist/assets/KaTeX_Main-Italic-NWA7e6Wa.woff2 +0 -0
- package/web/dist/assets/KaTeX_Main-Regular-B22Nviop.woff2 +0 -0
- package/web/dist/assets/KaTeX_Main-Regular-Dr94JaBh.woff +0 -0
- package/web/dist/assets/KaTeX_Main-Regular-ypZvNtVU.ttf +0 -0
- package/web/dist/assets/KaTeX_Math-BoldItalic-B3XSjfu4.ttf +0 -0
- package/web/dist/assets/KaTeX_Math-BoldItalic-CZnvNsCZ.woff2 +0 -0
- package/web/dist/assets/KaTeX_Math-BoldItalic-iY-2wyZ7.woff +0 -0
- package/web/dist/assets/KaTeX_Math-Italic-DA0__PXp.woff +0 -0
- package/web/dist/assets/KaTeX_Math-Italic-flOr_0UB.ttf +0 -0
- package/web/dist/assets/KaTeX_Math-Italic-t53AETM-.woff2 +0 -0
- package/web/dist/assets/KaTeX_SansSerif-Bold-CFMepnvq.ttf +0 -0
- package/web/dist/assets/KaTeX_SansSerif-Bold-D1sUS0GD.woff2 +0 -0
- package/web/dist/assets/KaTeX_SansSerif-Bold-DbIhKOiC.woff +0 -0
- package/web/dist/assets/KaTeX_SansSerif-Italic-C3H0VqGB.woff2 +0 -0
- package/web/dist/assets/KaTeX_SansSerif-Italic-DN2j7dab.woff +0 -0
- package/web/dist/assets/KaTeX_SansSerif-Italic-YYjJ1zSn.ttf +0 -0
- package/web/dist/assets/KaTeX_SansSerif-Regular-BNo7hRIc.ttf +0 -0
- package/web/dist/assets/KaTeX_SansSerif-Regular-CS6fqUqJ.woff +0 -0
- package/web/dist/assets/KaTeX_SansSerif-Regular-DDBCnlJ7.woff2 +0 -0
- package/web/dist/assets/KaTeX_Script-Regular-C5JkGWo-.ttf +0 -0
- package/web/dist/assets/KaTeX_Script-Regular-D3wIWfF6.woff2 +0 -0
- package/web/dist/assets/KaTeX_Script-Regular-D5yQViql.woff +0 -0
- package/web/dist/assets/KaTeX_Size1-Regular-C195tn64.woff +0 -0
- package/web/dist/assets/KaTeX_Size1-Regular-Dbsnue_I.ttf +0 -0
- package/web/dist/assets/KaTeX_Size1-Regular-mCD8mA8B.woff2 +0 -0
- package/web/dist/assets/KaTeX_Size2-Regular-B7gKUWhC.ttf +0 -0
- package/web/dist/assets/KaTeX_Size2-Regular-Dy4dx90m.woff2 +0 -0
- package/web/dist/assets/KaTeX_Size2-Regular-oD1tc_U0.woff +0 -0
- package/web/dist/assets/KaTeX_Size3-Regular-CTq5MqoE.woff +0 -0
- package/web/dist/assets/KaTeX_Size3-Regular-DgpXs0kz.ttf +0 -0
- package/web/dist/assets/KaTeX_Size4-Regular-BF-4gkZK.woff +0 -0
- package/web/dist/assets/KaTeX_Size4-Regular-DWFBv043.ttf +0 -0
- package/web/dist/assets/KaTeX_Size4-Regular-Dl5lxZxV.woff2 +0 -0
- package/web/dist/assets/KaTeX_Typewriter-Regular-C0xS9mPB.woff +0 -0
- package/web/dist/assets/KaTeX_Typewriter-Regular-CO6r4hn1.woff2 +0 -0
- package/web/dist/assets/KaTeX_Typewriter-Regular-D3Ib7_Hf.ttf +0 -0
- package/web/dist/assets/SettingsPage-DoY7FoZ_.js +153 -0
- package/web/dist/assets/ShareImageDialog-C1ga8b7l.js +22 -0
- package/web/dist/assets/TasksPage-CRivnNsx.js +14 -0
- package/web/dist/assets/_basePickBy-Bf-bSoS9.js +1 -0
- package/web/dist/assets/_baseUniq-zAOaCuKw.js +1 -0
- package/web/dist/assets/arc-Dm9mVQ9U.js +1 -0
- package/web/dist/assets/architectureDiagram-2XIMDMQ5-BLmzX1wr.js +36 -0
- package/web/dist/assets/band-CquvqAHh.js +1 -0
- package/web/dist/assets/blockDiagram-WCTKOSBZ-B9pcqm3j.js +132 -0
- package/web/dist/assets/c4Diagram-IC4MRINW-Cytx1q3b.js +10 -0
- package/web/dist/assets/channel-BOVj73LR.js +1 -0
- package/web/dist/assets/channel-meta-CQD0Pei-.js +41 -0
- package/web/dist/assets/chunk-4BX2VUAB-0ToDr6RE.js +1 -0
- package/web/dist/assets/chunk-55IACEB6-DQDjnXfS.js +1 -0
- package/web/dist/assets/chunk-FMBD7UC4-Di8ABm6c.js +15 -0
- package/web/dist/assets/chunk-JSJVCQXG-BZQN6rnX.js +1 -0
- package/web/dist/assets/chunk-KX2RTZJC-zBbcpaN_.js +1 -0
- package/web/dist/assets/chunk-NQ4KR5QH-BCrLoU88.js +220 -0
- package/web/dist/assets/chunk-QZHKN3VN-Bqk8juan.js +1 -0
- package/web/dist/assets/chunk-WL4C6EOR-D2YX-MHY.js +189 -0
- package/web/dist/assets/classDiagram-VBA2DB6C-DUUoMyaK.js +1 -0
- package/web/dist/assets/classDiagram-v2-RAHNMMFH-DUUoMyaK.js +1 -0
- package/web/dist/assets/clone-BmaCesfa.js +1 -0
- package/web/dist/assets/cose-bilkent-S5V4N54A-CTsv6qQA.js +1 -0
- package/web/dist/assets/cytoscape.esm-BQaXIfA_.js +331 -0
- package/web/dist/assets/dagre-KLK3FWXG-Ci4Jh9nu.js +4 -0
- package/web/dist/assets/defaultLocale-DX6XiGOO.js +1 -0
- package/web/dist/assets/diagram-E7M64L7V-BFRnfTI2.js +24 -0
- package/web/dist/assets/diagram-IFDJBPK2-B7Zhnp0b.js +43 -0
- package/web/dist/assets/diagram-P4PSJMXO-BVyP7nwq.js +24 -0
- package/web/dist/assets/erDiagram-INFDFZHY-NorKdTOF.js +70 -0
- package/web/dist/assets/error-CGD5mp5f.js +1 -0
- package/web/dist/assets/flowDiagram-PKNHOUZH-Ch97nABF.js +162 -0
- package/web/dist/assets/ganttDiagram-A5KZAMGK-BQ2pLWsy.js +292 -0
- package/web/dist/assets/gitGraphDiagram-K3NZZRJ6-bcvnBsD2.js +65 -0
- package/web/dist/assets/graph-CeAEckur.js +1 -0
- package/web/dist/assets/index-CPnL1_qC.js +768 -0
- package/web/dist/assets/index-DVevCbcO.css +10 -0
- package/web/dist/assets/infoDiagram-LFFYTUFH-CcsrFdj-.js +2 -0
- package/web/dist/assets/init-Dmth1JHB.js +1 -0
- package/web/dist/assets/ishikawaDiagram-PHBUUO56-1upyMfHN.js +70 -0
- package/web/dist/assets/journeyDiagram-4ABVD52K-CKUi-V0c.js +139 -0
- package/web/dist/assets/kanban-definition-K7BYSVSG-DOnQwXfL.js +89 -0
- package/web/dist/assets/layout-BmMMqTnJ.js +1 -0
- package/web/dist/assets/linear-DiaJloY5.js +1 -0
- package/web/dist/assets/mermaid.core-BWLV1B2v.js +254 -0
- package/web/dist/assets/mindmap-definition-YRQLILUH-BeAKHVWP.js +68 -0
- package/web/dist/assets/ordinal-DILIJJjt.js +1 -0
- package/web/dist/assets/pieDiagram-SKSYHLDU-DfiMSfWo.js +30 -0
- package/web/dist/assets/quadrantDiagram-337W2JSQ-wZxZOJxd.js +7 -0
- package/web/dist/assets/requirementDiagram-Z7DCOOCP-BK4HHm17.js +73 -0
- package/web/dist/assets/sankeyDiagram-WA2Y5GQK-BX6t2avX.js +10 -0
- package/web/dist/assets/sequenceDiagram-2WXFIKYE-BPQlkbAa.js +145 -0
- package/web/dist/assets/sheet-rI0FfB1g.js +6 -0
- package/web/dist/assets/sliders-horizontal-CuijWFNK.js +6 -0
- package/web/dist/assets/sparkles-BsMYXJoT.js +11 -0
- package/web/dist/assets/square-0CqMX1Q3.js +11 -0
- package/web/dist/assets/stateDiagram-RAJIS63D-DxkV0Vwd.js +1 -0
- package/web/dist/assets/stateDiagram-v2-FVOUBMTO-qLYoiOPe.js +1 -0
- package/web/dist/assets/step-D51IIHGA.js +1 -0
- package/web/dist/assets/tasks-D8JjBTwx.js +1 -0
- package/web/dist/assets/time-O8zIGux3.js +1 -0
- package/web/dist/assets/timeline-definition-YZTLITO2-kNp1DyFc.js +61 -0
- package/web/dist/assets/treemap-KZPCXAKY-CkrClVhk.js +162 -0
- package/web/dist/assets/utils-KGAn0XTg.js +11 -0
- package/web/dist/assets/vennDiagram-LZ73GAT5-CgdzEZz4.js +34 -0
- package/web/dist/assets/xychartDiagram-JWTSCODW-DfYGPfNB.js +7 -0
- package/web/dist/assets/zap-_hKJYy7J.js +6 -0
- package/web/dist/favicon.svg +332 -0
- package/web/dist/fonts/AlibabaPuHuiTi-3-55-Regular.woff2 +0 -0
- package/web/dist/fonts/AlibabaPuHuiTi-3-65-Medium.woff2 +0 -0
- package/web/dist/fonts/AlibabaPuHuiTi-3-75-SemiBold.woff2 +0 -0
- package/web/dist/fonts/DMSans-latin-ext.woff2 +0 -0
- package/web/dist/fonts/DMSans-latin.woff2 +0 -0
- package/web/dist/icons/README.md +20 -0
- package/web/dist/icons/apple-touch-icon-180.png +0 -0
- package/web/dist/icons/icon-128.png +0 -0
- package/web/dist/icons/icon-144.png +0 -0
- package/web/dist/icons/icon-152.png +0 -0
- package/web/dist/icons/icon-192.png +0 -0
- package/web/dist/icons/icon-192.svg +332 -0
- package/web/dist/icons/icon-384.png +0 -0
- package/web/dist/icons/icon-48.png +0 -0
- package/web/dist/icons/icon-512-maskable.png +0 -0
- package/web/dist/icons/icon-512.png +0 -0
- package/web/dist/icons/icon-512.svg +332 -0
- package/web/dist/icons/icon-72.png +0 -0
- package/web/dist/icons/icon-96.png +0 -0
- package/web/dist/icons/loading-logo.svg +332 -0
- package/web/dist/icons/logo-1024.png +0 -0
- package/web/dist/icons/logo-icon.svg +332 -0
- package/web/dist/icons/logo-text.svg +332 -0
- package/web/dist/index.html +30 -0
- package/web/dist/manifest.webmanifest +1 -0
- package/web/dist/registerSW.js +1 -0
- package/web/dist/sw.js +1 -0
- package/web/dist/workbox-08d6266a.js +1 -0
|
@@ -0,0 +1,332 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="640" height="640" viewBox="0 0 48 48" shape-rendering="crispEdges">
|
|
2
|
+
<rect x="16" y="7" width="15" height="1" fill="#06262b"/>
|
|
3
|
+
<rect x="15" y="8" width="17" height="1" fill="#06262b"/>
|
|
4
|
+
<rect x="12" y="9" width="23" height="1" fill="#06262b"/>
|
|
5
|
+
<rect x="11" y="10" width="2" height="1" fill="#06262b"/>
|
|
6
|
+
<rect x="13" y="10" width="4" height="1" fill="#38cfc1"/>
|
|
7
|
+
<rect x="17" y="10" width="4" height="1" fill="#a8fff0"/>
|
|
8
|
+
<rect x="21" y="10" width="1" height="1" fill="#1aa79c"/>
|
|
9
|
+
<rect x="22" y="10" width="10" height="1" fill="#a8fff0"/>
|
|
10
|
+
<rect x="32" y="10" width="1" height="1" fill="#1aa79c"/>
|
|
11
|
+
<rect x="33" y="10" width="2" height="1" fill="#a8fff0"/>
|
|
12
|
+
<rect x="35" y="10" width="2" height="1" fill="#06262b"/>
|
|
13
|
+
<rect x="39" y="10" width="1" height="1" fill="#1aa79c"/>
|
|
14
|
+
<rect x="10" y="11" width="1" height="1" fill="#06262b"/>
|
|
15
|
+
<rect x="11" y="11" width="1" height="1" fill="#38cfc1"/>
|
|
16
|
+
<rect x="12" y="11" width="4" height="1" fill="#1aa79c"/>
|
|
17
|
+
<rect x="16" y="11" width="1" height="1" fill="#06262b"/>
|
|
18
|
+
<rect x="17" y="11" width="2" height="1" fill="#38cfc1"/>
|
|
19
|
+
<rect x="19" y="11" width="1" height="1" fill="#a8fff0"/>
|
|
20
|
+
<rect x="20" y="11" width="1" height="1" fill="#06262b"/>
|
|
21
|
+
<rect x="21" y="11" width="1" height="1" fill="#a8fff0"/>
|
|
22
|
+
<rect x="22" y="11" width="1" height="1" fill="#1aa79c"/>
|
|
23
|
+
<rect x="23" y="11" width="10" height="1" fill="#a8fff0"/>
|
|
24
|
+
<rect x="33" y="11" width="1" height="1" fill="#1aa79c"/>
|
|
25
|
+
<rect x="34" y="11" width="2" height="1" fill="#a8fff0"/>
|
|
26
|
+
<rect x="36" y="11" width="1" height="1" fill="#06262b"/>
|
|
27
|
+
<rect x="39" y="11" width="2" height="1" fill="#1aa79c"/>
|
|
28
|
+
<rect x="9" y="12" width="1" height="1" fill="#06262b"/>
|
|
29
|
+
<rect x="10" y="12" width="1" height="1" fill="#38cfc1"/>
|
|
30
|
+
<rect x="11" y="12" width="6" height="1" fill="#1aa79c"/>
|
|
31
|
+
<rect x="17" y="12" width="1" height="1" fill="#06262b"/>
|
|
32
|
+
<rect x="18" y="12" width="2" height="1" fill="#38cfc1"/>
|
|
33
|
+
<rect x="20" y="12" width="1" height="1" fill="#06262b"/>
|
|
34
|
+
<rect x="21" y="12" width="1" height="1" fill="#a8fff0"/>
|
|
35
|
+
<rect x="22" y="12" width="1" height="1" fill="#1aa79c"/>
|
|
36
|
+
<rect x="23" y="12" width="10" height="1" fill="#38cfc1"/>
|
|
37
|
+
<rect x="33" y="12" width="1" height="1" fill="#1aa79c"/>
|
|
38
|
+
<rect x="34" y="12" width="2" height="1" fill="#a8fff0"/>
|
|
39
|
+
<rect x="36" y="12" width="2" height="1" fill="#06262b"/>
|
|
40
|
+
<rect x="39" y="12" width="1" height="1" fill="#06262b"/>
|
|
41
|
+
<rect x="9" y="13" width="1" height="1" fill="#06262b"/>
|
|
42
|
+
<rect x="10" y="13" width="7" height="1" fill="#1aa79c"/>
|
|
43
|
+
<rect x="17" y="13" width="1" height="1" fill="#06262b"/>
|
|
44
|
+
<rect x="18" y="13" width="3" height="1" fill="#38cfc1"/>
|
|
45
|
+
<rect x="21" y="13" width="2" height="1" fill="#a8fff0"/>
|
|
46
|
+
<rect x="23" y="13" width="11" height="1" fill="#1aa79c"/>
|
|
47
|
+
<rect x="34" y="13" width="3" height="1" fill="#a8fff0"/>
|
|
48
|
+
<rect x="37" y="13" width="1" height="1" fill="#06262b"/>
|
|
49
|
+
<rect x="39" y="13" width="1" height="1" fill="#06262b"/>
|
|
50
|
+
<rect x="8" y="14" width="1" height="1" fill="#06262b"/>
|
|
51
|
+
<rect x="9" y="14" width="1" height="1" fill="#38cfc1"/>
|
|
52
|
+
<rect x="10" y="14" width="8" height="1" fill="#1aa79c"/>
|
|
53
|
+
<rect x="18" y="14" width="1" height="1" fill="#06262b"/>
|
|
54
|
+
<rect x="19" y="14" width="2" height="1" fill="#a8fff0"/>
|
|
55
|
+
<rect x="21" y="14" width="16" height="1" fill="#38cfc1"/>
|
|
56
|
+
<rect x="37" y="14" width="1" height="1" fill="#a8fff0"/>
|
|
57
|
+
<rect x="38" y="14" width="2" height="1" fill="#06262b"/>
|
|
58
|
+
<rect x="8" y="15" width="1" height="1" fill="#06262b"/>
|
|
59
|
+
<rect x="9" y="15" width="9" height="1" fill="#1aa79c"/>
|
|
60
|
+
<rect x="18" y="15" width="1" height="1" fill="#06262b"/>
|
|
61
|
+
<rect x="19" y="15" width="1" height="1" fill="#a8fff0"/>
|
|
62
|
+
<rect x="20" y="15" width="3" height="1" fill="#38cfc1"/>
|
|
63
|
+
<rect x="23" y="15" width="12" height="1" fill="#06262b"/>
|
|
64
|
+
<rect x="35" y="15" width="3" height="1" fill="#38cfc1"/>
|
|
65
|
+
<rect x="38" y="15" width="2" height="1" fill="#06262b"/>
|
|
66
|
+
<rect x="6" y="16" width="2" height="1" fill="#a8fff0"/>
|
|
67
|
+
<rect x="8" y="16" width="1" height="1" fill="#06262b"/>
|
|
68
|
+
<rect x="9" y="16" width="9" height="1" fill="#1aa79c"/>
|
|
69
|
+
<rect x="18" y="16" width="1" height="1" fill="#06262b"/>
|
|
70
|
+
<rect x="19" y="16" width="1" height="1" fill="#a8fff0"/>
|
|
71
|
+
<rect x="20" y="16" width="2" height="1" fill="#38cfc1"/>
|
|
72
|
+
<rect x="22" y="16" width="14" height="1" fill="#06262b"/>
|
|
73
|
+
<rect x="36" y="16" width="2" height="1" fill="#38cfc1"/>
|
|
74
|
+
<rect x="38" y="16" width="2" height="1" fill="#06262b"/>
|
|
75
|
+
<rect x="6" y="17" width="2" height="1" fill="#06262b"/>
|
|
76
|
+
<rect x="8" y="17" width="1" height="1" fill="#38cfc1"/>
|
|
77
|
+
<rect x="9" y="17" width="2" height="1" fill="#1aa79c"/>
|
|
78
|
+
<rect x="11" y="17" width="4" height="1" fill="#06262b"/>
|
|
79
|
+
<rect x="15" y="17" width="3" height="1" fill="#1aa79c"/>
|
|
80
|
+
<rect x="18" y="17" width="1" height="1" fill="#06262b"/>
|
|
81
|
+
<rect x="19" y="17" width="1" height="1" fill="#a8fff0"/>
|
|
82
|
+
<rect x="20" y="17" width="1" height="1" fill="#38cfc1"/>
|
|
83
|
+
<rect x="21" y="17" width="2" height="1" fill="#06262b"/>
|
|
84
|
+
<rect x="23" y="17" width="10" height="1" fill="#0d5f60"/>
|
|
85
|
+
<rect x="33" y="17" width="1" height="1" fill="#38cfc1"/>
|
|
86
|
+
<rect x="34" y="17" width="1" height="1" fill="#0d5f60"/>
|
|
87
|
+
<rect x="35" y="17" width="2" height="1" fill="#06262b"/>
|
|
88
|
+
<rect x="37" y="17" width="1" height="1" fill="#38cfc1"/>
|
|
89
|
+
<rect x="38" y="17" width="3" height="1" fill="#06262b"/>
|
|
90
|
+
<rect x="6" y="18" width="2" height="1" fill="#06262b"/>
|
|
91
|
+
<rect x="8" y="18" width="2" height="1" fill="#1aa79c"/>
|
|
92
|
+
<rect x="10" y="18" width="6" height="1" fill="#06262b"/>
|
|
93
|
+
<rect x="16" y="18" width="2" height="1" fill="#1aa79c"/>
|
|
94
|
+
<rect x="18" y="18" width="1" height="1" fill="#06262b"/>
|
|
95
|
+
<rect x="19" y="18" width="1" height="1" fill="#a8fff0"/>
|
|
96
|
+
<rect x="20" y="18" width="1" height="1" fill="#38cfc1"/>
|
|
97
|
+
<rect x="21" y="18" width="1" height="1" fill="#06262b"/>
|
|
98
|
+
<rect x="22" y="18" width="12" height="1" fill="#0d5f60"/>
|
|
99
|
+
<rect x="34" y="18" width="1" height="1" fill="#38cfc1"/>
|
|
100
|
+
<rect x="35" y="18" width="1" height="1" fill="#0d5f60"/>
|
|
101
|
+
<rect x="36" y="18" width="1" height="1" fill="#06262b"/>
|
|
102
|
+
<rect x="37" y="18" width="1" height="1" fill="#38cfc1"/>
|
|
103
|
+
<rect x="38" y="18" width="3" height="1" fill="#06262b"/>
|
|
104
|
+
<rect x="6" y="19" width="2" height="1" fill="#06262b"/>
|
|
105
|
+
<rect x="8" y="19" width="2" height="1" fill="#1aa79c"/>
|
|
106
|
+
<rect x="10" y="19" width="1" height="1" fill="#06262b"/>
|
|
107
|
+
<rect x="11" y="19" width="4" height="1" fill="#1aa79c"/>
|
|
108
|
+
<rect x="15" y="19" width="1" height="1" fill="#06262b"/>
|
|
109
|
+
<rect x="16" y="19" width="2" height="1" fill="#1aa79c"/>
|
|
110
|
+
<rect x="18" y="19" width="1" height="1" fill="#06262b"/>
|
|
111
|
+
<rect x="19" y="19" width="1" height="1" fill="#a8fff0"/>
|
|
112
|
+
<rect x="20" y="19" width="1" height="1" fill="#38cfc1"/>
|
|
113
|
+
<rect x="21" y="19" width="1" height="1" fill="#06262b"/>
|
|
114
|
+
<rect x="22" y="19" width="2" height="1" fill="#0d5f60"/>
|
|
115
|
+
<rect x="24" y="19" width="2" height="1" fill="#a8fff0"/>
|
|
116
|
+
<rect x="26" y="19" width="10" height="1" fill="#0d5f60"/>
|
|
117
|
+
<rect x="36" y="19" width="1" height="1" fill="#06262b"/>
|
|
118
|
+
<rect x="37" y="19" width="1" height="1" fill="#38cfc1"/>
|
|
119
|
+
<rect x="38" y="19" width="1" height="1" fill="#06262b"/>
|
|
120
|
+
<rect x="39" y="19" width="1" height="1" fill="#38cfc1"/>
|
|
121
|
+
<rect x="40" y="19" width="2" height="1" fill="#06262b"/>
|
|
122
|
+
<rect x="6" y="20" width="2" height="1" fill="#06262b"/>
|
|
123
|
+
<rect x="8" y="20" width="2" height="1" fill="#1aa79c"/>
|
|
124
|
+
<rect x="10" y="20" width="1" height="1" fill="#06262b"/>
|
|
125
|
+
<rect x="11" y="20" width="4" height="1" fill="#1aa79c"/>
|
|
126
|
+
<rect x="15" y="20" width="4" height="1" fill="#06262b"/>
|
|
127
|
+
<rect x="19" y="20" width="1" height="1" fill="#a8fff0"/>
|
|
128
|
+
<rect x="20" y="20" width="1" height="1" fill="#38cfc1"/>
|
|
129
|
+
<rect x="21" y="20" width="1" height="1" fill="#06262b"/>
|
|
130
|
+
<rect x="22" y="20" width="3" height="1" fill="#0d5f60"/>
|
|
131
|
+
<rect x="25" y="20" width="2" height="1" fill="#a8fff0"/>
|
|
132
|
+
<rect x="27" y="20" width="9" height="1" fill="#0d5f60"/>
|
|
133
|
+
<rect x="36" y="20" width="1" height="1" fill="#06262b"/>
|
|
134
|
+
<rect x="37" y="20" width="1" height="1" fill="#38cfc1"/>
|
|
135
|
+
<rect x="38" y="20" width="1" height="1" fill="#06262b"/>
|
|
136
|
+
<rect x="39" y="20" width="1" height="1" fill="#a8fff0"/>
|
|
137
|
+
<rect x="40" y="20" width="2" height="1" fill="#06262b"/>
|
|
138
|
+
<rect x="6" y="21" width="2" height="1" fill="#06262b"/>
|
|
139
|
+
<rect x="8" y="21" width="2" height="1" fill="#1aa79c"/>
|
|
140
|
+
<rect x="10" y="21" width="1" height="1" fill="#06262b"/>
|
|
141
|
+
<rect x="11" y="21" width="4" height="1" fill="#1aa79c"/>
|
|
142
|
+
<rect x="15" y="21" width="4" height="1" fill="#06262b"/>
|
|
143
|
+
<rect x="19" y="21" width="2" height="1" fill="#38cfc1"/>
|
|
144
|
+
<rect x="21" y="21" width="1" height="1" fill="#06262b"/>
|
|
145
|
+
<rect x="22" y="21" width="3" height="1" fill="#0d5f60"/>
|
|
146
|
+
<rect x="25" y="21" width="2" height="1" fill="#a8fff0"/>
|
|
147
|
+
<rect x="27" y="21" width="9" height="1" fill="#0d5f60"/>
|
|
148
|
+
<rect x="36" y="21" width="1" height="1" fill="#06262b"/>
|
|
149
|
+
<rect x="37" y="21" width="1" height="1" fill="#38cfc1"/>
|
|
150
|
+
<rect x="38" y="21" width="1" height="1" fill="#06262b"/>
|
|
151
|
+
<rect x="39" y="21" width="1" height="1" fill="#a8fff0"/>
|
|
152
|
+
<rect x="40" y="21" width="2" height="1" fill="#06262b"/>
|
|
153
|
+
<rect x="6" y="22" width="2" height="1" fill="#06262b"/>
|
|
154
|
+
<rect x="8" y="22" width="2" height="1" fill="#1aa79c"/>
|
|
155
|
+
<rect x="10" y="22" width="1" height="1" fill="#06262b"/>
|
|
156
|
+
<rect x="11" y="22" width="8" height="1" fill="#1aa79c"/>
|
|
157
|
+
<rect x="19" y="22" width="2" height="1" fill="#38cfc1"/>
|
|
158
|
+
<rect x="21" y="22" width="1" height="1" fill="#06262b"/>
|
|
159
|
+
<rect x="22" y="22" width="4" height="1" fill="#0d5f60"/>
|
|
160
|
+
<rect x="26" y="22" width="2" height="1" fill="#a8fff0"/>
|
|
161
|
+
<rect x="28" y="22" width="8" height="1" fill="#0d5f60"/>
|
|
162
|
+
<rect x="36" y="22" width="1" height="1" fill="#06262b"/>
|
|
163
|
+
<rect x="37" y="22" width="1" height="1" fill="#38cfc1"/>
|
|
164
|
+
<rect x="38" y="22" width="1" height="1" fill="#06262b"/>
|
|
165
|
+
<rect x="39" y="22" width="1" height="1" fill="#38cfc1"/>
|
|
166
|
+
<rect x="40" y="22" width="2" height="1" fill="#06262b"/>
|
|
167
|
+
<rect x="6" y="23" width="2" height="1" fill="#06262b"/>
|
|
168
|
+
<rect x="8" y="23" width="2" height="1" fill="#1aa79c"/>
|
|
169
|
+
<rect x="10" y="23" width="1" height="1" fill="#06262b"/>
|
|
170
|
+
<rect x="11" y="23" width="8" height="1" fill="#1aa79c"/>
|
|
171
|
+
<rect x="19" y="23" width="2" height="1" fill="#38cfc1"/>
|
|
172
|
+
<rect x="21" y="23" width="1" height="1" fill="#06262b"/>
|
|
173
|
+
<rect x="22" y="23" width="5" height="1" fill="#0d5f60"/>
|
|
174
|
+
<rect x="27" y="23" width="2" height="1" fill="#a8fff0"/>
|
|
175
|
+
<rect x="29" y="23" width="7" height="1" fill="#0d5f60"/>
|
|
176
|
+
<rect x="36" y="23" width="1" height="1" fill="#06262b"/>
|
|
177
|
+
<rect x="37" y="23" width="1" height="1" fill="#38cfc1"/>
|
|
178
|
+
<rect x="38" y="23" width="1" height="1" fill="#06262b"/>
|
|
179
|
+
<rect x="39" y="23" width="1" height="1" fill="#38cfc1"/>
|
|
180
|
+
<rect x="40" y="23" width="2" height="1" fill="#06262b"/>
|
|
181
|
+
<rect x="6" y="24" width="2" height="1" fill="#06262b"/>
|
|
182
|
+
<rect x="8" y="24" width="2" height="1" fill="#1aa79c"/>
|
|
183
|
+
<rect x="10" y="24" width="1" height="1" fill="#06262b"/>
|
|
184
|
+
<rect x="11" y="24" width="8" height="1" fill="#1aa79c"/>
|
|
185
|
+
<rect x="19" y="24" width="2" height="1" fill="#38cfc1"/>
|
|
186
|
+
<rect x="21" y="24" width="1" height="1" fill="#06262b"/>
|
|
187
|
+
<rect x="22" y="24" width="4" height="1" fill="#0d5f60"/>
|
|
188
|
+
<rect x="26" y="24" width="2" height="1" fill="#a8fff0"/>
|
|
189
|
+
<rect x="28" y="24" width="8" height="1" fill="#0d5f60"/>
|
|
190
|
+
<rect x="36" y="24" width="1" height="1" fill="#06262b"/>
|
|
191
|
+
<rect x="37" y="24" width="1" height="1" fill="#38cfc1"/>
|
|
192
|
+
<rect x="38" y="24" width="1" height="1" fill="#06262b"/>
|
|
193
|
+
<rect x="39" y="24" width="1" height="1" fill="#38cfc1"/>
|
|
194
|
+
<rect x="40" y="24" width="2" height="1" fill="#06262b"/>
|
|
195
|
+
<rect x="6" y="25" width="2" height="1" fill="#06262b"/>
|
|
196
|
+
<rect x="8" y="25" width="2" height="1" fill="#1aa79c"/>
|
|
197
|
+
<rect x="10" y="25" width="1" height="1" fill="#06262b"/>
|
|
198
|
+
<rect x="11" y="25" width="8" height="1" fill="#1aa79c"/>
|
|
199
|
+
<rect x="19" y="25" width="2" height="1" fill="#38cfc1"/>
|
|
200
|
+
<rect x="21" y="25" width="1" height="1" fill="#06262b"/>
|
|
201
|
+
<rect x="22" y="25" width="3" height="1" fill="#0d5f60"/>
|
|
202
|
+
<rect x="25" y="25" width="2" height="1" fill="#a8fff0"/>
|
|
203
|
+
<rect x="27" y="25" width="9" height="1" fill="#0d5f60"/>
|
|
204
|
+
<rect x="36" y="25" width="1" height="1" fill="#06262b"/>
|
|
205
|
+
<rect x="37" y="25" width="1" height="1" fill="#38cfc1"/>
|
|
206
|
+
<rect x="38" y="25" width="1" height="1" fill="#06262b"/>
|
|
207
|
+
<rect x="39" y="25" width="1" height="1" fill="#1aa79c"/>
|
|
208
|
+
<rect x="40" y="25" width="2" height="1" fill="#06262b"/>
|
|
209
|
+
<rect x="6" y="26" width="2" height="1" fill="#06262b"/>
|
|
210
|
+
<rect x="8" y="26" width="2" height="1" fill="#1aa79c"/>
|
|
211
|
+
<rect x="10" y="26" width="1" height="1" fill="#06262b"/>
|
|
212
|
+
<rect x="11" y="26" width="4" height="1" fill="#1aa79c"/>
|
|
213
|
+
<rect x="15" y="26" width="4" height="1" fill="#06262b"/>
|
|
214
|
+
<rect x="19" y="26" width="1" height="1" fill="#a8fff0"/>
|
|
215
|
+
<rect x="20" y="26" width="1" height="1" fill="#38cfc1"/>
|
|
216
|
+
<rect x="21" y="26" width="1" height="1" fill="#06262b"/>
|
|
217
|
+
<rect x="22" y="26" width="2" height="1" fill="#0d5f60"/>
|
|
218
|
+
<rect x="24" y="26" width="2" height="1" fill="#a8fff0"/>
|
|
219
|
+
<rect x="26" y="26" width="3" height="1" fill="#0d5f60"/>
|
|
220
|
+
<rect x="29" y="26" width="5" height="1" fill="#a8fff0"/>
|
|
221
|
+
<rect x="34" y="26" width="2" height="1" fill="#0d5f60"/>
|
|
222
|
+
<rect x="36" y="26" width="1" height="1" fill="#06262b"/>
|
|
223
|
+
<rect x="37" y="26" width="1" height="1" fill="#38cfc1"/>
|
|
224
|
+
<rect x="38" y="26" width="1" height="1" fill="#06262b"/>
|
|
225
|
+
<rect x="39" y="26" width="1" height="1" fill="#1aa79c"/>
|
|
226
|
+
<rect x="40" y="26" width="2" height="1" fill="#06262b"/>
|
|
227
|
+
<rect x="6" y="27" width="2" height="1" fill="#06262b"/>
|
|
228
|
+
<rect x="8" y="27" width="2" height="1" fill="#1aa79c"/>
|
|
229
|
+
<rect x="10" y="27" width="1" height="1" fill="#06262b"/>
|
|
230
|
+
<rect x="11" y="27" width="4" height="1" fill="#1aa79c"/>
|
|
231
|
+
<rect x="15" y="27" width="1" height="1" fill="#06262b"/>
|
|
232
|
+
<rect x="16" y="27" width="2" height="1" fill="#1aa79c"/>
|
|
233
|
+
<rect x="18" y="27" width="1" height="1" fill="#06262b"/>
|
|
234
|
+
<rect x="19" y="27" width="1" height="1" fill="#a8fff0"/>
|
|
235
|
+
<rect x="20" y="27" width="1" height="1" fill="#38cfc1"/>
|
|
236
|
+
<rect x="21" y="27" width="1" height="1" fill="#06262b"/>
|
|
237
|
+
<rect x="22" y="27" width="14" height="1" fill="#0d5f60"/>
|
|
238
|
+
<rect x="36" y="27" width="1" height="1" fill="#06262b"/>
|
|
239
|
+
<rect x="37" y="27" width="1" height="1" fill="#38cfc1"/>
|
|
240
|
+
<rect x="38" y="27" width="1" height="1" fill="#06262b"/>
|
|
241
|
+
<rect x="39" y="27" width="1" height="1" fill="#1aa79c"/>
|
|
242
|
+
<rect x="40" y="27" width="2" height="1" fill="#06262b"/>
|
|
243
|
+
<rect x="6" y="28" width="2" height="1" fill="#06262b"/>
|
|
244
|
+
<rect x="8" y="28" width="2" height="1" fill="#1aa79c"/>
|
|
245
|
+
<rect x="10" y="28" width="6" height="1" fill="#06262b"/>
|
|
246
|
+
<rect x="16" y="28" width="2" height="1" fill="#1aa79c"/>
|
|
247
|
+
<rect x="18" y="28" width="1" height="1" fill="#06262b"/>
|
|
248
|
+
<rect x="19" y="28" width="1" height="1" fill="#a8fff0"/>
|
|
249
|
+
<rect x="20" y="28" width="1" height="1" fill="#38cfc1"/>
|
|
250
|
+
<rect x="21" y="28" width="1" height="1" fill="#06262b"/>
|
|
251
|
+
<rect x="22" y="28" width="14" height="1" fill="#0d5f60"/>
|
|
252
|
+
<rect x="36" y="28" width="1" height="1" fill="#06262b"/>
|
|
253
|
+
<rect x="37" y="28" width="1" height="1" fill="#38cfc1"/>
|
|
254
|
+
<rect x="38" y="28" width="3" height="1" fill="#06262b"/>
|
|
255
|
+
<rect x="6" y="29" width="2" height="1" fill="#06262b"/>
|
|
256
|
+
<rect x="8" y="29" width="3" height="1" fill="#1aa79c"/>
|
|
257
|
+
<rect x="11" y="29" width="4" height="1" fill="#06262b"/>
|
|
258
|
+
<rect x="15" y="29" width="3" height="1" fill="#1aa79c"/>
|
|
259
|
+
<rect x="18" y="29" width="1" height="1" fill="#06262b"/>
|
|
260
|
+
<rect x="19" y="29" width="1" height="1" fill="#a8fff0"/>
|
|
261
|
+
<rect x="20" y="29" width="1" height="1" fill="#38cfc1"/>
|
|
262
|
+
<rect x="21" y="29" width="2" height="1" fill="#06262b"/>
|
|
263
|
+
<rect x="23" y="29" width="12" height="1" fill="#0d5f60"/>
|
|
264
|
+
<rect x="35" y="29" width="2" height="1" fill="#06262b"/>
|
|
265
|
+
<rect x="37" y="29" width="1" height="1" fill="#38cfc1"/>
|
|
266
|
+
<rect x="38" y="29" width="1" height="1" fill="#06262b"/>
|
|
267
|
+
<rect x="6" y="30" width="2" height="1" fill="#06262b"/>
|
|
268
|
+
<rect x="8" y="30" width="10" height="1" fill="#1aa79c"/>
|
|
269
|
+
<rect x="18" y="30" width="1" height="1" fill="#06262b"/>
|
|
270
|
+
<rect x="19" y="30" width="1" height="1" fill="#a8fff0"/>
|
|
271
|
+
<rect x="20" y="30" width="2" height="1" fill="#38cfc1"/>
|
|
272
|
+
<rect x="22" y="30" width="14" height="1" fill="#06262b"/>
|
|
273
|
+
<rect x="36" y="30" width="2" height="1" fill="#38cfc1"/>
|
|
274
|
+
<rect x="38" y="30" width="1" height="1" fill="#06262b"/>
|
|
275
|
+
<rect x="8" y="31" width="1" height="1" fill="#06262b"/>
|
|
276
|
+
<rect x="9" y="31" width="9" height="1" fill="#1aa79c"/>
|
|
277
|
+
<rect x="18" y="31" width="1" height="1" fill="#06262b"/>
|
|
278
|
+
<rect x="19" y="31" width="1" height="1" fill="#a8fff0"/>
|
|
279
|
+
<rect x="20" y="31" width="2" height="1" fill="#38cfc1"/>
|
|
280
|
+
<rect x="22" y="31" width="14" height="1" fill="#06262b"/>
|
|
281
|
+
<rect x="36" y="31" width="2" height="1" fill="#38cfc1"/>
|
|
282
|
+
<rect x="38" y="31" width="1" height="1" fill="#06262b"/>
|
|
283
|
+
<rect x="8" y="32" width="1" height="1" fill="#06262b"/>
|
|
284
|
+
<rect x="9" y="32" width="9" height="1" fill="#1aa79c"/>
|
|
285
|
+
<rect x="18" y="32" width="1" height="1" fill="#06262b"/>
|
|
286
|
+
<rect x="19" y="32" width="2" height="1" fill="#1aa79c"/>
|
|
287
|
+
<rect x="21" y="32" width="2" height="1" fill="#38cfc1"/>
|
|
288
|
+
<rect x="23" y="32" width="11" height="1" fill="#a8fff0"/>
|
|
289
|
+
<rect x="34" y="32" width="1" height="1" fill="#0d5f60"/>
|
|
290
|
+
<rect x="35" y="32" width="2" height="1" fill="#38cfc1"/>
|
|
291
|
+
<rect x="37" y="32" width="1" height="1" fill="#1aa79c"/>
|
|
292
|
+
<rect x="38" y="32" width="1" height="1" fill="#06262b"/>
|
|
293
|
+
<rect x="9" y="33" width="1" height="1" fill="#06262b"/>
|
|
294
|
+
<rect x="10" y="33" width="7" height="1" fill="#1aa79c"/>
|
|
295
|
+
<rect x="17" y="33" width="1" height="1" fill="#06262b"/>
|
|
296
|
+
<rect x="18" y="33" width="2" height="1" fill="#1aa79c"/>
|
|
297
|
+
<rect x="20" y="33" width="2" height="1" fill="#06262b"/>
|
|
298
|
+
<rect x="22" y="33" width="12" height="1" fill="#38cfc1"/>
|
|
299
|
+
<rect x="34" y="33" width="1" height="1" fill="#0d5f60"/>
|
|
300
|
+
<rect x="35" y="33" width="1" height="1" fill="#38cfc1"/>
|
|
301
|
+
<rect x="36" y="33" width="1" height="1" fill="#1aa79c"/>
|
|
302
|
+
<rect x="37" y="33" width="1" height="1" fill="#06262b"/>
|
|
303
|
+
<rect x="9" y="34" width="2" height="1" fill="#06262b"/>
|
|
304
|
+
<rect x="11" y="34" width="5" height="1" fill="#1aa79c"/>
|
|
305
|
+
<rect x="16" y="34" width="1" height="1" fill="#06262b"/>
|
|
306
|
+
<rect x="17" y="34" width="5" height="1" fill="#1aa79c"/>
|
|
307
|
+
<rect x="22" y="34" width="1" height="1" fill="#0d5f60"/>
|
|
308
|
+
<rect x="23" y="34" width="10" height="1" fill="#1aa79c"/>
|
|
309
|
+
<rect x="33" y="34" width="1" height="1" fill="#0d5f60"/>
|
|
310
|
+
<rect x="34" y="34" width="1" height="1" fill="#1aa79c"/>
|
|
311
|
+
<rect x="35" y="34" width="2" height="1" fill="#06262b"/>
|
|
312
|
+
<rect x="10" y="35" width="26" height="1" fill="#06262b"/>
|
|
313
|
+
<rect x="10" y="36" width="6" height="1" fill="#38cfc1"/>
|
|
314
|
+
<rect x="16" y="36" width="16" height="1" fill="#06262b"/>
|
|
315
|
+
<rect x="32" y="36" width="4" height="1" fill="#38cfc1"/>
|
|
316
|
+
<rect x="16" y="37" width="16" height="1" fill="#06262b"/>
|
|
317
|
+
<rect x="16" y="38" width="1" height="1" fill="#06262b"/>
|
|
318
|
+
<rect x="17" y="38" width="5" height="1" fill="#1aa79c"/>
|
|
319
|
+
<rect x="22" y="38" width="1" height="1" fill="#38cfc1"/>
|
|
320
|
+
<rect x="23" y="38" width="1" height="1" fill="#06262b"/>
|
|
321
|
+
<rect x="24" y="38" width="1" height="1" fill="#38cfc1"/>
|
|
322
|
+
<rect x="25" y="38" width="1" height="1" fill="#06262b"/>
|
|
323
|
+
<rect x="26" y="38" width="1" height="1" fill="#38cfc1"/>
|
|
324
|
+
<rect x="27" y="38" width="1" height="1" fill="#06262b"/>
|
|
325
|
+
<rect x="28" y="38" width="2" height="1" fill="#38cfc1"/>
|
|
326
|
+
<rect x="30" y="38" width="2" height="1" fill="#06262b"/>
|
|
327
|
+
<rect x="17" y="39" width="2" height="1" fill="#06262b"/>
|
|
328
|
+
<rect x="19" y="39" width="3" height="1" fill="#1aa79c"/>
|
|
329
|
+
<rect x="22" y="39" width="7" height="1" fill="#38cfc1"/>
|
|
330
|
+
<rect x="29" y="39" width="2" height="1" fill="#06262b"/>
|
|
331
|
+
<rect x="18" y="40" width="12" height="1" fill="#06262b"/>
|
|
332
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|