@underpostnet/underpost 2.7.82

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (290) hide show
  1. package/.dockerignore +14 -0
  2. package/.env.development +6 -0
  3. package/.env.production +6 -0
  4. package/.env.test +6 -0
  5. package/.github/workflows/ghpkg.yml +75 -0
  6. package/.github/workflows/publish.yml +84 -0
  7. package/.github/workflows/pwa-microservices-template.test.yml +30 -0
  8. package/.nycrc +9 -0
  9. package/.prettierignore +13 -0
  10. package/.prettierrc +9 -0
  11. package/.vscode/extensions.json +72 -0
  12. package/.vscode/settings.json +100 -0
  13. package/AUTHORS.md +10 -0
  14. package/CHANGELOG.md +37 -0
  15. package/Dockerfile +90 -0
  16. package/LICENSE +21 -0
  17. package/README.md +96 -0
  18. package/bin/db.js +172 -0
  19. package/bin/deploy.js +674 -0
  20. package/bin/file.js +93 -0
  21. package/bin/index.js +82 -0
  22. package/bin/ssl.js +55 -0
  23. package/bin/util.js +182 -0
  24. package/bin/vs.js +35 -0
  25. package/conf.js +251 -0
  26. package/docker-compose.yml +67 -0
  27. package/jsconfig.json +7 -0
  28. package/jsdoc.json +32 -0
  29. package/nodemon.json +6 -0
  30. package/package.json +134 -0
  31. package/prometheus.yml +36 -0
  32. package/src/api/core/core.controller.js +69 -0
  33. package/src/api/core/core.model.js +11 -0
  34. package/src/api/core/core.router.js +23 -0
  35. package/src/api/core/core.service.js +29 -0
  36. package/src/api/crypto/crypto.controller.js +51 -0
  37. package/src/api/crypto/crypto.model.js +23 -0
  38. package/src/api/crypto/crypto.router.js +20 -0
  39. package/src/api/crypto/crypto.service.js +64 -0
  40. package/src/api/default/default.controller.js +69 -0
  41. package/src/api/default/default.model.js +20 -0
  42. package/src/api/default/default.router.js +23 -0
  43. package/src/api/default/default.service.js +31 -0
  44. package/src/api/file/file.controller.js +53 -0
  45. package/src/api/file/file.model.js +19 -0
  46. package/src/api/file/file.router.js +21 -0
  47. package/src/api/file/file.service.js +80 -0
  48. package/src/api/instance/instance.controller.js +69 -0
  49. package/src/api/instance/instance.model.js +36 -0
  50. package/src/api/instance/instance.router.js +33 -0
  51. package/src/api/instance/instance.service.js +48 -0
  52. package/src/api/test/test.controller.js +59 -0
  53. package/src/api/test/test.model.js +14 -0
  54. package/src/api/test/test.router.js +21 -0
  55. package/src/api/test/test.service.js +35 -0
  56. package/src/api/user/user.build.js +16 -0
  57. package/src/api/user/user.controller.js +70 -0
  58. package/src/api/user/user.model.js +65 -0
  59. package/src/api/user/user.router.js +345 -0
  60. package/src/api/user/user.service.js +479 -0
  61. package/src/api.js +23 -0
  62. package/src/client/Default.index.js +40 -0
  63. package/src/client/components/core/Account.js +290 -0
  64. package/src/client/components/core/AgGrid.js +160 -0
  65. package/src/client/components/core/Auth.js +19 -0
  66. package/src/client/components/core/Badge.js +32 -0
  67. package/src/client/components/core/Blockchain.js +41 -0
  68. package/src/client/components/core/Blog.js +9 -0
  69. package/src/client/components/core/BtnIcon.js +101 -0
  70. package/src/client/components/core/CalendarCore.js +458 -0
  71. package/src/client/components/core/Chat.js +64 -0
  72. package/src/client/components/core/ColorPalette.js +5267 -0
  73. package/src/client/components/core/CommonJs.js +742 -0
  74. package/src/client/components/core/Content.js +193 -0
  75. package/src/client/components/core/Css.js +846 -0
  76. package/src/client/components/core/CssCore.js +817 -0
  77. package/src/client/components/core/D3Chart.js +44 -0
  78. package/src/client/components/core/Docs.js +231 -0
  79. package/src/client/components/core/DropDown.js +164 -0
  80. package/src/client/components/core/EventsUI.js +46 -0
  81. package/src/client/components/core/FileExplorer.js +699 -0
  82. package/src/client/components/core/FullScreen.js +45 -0
  83. package/src/client/components/core/Input.js +346 -0
  84. package/src/client/components/core/JoyStick.js +77 -0
  85. package/src/client/components/core/Keyboard.js +73 -0
  86. package/src/client/components/core/LoadingAnimation.js +178 -0
  87. package/src/client/components/core/LogIn.js +187 -0
  88. package/src/client/components/core/LogOut.js +58 -0
  89. package/src/client/components/core/Logger.js +26 -0
  90. package/src/client/components/core/Modal.js +1612 -0
  91. package/src/client/components/core/NotificationManager.js +84 -0
  92. package/src/client/components/core/Panel.js +613 -0
  93. package/src/client/components/core/PanelForm.js +468 -0
  94. package/src/client/components/core/Polyhedron.js +162 -0
  95. package/src/client/components/core/Recover.js +204 -0
  96. package/src/client/components/core/Responsive.js +53 -0
  97. package/src/client/components/core/RichText.js +51 -0
  98. package/src/client/components/core/Router.js +76 -0
  99. package/src/client/components/core/Scroll.js +34 -0
  100. package/src/client/components/core/SignUp.js +125 -0
  101. package/src/client/components/core/SocketIo.js +72 -0
  102. package/src/client/components/core/Stream.js +113 -0
  103. package/src/client/components/core/ToggleSwitch.js +87 -0
  104. package/src/client/components/core/ToolTip.js +26 -0
  105. package/src/client/components/core/Translate.js +446 -0
  106. package/src/client/components/core/Validator.js +100 -0
  107. package/src/client/components/core/VanillaJs.js +463 -0
  108. package/src/client/components/core/Wallet.js +106 -0
  109. package/src/client/components/core/Webhook.js +25 -0
  110. package/src/client/components/core/Worker.js +282 -0
  111. package/src/client/components/default/CommonDefault.js +29 -0
  112. package/src/client/components/default/CssDefault.js +13 -0
  113. package/src/client/components/default/ElementsDefault.js +38 -0
  114. package/src/client/components/default/LogInDefault.js +41 -0
  115. package/src/client/components/default/LogOutDefault.js +28 -0
  116. package/src/client/components/default/MenuDefault.js +389 -0
  117. package/src/client/components/default/RoutesDefault.js +48 -0
  118. package/src/client/components/default/SettingsDefault.js +16 -0
  119. package/src/client/components/default/SignUpDefault.js +9 -0
  120. package/src/client/components/default/SocketIoDefault.js +54 -0
  121. package/src/client/components/default/TranslateDefault.js +7 -0
  122. package/src/client/public/default/android-chrome-144x144.png +0 -0
  123. package/src/client/public/default/android-chrome-192x192.png +0 -0
  124. package/src/client/public/default/android-chrome-256x256.png +0 -0
  125. package/src/client/public/default/android-chrome-36x36.png +0 -0
  126. package/src/client/public/default/android-chrome-384x384.png +0 -0
  127. package/src/client/public/default/android-chrome-48x48.png +0 -0
  128. package/src/client/public/default/android-chrome-512x512.png +0 -0
  129. package/src/client/public/default/android-chrome-72x72.png +0 -0
  130. package/src/client/public/default/android-chrome-96x96.png +0 -0
  131. package/src/client/public/default/apple-touch-icon-1024x1024.png +0 -0
  132. package/src/client/public/default/apple-touch-icon-114x114.png +0 -0
  133. package/src/client/public/default/apple-touch-icon-120x120.png +0 -0
  134. package/src/client/public/default/apple-touch-icon-144x144.png +0 -0
  135. package/src/client/public/default/apple-touch-icon-152x152.png +0 -0
  136. package/src/client/public/default/apple-touch-icon-167x167.png +0 -0
  137. package/src/client/public/default/apple-touch-icon-180x180.png +0 -0
  138. package/src/client/public/default/apple-touch-icon-57x57.png +0 -0
  139. package/src/client/public/default/apple-touch-icon-60x60.png +0 -0
  140. package/src/client/public/default/apple-touch-icon-72x72.png +0 -0
  141. package/src/client/public/default/apple-touch-icon-76x76.png +0 -0
  142. package/src/client/public/default/apple-touch-icon-precomposed.png +0 -0
  143. package/src/client/public/default/apple-touch-icon.png +0 -0
  144. package/src/client/public/default/apple-touch-startup-image-1125x2436.png +0 -0
  145. package/src/client/public/default/apple-touch-startup-image-1136x640.png +0 -0
  146. package/src/client/public/default/apple-touch-startup-image-1170x2532.png +0 -0
  147. package/src/client/public/default/apple-touch-startup-image-1179x2556.png +0 -0
  148. package/src/client/public/default/apple-touch-startup-image-1242x2208.png +0 -0
  149. package/src/client/public/default/apple-touch-startup-image-1242x2688.png +0 -0
  150. package/src/client/public/default/apple-touch-startup-image-1284x2778.png +0 -0
  151. package/src/client/public/default/apple-touch-startup-image-1290x2796.png +0 -0
  152. package/src/client/public/default/apple-touch-startup-image-1334x750.png +0 -0
  153. package/src/client/public/default/apple-touch-startup-image-1488x2266.png +0 -0
  154. package/src/client/public/default/apple-touch-startup-image-1536x2048.png +0 -0
  155. package/src/client/public/default/apple-touch-startup-image-1620x2160.png +0 -0
  156. package/src/client/public/default/apple-touch-startup-image-1640x2160.png +0 -0
  157. package/src/client/public/default/apple-touch-startup-image-1668x2224.png +0 -0
  158. package/src/client/public/default/apple-touch-startup-image-1668x2388.png +0 -0
  159. package/src/client/public/default/apple-touch-startup-image-1792x828.png +0 -0
  160. package/src/client/public/default/apple-touch-startup-image-2048x1536.png +0 -0
  161. package/src/client/public/default/apple-touch-startup-image-2048x2732.png +0 -0
  162. package/src/client/public/default/apple-touch-startup-image-2160x1620.png +0 -0
  163. package/src/client/public/default/apple-touch-startup-image-2160x1640.png +0 -0
  164. package/src/client/public/default/apple-touch-startup-image-2208x1242.png +0 -0
  165. package/src/client/public/default/apple-touch-startup-image-2224x1668.png +0 -0
  166. package/src/client/public/default/apple-touch-startup-image-2266x1488.png +0 -0
  167. package/src/client/public/default/apple-touch-startup-image-2388x1668.png +0 -0
  168. package/src/client/public/default/apple-touch-startup-image-2436x1125.png +0 -0
  169. package/src/client/public/default/apple-touch-startup-image-2532x1170.png +0 -0
  170. package/src/client/public/default/apple-touch-startup-image-2556x1179.png +0 -0
  171. package/src/client/public/default/apple-touch-startup-image-2688x1242.png +0 -0
  172. package/src/client/public/default/apple-touch-startup-image-2732x2048.png +0 -0
  173. package/src/client/public/default/apple-touch-startup-image-2778x1284.png +0 -0
  174. package/src/client/public/default/apple-touch-startup-image-2796x1290.png +0 -0
  175. package/src/client/public/default/apple-touch-startup-image-640x1136.png +0 -0
  176. package/src/client/public/default/apple-touch-startup-image-750x1334.png +0 -0
  177. package/src/client/public/default/apple-touch-startup-image-828x1792.png +0 -0
  178. package/src/client/public/default/assets/background/white.jpg +0 -0
  179. package/src/client/public/default/assets/background/white0-min.jpg +0 -0
  180. package/src/client/public/default/assets/background/white0.jpg +0 -0
  181. package/src/client/public/default/assets/logo/base-icon.png +0 -0
  182. package/src/client/public/default/assets/mailer/api-user-check.png +0 -0
  183. package/src/client/public/default/assets/mailer/api-user-invalid-token.png +0 -0
  184. package/src/client/public/default/assets/mailer/api-user-recover.png +0 -0
  185. package/src/client/public/default/browserconfig.xml +12 -0
  186. package/src/client/public/default/favicon-16x16.png +0 -0
  187. package/src/client/public/default/favicon-32x32.png +0 -0
  188. package/src/client/public/default/favicon-48x48.png +0 -0
  189. package/src/client/public/default/favicon.ico +0 -0
  190. package/src/client/public/default/manifest.webmanifest +69 -0
  191. package/src/client/public/default/mstile-144x144.png +0 -0
  192. package/src/client/public/default/mstile-150x150.png +0 -0
  193. package/src/client/public/default/mstile-310x150.png +0 -0
  194. package/src/client/public/default/mstile-310x310.png +0 -0
  195. package/src/client/public/default/mstile-70x70.png +0 -0
  196. package/src/client/public/default/plantuml/client-conf.svg +1 -0
  197. package/src/client/public/default/plantuml/client-schema.svg +1 -0
  198. package/src/client/public/default/plantuml/cron-conf.svg +1 -0
  199. package/src/client/public/default/plantuml/cron-schema.svg +1 -0
  200. package/src/client/public/default/plantuml/server-conf.svg +1 -0
  201. package/src/client/public/default/plantuml/server-schema.svg +1 -0
  202. package/src/client/public/default/plantuml/ssr-conf.svg +1 -0
  203. package/src/client/public/default/plantuml/ssr-schema.svg +1 -0
  204. package/src/client/public/default/sitemap +148 -0
  205. package/src/client/public/default/yandex-browser-50x50.png +0 -0
  206. package/src/client/public/default/yandex-browser-manifest.json +9 -0
  207. package/src/client/public/doc/favicon.ico +0 -0
  208. package/src/client/public/doc/sitemap +148 -0
  209. package/src/client/public/test/favicon.ico +0 -0
  210. package/src/client/public/test/sitemap +148 -0
  211. package/src/client/services/core/core.service.js +170 -0
  212. package/src/client/services/crypto/crypto.service.js +70 -0
  213. package/src/client/services/default/default.management.js +343 -0
  214. package/src/client/services/default/default.service.js +89 -0
  215. package/src/client/services/file/file.service.js +70 -0
  216. package/src/client/services/instance/instance.management.js +74 -0
  217. package/src/client/services/instance/instance.service.js +89 -0
  218. package/src/client/services/test/test.service.js +70 -0
  219. package/src/client/services/user/user.management.js +50 -0
  220. package/src/client/services/user/user.service.js +89 -0
  221. package/src/client/ssr/Render.js +237 -0
  222. package/src/client/ssr/common/Alert.js +75 -0
  223. package/src/client/ssr/common/SsrCore.js +91 -0
  224. package/src/client/ssr/common/Translate.js +26 -0
  225. package/src/client/ssr/common/Worker.js +28 -0
  226. package/src/client/ssr/components/body/CacheControl.js +114 -0
  227. package/src/client/ssr/components/body/DefaultSplashScreen.js +90 -0
  228. package/src/client/ssr/components/email/DefaultRecoverEmail.js +21 -0
  229. package/src/client/ssr/components/email/DefaultVerifyEmail.js +17 -0
  230. package/src/client/ssr/components/head/Css.js +241 -0
  231. package/src/client/ssr/components/head/DefaultScripts.js +3 -0
  232. package/src/client/ssr/components/head/PwaDefault.js +60 -0
  233. package/src/client/ssr/offline/default.index.js +31 -0
  234. package/src/client/ssr/pages/404.js +12 -0
  235. package/src/client/ssr/pages/500.js +12 -0
  236. package/src/client/sw/default.sw.js +203 -0
  237. package/src/client/sw/template.sw.js +84 -0
  238. package/src/client.build.js +22 -0
  239. package/src/client.dev.js +21 -0
  240. package/src/cron.js +30 -0
  241. package/src/db/DataBaseProvider.js +34 -0
  242. package/src/db/mariadb/MariaDB.js +33 -0
  243. package/src/db/mongo/MongooseDB.js +125 -0
  244. package/src/dns.js +22 -0
  245. package/src/index.js +43 -0
  246. package/src/mailer/EmailRender.js +69 -0
  247. package/src/mailer/MailerProvider.js +96 -0
  248. package/src/proxy.js +22 -0
  249. package/src/runtime/lampp/Lampp.js +115 -0
  250. package/src/runtime/nginx/Nginx.js +3 -0
  251. package/src/runtime/xampp/Xampp.js +49 -0
  252. package/src/server/auth.js +235 -0
  253. package/src/server/backup.js +108 -0
  254. package/src/server/client-build-live.js +98 -0
  255. package/src/server/client-build.js +821 -0
  256. package/src/server/client-dev-server.js +60 -0
  257. package/src/server/client-formatted.js +58 -0
  258. package/src/server/client-icons.js +151 -0
  259. package/src/server/conf.js +883 -0
  260. package/src/server/cron.js +35 -0
  261. package/src/server/dns.js +89 -0
  262. package/src/server/downloader.js +42 -0
  263. package/src/server/logger.js +190 -0
  264. package/src/server/network.js +122 -0
  265. package/src/server/peer.js +33 -0
  266. package/src/server/process.js +66 -0
  267. package/src/server/prompt-optimizer.js +28 -0
  268. package/src/server/proxy.js +118 -0
  269. package/src/server/runtime.js +461 -0
  270. package/src/server/ssl.js +120 -0
  271. package/src/server.js +25 -0
  272. package/src/ws/IoInterface.js +45 -0
  273. package/src/ws/IoServer.js +39 -0
  274. package/src/ws/core/channels/core.ws.chat.js +23 -0
  275. package/src/ws/core/channels/core.ws.mailer.js +35 -0
  276. package/src/ws/core/channels/core.ws.stream.js +31 -0
  277. package/src/ws/core/core.ws.connection.js +28 -0
  278. package/src/ws/core/core.ws.emit.js +14 -0
  279. package/src/ws/core/core.ws.server.js +24 -0
  280. package/src/ws/core/management/core.ws.chat.js +8 -0
  281. package/src/ws/core/management/core.ws.mailer.js +16 -0
  282. package/src/ws/core/management/core.ws.stream.js +8 -0
  283. package/src/ws/default/channels/default.ws.main.js +16 -0
  284. package/src/ws/default/default.ws.connection.js +22 -0
  285. package/src/ws/default/default.ws.emit.js +14 -0
  286. package/src/ws/default/default.ws.server.js +20 -0
  287. package/src/ws/default/management/default.ws.main.js +8 -0
  288. package/startup.js +11 -0
  289. package/supervisord-openssh-server.conf +5 -0
  290. package/test/api.test.js +60 -0
