@underpostnet/underpost 2.7.9
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/.dockerignore +14 -0
- package/.env.development +6 -0
- package/.env.production +6 -0
- package/.env.test +6 -0
- package/.github/workflows/ghpkg.yml +115 -0
- package/.github/workflows/publish.yml +84 -0
- package/.github/workflows/pwa-microservices-template.page.yml +54 -0
- package/.github/workflows/pwa-microservices-template.test.yml +30 -0
- package/.nycrc +9 -0
- package/.prettierignore +13 -0
- package/.prettierrc +9 -0
- package/.vscode/extensions.json +72 -0
- package/.vscode/settings.json +106 -0
- package/AUTHORS.md +10 -0
- package/CHANGELOG.md +85 -0
- package/Dockerfile +90 -0
- package/LICENSE +21 -0
- package/README.md +96 -0
- package/bin/cron.js +47 -0
- package/bin/db.js +180 -0
- package/bin/deploy.js +859 -0
- package/bin/file.js +109 -0
- package/bin/index.js +82 -0
- package/bin/ssl.js +55 -0
- package/bin/util.js +204 -0
- package/bin/vs.js +35 -0
- package/conf.js +265 -0
- package/docker-compose.yml +67 -0
- package/jsconfig.json +7 -0
- package/jsdoc.json +32 -0
- package/nodemon.json +6 -0
- package/package.json +134 -0
- package/prometheus.yml +36 -0
- package/src/api/core/core.controller.js +69 -0
- package/src/api/core/core.model.js +11 -0
- package/src/api/core/core.router.js +23 -0
- package/src/api/core/core.service.js +31 -0
- package/src/api/crypto/crypto.controller.js +51 -0
- package/src/api/crypto/crypto.model.js +23 -0
- package/src/api/crypto/crypto.router.js +20 -0
- package/src/api/crypto/crypto.service.js +64 -0
- package/src/api/default/default.controller.js +69 -0
- package/src/api/default/default.model.js +20 -0
- package/src/api/default/default.router.js +23 -0
- package/src/api/default/default.service.js +31 -0
- package/src/api/file/file.controller.js +53 -0
- package/src/api/file/file.model.js +19 -0
- package/src/api/file/file.router.js +21 -0
- package/src/api/file/file.service.js +80 -0
- package/src/api/instance/instance.controller.js +69 -0
- package/src/api/instance/instance.model.js +36 -0
- package/src/api/instance/instance.router.js +33 -0
- package/src/api/instance/instance.service.js +48 -0
- package/src/api/test/test.controller.js +59 -0
- package/src/api/test/test.model.js +14 -0
- package/src/api/test/test.router.js +21 -0
- package/src/api/test/test.service.js +35 -0
- package/src/api/user/user.build.js +16 -0
- package/src/api/user/user.controller.js +70 -0
- package/src/api/user/user.model.js +65 -0
- package/src/api/user/user.router.js +345 -0
- package/src/api/user/user.service.js +479 -0
- package/src/api.js +23 -0
- package/src/client/Default.index.js +40 -0
- package/src/client/components/core/Account.js +290 -0
- package/src/client/components/core/AgGrid.js +160 -0
- package/src/client/components/core/Auth.js +19 -0
- package/src/client/components/core/Badge.js +32 -0
- package/src/client/components/core/Blockchain.js +41 -0
- package/src/client/components/core/Blog.js +9 -0
- package/src/client/components/core/BtnIcon.js +101 -0
- package/src/client/components/core/CalendarCore.js +458 -0
- package/src/client/components/core/Chat.js +64 -0
- package/src/client/components/core/ColorPalette.js +5267 -0
- package/src/client/components/core/CommonJs.js +742 -0
- package/src/client/components/core/Content.js +193 -0
- package/src/client/components/core/Css.js +846 -0
- package/src/client/components/core/CssCore.js +844 -0
- package/src/client/components/core/D3Chart.js +44 -0
- package/src/client/components/core/Docs.js +331 -0
- package/src/client/components/core/DropDown.js +164 -0
- package/src/client/components/core/EventsUI.js +46 -0
- package/src/client/components/core/FileExplorer.js +699 -0
- package/src/client/components/core/FullScreen.js +45 -0
- package/src/client/components/core/Input.js +346 -0
- package/src/client/components/core/JoyStick.js +77 -0
- package/src/client/components/core/Keyboard.js +73 -0
- package/src/client/components/core/LoadingAnimation.js +178 -0
- package/src/client/components/core/LogIn.js +187 -0
- package/src/client/components/core/LogOut.js +58 -0
- package/src/client/components/core/Logger.js +26 -0
- package/src/client/components/core/Modal.js +1814 -0
- package/src/client/components/core/NotificationManager.js +84 -0
- package/src/client/components/core/Panel.js +613 -0
- package/src/client/components/core/PanelForm.js +469 -0
- package/src/client/components/core/Polyhedron.js +162 -0
- package/src/client/components/core/Recover.js +204 -0
- package/src/client/components/core/Responsive.js +68 -0
- package/src/client/components/core/RichText.js +53 -0
- package/src/client/components/core/Router.js +76 -0
- package/src/client/components/core/Scroll.js +34 -0
- package/src/client/components/core/SignUp.js +125 -0
- package/src/client/components/core/SocketIo.js +72 -0
- package/src/client/components/core/Stream.js +113 -0
- package/src/client/components/core/ToggleSwitch.js +87 -0
- package/src/client/components/core/ToolTip.js +26 -0
- package/src/client/components/core/Translate.js +446 -0
- package/src/client/components/core/Validator.js +100 -0
- package/src/client/components/core/VanillaJs.js +463 -0
- package/src/client/components/core/Wallet.js +106 -0
- package/src/client/components/core/WebComponent.js +44 -0
- package/src/client/components/core/Webhook.js +25 -0
- package/src/client/components/core/Worker.js +280 -0
- package/src/client/components/default/CommonDefault.js +29 -0
- package/src/client/components/default/CssDefault.js +13 -0
- package/src/client/components/default/ElementsDefault.js +38 -0
- package/src/client/components/default/LogInDefault.js +41 -0
- package/src/client/components/default/LogOutDefault.js +28 -0
- package/src/client/components/default/MenuDefault.js +389 -0
- package/src/client/components/default/RoutesDefault.js +48 -0
- package/src/client/components/default/SettingsDefault.js +16 -0
- package/src/client/components/default/SignUpDefault.js +9 -0
- package/src/client/components/default/SocketIoDefault.js +54 -0
- package/src/client/components/default/TranslateDefault.js +7 -0
- package/src/client/public/default/android-chrome-144x144.png +0 -0
- package/src/client/public/default/android-chrome-192x192.png +0 -0
- package/src/client/public/default/android-chrome-256x256.png +0 -0
- package/src/client/public/default/android-chrome-36x36.png +0 -0
- package/src/client/public/default/android-chrome-384x384.png +0 -0
- package/src/client/public/default/android-chrome-48x48.png +0 -0
- package/src/client/public/default/android-chrome-512x512.png +0 -0
- package/src/client/public/default/android-chrome-72x72.png +0 -0
- package/src/client/public/default/android-chrome-96x96.png +0 -0
- package/src/client/public/default/apple-touch-icon-1024x1024.png +0 -0
- package/src/client/public/default/apple-touch-icon-114x114.png +0 -0
- package/src/client/public/default/apple-touch-icon-120x120.png +0 -0
- package/src/client/public/default/apple-touch-icon-144x144.png +0 -0
- package/src/client/public/default/apple-touch-icon-152x152.png +0 -0
- package/src/client/public/default/apple-touch-icon-167x167.png +0 -0
- package/src/client/public/default/apple-touch-icon-180x180.png +0 -0
- package/src/client/public/default/apple-touch-icon-57x57.png +0 -0
- package/src/client/public/default/apple-touch-icon-60x60.png +0 -0
- package/src/client/public/default/apple-touch-icon-72x72.png +0 -0
- package/src/client/public/default/apple-touch-icon-76x76.png +0 -0
- package/src/client/public/default/apple-touch-icon-precomposed.png +0 -0
- package/src/client/public/default/apple-touch-icon.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1125x2436.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1136x640.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1170x2532.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1179x2556.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1242x2208.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1242x2688.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1284x2778.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1290x2796.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1334x750.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1488x2266.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1536x2048.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1620x2160.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1640x2160.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1668x2224.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1668x2388.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1792x828.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2048x1536.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2048x2732.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2160x1620.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2160x1640.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2208x1242.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2224x1668.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2266x1488.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2388x1668.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2436x1125.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2532x1170.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2556x1179.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2688x1242.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2732x2048.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2778x1284.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2796x1290.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-640x1136.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-750x1334.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-828x1792.png +0 -0
- package/src/client/public/default/assets/background/white.jpg +0 -0
- package/src/client/public/default/assets/background/white0-min.jpg +0 -0
- package/src/client/public/default/assets/background/white0.jpg +0 -0
- package/src/client/public/default/assets/logo/base-icon.png +0 -0
- package/src/client/public/default/assets/mailer/api-user-check.png +0 -0
- package/src/client/public/default/assets/mailer/api-user-invalid-token.png +0 -0
- package/src/client/public/default/assets/mailer/api-user-recover.png +0 -0
- package/src/client/public/default/browserconfig.xml +12 -0
- package/src/client/public/default/favicon-16x16.png +0 -0
- package/src/client/public/default/favicon-32x32.png +0 -0
- package/src/client/public/default/favicon-48x48.png +0 -0
- package/src/client/public/default/favicon.ico +0 -0
- package/src/client/public/default/manifest.webmanifest +69 -0
- package/src/client/public/default/mstile-144x144.png +0 -0
- package/src/client/public/default/mstile-150x150.png +0 -0
- package/src/client/public/default/mstile-310x150.png +0 -0
- package/src/client/public/default/mstile-310x310.png +0 -0
- package/src/client/public/default/mstile-70x70.png +0 -0
- package/src/client/public/default/plantuml/client-conf.svg +1 -0
- package/src/client/public/default/plantuml/client-schema.svg +1 -0
- package/src/client/public/default/plantuml/cron-conf.svg +1 -0
- package/src/client/public/default/plantuml/cron-schema.svg +1 -0
- package/src/client/public/default/plantuml/server-conf.svg +1 -0
- package/src/client/public/default/plantuml/server-schema.svg +1 -0
- package/src/client/public/default/plantuml/ssr-conf.svg +1 -0
- package/src/client/public/default/plantuml/ssr-schema.svg +1 -0
- package/src/client/public/default/site.webmanifest +69 -0
- package/src/client/public/default/sitemap +148 -0
- package/src/client/public/default/yandex-browser-50x50.png +0 -0
- package/src/client/public/default/yandex-browser-manifest.json +9 -0
- package/src/client/public/doc/favicon.ico +0 -0
- package/src/client/public/doc/sitemap +148 -0
- package/src/client/public/test/favicon.ico +0 -0
- package/src/client/public/test/sitemap +148 -0
- package/src/client/services/core/core.service.js +170 -0
- package/src/client/services/crypto/crypto.service.js +70 -0
- package/src/client/services/default/default.management.js +343 -0
- package/src/client/services/default/default.service.js +89 -0
- package/src/client/services/file/file.service.js +70 -0
- package/src/client/services/instance/instance.management.js +74 -0
- package/src/client/services/instance/instance.service.js +89 -0
- package/src/client/services/test/test.service.js +70 -0
- package/src/client/services/user/user.management.js +50 -0
- package/src/client/services/user/user.service.js +89 -0
- package/src/client/ssr/Render.js +237 -0
- package/src/client/ssr/common/Alert.js +75 -0
- package/src/client/ssr/common/SsrCore.js +91 -0
- package/src/client/ssr/common/Translate.js +26 -0
- package/src/client/ssr/common/Worker.js +28 -0
- package/src/client/ssr/components/body/CacheControl.js +114 -0
- package/src/client/ssr/components/body/DefaultSplashScreen.js +90 -0
- package/src/client/ssr/components/email/DefaultRecoverEmail.js +21 -0
- package/src/client/ssr/components/email/DefaultVerifyEmail.js +17 -0
- package/src/client/ssr/components/head/Css.js +241 -0
- package/src/client/ssr/components/head/DefaultScripts.js +3 -0
- package/src/client/ssr/components/head/Production.js +1 -0
- package/src/client/ssr/components/head/Pwa.js +146 -0
- package/src/client/ssr/components/head/PwaDefault.js +60 -0
- package/src/client/ssr/components/head/Seo.js +14 -0
- package/src/client/ssr/pages/404.js +12 -0
- package/src/client/ssr/pages/500.js +12 -0
- package/src/client/ssr/pages/maintenance.js +14 -0
- package/src/client/ssr/pages/offline.js +21 -0
- package/src/client/sw/default.sw.js +205 -0
- package/src/client/sw/template.sw.js +84 -0
- package/src/client.build.js +22 -0
- package/src/client.dev.js +21 -0
- package/src/db/DataBaseProvider.js +45 -0
- package/src/db/mariadb/MariaDB.js +33 -0
- package/src/db/mongo/MongooseDB.js +124 -0
- package/src/dns.js +22 -0
- package/src/index.js +43 -0
- package/src/mailer/EmailRender.js +69 -0
- package/src/mailer/MailerProvider.js +96 -0
- package/src/proxy.js +22 -0
- package/src/runtime/lampp/Lampp.js +115 -0
- package/src/runtime/nginx/Nginx.js +3 -0
- package/src/runtime/xampp/Xampp.js +49 -0
- package/src/server/auth.js +235 -0
- package/src/server/backup.js +120 -0
- package/src/server/client-build-live.js +98 -0
- package/src/server/client-build.js +754 -0
- package/src/server/client-dev-server.js +60 -0
- package/src/server/client-formatted.js +58 -0
- package/src/server/client-icons.js +151 -0
- package/src/server/conf.js +929 -0
- package/src/server/crypto.js +91 -0
- package/src/server/dns.js +118 -0
- package/src/server/downloader.js +42 -0
- package/src/server/logger.js +190 -0
- package/src/server/network.js +209 -0
- package/src/server/peer.js +33 -0
- package/src/server/process.js +66 -0
- package/src/server/prompt-optimizer.js +28 -0
- package/src/server/proxy.js +118 -0
- package/src/server/runtime.js +463 -0
- package/src/server/ssl.js +120 -0
- package/src/server.js +25 -0
- package/src/ws/IoInterface.js +45 -0
- package/src/ws/IoServer.js +39 -0
- package/src/ws/core/channels/core.ws.chat.js +23 -0
- package/src/ws/core/channels/core.ws.mailer.js +35 -0
- package/src/ws/core/channels/core.ws.stream.js +31 -0
- package/src/ws/core/core.ws.connection.js +28 -0
- package/src/ws/core/core.ws.emit.js +14 -0
- package/src/ws/core/core.ws.server.js +24 -0
- package/src/ws/core/management/core.ws.chat.js +8 -0
- package/src/ws/core/management/core.ws.mailer.js +16 -0
- package/src/ws/core/management/core.ws.stream.js +8 -0
- package/src/ws/default/channels/default.ws.main.js +16 -0
- package/src/ws/default/default.ws.connection.js +22 -0
- package/src/ws/default/default.ws.emit.js +14 -0
- package/src/ws/default/default.ws.server.js +20 -0
- package/src/ws/default/management/default.ws.main.js +8 -0
- package/startup.js +11 -0
- package/supervisord-openssh-server.conf +5 -0
- package/test/api.test.js +60 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<browserconfig>
|
|
3
|
+
<msapplication>
|
|
4
|
+
<tile>
|
|
5
|
+
<square70x70logo src="/mstile-70x70.png"/>
|
|
6
|
+
<square150x150logo src="/mstile-150x150.png"/>
|
|
7
|
+
<wide310x150logo src="/mstile-310x150.png"/>
|
|
8
|
+
<square310x310logo src="/mstile-310x310.png"/>
|
|
9
|
+
<TileColor>#fff</TileColor>
|
|
10
|
+
</tile>
|
|
11
|
+
</msapplication>
|
|
12
|
+
</browserconfig>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Default",
|
|
3
|
+
"short_name": "Default",
|
|
4
|
+
"description": null,
|
|
5
|
+
"dir": "auto",
|
|
6
|
+
"lang": "en-US",
|
|
7
|
+
"display": "standalone",
|
|
8
|
+
"orientation": "any",
|
|
9
|
+
"scope": "/",
|
|
10
|
+
"start_url": "/?homescreen=1",
|
|
11
|
+
"background_color": "#fff",
|
|
12
|
+
"theme_color": "#fff",
|
|
13
|
+
"icons": [
|
|
14
|
+
{
|
|
15
|
+
"src": "/android-chrome-36x36.png",
|
|
16
|
+
"sizes": "36x36",
|
|
17
|
+
"type": "image/png",
|
|
18
|
+
"purpose": "any maskable"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"src": "/android-chrome-48x48.png",
|
|
22
|
+
"sizes": "48x48",
|
|
23
|
+
"type": "image/png",
|
|
24
|
+
"purpose": "any maskable"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"src": "/android-chrome-72x72.png",
|
|
28
|
+
"sizes": "72x72",
|
|
29
|
+
"type": "image/png",
|
|
30
|
+
"purpose": "any maskable"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"src": "/android-chrome-96x96.png",
|
|
34
|
+
"sizes": "96x96",
|
|
35
|
+
"type": "image/png",
|
|
36
|
+
"purpose": "any maskable"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"src": "/android-chrome-144x144.png",
|
|
40
|
+
"sizes": "144x144",
|
|
41
|
+
"type": "image/png",
|
|
42
|
+
"purpose": "any maskable"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"src": "/android-chrome-192x192.png",
|
|
46
|
+
"sizes": "192x192",
|
|
47
|
+
"type": "image/png",
|
|
48
|
+
"purpose": "any maskable"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"src": "/android-chrome-256x256.png",
|
|
52
|
+
"sizes": "256x256",
|
|
53
|
+
"type": "image/png",
|
|
54
|
+
"purpose": "any maskable"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"src": "/android-chrome-384x384.png",
|
|
58
|
+
"sizes": "384x384",
|
|
59
|
+
"type": "image/png",
|
|
60
|
+
"purpose": "any maskable"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"src": "/android-chrome-512x512.png",
|
|
64
|
+
"sizes": "512x512",
|
|
65
|
+
"type": "image/png",
|
|
66
|
+
"purpose": "any maskable"
|
|
67
|
+
}
|
|
68
|
+
]
|
|
69
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentStyleType="text/css" height="2767px" preserveAspectRatio="none" style="width:1581px;height:2767px;background:#FFFFFF;" version="1.1" viewBox="0 0 1581 2767" width="1581px" zoomAndPan="magnify"><defs/><g><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="87" x="10" y="1678.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="55" x="15" y="1693.4951">default</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="80" y="1693.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="75" x2="75" y1="1678.5" y2="1698.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="87" x="10" y="1678.5"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="130" x="134" y="1638"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="73" x="139" y="1652.9951">metadata</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="247" y="1652.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="242" x2="242" y1="1638" y2="1658.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="134" x2="264" y1="1658.2969" y2="1658.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="98" x="139" y="1673.292">components</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="247" y="1673.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="242" x2="242" y1="1658.2969" y2="1678.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="134" x2="264" y1="1678.5938" y2="1678.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="46" x="139" y="1693.5889">views</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="247" y="1693.5889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="242" x2="242" y1="1678.5938" y2="1698.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="134" x2="264" y1="1698.8906" y2="1698.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="38" x="139" y="1713.8857">dists</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="247" y="1713.8857"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="242" x2="242" y1="1698.8906" y2="1719.1875"/><line style="stroke:#000000;stroke-width:1.0;" x1="134" x2="264" y1="1719.1875" y2="1719.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="67" x="139" y="1734.1826">services</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="247" y="1734.1826"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="242" x2="242" y1="1719.1875" y2="1739.4844"/><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="130" x="134" y="1638"/><rect fill="#F1F1F1" height="162.375" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="576" x="301" y="455.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="306" y="470.4951">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="73" x="457" y="470.4951">Demo App</text><line style="stroke:#000000;stroke-width:1.0;" x1="452" x2="452" y1="455.5" y2="475.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="301" x2="877" y1="475.7969" y2="475.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="141" x="306" y="490.792">backgroundImage</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="415" x="457" y="490.792">./src/client/public/default/assets/background/white0-min.jpg</text><line style="stroke:#000000;stroke-width:1.0;" x1="452" x2="452" y1="475.7969" y2="496.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="301" x2="877" y1="496.0938" y2="496.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="89" x="306" y="511.0889">description</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="109" x="457" y="511.0889">Web application</text><line style="stroke:#000000;stroke-width:1.0;" x1="452" x2="452" y1="496.0938" y2="516.3906"/><line style="stroke:#000000;stroke-width:1.0;" x1="301" x2="877" y1="516.3906" y2="516.3906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="78" x="306" y="531.3857">keywords</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="457" y="531.3857"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="452" x2="452" y1="516.3906" y2="536.6875"/><line style="stroke:#000000;stroke-width:1.0;" x1="301" x2="877" y1="536.6875" y2="536.6875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="52" x="306" y="551.6826">author</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="229" x="457" y="551.6826">https://github.com/underpostnet</text><line style="stroke:#000000;stroke-width:1.0;" x1="452" x2="452" y1="536.6875" y2="556.9844"/><line style="stroke:#000000;stroke-width:1.0;" x1="301" x2="877" y1="556.9844" y2="556.9844"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="77" x="306" y="571.9795">thumbnail</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="207" x="457" y="571.9795">android-chrome-384x384.png</text><line style="stroke:#000000;stroke-width:1.0;" x1="452" x2="452" y1="556.9844" y2="577.2813"/><line style="stroke:#000000;stroke-width:1.0;" x1="301" x2="877" y1="577.2813" y2="577.2813"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="92" x="306" y="592.2764">themeColor</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="63" x="457" y="592.2764">#ececec</text><line style="stroke:#000000;stroke-width:1.0;" x1="452" x2="452" y1="577.2813" y2="597.5781"/><line style="stroke:#000000;stroke-width:1.0;" x1="301" x2="877" y1="597.5781" y2="597.5781"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="122" x="306" y="612.5732">pwaAssetsPath</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="4" x="457" y="612.5732"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="452" x2="452" y1="597.5781" y2="617.875"/><rect fill="none" height="162.375" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="576" x="301" y="455.5"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="102" x="1190.5" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="29" x="1195.5" y="24.9951">web</text><line style="stroke:#000000;stroke-width:1.0;" x1="1190.5" x2="1292.5" y1="30.2969" y2="30.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="26" x="1195.5" y="45.292">app</text><line style="stroke:#000000;stroke-width:1.0;" x1="1190.5" x2="1292.5" y1="50.5938" y2="50.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="25" x="1195.5" y="65.5889">spa</text><line style="stroke:#000000;stroke-width:1.0;" x1="1190.5" x2="1292.5" y1="70.8906" y2="70.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="40" x="1195.5" y="85.8857">demo</text><line style="stroke:#000000;stroke-width:1.0;" x1="1190.5" x2="1292.5" y1="91.1875" y2="91.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="92" x="1195.5" y="106.1826">github-pages</text><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="102" x="1190.5" y="10"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="87" x="545.5" y="1101"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="36" x="550.5" y="1115.9951">core</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="615.5" y="1115.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="610.5" x2="610.5" y1="1101" y2="1121.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="545.5" x2="632.5" y1="1121.2969" y2="1121.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="55" x="550.5" y="1136.292">default</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="615.5" y="1136.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="610.5" x2="610.5" y1="1121.2969" y2="1141.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="87" x="545.5" y="1101"/><rect fill="#F1F1F1" height="872.7656" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="1168.5" y="129"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="74" x="1173.5" y="143.9951">CommonJs</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="149.2969" y2="149.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="54" x="1173.5" y="164.292">VanillaJs</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="169.5938" y2="169.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="81" x="1173.5" y="184.5889">Responsive</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="189.8906" y2="189.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="65" x="1173.5" y="204.8857">Keyboard</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="210.1875" y2="210.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="64" x="1173.5" y="225.1826">Translate</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="230.4844" y2="230.4844"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="41" x="1173.5" y="245.4795">Modal</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="250.7813" y2="250.7813"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="53" x="1173.5" y="265.7764">BtnIcon</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="271.0781" y2="271.0781"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="48" x="1173.5" y="286.0732">Logger</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="291.375" y2="291.375"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="26" x="1173.5" y="306.3701">Css</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="311.6719" y2="311.6719"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="136" x="1173.5" y="326.667">NotificationManager</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="331.9688" y2="331.9688"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="93" x="1173.5" y="346.9639">ToggleSwitch</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="352.2656" y2="352.2656"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="74" x="1173.5" y="367.2607">DropDown</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="372.5625" y2="372.5625"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="122" x="1173.5" y="387.5576">LoadingAnimation</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="392.8594" y2="392.8594"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="60" x="1173.5" y="407.8545">EventsUI</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="413.1563" y2="413.1563"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="46" x="1173.5" y="428.1514">AgGrid</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="433.4531" y2="433.4531"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="1173.5" y="448.4482">Input</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="453.75" y2="453.75"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="59" x="1173.5" y="468.7451">Validator</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="474.0469" y2="474.0469"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1173.5" y="489.042">SignUp</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="494.3438" y2="494.3438"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="37" x="1173.5" y="509.3389">LogIn</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="514.6406" y2="514.6406"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="50" x="1173.5" y="529.6357">LogOut</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="534.9375" y2="534.9375"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="47" x="1173.5" y="549.9326">Router</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="555.2344" y2="555.2344"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="57" x="1173.5" y="570.2295">Account</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="575.5313" y2="575.5313"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="32" x="1173.5" y="590.5264">Auth</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="595.8281" y2="595.8281"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="72" x="1173.5" y="610.8232">FullScreen</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="616.125" y2="616.125"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="60" x="1173.5" y="631.1201">RichText</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="636.4219" y2="636.4219"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="94" x="1173.5" y="651.417">CalendarCore</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="656.7188" y2="656.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="57" x="1173.5" y="671.7139">D3Chart</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="677.0156" y2="677.0156"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1173.5" y="692.0107">Stream</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="697.3125" y2="697.3125"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="60" x="1173.5" y="712.3076">SocketIo</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="717.6094" y2="717.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="36" x="1173.5" y="732.6045">Docs</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="737.9063" y2="737.9063"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="56" x="1173.5" y="752.9014">Content</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="758.2031" y2="758.2031"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="79" x="1173.5" y="773.1982">FileExplorer</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="778.5" y2="778.5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="32" x="1173.5" y="793.4951">Chat</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="798.7969" y2="798.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1173.5" y="813.792">Worker</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="819.0938" y2="819.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="59" x="1173.5" y="834.0889">CssCore</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="839.3906" y2="839.3906"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="41" x="1173.5" y="854.3857">Wallet</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="859.6875" y2="859.6875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1173.5" y="874.6826">Badge</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="879.9844" y2="879.9844"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="51" x="1173.5" y="894.9795">ToolTip</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="900.2813" y2="900.2813"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="66" x="1173.5" y="915.2764">Webhook</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="920.5781" y2="920.5781"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="57" x="1173.5" y="935.5732">Recover</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="940.875" y2="940.875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="1173.5" y="955.8701">Panel</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="961.1719" y2="961.1719"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="73" x="1173.5" y="976.167">PanelForm</text><line style="stroke:#000000;stroke-width:1.0;" x1="1168.5" x2="1314.5" y1="981.4688" y2="981.4688"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="37" x="1173.5" y="996.4639">Scroll</text><rect fill="none" height="872.7656" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="1168.5" y="129"/><rect fill="#F1F1F1" height="223.2656" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="124" x="1179.5" y="1020"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="88" x="1184.5" y="1034.9951">MenuDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1179.5" x2="1303.5" y1="1040.2969" y2="1040.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="99" x="1184.5" y="1055.292">RoutesDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1179.5" x2="1303.5" y1="1060.5938" y2="1060.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="114" x="1184.5" y="1075.5889">ElementsDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1179.5" x2="1303.5" y1="1080.8906" y2="1080.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="112" x="1184.5" y="1095.8857">CommonDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1179.5" x2="1303.5" y1="1101.1875" y2="1101.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="75" x="1184.5" y="1116.1826">CssDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1179.5" x2="1303.5" y1="1121.4844" y2="1121.4844"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="86" x="1184.5" y="1136.4795">LogInDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1179.5" x2="1303.5" y1="1141.7813" y2="1141.7813"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="99" x="1184.5" y="1156.7764">LogOutDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1179.5" x2="1303.5" y1="1162.0781" y2="1162.0781"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="98" x="1184.5" y="1177.0732">SignUpDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1179.5" x2="1303.5" y1="1182.375" y2="1182.375"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="113" x="1184.5" y="1197.3701">TranslateDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1179.5" x2="1303.5" y1="1202.6719" y2="1202.6719"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="106" x="1184.5" y="1217.667">SettingsDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1179.5" x2="1303.5" y1="1222.9688" y2="1222.9688"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="109" x="1184.5" y="1237.9639">SocketIoDefault</text><rect fill="none" height="223.2656" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="124" x="1179.5" y="1020"/><rect fill="#F1F1F1" height="202.9688" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="22" x="577" y="1586"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="582" y="1600.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="577" x2="599" y1="1606.2969" y2="1606.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="582" y="1621.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="577" x2="599" y1="1626.5938" y2="1626.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="582" y="1641.5889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="577" x2="599" y1="1646.8906" y2="1646.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="582" y="1661.8857"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="577" x2="599" y1="1667.1875" y2="1667.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="582" y="1682.1826"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="577" x2="599" y1="1687.4844" y2="1687.4844"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="582" y="1702.4795"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="577" x2="599" y1="1707.7813" y2="1707.7813"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="582" y="1722.7764"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="577" x2="599" y1="1728.0781" y2="1728.0781"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="582" y="1743.0732"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="577" x2="599" y1="1748.375" y2="1748.375"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="582" y="1763.3701"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="577" x2="599" y1="1768.6719" y2="1768.6719"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="582" y="1783.667"> </text><rect fill="none" height="202.9688" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="22" x="577" y="1586"/><rect fill="#F1F1F1" height="81.1875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="112" x="1185.5" y="1261"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1190.5" y="1275.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="5" x="1243.5" y="1275.9951">/</text><line style="stroke:#000000;stroke-width:1.0;" x1="1238.5" x2="1238.5" y1="1261" y2="1281.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1185.5" x2="1297.5" y1="1281.2969" y2="1281.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1190.5" y="1296.292">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="41" x="1243.5" y="1296.292">Home</text><line style="stroke:#000000;stroke-width:1.0;" x1="1238.5" x2="1238.5" y1="1281.2969" y2="1301.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1185.5" x2="1297.5" y1="1301.5938" y2="1301.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1190.5" y="1316.5889">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1243.5" y="1316.5889">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1238.5" x2="1238.5" y1="1301.5938" y2="1321.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="1185.5" x2="1297.5" y1="1321.8906" y2="1321.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="25" x="1190.5" y="1336.8857">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1243.5" y="1336.8857">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1238.5" x2="1238.5" y1="1321.8906" y2="1342.1875"/><rect fill="none" height="81.1875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="112" x="1185.5" y="1261"/><rect fill="#F1F1F1" height="81.1875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="112" x="1185.5" y="1360"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1190.5" y="1374.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1243.5" y="1374.9951">/home</text><line style="stroke:#000000;stroke-width:1.0;" x1="1238.5" x2="1238.5" y1="1360" y2="1380.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1185.5" x2="1297.5" y1="1380.2969" y2="1380.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1190.5" y="1395.292">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="41" x="1243.5" y="1395.292">Home</text><line style="stroke:#000000;stroke-width:1.0;" x1="1238.5" x2="1238.5" y1="1380.2969" y2="1400.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1185.5" x2="1297.5" y1="1400.5938" y2="1400.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1190.5" y="1415.5889">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1243.5" y="1415.5889">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1238.5" x2="1238.5" y1="1400.5938" y2="1420.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="1185.5" x2="1297.5" y1="1420.8906" y2="1420.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="25" x="1190.5" y="1435.8857">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1243.5" y="1435.8857">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1238.5" x2="1238.5" y1="1420.8906" y2="1441.1875"/><rect fill="none" height="81.1875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="112" x="1185.5" y="1360"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="124" x="1179.5" y="1459"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1184.5" y="1473.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="61" x="1237.5" y="1473.9951">/settings</text><line style="stroke:#000000;stroke-width:1.0;" x1="1232.5" x2="1232.5" y1="1459" y2="1479.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1179.5" x2="1303.5" y1="1479.2969" y2="1479.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1184.5" y="1494.292">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1237.5" y="1494.292">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1232.5" x2="1232.5" y1="1479.2969" y2="1499.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1179.5" x2="1303.5" y1="1499.5938" y2="1499.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="25" x="1184.5" y="1514.5889">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1237.5" y="1514.5889">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1232.5" x2="1232.5" y1="1499.5938" y2="1519.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="124" x="1179.5" y="1459"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="112" x="1185.5" y="1538"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1190.5" y="1552.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="1243.5" y="1552.9951">/log-in</text><line style="stroke:#000000;stroke-width:1.0;" x1="1238.5" x2="1238.5" y1="1538" y2="1558.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1185.5" x2="1297.5" y1="1558.2969" y2="1558.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1190.5" y="1573.292">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1243.5" y="1573.292">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1238.5" x2="1238.5" y1="1558.2969" y2="1578.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1185.5" x2="1297.5" y1="1578.5938" y2="1578.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="25" x="1190.5" y="1593.5889">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1243.5" y="1593.5889">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1238.5" x2="1238.5" y1="1578.5938" y2="1598.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="112" x="1185.5" y="1538"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="120" x="1181.5" y="1617"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1186.5" y="1631.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="57" x="1239.5" y="1631.9951">/sign-up</text><line style="stroke:#000000;stroke-width:1.0;" x1="1234.5" x2="1234.5" y1="1617" y2="1637.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1181.5" x2="1301.5" y1="1637.2969" y2="1637.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1186.5" y="1652.292">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1239.5" y="1652.292">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1234.5" x2="1234.5" y1="1637.2969" y2="1657.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1181.5" x2="1301.5" y1="1657.5938" y2="1657.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="25" x="1186.5" y="1672.5889">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1239.5" y="1672.5889">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1234.5" x2="1234.5" y1="1657.5938" y2="1677.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="120" x="1181.5" y="1617"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="117" x="1183" y="1696"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1188" y="1710.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="54" x="1241" y="1710.9951">/log-out</text><line style="stroke:#000000;stroke-width:1.0;" x1="1236" x2="1236" y1="1696" y2="1716.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1183" x2="1300" y1="1716.2969" y2="1716.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1188" y="1731.292">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1241" y="1731.292">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1236" x2="1236" y1="1716.2969" y2="1736.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1183" x2="1300" y1="1736.5938" y2="1736.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="25" x="1188" y="1751.5889">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1241" y="1751.5889">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1236" x2="1236" y1="1736.5938" y2="1756.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="117" x="1183" y="1696"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="124" x="1179.5" y="1775"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1184.5" y="1789.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="61" x="1237.5" y="1789.9951">/account</text><line style="stroke:#000000;stroke-width:1.0;" x1="1232.5" x2="1232.5" y1="1775" y2="1795.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1179.5" x2="1303.5" y1="1795.2969" y2="1795.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1184.5" y="1810.292">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1237.5" y="1810.292">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1232.5" x2="1232.5" y1="1795.2969" y2="1815.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1179.5" x2="1303.5" y1="1815.5938" y2="1815.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="25" x="1184.5" y="1830.5889">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1237.5" y="1830.5889">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1232.5" x2="1232.5" y1="1815.5938" y2="1835.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="124" x="1179.5" y="1775"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="112" x="1185.5" y="1854"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1190.5" y="1868.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1243.5" y="1868.9951">/docs</text><line style="stroke:#000000;stroke-width:1.0;" x1="1238.5" x2="1238.5" y1="1854" y2="1874.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1185.5" x2="1297.5" y1="1874.2969" y2="1874.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1190.5" y="1889.292">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1243.5" y="1889.292">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1238.5" x2="1238.5" y1="1874.2969" y2="1894.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1185.5" x2="1297.5" y1="1894.5938" y2="1894.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="25" x="1190.5" y="1909.5889">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1243.5" y="1909.5889">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1238.5" x2="1238.5" y1="1894.5938" y2="1914.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="112" x="1185.5" y="1854"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="120" x="1181.5" y="1933"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1186.5" y="1947.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="57" x="1239.5" y="1947.9951">/recover</text><line style="stroke:#000000;stroke-width:1.0;" x1="1234.5" x2="1234.5" y1="1933" y2="1953.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1181.5" x2="1301.5" y1="1953.2969" y2="1953.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1186.5" y="1968.292">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1239.5" y="1968.292">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1234.5" x2="1234.5" y1="1953.2969" y2="1973.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1181.5" x2="1301.5" y1="1973.5938" y2="1973.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="25" x="1186.5" y="1988.5889">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1239.5" y="1988.5889">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1234.5" x2="1234.5" y1="1973.5938" y2="1993.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="120" x="1181.5" y="1933"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="212" x="1135.5" y="2012"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1140.5" y="2026.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="149" x="1193.5" y="2026.9951">/default-management</text><line style="stroke:#000000;stroke-width:1.0;" x1="1188.5" x2="1188.5" y1="2012" y2="2032.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1135.5" x2="1347.5" y1="2032.2969" y2="2032.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1140.5" y="2047.292">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1193.5" y="2047.292">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1188.5" x2="1188.5" y1="2032.2969" y2="2052.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1135.5" x2="1347.5" y1="2052.5938" y2="2052.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="25" x="1140.5" y="2067.5889">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="1193.5" y="2067.5889">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1188.5" x2="1188.5" y1="2052.5938" y2="2072.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="212" x="1135.5" y="2012"/><rect fill="#F1F1F1" height="162.375" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="22" x="577" y="2268.5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="582" y="2283.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="577" x2="599" y1="2288.7969" y2="2288.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="582" y="2303.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="577" x2="599" y1="2309.0938" y2="2309.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="582" y="2324.0889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="577" x2="599" y1="2329.3906" y2="2329.3906"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="582" y="2344.3857"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="577" x2="599" y1="2349.6875" y2="2349.6875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="582" y="2364.6826"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="577" x2="599" y1="2369.9844" y2="2369.9844"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="582" y="2384.9795"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="577" x2="599" y1="2390.2813" y2="2390.2813"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="582" y="2405.2764"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="577" x2="599" y1="2410.5781" y2="2410.5781"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="582" y="2425.5732"> </text><rect fill="none" height="162.375" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="22" x="577" y="2268.5"/><rect fill="#F1F1F1" height="81.1875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="461" x="1011" y="2091"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="47" x="1016" y="2105.9951">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="295" x="1172" y="2105.9951">./node_modules/@neodrag/vanilla/dist/min</text><line style="stroke:#000000;stroke-width:1.0;" x1="1167" x2="1167" y1="2091" y2="2111.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1011" x2="1472" y1="2111.2969" y2="2111.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="101" x="1016" y="2126.292">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="153" x="1172" y="2126.292">/dist/@neodrag-vanilla</text><line style="stroke:#000000;stroke-width:1.0;" x1="1167" x2="1167" y1="2111.2969" y2="2131.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1011" x2="1472" y1="2131.5938" y2="2131.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="101" x="1016" y="2146.5889">import_name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="118" x="1172" y="2146.5889">@neodrag/vanilla</text><line style="stroke:#000000;stroke-width:1.0;" x1="1167" x2="1167" y1="2131.5938" y2="2151.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="1011" x2="1472" y1="2151.8906" y2="2151.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="146" x="1016" y="2166.8857">import_name_build</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="210" x="1172" y="2166.8857">/dist/@neodrag-vanilla/index.js</text><line style="stroke:#000000;stroke-width:1.0;" x1="1167" x2="1167" y1="2151.8906" y2="2172.1875"/><rect fill="none" height="81.1875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="461" x="1011" y="2091"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="473" x="1005" y="2190"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="47" x="1010" y="2204.9951">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="352" x="1121" y="2204.9951">./node_modules/@fortawesome/fontawesome-free</text><line style="stroke:#000000;stroke-width:1.0;" x1="1116" x2="1116" y1="2190" y2="2210.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1005" x2="1478" y1="2210.2969" y2="2210.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="101" x="1010" y="2225.292">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="129" x="1121" y="2225.292">/dist/fontawesome</text><line style="stroke:#000000;stroke-width:1.0;" x1="1116" x2="1116" y1="2210.2969" y2="2230.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="473" x="1005" y="2190"/><rect fill="#F1F1F1" height="81.1875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="447" x="1018" y="2249"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="47" x="1023" y="2263.9951">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="245" x="1179" y="2263.9951">./node_modules/sortablejs/modular</text><line style="stroke:#000000;stroke-width:1.0;" x1="1174" x2="1174" y1="2249" y2="2269.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1018" x2="1465" y1="2269.2969" y2="2269.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="101" x="1023" y="2284.292">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="102" x="1179" y="2284.292">/dist/sortablejs</text><line style="stroke:#000000;stroke-width:1.0;" x1="1174" x2="1174" y1="2269.2969" y2="2289.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1018" x2="1465" y1="2289.5938" y2="2289.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="101" x="1023" y="2304.5889">import_name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="67" x="1179" y="2304.5889">sortablejs</text><line style="stroke:#000000;stroke-width:1.0;" x1="1174" x2="1174" y1="2289.5938" y2="2309.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="1018" x2="1465" y1="2309.8906" y2="2309.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="146" x="1023" y="2324.8857">import_name_build</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="281" x="1179" y="2324.8857">/dist/sortablejs/sortable.complete.esm.js</text><line style="stroke:#000000;stroke-width:1.0;" x1="1174" x2="1174" y1="2309.8906" y2="2330.1875"/><rect fill="none" height="81.1875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="447" x="1018" y="2249"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="295" x="1094" y="2348"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="47" x="1099" y="2362.9951">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="174" x="1210" y="2362.9951">./node_modules/validator</text><line style="stroke:#000000;stroke-width:1.0;" x1="1205" x2="1205" y1="2348" y2="2368.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1094" x2="1389" y1="2368.2969" y2="2368.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="101" x="1099" y="2383.292">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="92" x="1210" y="2383.292">/dist/validator</text><line style="stroke:#000000;stroke-width:1.0;" x1="1205" x2="1205" y1="2368.2969" y2="2388.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="295" x="1094" y="2348"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="453" x="1015" y="2407"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="47" x="1020" y="2421.9951">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="332" x="1131" y="2421.9951">./node_modules/@loadingio/css-spinner/entries</text><line style="stroke:#000000;stroke-width:1.0;" x1="1126" x2="1126" y1="2407" y2="2427.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1015" x2="1468" y1="2427.2969" y2="2427.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="101" x="1020" y="2442.292">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="97" x="1131" y="2442.292">/dist/loadingio</text><line style="stroke:#000000;stroke-width:1.0;" x1="1126" x2="1126" y1="2427.2969" y2="2447.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="453" x="1015" y="2407"/><rect fill="#F1F1F1" height="121.7813" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="655" x="914" y="2466.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="101" x="919" y="2481.4951">import_name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="129" x="1084" y="2481.4951">ag-grid-community</text><line style="stroke:#000000;stroke-width:1.0;" x1="1079" x2="1079" y1="2466.5" y2="2486.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="914" x2="1569" y1="2486.7969" y2="2486.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="146" x="919" y="2501.792">import_name_build</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="480" x="1084" y="2501.792">/dist/ag-grid-community/ag-grid-community.auto.complete.esm.min.js</text><line style="stroke:#000000;stroke-width:1.0;" x1="1079" x2="1079" y1="2486.7969" y2="2507.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="914" x2="1569" y1="2507.0938" y2="2507.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="47" x="919" y="2522.0889">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="276" x="1084" y="2522.0889">./node_modules/ag-grid-community/dist</text><line style="stroke:#000000;stroke-width:1.0;" x1="1079" x2="1079" y1="2507.0938" y2="2527.3906"/><line style="stroke:#000000;stroke-width:1.0;" x1="914" x2="1569" y1="2527.3906" y2="2527.3906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="101" x="919" y="2542.3857">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="164" x="1084" y="2542.3857">/dist/ag-grid-community</text><line style="stroke:#000000;stroke-width:1.0;" x1="1079" x2="1079" y1="2527.3906" y2="2547.6875"/><line style="stroke:#000000;stroke-width:1.0;" x1="914" x2="1569" y1="2547.6875" y2="2547.6875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="47" x="919" y="2562.6826">styles</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="291" x="1084" y="2562.6826">./node_modules/ag-grid-community/styles</text><line style="stroke:#000000;stroke-width:1.0;" x1="1079" x2="1079" y1="2547.6875" y2="2567.9844"/><line style="stroke:#000000;stroke-width:1.0;" x1="914" x2="1569" y1="2567.9844" y2="2567.9844"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="155" x="919" y="2582.9795">public_styles_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="179" x="1084" y="2582.9795">/styles/ag-grid-community</text><line style="stroke:#000000;stroke-width:1.0;" x1="1079" x2="1079" y1="2567.9844" y2="2588.2813"/><rect fill="none" height="121.7813" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="655" x="914" y="2466.5"/><rect fill="#F1F1F1" height="81.1875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="447" x="1018" y="2607"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="47" x="1023" y="2621.9951">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="252" x="1179" y="2621.9951">./node_modules/socket.io/client-dist</text><line style="stroke:#000000;stroke-width:1.0;" x1="1174" x2="1174" y1="2607" y2="2627.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1018" x2="1465" y1="2627.2969" y2="2627.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="101" x="1023" y="2642.292">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="98" x="1179" y="2642.292">/dist/socket.io</text><line style="stroke:#000000;stroke-width:1.0;" x1="1174" x2="1174" y1="2627.2969" y2="2647.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1018" x2="1465" y1="2647.5938" y2="2647.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="101" x="1023" y="2662.5889">import_name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="281" x="1179" y="2662.5889">socket.io/client-dist/socket.io.esm.min.js</text><line style="stroke:#000000;stroke-width:1.0;" x1="1174" x2="1174" y1="2647.5938" y2="2667.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="1018" x2="1465" y1="2667.8906" y2="2667.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="146" x="1023" y="2682.8857">import_name_build</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="244" x="1179" y="2682.8857">/dist/socket.io/socket.io.esm.min.js</text><line style="stroke:#000000;stroke-width:1.0;" x1="1174" x2="1174" y1="2667.8906" y2="2688.1875"/><rect fill="none" height="81.1875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="447" x="1018" y="2607"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="311" x="1086" y="2706"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="47" x="1091" y="2720.9951">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="190" x="1202" y="2720.9951">./node_modules/peerjs/dist</text><line style="stroke:#000000;stroke-width:1.0;" x1="1197" x2="1197" y1="2706" y2="2726.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1086" x2="1397" y1="2726.2969" y2="2726.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="101" x="1091" y="2741.292">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="78" x="1202" y="2741.292">/dist/peerjs</text><line style="stroke:#000000;stroke-width:1.0;" x1="1197" x2="1197" y1="2726.2969" y2="2746.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="311" x="1086" y="2706"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="57" x="560.5" y="2449"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="47" x="565.5" y="2463.9951">default</text><line style="stroke:#000000;stroke-width:1.0;" x1="560.5" x2="617.5" y1="2469.2969" y2="2469.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="31" x="565.5" y="2484.292">core</text><line style="stroke:#000000;stroke-width:1.0;" x1="560.5" x2="617.5" y1="2489.5938" y2="2489.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="31" x="565.5" y="2504.5889">user</text><line style="stroke:#000000;stroke-width:1.0;" x1="560.5" x2="617.5" y1="2509.8906" y2="2509.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="27" x="565.5" y="2524.8857">test</text><line style="stroke:#000000;stroke-width:1.0;" x1="560.5" x2="617.5" y1="2530.1875" y2="2530.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="19" x="565.5" y="2545.1826">file</text><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="57" x="560.5" y="2449"/><path d="M865,525.5 L878,525.5 C923.2881,525.5 883.4506,152.9327 914,119.5 C981.7695,45.3342 1108.667,44.772 1182.8808,51.9934 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1182.5539,55.1523 L1185.2499,52.2386 L1183.2077,48.8345 L1190.778,52.8106 L1182.5539,55.1523 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="865" cy="525.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M253.5,1649.5 L253.5,1636.5 C253.5,1514.9298 267.1176,1208.2532 301,1091.5 C352.1006,915.4158 460.986,730.0012 529.1191,624.2769 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M531.7332,625.9669 L530.3867,622.3164 L526.5051,622.5869 L533.3442,617.7418 L531.7332,625.9669 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="253.5" cy="1649.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M621.5,1110.5 L634.5,1110.5 C876.5766,1110.5 1065.8695,867.3175 1164.8801,705.8379 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1167.5469,707.464 L1166.0996,703.8378 L1162.2133,704.2118 L1168.9452,699.1709 L1167.5469,707.464 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="621.5" cy="1110.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M621.5,1131.5 L634.5,1131.5 C829.5526,1131.5 1059.8905,1131.5 1172.3171,1131.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1172.3171,1134.5244 L1174.5854,1131.5 L1172.3171,1128.4756 L1179.8782,1131.5 L1172.3171,1134.5244 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="621.5" cy="1131.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M252,1667.5 L265,1667.5 C308.4943,1667.5 281.2975,1615.2758 301,1576.5 C387.5209,1406.2212 519.1677,1217.7833 568.7171,1148.7448 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M571.2386,1150.5586 L570.0774,1146.8537 L566.1956,1146.931 L573.2516,1142.441 L571.2386,1150.5586 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="252" cy="1667.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M589.5,1595.5 L602.5,1595.5 C778.6353,1595.5 752.2948,1420.3218 914,1350.5 C1000.395,1313.196 1110.2321,1303.575 1178.0613,1301.4797 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1178.1453,1304.5403 L1180.3568,1301.4168 L1177.9774,1298.4192 L1185.7127,1301.2699 L1178.1453,1304.5403 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="589.5" cy="1595.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M589.5,1615.5 L602.5,1615.5 C759.3758,1615.5 765.0476,1498.7261 914,1449.5 C1002.9581,1420.101 1111.3987,1408.2716 1178.3227,1403.5587 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1178.5282,1406.5784 L1180.5874,1403.4046 L1178.1171,1400.539 L1185.8718,1403.0449 L1178.5282,1406.5784 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="589.5" cy="1615.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M589.5,1635.5 L602.5,1635.5 C748.8844,1635.5 771.2984,1561.1291 914,1528.5 C1001.8789,1508.4062 1105.553,1498.2699 1172.2288,1493.4477 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1172.4425,1496.4642 L1174.4911,1493.2875 L1172.0152,1490.4313 L1179.7699,1492.9136 L1172.4425,1496.4642 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="589.5" cy="1635.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M589.5,1656.5 L602.5,1656.5 C742.6468,1656.5 775.1733,1626.6908 914,1607.5 C1005.7016,1594.8236 1112.2173,1582.5808 1178.1225,1575.2943 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1178.468,1578.4272 L1180.4722,1575.0352 L1177.777,1572.1614 L1185.9547,1574.4306 L1178.468,1578.4272 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="589.5" cy="1656.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M589.5,1676.5 L602.5,1676.5 C811.0386,1676.5 1057.4949,1660.8714 1173.8127,1652.5604 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1174.0371,1655.6844 L1176.1556,1652.3921 L1173.5883,1649.4365 L1181.6225,1651.9994 L1174.0371,1655.6844 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="589.5" cy="1676.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M589.5,1697.5 L602.5,1697.5 C812.1233,1697.5 1060.0598,1713.2916 1175.6172,1721.5686 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1175.3939,1724.6701 L1177.9433,1721.7362 L1175.8406,1718.4671 L1183.371,1722.127 L1175.3939,1724.6701 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="589.5" cy="1697.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M589.5,1717.5 L602.5,1717.5 C742.5785,1717.5 775.2399,1746.3269 914,1765.5 C1003.0582,1777.8056 1106.0375,1790.0805 1172.264,1797.7228 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1171.9189,1800.7189 L1174.5111,1797.9816 L1172.6091,1794.7267 L1179.7543,1798.5855 L1171.9189,1800.7189 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="589.5" cy="1717.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M589.5,1738.5 L602.5,1738.5 C748.7406,1738.5 771.4409,1811.893 914,1844.5 C1004.5937,1865.2212 1111.922,1875.7528 1178.2442,1880.682 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1178.0261,1883.6748 L1180.4888,1880.8456 L1178.4622,1877.6892 L1185.7262,1881.2272 L1178.0261,1883.6748 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="589.5" cy="1738.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M589.5,1758.5 L602.5,1758.5 C759.1673,1758.5 764.5361,1876.5406 914,1923.5 C1001.2154,1950.9019 1106.9995,1959.6794 1174.1643,1962.4073 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1174.0486,1965.4434 L1176.4413,1962.4941 L1174.2799,1959.3713 L1181.7544,1962.6965 L1174.0486,1965.4434 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="589.5" cy="1758.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M589.5,1778.5 L602.5,1778.5 C773.0232,1778.5 755.1758,1940.427 914,2002.5 C981.9537,2029.0583 1063.3795,2039.0807 1127.9782,2042.4524 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1127.8266,2045.5694 L1130.3159,2042.5661 L1128.1297,2039.3354 L1135.7706,2042.8313 L1127.8266,2045.5694 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="589.5" cy="1778.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M252,1687.5 L265,1687.5 C380.7401,1687.5 519.7726,1687.5 569.596,1687.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M569.596,1690.5918 L571.9148,1687.5 L569.596,1684.4082 L577.3255,1687.5 L569.596,1690.5918 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="252" cy="1687.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M589.5,2278.5 L602.5,2278.5 C747.6343,2278.5 772.5816,2213.131 914,2180.5 C942.8764,2173.837 973.4044,2167.8687 1003.7436,2162.5858 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1004.275,2165.6691 L1006.0561,2162.1873 L1003.2123,2159.5025 L1011.4518,2161.2575 L1004.275,2165.6691 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="589.5" cy="2278.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M589.5,2298.5 L602.5,2298.5 C743.4059,2298.5 774.4302,2258.8584 914,2239.5 C941.0771,2235.7444 969.4868,2232.3781 997.7791,2229.387 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M998.0963,2232.4194 L1000.0534,2229.1492 L997.462,2226.3546 L1005.3601,2228.5941 L998.0963,2232.4194 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="589.5" cy="2298.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M589.5,2318.5 L602.5,2318.5 C737.9541,2318.5 889.4057,2311.9063 1010.8005,2305.007 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1010.9739,2308.0411 L1013.076,2304.8769 L1010.627,2301.973 L1018.3855,2304.5734 L1010.9739,2308.0411 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="589.5" cy="2318.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M589.5,2338.5 L602.5,2338.5 C768.0204,2338.5 957.4111,2348.6838 1086.6693,2357.1846 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1086.467,2360.2455 L1088.965,2357.3364 L1086.8717,2354.1237 L1094.3217,2357.6905 L1086.467,2360.2455 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="589.5" cy="2338.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M589.5,2359.5 L602.5,2359.5 C742.0253,2359.5 775.2653,2383.6682 914,2398.5 C944.2984,2401.7391 976.2038,2404.8902 1007.7235,2407.8486 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1007.4404,2410.8775 L1009.9952,2408.061 L1008.0066,2404.8197 L1015.2957,2408.5564 L1007.4404,2410.8775 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="589.5" cy="2359.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M589.5,2379.5 L602.5,2379.5 C727.9099,2379.5 759.3382,2399.9164 878,2440.5 C894.7421,2446.226 897.2379,2451.8328 914,2457.5 C920.6643,2459.7532 927.4303,2461.9499 934.2735,2464.0904 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M933.3532,2467.0723 L936.5099,2464.7806 L935.1938,2461.1085 L941.7282,2466.3911 L933.3532,2467.0723 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="589.5" cy="2379.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M589.5,2399.5 L602.5,2399.5 C726.2929,2399.5 787.1327,2356.4296 878,2440.5 C930.548,2489.1174 861.5492,2548.7778 914,2597.5 C940.9091,2622.4963 974.7803,2638.1242 1010.4559,2647.5044 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1009.6927,2650.5597 L1012.7474,2648.0768 L1011.219,2644.4491 L1018.0942,2649.4124 L1009.6927,2650.5597 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="589.5" cy="2399.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M589.5,2420.5 L602.5,2420.5 C725.2667,2420.5 788.3444,2356.6339 878,2440.5 C962.2301,2519.291 830.4024,2618.0383 914,2697.5 C971.6933,2752.339 1063.7611,2755.9742 1135.5262,2747.9526 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1135.8948,2751.0571 L1137.8546,2747.6762 L1135.1577,2744.8481 L1143.2875,2747.0313 L1135.8948,2751.0571 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="589.5" cy="2420.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M252,1708.5 L265,1708.5 C307.669,1708.5 283.1244,1758.7559 301,1797.5 C396.3522,2004.1685 529.4366,2244.4584 573.6025,2323.1186 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M570.9324,2324.6196 L574.7282,2325.1211 L576.2725,2321.6176 L577.3549,2329.7937 L570.9324,2324.6196 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="252" cy="1708.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M253.5,1727.5 L253.5,1740.5 C253.5,1779.4229 275.4388,2410.1467 301,2439.5 C364.4201,2512.3289 491.3661,2510.236 553.1259,2504.2179 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M553.4411,2507.2405 L555.3928,2503.9814 L552.8106,2501.1952 L560.6824,2503.4297 L553.4411,2507.2405 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="253.5" cy="1727.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M85,1688.5 L98,1688.5 C107.2931,1688.5 117.0695,1688.5 126.7259,1688.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M126.7259,1691.5828 L129.038,1688.5 L126.7259,1685.4172 L134.4329,1688.5 L126.7259,1691.5828 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="85" cy="1688.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentStyleType="text/css" height="605px" preserveAspectRatio="none" style="width:1314px;height:605px;background:#FFFFFF;" version="1.1" viewBox="0 0 1314 605" width="1314px" zoomAndPan="magnify"><defs/><g><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="10" y="415.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="15" y="430.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="108" y="430.4951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="103" x2="103" y1="415.5" y2="435.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="156" y1="435.7969" y2="435.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="15" y="450.792">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="108" y="450.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="103" x2="103" y1="435.7969" y2="456.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="10" y="415.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="87" x="193" y="436"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="55" x="198" y="450.9951">default</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="263" y="450.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="258" x2="258" y1="436" y2="456.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="87" x="193" y="436"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="317" y="425.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="322" y="440.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="415" y="440.4951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="410" x2="410" y1="425.5" y2="445.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="317" x2="463" y1="445.7969" y2="445.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="322" y="460.792">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="415" y="460.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="410" x2="410" y1="445.7969" y2="466.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="317" y="425.5"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="130" x="500" y="405.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="73" x="505" y="420.4951">metadata</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="613" y="420.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="608" x2="608" y1="405.5" y2="425.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="500" x2="630" y1="425.7969" y2="425.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="98" x="505" y="440.792">components</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="613" y="440.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="608" x2="608" y1="425.7969" y2="446.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="500" x2="630" y1="446.0938" y2="446.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="46" x="505" y="461.0889">views</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="613" y="461.0889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="608" x2="608" y1="446.0938" y2="466.3906"/><line style="stroke:#000000;stroke-width:1.0;" x1="500" x2="630" y1="466.3906" y2="466.3906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="38" x="505" y="481.3857">dists</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="613" y="481.3857"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="608" x2="608" y1="466.3906" y2="486.6875"/><line style="stroke:#000000;stroke-width:1.0;" x1="500" x2="630" y1="486.6875" y2="486.6875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="67" x="505" y="501.6826">services</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="613" y="501.6826"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="608" x2="608" y1="486.6875" y2="506.9844"/><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="130" x="500" y="405.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="667" y="237.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="672" y="252.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="765" y="252.4951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="760" x2="760" y1="237.5" y2="257.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="667" x2="813" y1="257.7969" y2="257.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="672" y="272.792">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="765" y="272.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="760" x2="760" y1="257.7969" y2="278.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="667" y="237.5"/><rect fill="#F1F1F1" height="162.375" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="173" x="850" y="113"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="855" y="127.9951">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1006" y="127.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1001" x2="1001" y1="113" y2="133.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="850" x2="1023" y1="133.2969" y2="133.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="141" x="855" y="148.292">backgroundImage</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1006" y="148.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1001" x2="1001" y1="133.2969" y2="153.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="850" x2="1023" y1="153.5938" y2="153.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="89" x="855" y="168.5889">description</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1006" y="168.5889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1001" x2="1001" y1="153.5938" y2="173.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="850" x2="1023" y1="173.8906" y2="173.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="78" x="855" y="188.8857">keywords</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1006" y="188.8857"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1001" x2="1001" y1="173.8906" y2="194.1875"/><line style="stroke:#000000;stroke-width:1.0;" x1="850" x2="1023" y1="194.1875" y2="194.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="52" x="855" y="209.1826">author</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1006" y="209.1826"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1001" x2="1001" y1="194.1875" y2="214.4844"/><line style="stroke:#000000;stroke-width:1.0;" x1="850" x2="1023" y1="214.4844" y2="214.4844"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="77" x="855" y="229.4795">thumbnail</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1006" y="229.4795"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1001" x2="1001" y1="214.4844" y2="234.7813"/><line style="stroke:#000000;stroke-width:1.0;" x1="850" x2="1023" y1="234.7813" y2="234.7813"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="92" x="855" y="249.7764">themeColor</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1006" y="249.7764"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1001" x2="1001" y1="234.7813" y2="255.0781"/><line style="stroke:#000000;stroke-width:1.0;" x1="850" x2="1023" y1="255.0781" y2="255.0781"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="122" x="855" y="270.0732">pwaAssetsPath</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1006" y="270.0732"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1001" x2="1001" y1="255.0781" y2="275.375"/><rect fill="none" height="162.375" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="173" x="850" y="113"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1068.5" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1073.5" y="24.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1118.5" y="24.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1113.5" x2="1113.5" y1="10" y2="30.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1068.5" y="10"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1068.5" y="48"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1073.5" y="62.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1118.5" y="62.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1113.5" x2="1113.5" y1="48" y2="68.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1068.5" y="48"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1068.5" y="86"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1073.5" y="100.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1118.5" y="100.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1113.5" x2="1113.5" y1="86" y2="106.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1068.5" y="86"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="1067.5" y="124.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1072.5" y="139.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1125.5" y="139.4951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1120.5" x2="1120.5" y1="124.5" y2="144.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1067.5" x2="1163.5" y1="144.7969" y2="144.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1072.5" y="159.792">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1125.5" y="159.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1120.5" x2="1120.5" y1="144.7969" y2="165.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="1067.5" y="124.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1208" y="145"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1213" y="159.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1258" y="159.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1253" x2="1253" y1="145" y2="165.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1208" y="145"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="111" x="1060" y="183.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1065" y="198.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1127" y="198.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1122" x2="1122" y1="183.5" y2="203.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1060" x2="1171" y1="203.7969" y2="203.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="52" x="1065" y="218.792">format</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="17" x="1127" y="218.792">uri</text><line style="stroke:#000000;stroke-width:1.0;" x1="1122" x2="1122" y1="203.7969" y2="224.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="111" x="1060" y="183.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1068.5" y="243"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1073.5" y="257.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1118.5" y="257.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1113.5" x2="1113.5" y1="243" y2="263.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1068.5" y="243"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="111" x="1060" y="281.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1065" y="296.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1127" y="296.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1122" x2="1122" y1="281.5" y2="301.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1060" x2="1171" y1="301.7969" y2="301.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="52" x="1065" y="316.792">format</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="34" x="1127" y="316.792">color</text><line style="stroke:#000000;stroke-width:1.0;" x1="1122" x2="1122" y1="301.7969" y2="322.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="111" x="1060" y="281.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1068.5" y="341"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1073.5" y="355.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1118.5" y="355.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1113.5" x2="1113.5" y1="341" y2="361.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1068.5" y="341"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="667" y="375.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="672" y="390.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="765" y="390.4951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="760" x2="760" y1="375.5" y2="395.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="667" x2="813" y1="395.7969" y2="395.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="672" y="410.792">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="765" y="410.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="760" x2="760" y1="395.7969" y2="416.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="667" y="375.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="87" x="893" y="390.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="36" x="898" y="405.4951">core</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="963" y="405.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="958" x2="958" y1="390.5" y2="410.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="893" x2="980" y1="410.7969" y2="410.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="55" x="898" y="425.792">default</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="963" y="425.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="958" x2="958" y1="410.7969" y2="431.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="87" x="893" y="390.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="1067.5" y="379.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1072.5" y="394.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1125.5" y="394.4951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1120.5" x2="1120.5" y1="379.5" y2="399.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1067.5" x2="1163.5" y1="399.7969" y2="399.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1072.5" y="414.792">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1125.5" y="414.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1120.5" x2="1120.5" y1="399.7969" y2="420.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="1067.5" y="379.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1208" y="400"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1213" y="414.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1258" y="414.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1253" x2="1253" y1="400" y2="420.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1208" y="400"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="1067.5" y="438.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1072.5" y="453.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1125.5" y="453.4951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1120.5" x2="1120.5" y1="438.5" y2="458.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1067.5" x2="1163.5" y1="458.7969" y2="458.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1072.5" y="473.792">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1125.5" y="473.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1120.5" x2="1120.5" y1="458.7969" y2="479.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="1067.5" y="438.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1208" y="459"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1213" y="473.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1258" y="473.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1253" x2="1253" y1="459" y2="479.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1208" y="459"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="692" y="434.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="697" y="449.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="750" y="449.4951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="745" x2="745" y1="434.5" y2="454.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="692" x2="788" y1="454.7969" y2="454.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="697" y="469.792">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="750" y="469.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="745" x2="745" y1="454.7969" y2="475.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="692" y="434.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="98" x="887.5" y="455"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="892.5" y="469.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="937.5" y="469.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="932.5" x2="932.5" y1="455" y2="475.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="98" x="887.5" y="455"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="692" y="493.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="697" y="508.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="750" y="508.4951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="745" x2="745" y1="493.5" y2="513.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="692" x2="788" y1="513.7969" y2="513.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="697" y="528.792">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="750" y="528.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="745" x2="745" y1="513.7969" y2="534.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="692" y="493.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="98" x="887.5" y="514"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="892.5" y="528.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="937.5" y="528.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="932.5" x2="932.5" y1="514" y2="534.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="98" x="887.5" y="514"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="692" y="552.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="697" y="567.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="750" y="567.4951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="745" x2="745" y1="552.5" y2="572.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="692" x2="788" y1="572.7969" y2="572.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="697" y="587.792">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="750" y="587.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="745" x2="745" y1="572.7969" y2="593.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="692" y="552.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="889.5" y="573"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="894.5" y="587.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="939.5" y="587.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="934.5" x2="934.5" y1="573" y2="593.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="889.5" y="573"/><path d="M1011,123 L1024,123 C1064.6175,123 1030.2602,66.6645 1060,39 C1062.0827,37.0627 1064.3725,35.3216 1066.7988,33.7572 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1068.2958,36.4342 L1068.8066,32.6345 L1065.3019,31.0802 L1073.4914,30.0148 L1068.2958,36.4342 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1011" cy="123" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1011,143 L1024,143 C1057.4132,143 1034.488,98.5774 1060,77 C1062.2538,75.0938 1064.7095,73.3753 1067.2919,71.8263 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1068.7784,74.658 L1069.4156,70.7114 L1065.8053,68.9946 L1074.3711,68.11 L1068.7784,74.658 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1011" cy="143" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1011,163 L1024,163 C1050.6667,163 1038.4519,130.7096 1060,115 C1062.9081,112.8798 1066.072,110.9818 1069.3641,109.2851 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1070.6466,112.0438 L1071.4331,108.3232 L1068.0815,106.5265 L1076.2607,106.0787 L1070.6466,112.0438 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1011" cy="163" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1152,155 L1165,155 C1176.4716,155 1188.7702,155 1200.4648,155 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1200.4648,158.0332 L1202.7397,155 L1200.4648,151.9668 L1208.0478,155 L1200.4648,158.0332 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1152" cy="155" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1011,183 L1024,183 C1033.0633,183 1050.1949,176.5003 1067.1708,168.8772 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1068.4989,171.774 L1069.3434,167.8812 L1065.8428,165.9804 L1074.4127,165.557 L1068.4989,171.774 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1011" cy="183" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1011,204 L1024,204 C1033.2249,204 1042.9758,204 1052.5329,204 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1052.5329,207.0437 L1054.8157,204 L1052.5329,200.9563 L1060.1422,204 L1052.5329,207.0437 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1011" cy="204" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1011,224 L1024,224 C1029.7604,224 1056.0802,232.5448 1078.9422,240.358 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1077.9425,243.2663 L1081.1234,241.1077 L1079.9419,237.4496 L1086.213,242.8572 L1077.9425,243.2663 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1011" cy="224" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1011,244 L1024,244 C1044.2698,244 1043.0472,260.8884 1060,272 C1062.7632,273.8111 1065.6449,275.6148 1068.5782,277.3873 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1066.951,280.1498 L1070.6501,278.6077 L1070.2055,274.6247 L1075.4846,281.4554 L1066.951,280.1498 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1011" cy="244" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1011,265 L1024,265 C1057.4132,265 1034.6631,309.2173 1060,331 C1062.7905,333.399 1065.8922,335.5195 1069.1614,337.3924 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1067.7589,340.1521 L1071.2312,338.4442 L1070.5639,334.6326 L1076.0607,340.8985 L1067.7589,340.1521 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1011" cy="265" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M801,268 L814,268 C823.8702,268 833.6233,266.2074 843.0567,263.1803 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M844.0752,266.0396 L845.2011,262.4164 L842.0382,260.3211 L850.2048,260.6341 L844.0752,266.0396 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="801" cy="268" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M619.5,417 L619.5,404 C619.5,352.2631 665.0287,308.8686 699.9984,283.1686 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M701.8348,285.726 L701.9164,281.7913 L698.1621,280.6113 L706.3918,278.5778 L701.8348,285.726 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="619.5" cy="417" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1152,410 L1165,410 C1176.4716,410 1188.7702,410 1200.4648,410 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1200.4648,413.0332 L1202.7397,410 L1200.4648,406.9668 L1208.0478,410 L1200.4648,413.0332 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1152" cy="410" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M969,400 L982,400 C1007.7317,400 1036.2637,400 1060.2819,400 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1060.2819,403.0521 L1062.571,400 L1060.2819,396.9479 L1067.9122,400 L1060.2819,403.0521 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="969" cy="400" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1152,469 L1165,469 C1176.4716,469 1188.7702,469 1200.4648,469 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1200.4648,472.0332 L1202.7397,469 L1200.4648,465.9668 L1208.0478,469 L1200.4648,472.0332 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1152" cy="469" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M969,421 L982,421 C1008.5508,421 1036.9755,428.0879 1060.7032,436.1415 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1059.6938,439.0237 L1062.8649,436.8985 L1061.7127,433.2592 L1067.9089,438.665 L1059.6938,439.0237 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="969" cy="421" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M801,406 L814,406 C837.6084,406 863.7651,406.9463 885.7848,408.0155 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M885.632,411.0576 L888.0663,408.1301 L885.9375,404.9735 L893.3899,408.3975 L885.632,411.0576 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="801" cy="406" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M618,435 L631,435 C636.5766,435 657.8584,427.6097 680.1152,419.2632 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M681.2094,422.16 L682.2878,418.4426 L679.0211,416.3665 L687.3571,416.5279 L681.2094,422.16 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="618" cy="435" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M776.5,465 L789.5,465 C819.4903,465 852.934,465 880.2872,465 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M880.2872,468.0182 L882.5509,465 L880.2872,461.9818 L887.8328,465 L880.2872,468.0182 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="776.5" cy="465" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M618,455 L631,455 C648.3968,455 667.3627,455 684.5013,455 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M684.5013,458.0935 L686.8214,455 L684.5013,451.9065 L692.235,455 L684.5013,458.0935 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="618" cy="455" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M776.5,524 L789.5,524 C819.4903,524 852.934,524 880.2872,524 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M880.2872,527.0182 L882.5509,524 L880.2872,520.9818 L887.8328,524 L880.2872,527.0182 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="776.5" cy="524" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M618,476 L631,476 C642.0728,476 663.9297,483.1386 685.1424,491.2277 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M684.0341,494.0888 L687.2882,492.0589 L686.2507,488.3666 L692.295,493.9985 L684.0341,494.0888 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="618" cy="476" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M776.5,583 L789.5,583 C820.1877,583 854.4914,583 882.1856,583 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M882.1856,586.051 L884.4738,583 L882.1856,579.949 L889.813,583 L882.1856,586.051 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="776.5" cy="583" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M618,496 L631,496 C657.3125,496 646.129,526.9767 667,543 C672.5544,547.2642 678.8014,551.0256 685.2391,554.3141 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M683.8854,557.1287 L687.35,555.3293 L686.5927,551.4995 L692.2756,557.6983 L683.8854,557.1287 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="618" cy="496" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M451,456 L464,456 C473.2931,456 483.0695,456 492.7259,456 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M492.7259,459.0828 L495.038,456 L492.7259,452.9172 L500.4329,456 L492.7259,459.0828 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="451" cy="456" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M268,446 L281,446 C290.2896,446 300.0267,446 309.694,446 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M309.694,449.0913 L312.0124,446 L309.694,442.9087 L317.4221,446 L309.694,449.0913 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="268" cy="446" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M144,446 L157,446 C166.3071,446 176.231,446 185.7907,446 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M185.7907,449.0279 L188.0616,446 L185.7907,442.9721 L193.3605,446 L185.7907,449.0279 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="144" cy="446" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentStyleType="text/css" height="236px" preserveAspectRatio="none" style="width:740px;height:236px;background:#FFFFFF;" version="1.1" viewBox="0 0 740 236" width="740px" zoomAndPan="magnify"><defs/><g><rect fill="#F1F1F1" height="81.1875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="110" x="10" y="36.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="78" x="15" y="51.4951">ipDaemon</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="103" y="51.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="98" x2="98" y1="36.5" y2="56.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="120" y1="56.7969" y2="56.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="62" x="15" y="71.792">records</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="103" y="71.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="98" x2="98" y1="56.7969" y2="77.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="120" y1="77.0938" y2="77.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="66" x="15" y="92.0889">backups</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="103" y="92.0889"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="98" x2="98" y1="77.0938" y2="97.3906"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="120" y1="97.3906" y2="97.3906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="33" x="15" y="112.3857">jobs</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="103" y="112.3857"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="98" x2="98" y1="97.3906" y2="117.6875"/><rect fill="none" height="81.1875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="110" x="10" y="36.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="45" x="183.5" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="14" x="188.5" y="24.9951">ip</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="11" x="212.5" y="24.9951">␀</text><line style="stroke:#000000;stroke-width:1.0;" x1="207.5" x2="207.5" y1="10" y2="30.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="45" x="183.5" y="10"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="43" x="184.5" y="48"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="11" x="189.5" y="62.9951">A</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="210.5" y="62.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="205.5" x2="205.5" y1="48" y2="68.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="43" x="184.5" y="48"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="22" x="394.5" y="48"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="399.5" y="62.9951"> </text><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="22" x="394.5" y="48"/><rect fill="#F1F1F1" height="81.1875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="170" x="558" y="17.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="563" y="32.4951">host</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="92" x="631" y="32.4951">example.com</text><line style="stroke:#000000;stroke-width:1.0;" x1="626" x2="626" y1="17.5" y2="37.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="558" x2="728" y1="37.7969" y2="37.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="29" x="563" y="52.792">dns</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="82" x="631" y="52.792">dondominio</text><line style="stroke:#000000;stroke-width:1.0;" x1="626" x2="626" y1="37.7969" y2="58.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="558" x2="728" y1="58.0938" y2="58.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="58" x="563" y="73.0889">api_key</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="21" x="631" y="73.0889">???</text><line style="stroke:#000000;stroke-width:1.0;" x1="626" x2="626" y1="58.0938" y2="78.3906"/><line style="stroke:#000000;stroke-width:1.0;" x1="558" x2="728" y1="78.3906" y2="78.3906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="36" x="563" y="93.3857">user</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="21" x="631" y="93.3857">???</text><line style="stroke:#000000;stroke-width:1.0;" x1="626" x2="626" y1="78.3906" y2="98.6875"/><rect fill="none" height="81.1875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="170" x="558" y="17.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="22" x="194" y="86"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="199" y="100.9951"> </text><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="22" x="194" y="86"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="229" x="292" y="86"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="116" x="297" y="100.9951">deployGroupId</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="93" x="423" y="100.9951">default-group</text><line style="stroke:#000000;stroke-width:1.0;" x1="418" x2="418" y1="86" y2="106.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="229" x="292" y="86"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="98" x="157" y="135.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="29" x="162" y="150.4951">dns</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="238" y="150.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="233" x2="233" y1="135.5" y2="155.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="157" x2="255" y1="155.7969" y2="155.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="66" x="162" y="170.792">backups</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="238" y="170.792"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="233" x2="233" y1="155.7969" y2="176.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="98" x="157" y="135.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="159" x="327" y="124.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="88" x="332" y="139.4951">expression</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="51" x="430" y="139.4951">* * * * *</text><line style="stroke:#000000;stroke-width:1.0;" x1="425" x2="425" y1="124.5" y2="144.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="327" x2="486" y1="144.7969" y2="144.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="63" x="332" y="159.792">enabled</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="430" y="159.792">☑ true</text><line style="stroke:#000000;stroke-width:1.0;" x1="425" x2="425" y1="144.7969" y2="165.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="159" x="327" y="124.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="163" x="325" y="183.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="88" x="330" y="198.4951">expression</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="55" x="428" y="198.4951">0 1 * * *</text><line style="stroke:#000000;stroke-width:1.0;" x1="423" x2="423" y1="183.5" y2="203.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="325" x2="488" y1="203.7969" y2="203.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="63" x="330" y="218.792">enabled</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="428" y="218.792">☑ true</text><line style="stroke:#000000;stroke-width:1.0;" x1="423" x2="423" y1="203.7969" y2="224.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="163" x="325" y="183.5"/><path d="M108,46 L121,46 C131.9361,46 156.8794,37.9439 176.8475,30.8005 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M177.8771,33.639 L178.9764,30.0283 L175.818,27.9619 L183.9439,28.2266 L177.8771,33.639 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="108" cy="46" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M406.0022,58 L419.0022,58 C443.2968,58 500.2712,58 550.6116,58 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M550.6116,61.0779 L552.9201,58 L550.6116,54.9221 L558.3065,58 L550.6116,61.0779 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="406.0022" cy="58" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M216.5,58 L229.5,58 C286.8826,58 354.7592,58 387.0714,58 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M387.0714,61.111 L389.4046,58 L387.0714,54.889 L394.8489,58 L387.0714,61.111 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="216.5" cy="58" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M108,66 L121,66 C139.742,66 160.7186,64.0253 177.0833,62.0381 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M177.4704,65.0913 L179.3732,61.7477 L176.6961,58.9849 L184.7163,61.0701 L177.4704,65.0913 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="108" cy="66" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M205.6793,96 L218.6793,96 C232.753,96 257.4572,96 284.3978,96 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M284.3978,99.0604 L286.6931,96 L284.3978,92.9396 L292.0488,96 L284.3978,99.0604 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="205.6793" cy="96" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M108,87 L121,87 C143.6944,87 169.6255,90.2496 186.7092,92.8435 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M186.2278,95.8927 L188.9961,93.2046 L187.1907,89.7944 L194.3321,94.0471 L186.2278,95.8927 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="108" cy="87" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M243,145 L256,145 C276.6421,145 298.882,145 319.7514,145 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M319.7514,148.0485 L322.0377,145 L319.7514,141.9515 L327.3726,145 L319.7514,148.0485 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="243" cy="145" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M243,166 L256,166 C256.4722,166 285.4932,173.3375 317.8819,181.564 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M317.1303,184.5222 L320.1006,182.1277 L318.6335,178.6057 L325.2775,183.443 L317.1303,184.5222 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="243" cy="166" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M108,107 L121,107 C142.109,107 162.6681,118.5849 178.2213,130.4886 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M176.3289,132.8561 L179.9969,131.9079 L180.1137,128.1212 L184.14,135.2196 L176.3289,132.8561 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="108" cy="107" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/></g></svg>
|