@@ -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>
@@ -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
+ }
@@ -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:1445px;height:2767px;background:#FFFFFF;" version="1.1" viewBox="0 0 1445 2767" width="1445px" zoomAndPan="magnify"><defs/><g><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="80" x="10" y="1630"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="48" x="15" y="1646.5332">default</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="73" y="1646.5332">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="68" x2="68" y1="1630" y2="1651.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="80" x="10" y="1630"/><rect fill="#F1F1F1" height="108.0469" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="118" x="127" y="1587"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="63" x="132" y="1603.5332">metadata</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="228" y="1603.5332">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="223" x2="223" y1="1587" y2="1608.6094"/><line style="stroke:#000000;stroke-width:1.0;" x1="127" x2="245" y1="1608.6094" y2="1608.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="86" x="132" y="1625.1426">components</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="228" y="1625.1426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="223" x2="223" y1="1608.6094" y2="1630.2188"/><line style="stroke:#000000;stroke-width:1.0;" x1="127" x2="245" y1="1630.2188" y2="1630.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="132" y="1646.752">views</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="228" y="1646.752">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="223" x2="223" y1="1630.2188" y2="1651.8281"/><line style="stroke:#000000;stroke-width:1.0;" x1="127" x2="245" y1="1651.8281" y2="1651.8281"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="34" x="132" y="1668.3613">dists</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="228" y="1668.3613">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="223" x2="223" y1="1651.8281" y2="1673.4375"/><line style="stroke:#000000;stroke-width:1.0;" x1="127" x2="245" y1="1673.4375" y2="1673.4375"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="57" x="132" y="1689.9707">services</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="228" y="1689.9707">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="223" x2="223" y1="1673.4375" y2="1695.0469"/><rect fill="none" height="108.0469" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="118" x="127" y="1587"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="516" x="282" y="1200.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="26" x="287" y="1217.0332">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="421" y="1217.0332">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="416" x2="416" y1="1200.5" y2="1222.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="282" x2="798" y1="1222.1094" y2="1222.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="124" x="287" y="1238.6426">backgroundImage</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="372" x="421" y="1238.6426">./src/client/public/default/assets/background/white0-min.jpg</text><line style="stroke:#000000;stroke-width:1.0;" x1="416" x2="416" y1="1222.1094" y2="1243.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="516" x="282" y="1200.5"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="80" x="500" y="1261.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="505" y="1278.0332">core</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="563" y="1278.0332">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="558" x2="558" y1="1261.5" y2="1283.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="500" x2="580" y1="1283.1094" y2="1283.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="48" x="505" y="1299.6426">default</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="563" y="1299.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="558" x2="558" y1="1283.1094" y2="1304.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="80" x="500" y="1261.5"/><rect fill="#F1F1F1" height="907.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="137" x="1065.5" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="72" x="1070.5" y="26.5332">CommonJs</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="31.6094" y2="31.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="56" x="1070.5" y="48.1426">VanillaJs</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="53.2188" y2="53.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="74" x="1070.5" y="69.752">Responsive</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="74.8281" y2="74.8281"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="61" x="1070.5" y="91.3613">Keyboard</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="96.4375" y2="96.4375"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="60" x="1070.5" y="112.9707">Translate</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="118.0469" y2="118.0469"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1070.5" y="134.5801">Modal</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="139.6563" y2="139.6563"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="48" x="1070.5" y="156.1895">BtnIcon</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="161.2656" y2="161.2656"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1070.5" y="177.7988">Logger</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="182.875" y2="182.875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="24" x="1070.5" y="199.4082">Css</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="204.4844" y2="204.4844"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="127" x="1070.5" y="221.0176">NotificationManager</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="226.0938" y2="226.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="85" x="1070.5" y="242.627">ToggleSwitch</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="247.7031" y2="247.7031"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="67" x="1070.5" y="264.2363">DropDown</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="269.3125" y2="269.3125"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="114" x="1070.5" y="285.8457">LoadingAnimation</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="290.9219" y2="290.9219"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="57" x="1070.5" y="307.4551">EventsUI</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="312.5313" y2="312.5313"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="44" x="1070.5" y="329.0645">AgGrid</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="334.1406" y2="334.1406"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="32" x="1070.5" y="350.6738">Input</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="355.75" y2="355.75"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="56" x="1070.5" y="372.2832">Validator</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="377.3594" y2="377.3594"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="46" x="1070.5" y="393.8926">SignUp</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="398.9688" y2="398.9688"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="36" x="1070.5" y="415.502">LogIn</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="420.5781" y2="420.5781"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="47" x="1070.5" y="437.1113">LogOut</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="442.1875" y2="442.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="1070.5" y="458.7207">Router</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="463.7969" y2="463.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="51" x="1070.5" y="480.3301">Account</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="485.4063" y2="485.4063"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="29" x="1070.5" y="501.9395">Auth</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="507.0156" y2="507.0156"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="68" x="1070.5" y="523.5488">FullScreen</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="528.625" y2="528.625"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="56" x="1070.5" y="545.1582">RichText</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="550.2344" y2="550.2344"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="89" x="1070.5" y="566.7676">CalendarCore</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="571.8438" y2="571.8438"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="53" x="1070.5" y="588.377">D3Chart</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="593.4531" y2="593.4531"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="46" x="1070.5" y="609.9863">Stream</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="615.0625" y2="615.0625"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="55" x="1070.5" y="631.5957">SocketIo</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="636.6719" y2="636.6719"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="32" x="1070.5" y="653.2051">Docs</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="658.2813" y2="658.2813"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="50" x="1070.5" y="674.8145">Content</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="679.8906" y2="679.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="76" x="1070.5" y="696.4238">FileExplorer</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="701.5" y2="701.5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="30" x="1070.5" y="718.0332">Chat</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="723.1094" y2="723.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="46" x="1070.5" y="739.6426">Worker</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="744.7188" y2="744.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="55" x="1070.5" y="761.252">CssCore</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="766.3281" y2="766.3281"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1070.5" y="782.8613">Wallet</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="787.9375" y2="787.9375"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="41" x="1070.5" y="804.4707">Badge</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="809.5469" y2="809.5469"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="48" x="1070.5" y="826.0801">ToolTip</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="831.1563" y2="831.1563"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="60" x="1070.5" y="847.6895">Webhook</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="852.7656" y2="852.7656"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="53" x="1070.5" y="869.2988">Recover</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="874.375" y2="874.375"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="36" x="1070.5" y="890.9082">Panel</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065.5" x2="1202.5" y1="895.9844" y2="895.9844"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="70" x="1070.5" y="912.5176">PanelForm</text><rect fill="none" height="907.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="137" x="1065.5" y="10"/><rect fill="#F1F1F1" height="237.7031" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="115" x="1076.5" y="936"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="81" x="1081.5" y="952.5332">MenuDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1076.5" x2="1191.5" y1="957.6094" y2="957.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="90" x="1081.5" y="974.1426">RoutesDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1076.5" x2="1191.5" y1="979.2188" y2="979.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="104" x="1081.5" y="995.752">ElementsDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1076.5" x2="1191.5" y1="1000.8281" y2="1000.8281"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="103" x="1081.5" y="1017.3613">CommonDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1076.5" x2="1191.5" y1="1022.4375" y2="1022.4375"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="69" x="1081.5" y="1038.9707">CssDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1076.5" x2="1191.5" y1="1044.0469" y2="1044.0469"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="81" x="1081.5" y="1060.5801">LogInDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1076.5" x2="1191.5" y1="1065.6563" y2="1065.6563"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="92" x="1081.5" y="1082.1895">LogOutDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1076.5" x2="1191.5" y1="1087.2656" y2="1087.2656"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="91" x="1081.5" y="1103.7988">SignUpDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1076.5" x2="1191.5" y1="1108.875" y2="1108.875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="105" x="1081.5" y="1125.4082">TranslateDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1076.5" x2="1191.5" y1="1130.4844" y2="1130.4844"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="96" x="1081.5" y="1147.0176">SettingsDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="1076.5" x2="1191.5" y1="1152.0938" y2="1152.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="100" x="1081.5" y="1168.627">SocketIoDefault</text><rect fill="none" height="237.7031" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="115" x="1076.5" y="936"/><rect fill="#F1F1F1" height="216.0938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="22" x="528" y="1532"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="1548.5332">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="528" x2="550" y1="1553.6094" y2="1553.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="1570.1426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="528" x2="550" y1="1575.2188" y2="1575.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="1591.752">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="528" x2="550" y1="1596.8281" y2="1596.8281"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="1613.3613">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="528" x2="550" y1="1618.4375" y2="1618.4375"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="1634.9707">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="528" x2="550" y1="1640.0469" y2="1640.0469"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="1656.5801">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="528" x2="550" y1="1661.6563" y2="1661.6563"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="1678.1895">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="528" x2="550" y1="1683.2656" y2="1683.2656"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="1699.7988">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="528" x2="550" y1="1704.875" y2="1704.875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="1721.4082">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="528" x2="550" y1="1726.4844" y2="1726.4844"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="1743.0176">   </text><rect fill="none" height="216.0938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="22" x="528" y="1532"/><rect fill="#F1F1F1" height="86.4375" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="103" x="1082.5" y="1192"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="31" x="1087.5" y="1208.5332">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="4" x="1135.5" y="1208.5332">/</text><line style="stroke:#000000;stroke-width:1.0;" x1="1130.5" x2="1130.5" y1="1192" y2="1213.6094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1082.5" x2="1185.5" y1="1213.6094" y2="1213.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="26" x="1087.5" y="1230.1426">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="1135.5" y="1230.1426">Home</text><line style="stroke:#000000;stroke-width:1.0;" x1="1130.5" x2="1130.5" y1="1213.6094" y2="1235.2188"/><line style="stroke:#000000;stroke-width:1.0;" x1="1082.5" x2="1185.5" y1="1235.2188" y2="1235.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="38" x="1087.5" y="1251.752">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1135.5" y="1251.752">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1130.5" x2="1130.5" y1="1235.2188" y2="1256.8281"/><line style="stroke:#000000;stroke-width:1.0;" x1="1082.5" x2="1185.5" y1="1256.8281" y2="1256.8281"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="21" x="1087.5" y="1273.3613">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1135.5" y="1273.3613">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1130.5" x2="1130.5" y1="1256.8281" y2="1278.4375"/><rect fill="none" height="86.4375" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="103" x="1082.5" y="1192"/><rect fill="#F1F1F1" height="86.4375" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="103" x="1082.5" y="1296"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="31" x="1087.5" y="1312.5332">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="40" x="1135.5" y="1312.5332">/home</text><line style="stroke:#000000;stroke-width:1.0;" x1="1130.5" x2="1130.5" y1="1296" y2="1317.6094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1082.5" x2="1185.5" y1="1317.6094" y2="1317.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="26" x="1087.5" y="1334.1426">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="1135.5" y="1334.1426">Home</text><line style="stroke:#000000;stroke-width:1.0;" x1="1130.5" x2="1130.5" y1="1317.6094" y2="1339.2188"/><line style="stroke:#000000;stroke-width:1.0;" x1="1082.5" x2="1185.5" y1="1339.2188" y2="1339.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="38" x="1087.5" y="1355.752">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1135.5" y="1355.752">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1130.5" x2="1130.5" y1="1339.2188" y2="1360.8281"/><line style="stroke:#000000;stroke-width:1.0;" x1="1082.5" x2="1185.5" y1="1360.8281" y2="1360.8281"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="21" x="1087.5" y="1377.3613">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1135.5" y="1377.3613">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1130.5" x2="1130.5" y1="1360.8281" y2="1382.4375"/><rect fill="none" height="86.4375" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="103" x="1082.5" y="1296"/><rect fill="#F1F1F1" height="64.8281" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="111" x="1078.5" y="1400.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="31" x="1083.5" y="1417.0332">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="53" x="1131.5" y="1417.0332">/settings</text><line style="stroke:#000000;stroke-width:1.0;" x1="1126.5" x2="1126.5" y1="1400.5" y2="1422.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1078.5" x2="1189.5" y1="1422.1094" y2="1422.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="38" x="1083.5" y="1438.6426">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1131.5" y="1438.6426">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1126.5" x2="1126.5" y1="1422.1094" y2="1443.7188"/><line style="stroke:#000000;stroke-width:1.0;" x1="1078.5" x2="1189.5" y1="1443.7188" y2="1443.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="21" x="1083.5" y="1460.252">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1131.5" y="1460.252">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1126.5" x2="1126.5" y1="1443.7188" y2="1465.3281"/><rect fill="none" height="64.8281" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="111" x="1078.5" y="1400.5"/><rect fill="#F1F1F1" height="64.8281" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="103" x="1082.5" y="1483.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="31" x="1087.5" y="1500.0332">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1135.5" y="1500.0332">/log-in</text><line style="stroke:#000000;stroke-width:1.0;" x1="1130.5" x2="1130.5" y1="1483.5" y2="1505.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1082.5" x2="1185.5" y1="1505.1094" y2="1505.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="38" x="1087.5" y="1521.6426">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1135.5" y="1521.6426">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1130.5" x2="1130.5" y1="1505.1094" y2="1526.7188"/><line style="stroke:#000000;stroke-width:1.0;" x1="1082.5" x2="1185.5" y1="1526.7188" y2="1526.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="21" x="1087.5" y="1543.252">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1135.5" y="1543.252">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1130.5" x2="1130.5" y1="1526.7188" y2="1548.3281"/><rect fill="none" height="64.8281" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="103" x="1082.5" y="1483.5"/><rect fill="#F1F1F1" height="64.8281" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="109" x="1079.5" y="1566.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="31" x="1084.5" y="1583.0332">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="51" x="1132.5" y="1583.0332">/sign-up</text><line style="stroke:#000000;stroke-width:1.0;" x1="1127.5" x2="1127.5" y1="1566.5" y2="1588.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1079.5" x2="1188.5" y1="1588.1094" y2="1588.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="38" x="1084.5" y="1604.6426">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1132.5" y="1604.6426">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1127.5" x2="1127.5" y1="1588.1094" y2="1609.7188"/><line style="stroke:#000000;stroke-width:1.0;" x1="1079.5" x2="1188.5" y1="1609.7188" y2="1609.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="21" x="1084.5" y="1626.252">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1132.5" y="1626.252">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1127.5" x2="1127.5" y1="1609.7188" y2="1631.3281"/><rect fill="none" height="64.8281" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="109" x="1079.5" y="1566.5"/><rect fill="#F1F1F1" height="64.8281" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="106" x="1081" y="1649.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="31" x="1086" y="1666.0332">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="48" x="1134" y="1666.0332">/log-out</text><line style="stroke:#000000;stroke-width:1.0;" x1="1129" x2="1129" y1="1649.5" y2="1671.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1081" x2="1187" y1="1671.1094" y2="1671.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="38" x="1086" y="1687.6426">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1134" y="1687.6426">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1129" x2="1129" y1="1671.1094" y2="1692.7188"/><line style="stroke:#000000;stroke-width:1.0;" x1="1081" x2="1187" y1="1692.7188" y2="1692.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="21" x="1086" y="1709.252">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1134" y="1709.252">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1129" x2="1129" y1="1692.7188" y2="1714.3281"/><rect fill="none" height="64.8281" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="106" x="1081" y="1649.5"/><rect fill="#F1F1F1" height="64.8281" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="112" x="1078" y="1732.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="31" x="1083" y="1749.0332">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="54" x="1131" y="1749.0332">/account</text><line style="stroke:#000000;stroke-width:1.0;" x1="1126" x2="1126" y1="1732.5" y2="1754.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1078" x2="1190" y1="1754.1094" y2="1754.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="38" x="1083" y="1770.6426">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1131" y="1770.6426">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1126" x2="1126" y1="1754.1094" y2="1775.7188"/><line style="stroke:#000000;stroke-width:1.0;" x1="1078" x2="1190" y1="1775.7188" y2="1775.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="21" x="1083" y="1792.252">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1131" y="1792.252">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1126" x2="1126" y1="1775.7188" y2="1797.3281"/><rect fill="none" height="64.8281" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="112" x="1078" y="1732.5"/><rect fill="#F1F1F1" height="64.8281" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="103" x="1082.5" y="1815.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="31" x="1087.5" y="1832.0332">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="34" x="1135.5" y="1832.0332">/docs</text><line style="stroke:#000000;stroke-width:1.0;" x1="1130.5" x2="1130.5" y1="1815.5" y2="1837.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1082.5" x2="1185.5" y1="1837.1094" y2="1837.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="38" x="1087.5" y="1853.6426">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1135.5" y="1853.6426">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1130.5" x2="1130.5" y1="1837.1094" y2="1858.7188"/><line style="stroke:#000000;stroke-width:1.0;" x1="1082.5" x2="1185.5" y1="1858.7188" y2="1858.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="21" x="1087.5" y="1875.252">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1135.5" y="1875.252">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1130.5" x2="1130.5" y1="1858.7188" y2="1880.3281"/><rect fill="none" height="64.8281" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="103" x="1082.5" y="1815.5"/><rect fill="#F1F1F1" height="64.8281" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="110" x="1079" y="1898.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="31" x="1084" y="1915.0332">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="52" x="1132" y="1915.0332">/recover</text><line style="stroke:#000000;stroke-width:1.0;" x1="1127" x2="1127" y1="1898.5" y2="1920.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1079" x2="1189" y1="1920.1094" y2="1920.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="38" x="1084" y="1936.6426">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1132" y="1936.6426">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1127" x2="1127" y1="1920.1094" y2="1941.7188"/><line style="stroke:#000000;stroke-width:1.0;" x1="1079" x2="1189" y1="1941.7188" y2="1941.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="21" x="1084" y="1958.252">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1132" y="1958.252">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1127" x2="1127" y1="1941.7188" y2="1963.3281"/><rect fill="none" height="64.8281" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="110" x="1079" y="1898.5"/><rect fill="#F1F1F1" height="64.8281" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="194" x="1037" y="1981.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="31" x="1042" y="1998.0332">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="136" x="1090" y="1998.0332">/default-management</text><line style="stroke:#000000;stroke-width:1.0;" x1="1085" x2="1085" y1="1981.5" y2="2003.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1037" x2="1231" y1="2003.1094" y2="2003.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="38" x="1042" y="2019.6426">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1090" y="2019.6426">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1085" x2="1085" y1="2003.1094" y2="2024.7188"/><line style="stroke:#000000;stroke-width:1.0;" x1="1037" x2="1231" y1="2024.7188" y2="2024.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="21" x="1042" y="2041.252">ssr</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="1090" y="2041.252">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="1085" x2="1085" y1="2024.7188" y2="2046.3281"/><rect fill="none" height="64.8281" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="194" x="1037" y="1981.5"/><rect fill="#F1F1F1" height="172.875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="22" x="528" y="2251.5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="2268.0332">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="528" x2="550" y1="2273.1094" y2="2273.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="2289.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="528" x2="550" y1="2294.7188" y2="2294.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="2311.252">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="528" x2="550" y1="2316.3281" y2="2316.3281"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="2332.8613">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="528" x2="550" y1="2337.9375" y2="2337.9375"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="2354.4707">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="528" x2="550" y1="2359.5469" y2="2359.5469"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="2376.0801">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="528" x2="550" y1="2381.1563" y2="2381.1563"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="2397.6895">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="528" x2="550" y1="2402.7656" y2="2402.7656"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="533" y="2419.2988">   </text><rect fill="none" height="172.875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="22" x="528" y="2251.5"/><rect fill="#F1F1F1" height="86.4375" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="422" x="923" y="2065"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="40" x="928" y="2081.5332">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="270" x="1070" y="2081.5332">./node_modules/@neodrag/vanilla/dist/min</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065" x2="1065" y1="2065" y2="2086.6094"/><line style="stroke:#000000;stroke-width:1.0;" x1="923" x2="1345" y1="2086.6094" y2="2086.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="91" x="928" y="2103.1426">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="142" x="1070" y="2103.1426">/dist/@neodrag-vanilla</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065" x2="1065" y1="2086.6094" y2="2108.2188"/><line style="stroke:#000000;stroke-width:1.0;" x1="923" x2="1345" y1="2108.2188" y2="2108.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="89" x="928" y="2124.752">import_name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="111" x="1070" y="2124.752">@neodrag/vanilla</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065" x2="1065" y1="2108.2188" y2="2129.8281"/><line style="stroke:#000000;stroke-width:1.0;" x1="923" x2="1345" y1="2129.8281" y2="2129.8281"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="132" x="928" y="2146.3613">import_name_build</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="194" x="1070" y="2146.3613">/dist/@neodrag-vanilla/index.js</text><line style="stroke:#000000;stroke-width:1.0;" x1="1065" x2="1065" y1="2129.8281" y2="2151.4375"/><rect fill="none" height="86.4375" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="422" x="923" y="2065"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="432" x="918" y="2169.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="40" x="923" y="2186.0332">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="321" x="1024" y="2186.0332">./node_modules/@fortawesome/fontawesome-free</text><line style="stroke:#000000;stroke-width:1.0;" x1="1019" x2="1019" y1="2169.5" y2="2191.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="918" x2="1350" y1="2191.1094" y2="2191.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="91" x="923" y="2207.6426">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="115" x="1024" y="2207.6426">/dist/fontawesome</text><line style="stroke:#000000;stroke-width:1.0;" x1="1019" x2="1019" y1="2191.1094" y2="2212.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="432" x="918" y="2169.5"/><rect fill="#F1F1F1" height="86.4375" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="405" x="931.5" y="2231"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="40" x="936.5" y="2247.5332">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="223" x="1078.5" y="2247.5332">./node_modules/sortablejs/modular</text><line style="stroke:#000000;stroke-width:1.0;" x1="1073.5" x2="1073.5" y1="2231" y2="2252.6094"/><line style="stroke:#000000;stroke-width:1.0;" x1="931.5" x2="1336.5" y1="2252.6094" y2="2252.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="91" x="936.5" y="2269.1426">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="91" x="1078.5" y="2269.1426">/dist/sortablejs</text><line style="stroke:#000000;stroke-width:1.0;" x1="1073.5" x2="1073.5" y1="2252.6094" y2="2274.2188"/><line style="stroke:#000000;stroke-width:1.0;" x1="931.5" x2="1336.5" y1="2274.2188" y2="2274.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="89" x="936.5" y="2290.752">import_name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="61" x="1078.5" y="2290.752">sortablejs</text><line style="stroke:#000000;stroke-width:1.0;" x1="1073.5" x2="1073.5" y1="2274.2188" y2="2295.8281"/><line style="stroke:#000000;stroke-width:1.0;" x1="931.5" x2="1336.5" y1="2295.8281" y2="2295.8281"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="132" x="936.5" y="2312.3613">import_name_build</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="253" x="1078.5" y="2312.3613">/dist/sortablejs/sortable.complete.esm.js</text><line style="stroke:#000000;stroke-width:1.0;" x1="1073.5" x2="1073.5" y1="2295.8281" y2="2317.4375"/><rect fill="none" height="86.4375" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="405" x="931.5" y="2231"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="271" x="998.5" y="2335.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="40" x="1003.5" y="2352.0332">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="160" x="1104.5" y="2352.0332">./node_modules/validator</text><line style="stroke:#000000;stroke-width:1.0;" x1="1099.5" x2="1099.5" y1="2335.5" y2="2357.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="998.5" x2="1269.5" y1="2357.1094" y2="2357.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="91" x="1003.5" y="2373.6426">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="84" x="1104.5" y="2373.6426">/dist/validator</text><line style="stroke:#000000;stroke-width:1.0;" x1="1099.5" x2="1099.5" y1="2357.1094" y2="2378.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="271" x="998.5" y="2335.5"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="412" x="928" y="2396.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="40" x="933" y="2413.0332">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="301" x="1034" y="2413.0332">./node_modules/@loadingio/css-spinner/entries</text><line style="stroke:#000000;stroke-width:1.0;" x1="1029" x2="1029" y1="2396.5" y2="2418.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="928" x2="1340" y1="2418.1094" y2="2418.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="91" x="933" y="2434.6426">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="87" x="1034" y="2434.6426">/dist/loadingio</text><line style="stroke:#000000;stroke-width:1.0;" x1="1029" x2="1029" y1="2418.1094" y2="2439.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="412" x="928" y="2396.5"/><rect fill="#F1F1F1" height="129.6563" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="598" x="835" y="2458"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="89" x="840" y="2474.5332">import_name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="119" x="990" y="2474.5332">ag-grid-community</text><line style="stroke:#000000;stroke-width:1.0;" x1="985" x2="985" y1="2458" y2="2479.6094"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="1433" y1="2479.6094" y2="2479.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="132" x="840" y="2496.1426">import_name_build</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="438" x="990" y="2496.1426">/dist/ag-grid-community/ag-grid-community.auto.complete.esm.min.js</text><line style="stroke:#000000;stroke-width:1.0;" x1="985" x2="985" y1="2479.6094" y2="2501.2188"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="1433" y1="2501.2188" y2="2501.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="40" x="840" y="2517.752">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="251" x="990" y="2517.752">./node_modules/ag-grid-community/dist</text><line style="stroke:#000000;stroke-width:1.0;" x1="985" x2="985" y1="2501.2188" y2="2522.8281"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="1433" y1="2522.8281" y2="2522.8281"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="91" x="840" y="2539.3613">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="149" x="990" y="2539.3613">/dist/ag-grid-community</text><line style="stroke:#000000;stroke-width:1.0;" x1="985" x2="985" y1="2522.8281" y2="2544.4375"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="1433" y1="2544.4375" y2="2544.4375"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="41" x="840" y="2560.9707">styles</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="265" x="990" y="2560.9707">./node_modules/ag-grid-community/styles</text><line style="stroke:#000000;stroke-width:1.0;" x1="985" x2="985" y1="2544.4375" y2="2566.0469"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="1433" y1="2566.0469" y2="2566.0469"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="140" x="840" y="2582.5801">public_styles_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="163" x="990" y="2582.5801">/styles/ag-grid-community</text><line style="stroke:#000000;stroke-width:1.0;" x1="985" x2="985" y1="2566.0469" y2="2587.6563"/><rect fill="none" height="129.6563" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="598" x="835" y="2458"/><rect fill="#F1F1F1" height="86.4375" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="404" x="932" y="2606"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="40" x="937" y="2622.5332">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="226" x="1079" y="2622.5332">./node_modules/socket.io/client-dist</text><line style="stroke:#000000;stroke-width:1.0;" x1="1074" x2="1074" y1="2606" y2="2627.6094"/><line style="stroke:#000000;stroke-width:1.0;" x1="932" x2="1336" y1="2627.6094" y2="2627.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="91" x="937" y="2644.1426">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="86" x="1079" y="2644.1426">/dist/socket.io</text><line style="stroke:#000000;stroke-width:1.0;" x1="1074" x2="1074" y1="2627.6094" y2="2649.2188"/><line style="stroke:#000000;stroke-width:1.0;" x1="932" x2="1336" y1="2649.2188" y2="2649.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="89" x="937" y="2665.752">import_name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="252" x="1079" y="2665.752">socket.io/client-dist/socket.io.esm.min.js</text><line style="stroke:#000000;stroke-width:1.0;" x1="1074" x2="1074" y1="2649.2188" y2="2670.8281"/><line style="stroke:#000000;stroke-width:1.0;" x1="932" x2="1336" y1="2670.8281" y2="2670.8281"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="132" x="937" y="2687.3613">import_name_build</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="218" x="1079" y="2687.3613">/dist/socket.io/socket.io.esm.min.js</text><line style="stroke:#000000;stroke-width:1.0;" x1="1074" x2="1074" y1="2670.8281" y2="2692.4375"/><rect fill="none" height="86.4375" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="404" x="932" y="2606"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="282" x="993" y="2710.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="40" x="998" y="2727.0332">folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="171" x="1099" y="2727.0332">./node_modules/peerjs/dist</text><line style="stroke:#000000;stroke-width:1.0;" x1="1094" x2="1094" y1="2710.5" y2="2732.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="993" x2="1275" y1="2732.1094" y2="2732.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="91" x="998" y="2748.6426">public_folder</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="69" x="1099" y="2748.6426">/dist/peerjs</text><line style="stroke:#000000;stroke-width:1.0;" x1="1094" x2="1094" y1="2732.1094" y2="2753.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="282" x="993" y="2710.5"/><rect fill="#F1F1F1" height="108.0469" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="53" x="513.5" y="2443"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="518.5" y="2459.5332">default</text><line style="stroke:#000000;stroke-width:1.0;" x1="513.5" x2="566.5" y1="2464.6094" y2="2464.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="28" x="518.5" y="2481.1426">core</text><line style="stroke:#000000;stroke-width:1.0;" x1="513.5" x2="566.5" y1="2486.2188" y2="2486.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="28" x="518.5" y="2502.752">user</text><line style="stroke:#000000;stroke-width:1.0;" x1="513.5" x2="566.5" y1="2507.8281" y2="2507.8281"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="23" x="518.5" y="2524.3613">test</text><line style="stroke:#000000;stroke-width:1.0;" x1="513.5" x2="566.5" y1="2529.4375" y2="2529.4375"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="18" x="518.5" y="2545.9707">file</text><rect fill="none" height="108.0469" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="53" x="513.5" y="2443"/><path d="M234.5,1599 L234.5,1586 C234.5,1548.5155 255.1615,1278.1683 282,1252 C283.2437,1250.7874 284.5084,1249.6045 285.7932,1248.4508 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M287.7428,1250.7545 L287.521,1246.9885 L283.8436,1246.147 L291.5526,1243.5767 L287.7428,1250.7545 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="234.5" cy="1599" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M569.5,1273 L569.5,1260 C569.5,1247.2423 789.645,1260.6743 799,1252 C852.2831,1202.594 810.666,995.4683 835,927 C886.3464,782.5277 990.446,637.4275 1061.0904,549.1437 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1063.4883,551.07 L1062.5351,547.3453 L1058.6925,547.2175 L1065.906,543.1489 L1063.4883,551.07 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="569.5" cy="1273" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M568.5,1294 L581.5,1294 C679.9525,1294 720.0512,1310.8216 799,1252 C826.7374,1231.334 809.6323,1206.5143 835,1183 C901.995,1120.8996 1003.7403,1086.1363 1069.423,1068.9803 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1070.1853,1071.9521 L1071.6518,1068.4087 L1068.6607,1066.0086 L1076.8524,1067.0747 L1070.1853,1071.9521 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="568.5" cy="1294" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M233,1619 L246,1619 C291.568,1619 256.6604,1560.8728 282,1523 C343.5175,1431.0554 446.79,1349.1376 502.0055,1309.0406 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M503.7846,1311.5065 L503.8549,1307.7063 L500.2264,1306.5748 L508.1702,1304.5928 L503.7846,1311.5065 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="233" cy="1619" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,1542 L553.5,1542 C637.9056,1542 759.1542,1324.0369 835,1287 C912.2875,1249.2591 1012.617,1238.5156 1075.0264,1235.679 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1075.1553,1238.797 L1077.3649,1235.5824 L1074.8976,1232.5611 L1082.8213,1235.357 L1075.1553,1238.797 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="1542" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,1564 L553.5,1564 C700.3492,1564 697.6559,1442.9739 835,1391 C914.9711,1360.7372 1013.7312,1347.9407 1075.1785,1342.6309 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1075.4349,1345.7009 L1077.481,1342.4386 L1074.9221,1339.5608 L1082.8536,1341.9899 L1075.4349,1345.7009 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="1564" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,1585 L553.5,1585 C687.9863,1585 704.8982,1508.0599 835,1474 C915.0721,1453.0376 1010.1993,1442.325 1071.1798,1437.2 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1071.4307,1440.2533 L1073.4697,1437.0118 L1070.9288,1434.1468 L1078.8129,1436.5727 L1071.4307,1440.2533 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="1585" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,1607 L553.5,1607 C680.5693,1607 709.4765,1576.7605 835,1557 C918.3741,1543.8749 1015.228,1531.0076 1075.4504,1523.2871 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1075.8352,1526.2959 L1077.707,1522.9985 L1075.0656,1520.2782 L1082.9725,1522.3251 L1075.8352,1526.2959 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="1607" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,1629 L553.5,1629 C742.8573,1629 966.5251,1612.8552 1072.2587,1604.253 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1072.5112,1607.3386 L1074.5729,1604.0636 L1072.0062,1601.1674 L1079.9727,1603.6218 L1072.5112,1607.3386 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="1629" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,1651 L553.5,1651 C743.6122,1651 968.2776,1667.8133 1073.4927,1676.6754 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1073.2327,1679.7443 L1075.7944,1676.8704 L1073.7527,1673.6065 L1081.1649,1677.3254 L1073.2327,1679.7443 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="1651" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,1672 L553.5,1672 C680.6478,1672 709.4662,1702.8049 835,1723 C916.2617,1736.0729 1010.3386,1748.935 1070.8146,1756.9113 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1070.4161,1759.9399 L1073.0861,1757.2101 L1071.2131,1753.8826 L1078.3862,1757.9075 L1070.4161,1759.9399 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="1672" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,1694 L553.5,1694 C688.15,1694 704.8489,1771.4847 835,1806 C916.8608,1827.709 1014.5081,1838.755 1075.2714,1843.9441 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1075.0178,1846.9801 L1077.5484,1844.1343 L1075.525,1840.9081 L1082.8613,1844.5781 L1075.0178,1846.9801 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="1694" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,1715 L553.5,1715 C700.5824,1715 696.6696,1839.0206 835,1889 C913.4709,1917.3519 1009.9759,1926.6797 1071.6173,1929.6827 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1071.4767,1932.7682 L1073.9314,1929.7882 L1071.7579,1926.5972 L1079.331,1930.0343 L1071.4767,1932.7682 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="1715" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,1737 L553.5,1737 C716.4768,1737 686.0351,1905.8872 835,1972 C896.1245,1999.128 970.6015,2009.6383 1029.8712,2013.3615 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1029.6947,2016.3692 L1032.1269,2013.4939 L1030.0477,2010.3538 L1037.3903,2013.8028 L1029.6947,2016.3692 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="1737" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M233,1640 L246,1640 C349.8285,1640 474.3178,1640 520.7969,1640 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M520.7969,1643.0028 L523.049,1640 L520.7969,1636.9972 L528.3039,1640 L520.7969,1643.0028 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="233" cy="1640" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,2262 L553.5,2262 C686.571,2262 706.4032,2194.2166 835,2160 C860.9048,2153.1073 888.3244,2146.8983 915.6291,2141.3738 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M916.2451,2144.4526 L917.9382,2140.9118 L915.0131,2138.295 L923.326,2139.8338 L916.2451,2144.4526 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="2262" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,2283 L553.5,2283 C681.5149,2283 708.5886,2242.1978 835,2222 C859.4669,2218.0907 885.1445,2214.5641 910.7385,2211.4128 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M911.1074,2214.4431 L913.0112,2211.1362 L910.3696,2208.3826 L918.3141,2210.4906 L911.1074,2214.4431 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="2283" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,2305 L553.5,2305 C676.5933,2305 814.1723,2297.9514 924.4342,2290.5763 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M924.6377,2293.599 L926.7012,2290.4237 L924.2307,2287.5536 L931.9909,2290.0675 L924.6377,2293.599 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="2305" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,2326 L553.5,2326 C702.9877,2326 873.8391,2336.3954 991.1829,2345.1467 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M990.9534,2348.2071 L993.4782,2345.3188 L991.4125,2342.0862 L998.834,2345.7206 L990.9534,2348.2071 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="2326" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,2349 L553.5,2349 C679.8061,2349 709.5859,2373.0155 835,2388 C862.6535,2391.3041 891.7778,2394.5367 920.5521,2397.5836 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M920.2272,2400.6653 L922.8634,2397.8273 L920.877,2394.5019 L928.2564,2398.3959 L920.2272,2400.6653 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="2349" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,2370 L553.5,2370 C666.2578,2370 692.1415,2398.0057 799,2434 C815.4265,2439.5331 818.5406,2443.5656 835,2449 C841.7949,2451.2435 848.6966,2453.4549 855.675,2455.6314 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M854.7359,2458.6718 L857.9554,2456.3358 L856.6142,2452.5909 L863.2762,2457.9793 L854.7359,2458.6718 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="2370" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,2392 L553.5,2392 C664.1963,2392 718.8727,2357.624 799,2434 C852.7025,2485.1883 781.3752,2545.7303 835,2597 C859.8322,2620.7416 891.4222,2635.7538 924.7057,2644.9455 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M923.9109,2647.9769 L926.9792,2645.5415 L925.5004,2641.914 L932.2842,2646.9323 L923.9109,2647.9769 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="2392" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M540.5,2414 L553.5,2414 C662.9726,2414 719.5772,2358.659 799,2434 C885.8722,2516.4075 749.0477,2617.6335 835,2701 C874.2916,2739.1095 931.606,2751.1608 985.5333,2752.1234 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M985.5077,2755.1572 L987.8087,2752.1425 L985.5588,2749.0895 L993.1179,2752.1872 L985.5077,2755.1572 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="540.5" cy="2414" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M233,1662 L246,1662 C291.1521,1662 264.8459,1715.2333 282,1757 C369.4525,1969.9291 485.3903,2221.6878 525.2984,2307.5598 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M522.5606,2308.833 L526.2533,2309.6131 L528.0361,2306.2865 L528.4815,2314.4041 L522.5606,2308.833 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="233" cy="1662" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M234.5,1683 L234.5,1696 C234.5,1737.0848 255.6091,2402.5122 282,2434 C337.4821,2500.1975 450.0052,2503.1948 506.1183,2500.079 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M506.3081,2503.0917 L508.3778,2499.9367 L505.9286,2497.0664 L513.65,2499.6048 L506.3081,2503.0917 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="234.5" cy="1683" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M78,1641 L91,1641 C100.2561,1641 110.0221,1641 119.6238,1641 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M119.6238,1644.0609 L121.9195,1641 L119.6238,1637.9391 L127.276,1641 L119.6238,1644.0609 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="78" cy="1641" 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="323px" preserveAspectRatio="none" style="width:1194px;height:323px;background:#FFFFFF;" version="1.1" viewBox="0 0 1194 323" width="1194px" zoomAndPan="magnify"><defs/><g><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="128" x="10" y="125.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="15" y="142.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="95" y="142.0332">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="90" x2="90" y1="125.5" y2="147.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="138" y1="147.1094" y2="147.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="70" x="15" y="163.6426">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="95" y="163.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="90" x2="90" y1="147.1094" y2="168.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="128" x="10" y="125.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="80" x="175" y="147"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="48" x="180" y="163.5332">default</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="238" y="163.5332">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="233" x2="233" y1="147" y2="168.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="80" x="175" y="147"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="128" x="292" y="136.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="297" y="153.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="377" y="153.0332">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="372" x2="372" y1="136.5" y2="158.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="292" x2="420" y1="158.1094" y2="158.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="70" x="297" y="174.6426">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="377" y="174.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="372" x2="372" y1="158.1094" y2="179.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="128" x="292" y="136.5"/><rect fill="#F1F1F1" height="108.0469" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="118" x="457" y="115"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="63" x="462" y="131.5332">metadata</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="558" y="131.5332">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="553" x2="553" y1="115" y2="136.6094"/><line style="stroke:#000000;stroke-width:1.0;" x1="457" x2="575" y1="136.6094" y2="136.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="86" x="462" y="153.1426">components</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="558" y="153.1426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="553" x2="553" y1="136.6094" y2="158.2188"/><line style="stroke:#000000;stroke-width:1.0;" x1="457" x2="575" y1="158.2188" y2="158.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="462" y="174.752">views</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="558" y="174.752">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="553" x2="553" y1="158.2188" y2="179.8281"/><line style="stroke:#000000;stroke-width:1.0;" x1="457" x2="575" y1="179.8281" y2="179.8281"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="34" x="462" y="196.3613">dists</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="558" y="196.3613">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="553" x2="553" y1="179.8281" y2="201.4375"/><line style="stroke:#000000;stroke-width:1.0;" x1="457" x2="575" y1="201.4375" y2="201.4375"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="57" x="462" y="217.9707">services</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="558" y="217.9707">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="553" x2="553" y1="201.4375" y2="223.0469"/><rect fill="none" height="108.0469" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="118" x="457" y="115"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="128" x="612" y="21.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="617" y="38.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="697" y="38.0332">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="692" x2="692" y1="21.5" y2="43.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="612" x2="740" y1="43.1094" y2="43.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="70" x="617" y="59.6426">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="697" y="59.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="692" x2="692" y1="43.1094" y2="64.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="128" x="612" y="21.5"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="156" x="777" y="28.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="26" x="782" y="45.0332">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="916" y="45.0332">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="911" x2="911" y1="28.5" y2="50.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="777" x2="933" y1="50.1094" y2="50.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="124" x="782" y="66.6426">backgroundImage</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="916" y="66.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="911" x2="911" y1="50.1094" y2="71.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="156" x="777" y="28.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="85" x="972.5" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="977.5" y="26.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="1017.5" y="26.5332">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1012.5" x2="1012.5" y1="10" y2="31.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="85" x="972.5" y="10"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="85" x="972.5" y="50"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="977.5" y="66.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="1017.5" y="66.5332">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1012.5" x2="1012.5" y1="50" y2="71.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="85" x="972.5" y="50"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="128" x="612" y="85.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="617" y="102.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="697" y="102.0332">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="692" x2="692" y1="85.5" y2="107.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="612" x2="740" y1="107.1094" y2="107.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="70" x="617" y="123.6426">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="697" y="123.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="692" x2="692" y1="107.1094" y2="128.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="128" x="612" y="85.5"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="80" x="815" y="101.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="820" y="118.0332">core</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="878" y="118.0332">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="873" x2="873" y1="101.5" y2="123.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="815" x2="895" y1="123.1094" y2="123.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="48" x="820" y="139.6426">default</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="878" y="139.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="873" x2="873" y1="123.1094" y2="144.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="80" x="815" y="101.5"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="90" x="970" y="90.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="975" y="107.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1022" y="107.0332">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1017" x2="1017" y1="90.5" y2="112.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="970" x2="1060" y1="112.1094" y2="112.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="975" y="128.6426">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1022" y="128.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1017" x2="1017" y1="112.1094" y2="133.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="90" x="970" y="90.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="85" x="1097" y="112"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1102" y="128.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="1142" y="128.5332">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1137" x2="1137" y1="112" y2="133.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="85" x="1097" y="112"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="90" x="970" y="151.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="975" y="168.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1022" y="168.0332">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1017" x2="1017" y1="151.5" y2="173.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="970" x2="1060" y1="173.1094" y2="173.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="975" y="189.6426">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1022" y="189.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1017" x2="1017" y1="173.1094" y2="194.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="90" x="970" y="151.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="85" x="1097" y="173"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1102" y="189.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="1142" y="189.5332">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1137" x2="1137" y1="173" y2="194.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="85" x="1097" y="173"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="90" x="631" y="146.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="636" y="163.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="683" y="163.0332">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="678" x2="678" y1="146.5" y2="168.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="631" x2="721" y1="168.1094" y2="168.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="636" y="184.6426">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="683" y="184.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="678" x2="678" y1="168.1094" y2="189.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="90" x="631" y="146.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="88" x="811" y="168"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="816" y="184.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="856" y="184.5332">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="851" x2="851" y1="168" y2="189.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="88" x="811" y="168"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="90" x="631" y="207.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="636" y="224.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="683" y="224.0332">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="678" x2="678" y1="207.5" y2="229.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="631" x2="721" y1="229.1094" y2="229.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="636" y="245.6426">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="683" y="245.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="678" x2="678" y1="229.1094" y2="250.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="90" x="631" y="207.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="88" x="811" y="229"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="816" y="245.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="856" y="245.5332">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="851" x2="851" y1="229" y2="250.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="88" x="811" y="229"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="90" x="631" y="268.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="636" y="285.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="683" y="285.0332">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="678" x2="678" y1="268.5" y2="290.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="631" x2="721" y1="290.1094" y2="290.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="636" y="306.6426">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="683" y="306.6426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="678" x2="678" y1="290.1094" y2="311.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="90" x="631" y="268.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="85" x="812.5" y="290"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="817.5" y="306.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="857.5" y="306.5332">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="852.5" x2="852.5" y1="290" y2="311.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="85" x="812.5" y="290"/><path d="M921,39 L934,39 C946.8082,39 960.4924,36.803 972.8772,33.9441 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M973.618,36.9537 L975.1344,33.3885 L972.1365,30.9345 L980.4012,32.0922 L973.618,36.9537 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="921" cy="39" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M921,61 L934,61 C944.0232,61 954.7484,61 964.9956,61 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M964.9956,64.0893 L967.3126,61 L964.9956,57.9107 L972.719,61 L964.9956,64.0893 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="921" cy="61" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M728,54 L741,54 C750.257,54 759.9361,53.8655 769.5711,53.6457 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M769.6485,56.7292 L771.8837,53.5877 L769.4937,50.5623 L777.2798,53.4522 L769.6485,56.7292 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="728" cy="54" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M563,125 L576,125 C603.0235,125 591.475,93.5783 612,76 C614.9327,73.4884 618.0891,71.1002 621.3718,68.8426 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M623.0434,71.4197 L623.3047,67.5889 L619.7003,66.2655 L627.8146,64.6637 L623.0434,71.4197 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="563" cy="125" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1048,123 L1061,123 C1070.2961,123 1080.2155,123 1089.7553,123 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1089.7553,126.0201 L1092.0204,123 L1089.7553,119.9799 L1097.3056,123 L1089.7553,126.0201 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1048" cy="123" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M883.5,112 L896.5,112 C918.1168,112 941.9612,112 962.5242,112 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M962.5242,115.0835 L964.8368,112 L962.5242,108.9165 L970.233,112 L962.5242,115.0835 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="883.5" cy="112" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1048,184 L1061,184 C1070.2961,184 1080.2155,184 1089.7553,184 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1089.7553,187.0201 L1092.0204,184 L1089.7553,180.9799 L1097.3056,184 L1089.7553,187.0201 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1048" cy="184" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M883.5,134 L896.5,134 C919.4675,134 943.7371,140.7433 964.2548,148.6218 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M963.1248,151.4589 L966.3826,149.4693 L965.3847,145.7848 L971.3474,151.4467 L963.1248,151.4589 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="883.5" cy="134" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M728,118 L741,118 C762.9495,118 787.2635,118.9448 807.7387,120.013 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M807.5732,123.0716 L810.0326,120.1372 L807.9042,116.9545 L815.3851,120.4268 L807.5732,123.0716 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="728" cy="118" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M563,147 L576,147 C586.0733,147 605.4088,139.853 624.3763,131.6011 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M625.6079,134.3825 L626.4624,130.6774 L623.1447,128.8197 L631.3299,128.5221 L625.6079,134.3825 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="563" cy="147" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M709.5,179 L722.5,179 C749.2789,179 779.1137,179 803.6351,179 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M803.6351,182.1057 L805.9644,179 L803.6351,175.8943 L811.3993,179 L803.6351,182.1057 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="709.5" cy="179" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M563,168 L576,168 C591.4457,168 608.24,168 623.5567,168 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M623.5567,171.144 L625.9147,168 L623.5567,164.856 L631.4166,168 L623.5567,171.144 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="563" cy="168" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M709.5,240 L722.5,240 C749.2789,240 779.1137,240 803.6351,240 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M803.6351,243.1057 L805.9644,240 L803.6351,236.8943 L811.3993,240 L803.6351,243.1057 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="709.5" cy="240" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M563,190 L576,190 C586.0387,190 605.3688,196.9683 624.3417,205.0139 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M623.1409,207.7963 L626.4285,205.9145 L625.5425,202.2315 L631.2977,208.0159 L623.1409,207.7963 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="563" cy="190" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M709.5,301 L722.5,301 C749.9141,301 780.5307,301 805.3708,301 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M805.3708,304.0054 L807.6249,301 L805.3708,297.9946 L812.8844,301 L805.3708,304.0054 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="709.5" cy="301" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M563,212 L576,212 C602.6667,212 591.3375,243.1426 612,260 C615.9355,263.2107 620.2715,266.1709 624.7735,268.877 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M623.2605,271.552 L626.7798,270.0118 L626.2866,266.202 L631.461,272.6596 L623.2605,271.552 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="563" cy="212" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M408,169 L421,169 C430.2561,169 440.0221,169 449.6238,169 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M449.6238,172.0609 L451.9195,169 L449.6238,165.9391 L457.276,169 L449.6238,172.0609 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="408" cy="169" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M243,158 L256,158 C265.2687,158 275.0232,158 284.6525,158 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M284.6525,161.0736 L286.9577,158 L284.6525,154.9264 L292.3365,158 L284.6525,161.0736 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="243" cy="158" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M126,158 L139,158 C148.3085,158 158.2625,158 167.7876,158 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M167.7876,161.0106 L170.0455,158 L167.7876,154.9894 L175.3141,158 L167.7876,161.0106 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="126" cy="158" 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="167px" preserveAspectRatio="none" style="width:805px;height:167px;background:#FFFFFF;" version="1.1" viewBox="0 0 805 167" width="805px" zoomAndPan="magnify"><defs/><g><rect fill="#F1F1F1" height="64.8281" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="101" x="10" y="73"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="69" x="15" y="89.5332">ipDaemon</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="94" y="89.5332">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="89" x2="89" y1="73" y2="94.6094"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="111" y1="94.6094" y2="94.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="52" x="15" y="111.1426">records</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="94" y="111.1426">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="89" x2="89" y1="94.6094" y2="116.2188"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="111" y1="116.2188" y2="116.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="59" x="15" y="132.752">backups</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="94" y="132.752">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="89" x2="89" y1="116.2188" y2="137.8281"/><rect fill="none" height="64.8281" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="101" x="10" y="73"/><rect fill="#F1F1F1" height="64.8281" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="205" x="148" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="13" x="153" y="26.5332">ip</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="8" x="302" y="26.5332">␀</text><line style="stroke:#000000;stroke-width:1.0;" x1="297" x2="297" y1="10" y2="31.6094"/><line style="stroke:#000000;stroke-width:1.0;" x1="148" x2="353" y1="31.6094" y2="31.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="139" x="153" y="48.1426">minutesTimeInterval</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="8" x="302" y="48.1426">3</text><line style="stroke:#000000;stroke-width:1.0;" x1="297" x2="297" y1="31.6094" y2="53.2188"/><line style="stroke:#000000;stroke-width:1.0;" x1="148" x2="353" y1="53.2188" y2="53.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="59" x="153" y="69.752">disabled</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="46" x="302" y="69.752">☐ false</text><line style="stroke:#000000;stroke-width:1.0;" x1="297" x2="297" y1="53.2188" y2="74.8281"/><rect fill="none" height="64.8281" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="205" x="148" y="10"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="42" x="229.5" y="93.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="10" x="234.5" y="110.0332">A</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="254.5" y="110.0332">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="249.5" x2="249.5" y1="93.5" y2="115.1094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="42" x="229.5" y="93.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="22" x="482" y="93.5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="487" y="110.0332">   </text><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="22" x="482" y="93.5"/><rect fill="#F1F1F1" height="86.4375" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="158" x="635" y="61.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="31" x="640" y="78.0332">host</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="85" x="703" y="78.0332">example.com</text><line style="stroke:#000000;stroke-width:1.0;" x1="698" x2="698" y1="61.5" y2="83.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="635" x2="793" y1="83.1094" y2="83.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="26" x="640" y="99.6426">dns</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="74" x="703" y="99.6426">dondominio</text><line style="stroke:#000000;stroke-width:1.0;" x1="698" x2="698" y1="83.1094" y2="104.7188"/><line style="stroke:#000000;stroke-width:1.0;" x1="635" x2="793" y1="104.7188" y2="104.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="53" x="640" y="121.252">api_key</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="24" x="703" y="121.252">???</text><line style="stroke:#000000;stroke-width:1.0;" x1="698" x2="698" y1="104.7188" y2="126.3281"/><line style="stroke:#000000;stroke-width:1.0;" x1="635" x2="793" y1="126.3281" y2="126.3281"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="640" y="142.8613">user</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="24" x="703" y="142.8613">???</text><line style="stroke:#000000;stroke-width:1.0;" x1="698" x2="698" y1="126.3281" y2="147.9375"/><rect fill="none" height="86.4375" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="158" x="635" y="61.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="22" x="238.5" y="133.5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="243.5" y="150.0332">   </text><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="22" x="238.5" y="133.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="208" x="390" y="133.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="103" x="395" y="150.0332">deployGroupId</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="85" x="508" y="150.0332">default-group</text><line style="stroke:#000000;stroke-width:1.0;" x1="503" x2="503" y1="133.5" y2="155.1094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="208" x="390" y="133.5"/><path d="M99,83.5 L112,83.5 C128.2555,83.5 145.1586,80.8536 161.331,76.9055 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M162.0913,79.8552 L163.5433,76.3353 L160.5707,73.9558 L168.7052,75.0048 L162.0913,79.8552 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="99" cy="83.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M493.5863,104.5 L506.5863,104.5 C529.6054,104.5 581.557,104.5 627.6417,104.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M627.6417,107.5544 L629.9326,104.5 L627.6417,101.4456 L635.2778,104.5 L627.6417,107.5544 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="493.5863" cy="104.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M260,104.5 L273,104.5 C347.7382,104.5 436.7258,104.5 474.7601,104.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M474.7601,107.5908 L477.0782,104.5 L474.7601,101.4092 L482.4872,104.5 L474.7601,107.5908 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="260" cy="104.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M99,104.5 L112,104.5 C150.1602,104.5 194.256,104.5 222.1294,104.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M222.1294,107.6035 L224.4571,104.5 L222.1294,101.3965 L229.8883,104.5 L222.1294,107.6035 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="99" cy="104.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M250.0256,144.5 L263.0256,144.5 C285.2964,144.5 335.0384,144.5 382.6314,144.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M382.6314,147.5462 L384.916,144.5 L382.6314,141.4538 L390.2468,144.5 L382.6314,147.5462 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="250.0256" cy="144.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M99,127.5 L112,127.5 C155.0964,127.5 205.1993,135.7679 231.5762,140.7719 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M231.0021,143.728 L233.7933,141.2025 L232.1504,137.8158 L238.9664,142.2073 L231.0021,143.728 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="99" cy="127.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/></g></svg>