underpost 2.7.1 → 2.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.dockerignore +13 -13
- package/.env.development +7 -7
- package/.env.production +7 -7
- package/.env.test +7 -7
- package/.github/workflows/publish.yml +26 -0
- package/.github/workflows/test.yml +80 -0
- package/.nycrc +9 -9
- package/.prettierignore +12 -12
- package/.prettierrc +9 -9
- package/.vscode/extensions.json +72 -72
- package/.vscode/settings.json +100 -99
- package/Dockerfile +89 -89
- package/LICENSE +21 -21
- package/README.md +96 -96
- package/bin/db.js +172 -119
- package/bin/deploy.js +607 -661
- package/bin/file.js +93 -92
- package/bin/index.js +76 -53
- package/bin/ssl.js +55 -64
- package/bin/util.js +182 -182
- package/bin/vs.js +35 -35
- package/conf.js +251 -249
- package/docker-compose.yml +67 -67
- package/jsconfig.json +7 -7
- package/jsdoc.json +32 -32
- package/nodemon.json +6 -6
- package/package.json +137 -132
- package/prometheus.yml +36 -36
- package/setup.sh +24 -24
- package/src/api/core/core.controller.js +69 -69
- package/src/api/core/core.model.js +11 -11
- package/src/api/core/core.router.js +23 -23
- package/src/api/core/core.service.js +29 -29
- package/src/api/crypto/crypto.controller.js +51 -51
- package/src/api/crypto/crypto.model.js +23 -23
- package/src/api/crypto/crypto.router.js +20 -20
- package/src/api/crypto/crypto.service.js +64 -64
- package/src/api/default/default.controller.js +69 -69
- package/src/api/default/default.model.js +20 -20
- package/src/api/default/default.router.js +23 -23
- package/src/api/default/default.service.js +31 -31
- package/src/api/file/file.controller.js +53 -51
- package/src/api/file/file.model.js +19 -19
- package/src/api/file/file.router.js +21 -20
- package/src/api/file/file.service.js +76 -70
- package/src/api/instance/instance.controller.js +69 -69
- package/src/api/instance/instance.model.js +36 -36
- package/src/api/instance/instance.router.js +33 -33
- package/src/api/instance/instance.service.js +48 -48
- package/src/api/test/test.controller.js +59 -59
- package/src/api/test/test.model.js +14 -14
- package/src/api/test/test.router.js +21 -21
- package/src/api/test/test.service.js +35 -35
- package/src/api/user/user.build.js +16 -0
- package/src/api/user/user.controller.js +70 -70
- package/src/api/user/user.model.js +65 -65
- package/src/api/user/user.router.js +345 -345
- package/src/api/user/user.service.js +479 -479
- package/src/api.js +23 -23
- package/src/client/Default.index.js +40 -40
- package/src/client/components/core/Account.js +290 -290
- package/src/client/components/core/AgGrid.js +160 -160
- package/src/client/components/core/Auth.js +19 -19
- package/src/client/components/core/Badge.js +32 -32
- package/src/client/components/core/{BlockChain.js → Blockchain.js} +41 -41
- package/src/client/components/core/Blog.js +9 -9
- package/src/client/components/core/BtnIcon.js +101 -94
- package/src/client/components/core/CalendarCore.js +458 -319
- package/src/client/components/core/Chat.js +64 -64
- package/src/client/components/core/ColorPalette.js +5267 -5267
- package/src/client/components/core/CommonJs.js +735 -732
- package/src/client/components/core/Content.js +193 -49
- package/src/client/components/core/Css.js +1064 -1027
- package/src/client/components/core/CssCore.js +817 -796
- package/src/client/components/core/D3Chart.js +44 -44
- package/src/client/components/core/Docs.js +229 -229
- package/src/client/components/core/DropDown.js +164 -164
- package/src/client/components/core/EventsUI.js +46 -54
- package/src/client/components/core/FileExplorer.js +699 -624
- package/src/client/components/core/FullScreen.js +45 -45
- package/src/client/components/core/Input.js +346 -259
- package/src/client/components/core/JoyStick.js +77 -77
- package/src/client/components/core/Keyboard.js +73 -73
- package/src/client/components/core/LoadingAnimation.js +179 -157
- package/src/client/components/core/LogIn.js +187 -181
- package/src/client/components/core/LogOut.js +58 -52
- package/src/client/components/core/Logger.js +26 -26
- package/src/client/components/core/Modal.js +1612 -1596
- package/src/client/components/core/NotificationManager.js +84 -84
- package/src/client/components/core/Panel.js +613 -413
- package/src/client/components/core/PanelForm.js +468 -0
- package/src/client/components/core/Polyhedron.js +162 -162
- package/src/client/components/core/Recover.js +204 -204
- package/src/client/components/core/Responsive.js +53 -53
- package/src/client/components/core/RichText.js +51 -27
- package/src/client/components/core/Router.js +76 -77
- package/src/client/components/core/Scroll.js +34 -0
- package/src/client/components/core/SignUp.js +125 -125
- package/src/client/components/core/SocketIo.js +72 -72
- package/src/client/components/core/Stream.js +113 -113
- package/src/client/components/core/ToggleSwitch.js +87 -87
- package/src/client/components/core/ToolTip.js +26 -26
- package/src/client/components/core/Translate.js +437 -408
- package/src/client/components/core/Validator.js +100 -100
- package/src/client/components/core/VanillaJs.js +460 -457
- package/src/client/components/core/Wallet.js +106 -106
- package/src/client/components/core/Webhook.js +25 -25
- package/src/client/components/core/Worker.js +272 -272
- package/src/client/components/default/CommonDefault.js +29 -29
- package/src/client/components/default/CssDefault.js +13 -13
- package/src/client/components/default/ElementsDefault.js +38 -38
- package/src/client/components/default/LogInDefault.js +41 -41
- package/src/client/components/default/LogOutDefault.js +28 -28
- package/src/client/components/default/MenuDefault.js +389 -389
- package/src/client/components/default/RoutesDefault.js +48 -48
- package/src/client/components/default/SettingsDefault.js +16 -16
- package/src/client/components/default/SignUpDefault.js +9 -9
- package/src/client/components/default/SocketIoDefault.js +54 -54
- package/src/client/components/default/TranslateDefault.js +7 -7
- package/src/client/public/default/assets/mailer/api-user-check.png +0 -0
- package/src/client/public/default/assets/mailer/api-user-invalid-token.png +0 -0
- package/src/client/public/default/assets/mailer/api-user-recover.png +0 -0
- package/src/client/public/default/browserconfig.xml +11 -11
- package/src/client/public/default/manifest.webmanifest +68 -68
- package/src/client/public/default/plantuml/client-conf.svg +1 -0
- package/src/client/public/default/plantuml/client-schema.svg +1 -0
- package/src/client/public/default/plantuml/cron-conf.svg +1 -0
- package/src/client/public/default/plantuml/cron-schema.svg +1 -0
- package/src/client/public/default/plantuml/server-conf.svg +1 -0
- package/src/client/public/default/plantuml/server-schema.svg +1 -0
- package/src/client/public/default/plantuml/ssr-conf.svg +1 -0
- package/src/client/public/default/plantuml/ssr-schema.svg +1 -0
- package/src/client/public/default/sitemap +147 -147
- package/src/client/public/default/yandex-browser-manifest.json +8 -8
- package/src/client/public/doc/sitemap +147 -147
- package/src/client/public/test/sitemap +147 -147
- package/src/client/services/core/core.service.js +170 -152
- package/src/client/services/crypto/crypto.service.js +70 -70
- package/src/client/services/default/default.management.js +345 -345
- package/src/client/services/default/default.service.js +89 -89
- package/src/client/services/file/file.service.js +70 -70
- package/src/client/services/instance/instance.management.js +74 -74
- package/src/client/services/instance/instance.service.js +89 -89
- package/src/client/services/test/test.service.js +70 -70
- package/src/client/services/user/user.management.js +50 -50
- package/src/client/services/user/user.service.js +89 -89
- package/src/client/ssr/Render.js +16 -16
- package/src/client/ssr/body-components/CacheControl.js +114 -113
- package/src/client/ssr/body-components/DefaultSplashScreen.js +79 -79
- package/src/client/ssr/email-components/DefaultRecoverEmail.js +21 -21
- package/src/client/ssr/email-components/DefaultVerifyEmail.js +17 -17
- package/src/client/ssr/head-components/Css.js +241 -241
- package/src/client/ssr/head-components/DefaultScripts.js +3 -3
- package/src/client/ssr/head-components/Microdata.js +11 -11
- package/src/client/ssr/head-components/Production.js +1 -1
- package/src/client/ssr/head-components/PwaDefault.js +59 -59
- package/src/client/ssr/head-components/Seo.js +14 -14
- package/src/client/sw/default.sw.js +201 -201
- package/src/client/sw/template.sw.js +84 -84
- package/src/client.build.js +22 -22
- package/src/client.dev.js +21 -21
- package/src/cron.js +25 -25
- package/src/db/DataBaseProvider.js +34 -34
- package/src/db/mariadb/MariaDB.js +33 -33
- package/src/db/mongo/MongooseDB.js +137 -46
- package/src/dns.js +22 -22
- package/src/index.js +42 -29
- package/src/mailer/EmailRender.js +69 -69
- package/src/mailer/MailerProvider.js +96 -96
- package/src/proxy.js +22 -22
- package/src/runtime/lampp/Lampp.js +115 -44
- package/src/runtime/nginx/Nginx.js +3 -3
- package/src/runtime/xampp/Xampp.js +49 -49
- package/src/server/auth.js +235 -204
- package/src/server/backup.js +101 -94
- package/src/server/client-build-live.js +72 -72
- package/src/server/client-build.js +699 -699
- package/src/server/client-dev-server.js +60 -58
- package/src/server/client-formatted.js +48 -48
- package/src/server/client-icons.js +149 -150
- package/src/server/conf.js +860 -611
- package/src/server/dns.js +98 -98
- package/src/server/downloader.js +42 -42
- package/src/server/logger.js +190 -180
- package/src/server/network.js +122 -122
- package/src/server/peer.js +33 -33
- package/src/server/process.js +66 -66
- package/src/server/prompt-optimizer.js +28 -28
- package/src/server/proxy.js +118 -118
- package/src/server/runtime.js +444 -393
- package/src/server/ssl.js +120 -107
- package/src/server.js +25 -25
- package/src/ws/IoInterface.js +45 -45
- package/src/ws/IoServer.js +39 -39
- package/src/ws/core/channels/core.ws.chat.js +23 -23
- package/src/ws/core/channels/core.ws.mailer.js +35 -35
- package/src/ws/core/channels/core.ws.stream.js +31 -31
- package/src/ws/core/core.ws.connection.js +28 -28
- package/src/ws/core/core.ws.emit.js +14 -14
- package/src/ws/core/core.ws.server.js +24 -24
- package/src/ws/core/management/core.ws.chat.js +8 -8
- package/src/ws/core/management/core.ws.mailer.js +16 -16
- package/src/ws/core/management/core.ws.stream.js +8 -8
- package/src/ws/default/channels/default.ws.main.js +16 -16
- package/src/ws/default/default.ws.connection.js +22 -22
- package/src/ws/default/default.ws.emit.js +14 -14
- package/src/ws/default/default.ws.server.js +20 -20
- package/src/ws/default/management/default.ws.main.js +8 -8
- package/startup.js +11 -11
- package/supervisord-openssh-server.conf +4 -4
- package/test/api.test.js +60 -60
- package/bin/dns.js +0 -1
- package/bin/install.js +0 -357
- package/bin/shortcut.js +0 -44
|
@@ -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="553px" preserveAspectRatio="none" style="width:1240px;height:553px;background:#FFFFFF;" version="1.1" viewBox="0 0 1240 553" width="1240px" zoomAndPan="magnify"><defs/><g><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="143" x="10" y="339.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="74" x="15" y="356.0332">default.net</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="136" y="356.0332"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="131" x2="131" y1="339.5" y2="361.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="153" y1="361.1094" y2="361.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="111" x="15" y="377.6426">www.default.net</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="136" y="377.6426"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="131" x2="131" y1="361.1094" y2="382.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="143" x="10" y="339.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="36" x="190" y="301"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="4" x="195" y="317.5332">/</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="209" y="317.5332"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="204" x2="204" y1="301" y2="322.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="36" x="190" y="301"/><rect fill="#F1F1F1" height="280.9219" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="144" x="263" y="55.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="38" x="268" y="72.0332">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="356" y="72.0332">default</text><line style="stroke:#000000;stroke-width:1.0;" x1="351" x2="351" y1="55.5" y2="77.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="263" x2="407" y1="77.1094" y2="77.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="52" x="268" y="93.6426">runtime</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="42" x="356" y="93.6426">nodejs</text><line style="stroke:#000000;stroke-width:1.0;" x1="351" x2="351" y1="77.1094" y2="98.7188"/><line style="stroke:#000000;stroke-width:1.0;" x1="263" x2="407" y1="98.7188" y2="98.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="29" x="268" y="115.252">apis</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="356" y="115.252"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="351" x2="351" y1="98.7188" y2="120.3281"/><line style="stroke:#000000;stroke-width:1.0;" x1="263" x2="407" y1="120.3281" y2="120.3281"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="48" x="268" y="136.8613">origins</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="356" y="136.8613"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="351" x2="351" y1="120.3281" y2="141.9375"/><line style="stroke:#000000;stroke-width:1.0;" x1="263" x2="407" y1="141.9375" y2="141.9375"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="78" x="268" y="158.4707">minifyBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="46" x="356" y="158.4707">☐ false</text><line style="stroke:#000000;stroke-width:1.0;" x1="351" x2="351" y1="141.9375" y2="163.5469"/><line style="stroke:#000000;stroke-width:1.0;" x1="263" x2="407" y1="163.5469" y2="163.5469"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="74" x="268" y="180.0801">iconsBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="41" x="356" y="180.0801">☑ true</text><line style="stroke:#000000;stroke-width:1.0;" x1="351" x2="351" y1="163.5469" y2="185.1563"/><line style="stroke:#000000;stroke-width:1.0;" x1="263" x2="407" y1="185.1563" y2="185.1563"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="57" x="268" y="201.6895">liteBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="46" x="356" y="201.6895">☐ false</text><line style="stroke:#000000;stroke-width:1.0;" x1="351" x2="351" y1="185.1563" y2="206.7656"/><line style="stroke:#000000;stroke-width:1.0;" x1="263" x2="407" y1="206.7656" y2="206.7656"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="70" x="268" y="223.2988">docsBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="46" x="356" y="223.2988">☐ false</text><line style="stroke:#000000;stroke-width:1.0;" x1="351" x2="351" y1="206.7656" y2="228.375"/><line style="stroke:#000000;stroke-width:1.0;" x1="263" x2="407" y1="228.375" y2="228.375"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="19" x="268" y="244.9082">ws</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="28" x="356" y="244.9082">core</text><line style="stroke:#000000;stroke-width:1.0;" x1="351" x2="351" y1="228.375" y2="249.9844"/><line style="stroke:#000000;stroke-width:1.0;" x1="263" x2="407" y1="249.9844" y2="249.9844"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="268" y="266.5176">peer</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="41" x="356" y="266.5176">☑ true</text><line style="stroke:#000000;stroke-width:1.0;" x1="351" x2="351" y1="249.9844" y2="271.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="263" x2="407" y1="271.5938" y2="271.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="268" y="288.127">proxy</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="356" y="288.127"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="351" x2="351" y1="271.5938" y2="293.2031"/><line style="stroke:#000000;stroke-width:1.0;" x1="263" x2="407" y1="293.2031" y2="293.2031"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="18" x="268" y="309.7363">db</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="356" y="309.7363"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="351" x2="351" y1="293.2031" y2="314.8125"/><line style="stroke:#000000;stroke-width:1.0;" x1="263" x2="407" y1="314.8125" y2="314.8125"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="41" x="268" y="331.3457">mailer</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="356" y="331.3457"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="351" x2="351" y1="314.8125" y2="336.4219"/><rect fill="none" height="280.9219" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="144" x="263" y="55.5"/><rect fill="#F1F1F1" height="108.0469" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="53" x="544" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="549" y="26.5332">default</text><line style="stroke:#000000;stroke-width:1.0;" x1="544" x2="597" y1="31.6094" y2="31.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="28" x="549" y="48.1426">core</text><line style="stroke:#000000;stroke-width:1.0;" x1="544" x2="597" y1="53.2188" y2="53.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="28" x="549" y="69.752">user</text><line style="stroke:#000000;stroke-width:1.0;" x1="544" x2="597" y1="74.8281" y2="74.8281"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="23" x="549" y="91.3613">test</text><line style="stroke:#000000;stroke-width:1.0;" x1="544" x2="597" y1="96.4375" y2="96.4375"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="18" x="549" y="112.9707">file</text><rect fill="none" height="108.0469" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="53" x="544" y="10"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="558.5" y="136"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="558.5" y="136"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="34" x="553.5" y="197.5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="16" x="558.5" y="214.0332">80</text><line style="stroke:#000000;stroke-width:1.0;" x1="553.5" x2="587.5" y1="219.1094" y2="219.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="24" x="558.5" y="235.6426">443</text><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="34" x="553.5" y="197.5"/><rect fill="#F1F1F1" height="64.8281" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="253" x="444" y="258.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="57" x="449" y="275.0332">provider</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="67" x="516" y="275.0332">mongoose</text><line style="stroke:#000000;stroke-width:1.0;" x1="511" x2="511" y1="258.5" y2="280.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="444" x2="697" y1="280.1094" y2="280.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="31" x="449" y="296.6426">host</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="176" x="516" y="296.6426">mongodb://127.0.0.1:27017</text><line style="stroke:#000000;stroke-width:1.0;" x1="511" x2="511" y1="280.1094" y2="301.7188"/><line style="stroke:#000000;stroke-width:1.0;" x1="444" x2="697" y1="301.7188" y2="301.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="449" y="318.252">name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="516" y="318.252">default</text><line style="stroke:#000000;stroke-width:1.0;" x1="511" x2="511" y1="301.7188" y2="323.3281"/><rect fill="none" height="64.8281" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="253" x="444" y="258.5"/><rect fill="#F1F1F1" height="64.8281" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="99" x="521" y="341.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="47" x="526" y="358.0332">sender</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="603" y="358.0332"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="598" x2="598" y1="341.5" y2="363.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="521" x2="620" y1="363.1094" y2="363.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="63" x="526" y="379.6426">transport</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="603" y="379.6426"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="598" x2="598" y1="363.1094" y2="384.7188"/><line style="stroke:#000000;stroke-width:1.0;" x1="521" x2="620" y1="384.7188" y2="384.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="67" x="526" y="401.252">templates</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="603" y="401.252"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="598" x2="598" y1="384.7188" y2="406.3281"/><rect fill="none" height="64.8281" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="99" x="521" y="341.5"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="185" x="779.5" y="268.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="36" x="784.5" y="285.0332">email</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="128" x="831.5" y="285.0332">noreply@default.net</text><line style="stroke:#000000;stroke-width:1.0;" x1="826.5" x2="826.5" y1="268.5" y2="290.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="779.5" x2="964.5" y1="290.1094" y2="290.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="784.5" y="306.6426">name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="831.5" y="306.6426">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="826.5" x2="826.5" y1="290.1094" y2="311.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="185" x="779.5" y="268.5"/><rect fill="#F1F1F1" height="86.4375" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="175" x="784.5" y="330"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="31" x="789.5" y="346.5332">host</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="109" x="845.5" y="346.5332">smtp.default.com</text><line style="stroke:#000000;stroke-width:1.0;" x1="840.5" x2="840.5" y1="330" y2="351.6094"/><line style="stroke:#000000;stroke-width:1.0;" x1="784.5" x2="959.5" y1="351.6094" y2="351.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="28" x="789.5" y="368.1426">port</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="24" x="845.5" y="368.1426">465</text><line style="stroke:#000000;stroke-width:1.0;" x1="840.5" x2="840.5" y1="351.6094" y2="373.2188"/><line style="stroke:#000000;stroke-width:1.0;" x1="784.5" x2="959.5" y1="373.2188" y2="373.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="46" x="789.5" y="389.752">secure</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="41" x="845.5" y="389.752">☑ true</text><line style="stroke:#000000;stroke-width:1.0;" x1="840.5" x2="840.5" y1="373.2188" y2="394.8281"/><line style="stroke:#000000;stroke-width:1.0;" x1="784.5" x2="959.5" y1="394.8281" y2="394.8281"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="31" x="789.5" y="411.3613">auth</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="845.5" y="411.3613"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="840.5" x2="840.5" y1="394.8281" y2="416.4375"/><rect fill="none" height="86.4375" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="175" x="784.5" y="330"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="181" x="1047" y="383.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1052" y="400.0332">user</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="128" x="1095" y="400.0332">noreply@default.net</text><line style="stroke:#000000;stroke-width:1.0;" x1="1090" x2="1090" y1="383.5" y2="405.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1047" x2="1228" y1="405.1094" y2="405.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="33" x="1052" y="421.6426">pass</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="4" x="1095" y="421.6426"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1090" x2="1090" y1="405.1094" y2="426.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="181" x="1047" y="383.5"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="276" x="734" y="434.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="106" x="739" y="451.0332">userVerifyEmail</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="116" x="872" y="451.0332">DefaultVerifyEmail</text><line style="stroke:#000000;stroke-width:1.0;" x1="867" x2="867" y1="434.5" y2="456.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="734" x2="1010" y1="456.1094" y2="456.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="123" x="739" y="472.6426">userRecoverEmail</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="133" x="872" y="472.6426">DefaultRecoverEmail</text><line style="stroke:#000000;stroke-width:1.0;" x1="867" x2="867" y1="456.1094" y2="477.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="276" x="734" y="434.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="36" x="190" y="399"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="4" x="195" y="415.5332">/</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="209" y="415.5332"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="204" x2="204" y1="399" y2="420.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="36" x="190" y="399"/><rect fill="#F1F1F1" height="151.2656" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="144" x="263" y="379.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="38" x="268" y="396.0332">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="8" x="356" y="396.0332">␀</text><line style="stroke:#000000;stroke-width:1.0;" x1="351" x2="351" y1="379.5" y2="401.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="263" x2="407" y1="401.1094" y2="401.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="52" x="268" y="417.6426">runtime</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="42" x="356" y="417.6426">nodejs</text><line style="stroke:#000000;stroke-width:1.0;" x1="351" x2="351" y1="401.1094" y2="422.7188"/><line style="stroke:#000000;stroke-width:1.0;" x1="263" x2="407" y1="422.7188" y2="422.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="29" x="268" y="439.252">apis</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="356" y="439.252"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="351" x2="351" y1="422.7188" y2="444.3281"/><line style="stroke:#000000;stroke-width:1.0;" x1="263" x2="407" y1="444.3281" y2="444.3281"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="48" x="268" y="460.8613">origins</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="356" y="460.8613"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="351" x2="351" y1="444.3281" y2="465.9375"/><line style="stroke:#000000;stroke-width:1.0;" x1="263" x2="407" y1="465.9375" y2="465.9375"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="78" x="268" y="482.4707">minifyBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="46" x="356" y="482.4707">☐ false</text><line style="stroke:#000000;stroke-width:1.0;" x1="351" x2="351" y1="465.9375" y2="487.5469"/><line style="stroke:#000000;stroke-width:1.0;" x1="263" x2="407" y1="487.5469" y2="487.5469"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="57" x="268" y="504.0801">liteBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="41" x="356" y="504.0801">☑ true</text><line style="stroke:#000000;stroke-width:1.0;" x1="351" x2="351" y1="487.5469" y2="509.1563"/><line style="stroke:#000000;stroke-width:1.0;" x1="263" x2="407" y1="509.1563" y2="509.1563"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="268" y="525.6895">proxy</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="356" y="525.6895"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="351" x2="351" y1="509.1563" y2="530.7656"/><rect fill="none" height="151.2656" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="144" x="263" y="379.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="558.5" y="425"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="558.5" y="425"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="558.5" y="459"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="558.5" y="459"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="34" x="553.5" y="498.5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="16" x="558.5" y="515.0332">80</text><line style="stroke:#000000;stroke-width:1.0;" x1="553.5" x2="587.5" y1="520.1094" y2="520.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="24" x="558.5" y="536.6426">443</text><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="34" x="553.5" y="498.5"/><path d="M395,109 L408,109 C454.1337,109 505.05,91.8484 537.2599,78.723 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M538.4198,81.5138 L539.3529,77.8531 L536.0999,75.9322 L544.2368,75.8232 L538.4198,81.5138 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="395" cy="109" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M395,130 L408,130 C459.8657,130 520.7262,137.2109 550.9563,141.2825 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M550.5337,144.355 L553.2607,141.5995 L551.3789,138.21 L558.6376,142.339 L550.5337,144.355 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="395" cy="130" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M395,282 L408,282 C429.7051,282 424.8269,259.1737 444,249 C476.9421,231.5202 520.0823,224.0977 546.3823,221.0378 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M546.7086,224.0743 L548.6597,220.793 L546.0559,218.0012 L553.9737,220.2219 L546.7086,224.0743 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="395" cy="282" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M395,304 L408,304 C417.4433,304 427.1864,303.7778 436.9895,303.3915 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M437.1201,306.3932 L439.2407,303.2936 L436.8589,300.3898 L444.4937,303.0651 L437.1201,306.3932 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="395" cy="304" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M609,352 L622,352 C656.9278,352 664.403,341.5496 698,332 C714.0928,327.4258 717.8284,325.2872 734,321 C746.3581,317.7238 759.399,314.4936 772.3292,311.4272 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M773.0435,314.465 L774.6076,310.8915 L771.615,308.3895 L779.9236,309.6416 L773.0435,314.465 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="609" cy="352" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M948.5,405 L961.5,405 C986.7653,405 1014.0765,405 1039.4574,405 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1039.4574,408.1242 L1041.8005,405 L1039.4574,401.8758 L1047.2678,405 L1039.4574,408.1242 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="948.5" cy="405" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M609,373 L622,373 C673.2897,373 730.5101,373 777.2023,373 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M777.2023,376.0789 L779.5115,373 L777.2023,369.9211 L784.8996,373 L777.2023,376.0789 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="609" cy="373" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M609,396 L622,396 C673.4194,396 684.0247,412.8996 734,425 C744.5316,427.55 755.5338,430.1453 766.5287,432.6941 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M765.8264,435.736 L768.8102,433.2208 L767.2311,429.6521 L774.1336,434.45 L765.8264,435.736 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="609" cy="396" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M395,326 L408,326 C428.6939,326 475.7867,340.5806 513.893,353.6698 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M512.8557,356.6662 L516.1403,354.4477 L514.9303,350.6734 L521.384,356.2629 L512.8557,356.6662 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="395" cy="326" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M214,312 L227,312 C237.6117,312 247.4695,309.3561 256.5591,304.8667 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M258.0709,307.587 L258.5993,303.7328 L255.0472,302.1463 L263.3599,301.087 L258.0709,307.587 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="214" cy="312" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M141,350 L154,350 C169.6187,350 183.852,339.1022 193.7046,328.9786 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M196.0177,331.0875 L195.2862,327.2438 L191.3914,326.8698 L198.9768,323.1957 L196.0177,331.0875 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="141" cy="350" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M395,433 L408,433 C459.6731,433 520.6174,433 550.9102,433 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M550.9102,436.0793 L553.2197,433 L550.9102,429.9207 L558.6084,433 L550.9102,436.0793 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="395" cy="433" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M395,454 L408,454 C459.8392,454 520.7112,460.6959 550.95,464.4766 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M550.5575,467.55 L553.255,464.7709 L551.3424,461.4032 L558.6336,465.4577 L550.5575,467.55 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="395" cy="454" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M395,520 L408,520 C457.054,520 514.4631,520 546.0729,520 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M546.0729,523.1327 L548.4224,520 L546.0729,516.8673 L553.9045,520 L546.0729,523.1327 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="395" cy="520" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M214,410 L227,410 C236.6736,410 246.4836,411.5697 256.0416,414.1228 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M255.1879,417.0242 L258.2177,414.763 L256.8954,411.2213 L263.2952,416.2571 L255.1879,417.0242 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="214" cy="410" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M141,372 L154,372 C169.6187,372 183.852,382.8978 193.7046,393.0214 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M191.3914,395.1302 L195.2862,394.7562 L196.0177,390.9125 L198.9768,398.8043 L191.3914,395.1302 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="141" cy="372" 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="911px" preserveAspectRatio="none" style="width:1941px;height:911px;background:#FFFFFF;" version="1.1" viewBox="0 0 1941 911" width="1941px" 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="528.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="15" y="545.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="95" y="545.0332">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="90" x2="90" y1="528.5" y2="550.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="138" y1="550.1094" y2="550.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="70" x="15" y="566.6426">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="95" y="566.6426"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="90" x2="90" y1="550.1094" y2="571.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="128" x="10" y="528.5"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="143" x="175" y="539.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="74" x="180" y="556.0332">default.net</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="301" y="556.0332"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="296" x2="296" y1="539.5" y2="561.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="175" x2="318" y1="561.1094" y2="561.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="111" x="180" y="577.6426">www.default.net</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="301" y="577.6426"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="296" x2="296" y1="561.1094" y2="582.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="143" x="175" y="539.5"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="128" x="355" y="506.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="360" y="523.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="440" y="523.0332">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="435" x2="435" y1="506.5" y2="528.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="355" x2="483" y1="528.1094" y2="528.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="70" x="360" y="544.6426">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="440" y="544.6426"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="435" x2="435" y1="528.1094" y2="549.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="128" x="355" y="506.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="36" x="520" y="516"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="4" x="525" y="532.5332">/</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="539" y="532.5332"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="534" x2="534" y1="516" y2="537.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="36" x="520" y="516"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="128" x="593" y="456.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="598" y="473.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="678" y="473.0332">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="673" x2="673" y1="456.5" y2="478.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="593" x2="721" y1="478.1094" y2="478.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="70" x="598" y="494.6426">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="678" y="494.6426"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="673" x2="673" y1="478.1094" y2="499.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="128" x="593" y="456.5"/><rect fill="#F1F1F1" height="280.9219" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="110" x="758" y="152.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="38" x="763" y="169.0332">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="851" y="169.0332"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="846" x2="846" y1="152.5" y2="174.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="758" x2="868" y1="174.1094" y2="174.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="52" x="763" y="190.6426">runtime</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="851" y="190.6426"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="846" x2="846" y1="174.1094" y2="195.7188"/><line style="stroke:#000000;stroke-width:1.0;" x1="758" x2="868" y1="195.7188" y2="195.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="29" x="763" y="212.252">apis</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="851" y="212.252"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="846" x2="846" y1="195.7188" y2="217.3281"/><line style="stroke:#000000;stroke-width:1.0;" x1="758" x2="868" y1="217.3281" y2="217.3281"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="48" x="763" y="233.8613">origins</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="851" y="233.8613"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="846" x2="846" y1="217.3281" y2="238.9375"/><line style="stroke:#000000;stroke-width:1.0;" x1="758" x2="868" y1="238.9375" y2="238.9375"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="78" x="763" y="255.4707">minifyBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="851" y="255.4707"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="846" x2="846" y1="238.9375" y2="260.5469"/><line style="stroke:#000000;stroke-width:1.0;" x1="758" x2="868" y1="260.5469" y2="260.5469"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="74" x="763" y="277.0801">iconsBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="851" y="277.0801"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="846" x2="846" y1="260.5469" y2="282.1563"/><line style="stroke:#000000;stroke-width:1.0;" x1="758" x2="868" y1="282.1563" y2="282.1563"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="57" x="763" y="298.6895">liteBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="851" y="298.6895"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="846" x2="846" y1="282.1563" y2="303.7656"/><line style="stroke:#000000;stroke-width:1.0;" x1="758" x2="868" y1="303.7656" y2="303.7656"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="70" x="763" y="320.2988">docsBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="851" y="320.2988"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="846" x2="846" y1="303.7656" y2="325.375"/><line style="stroke:#000000;stroke-width:1.0;" x1="758" x2="868" y1="325.375" y2="325.375"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="19" x="763" y="341.9082">ws</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="851" y="341.9082"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="846" x2="846" y1="325.375" y2="346.9844"/><line style="stroke:#000000;stroke-width:1.0;" x1="758" x2="868" y1="346.9844" y2="346.9844"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="763" y="363.5176">peer</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="851" y="363.5176"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="846" x2="846" y1="346.9844" y2="368.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="758" x2="868" y1="368.5938" y2="368.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="763" y="385.127">proxy</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="851" y="385.127"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="846" x2="846" y1="368.5938" y2="390.2031"/><line style="stroke:#000000;stroke-width:1.0;" x1="758" x2="868" y1="390.2031" y2="390.2031"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="18" x="763" y="406.7363">db</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="851" y="406.7363"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="846" x2="846" y1="390.2031" y2="411.8125"/><line style="stroke:#000000;stroke-width:1.0;" x1="758" x2="868" y1="411.8125" y2="411.8125"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="41" x="763" y="428.3457">mailer</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="851" y="428.3457"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="846" x2="846" y1="411.8125" y2="433.4219"/><rect fill="none" height="280.9219" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="110" x="758" y="152.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="85" x="926.5" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="931.5" y="26.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="971.5" y="26.5332">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="966.5" x2="966.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="926.5" y="10"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="85" x="926.5" y="50"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="931.5" y="66.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="971.5" y="66.5332">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="966.5" x2="966.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="926.5" y="50"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="90" x="924" y="90.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="929" y="107.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="976" y="107.0332">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="971" x2="971" y1="90.5" y2="112.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="924" x2="1014" y1="112.1094" y2="112.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="929" y="128.6426">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="976" y="128.6426"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="971" x2="971" 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="924" y="90.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="85" x="1077" y="112"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1082" y="128.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="1122" y="128.5332">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1117" x2="1117" 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="1077" y="112"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="83" x="927.5" y="152"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="932.5" y="168.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="972.5" y="168.5332">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="967.5" x2="967.5" y1="152" y2="173.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="83" x="927.5" y="152"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="101" x="918.5" y="192"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="923.5" y="208.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="51" x="963.5" y="208.5332">boolean</text><line style="stroke:#000000;stroke-width:1.0;" x1="958.5" x2="958.5" y1="192" y2="213.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="101" x="918.5" y="192"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="101" x="918.5" y="232"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="923.5" y="248.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="51" x="963.5" y="248.5332">boolean</text><line style="stroke:#000000;stroke-width:1.0;" x1="958.5" x2="958.5" y1="232" y2="253.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="101" x="918.5" y="232"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="101" x="918.5" y="272"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="923.5" y="288.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="51" x="963.5" y="288.5332">boolean</text><line style="stroke:#000000;stroke-width:1.0;" x1="958.5" x2="958.5" y1="272" y2="293.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="101" x="918.5" y="272"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="101" x="918.5" y="312"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="923.5" y="328.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="51" x="963.5" y="328.5332">boolean</text><line style="stroke:#000000;stroke-width:1.0;" x1="958.5" x2="958.5" y1="312" y2="333.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="101" x="918.5" y="312"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="85" x="926.5" y="352"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="931.5" y="368.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="971.5" y="368.5332">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="966.5" x2="966.5" y1="352" y2="373.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="85" x="926.5" y="352"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="101" x="918.5" y="392"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="923.5" y="408.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="51" x="963.5" y="408.5332">boolean</text><line style="stroke:#000000;stroke-width:1.0;" x1="958.5" x2="958.5" y1="392" y2="413.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="101" x="918.5" y="392"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="90" x="924" y="432.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="929" y="449.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="976" y="449.0332">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="971" x2="971" y1="432.5" y2="454.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="924" x2="1014" y1="454.1094" y2="454.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="929" y="470.6426">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="976" y="470.6426"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="971" x2="971" y1="454.1094" y2="475.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="90" x="924" y="432.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1072.5" y="453"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1077.5" y="469.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="44" x="1117.5" y="469.5332">integer</text><line style="stroke:#000000;stroke-width:1.0;" x1="1112.5" x2="1112.5" y1="453" y2="474.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1072.5" y="453"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="128" x="905" y="493.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="910" y="510.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="990" y="510.0332">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="985" x2="985" y1="493.5" y2="515.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="905" x2="1033" y1="515.1094" y2="515.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="70" x="910" y="531.6426">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="990" y="531.6426"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="985" x2="985" y1="515.1094" y2="536.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="128" x="905" y="493.5"/><rect fill="#F1F1F1" height="64.8281" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="89" x="1075" y="493.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="57" x="1080" y="510.0332">provider</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1147" y="510.0332"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1142" x2="1142" y1="493.5" y2="515.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1075" x2="1164" y1="515.1094" y2="515.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="31" x="1080" y="531.6426">host</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1147" y="531.6426"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1142" x2="1142" y1="515.1094" y2="536.7188"/><line style="stroke:#000000;stroke-width:1.0;" x1="1075" x2="1164" y1="536.7188" y2="536.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="1080" y="553.252">name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1147" y="553.252"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1142" x2="1142" y1="536.7188" y2="558.3281"/><rect fill="none" height="64.8281" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="89" x="1075" y="493.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="85" x="1227.5" y="449"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1232.5" y="465.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="1272.5" y="465.5332">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1267.5" x2="1267.5" y1="449" y2="470.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="85" x="1227.5" y="449"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="99" x="1220.5" y="489.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1225.5" y="506.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="1279.5" y="506.0332">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1274.5" x2="1274.5" y1="489.5" y2="511.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1220.5" x2="1319.5" y1="511.1094" y2="511.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="44" x="1225.5" y="527.6426">format</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="16" x="1279.5" y="527.6426">uri</text><line style="stroke:#000000;stroke-width:1.0;" x1="1274.5" x2="1274.5" y1="511.1094" y2="532.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="99" x="1220.5" y="489.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="85" x="1227.5" y="551"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1232.5" y="567.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="1272.5" y="567.5332">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1267.5" x2="1267.5" y1="551" y2="572.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="85" x="1227.5" y="551"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="128" x="905" y="554.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="910" y="571.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="990" y="571.0332">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="985" x2="985" y1="554.5" y2="576.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="905" x2="1033" y1="576.1094" y2="576.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="70" x="910" y="592.6426">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="990" y="592.6426"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="985" x2="985" y1="576.1094" y2="597.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="128" x="905" y="554.5"/><rect fill="#F1F1F1" height="64.8281" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="99" x="1070" y="622.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="47" x="1075" y="639.0332">sender</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1152" y="639.0332"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1147" x2="1147" y1="622.5" y2="644.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1070" x2="1169" y1="644.1094" y2="644.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="63" x="1075" y="660.6426">transport</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1152" y="660.6426"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1147" x2="1147" y1="644.1094" y2="665.7188"/><line style="stroke:#000000;stroke-width:1.0;" x1="1070" x2="1169" y1="665.7188" y2="665.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="67" x="1075" y="682.252">templates</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1152" y="682.252"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1147" x2="1147" y1="665.7188" y2="687.3281"/><rect fill="none" height="64.8281" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="99" x="1070" y="622.5"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="128" x="1206" y="591.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1211" y="608.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="1291" y="608.0332">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="1286" x2="1286" y1="591.5" y2="613.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1206" x2="1334" y1="613.1094" y2="613.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="70" x="1211" y="629.6426">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1291" y="629.6426"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1286" x2="1286" y1="613.1094" y2="634.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="128" x="1206" y="591.5"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="69" x="1414" y="552.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="36" x="1419" y="569.0332">email</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1466" y="569.0332"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1461" x2="1461" y1="552.5" y2="574.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1414" x2="1483" y1="574.1094" y2="574.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="1419" y="590.6426">name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1466" y="590.6426"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1461" x2="1461" y1="574.1094" y2="595.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="69" x="1414" y="552.5"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="99" x="1577.5" y="512.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1582.5" y="529.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="1636.5" y="529.0332">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1631.5" x2="1631.5" y1="512.5" y2="534.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1577.5" x2="1676.5" y1="534.1094" y2="534.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="44" x="1582.5" y="550.6426">format</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="34" x="1636.5" y="550.6426">email</text><line style="stroke:#000000;stroke-width:1.0;" x1="1631.5" x2="1631.5" y1="534.1094" y2="555.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="99" x="1577.5" y="512.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="85" x="1584.5" y="574"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1589.5" y="590.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="1629.5" y="590.5332">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1624.5" x2="1624.5" y1="574" y2="595.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="85" x="1584.5" y="574"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="128" x="1206" y="652.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1211" y="669.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="1291" y="669.0332">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="1286" x2="1286" y1="652.5" y2="674.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1206" x2="1334" y1="674.1094" y2="674.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="70" x="1211" y="690.6426">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1291" y="690.6426"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1286" x2="1286" y1="674.1094" y2="695.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="128" x="1206" y="652.5"/><rect fill="#F1F1F1" height="86.4375" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="78" x="1409.5" y="642"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="31" x="1414.5" y="658.5332">host</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1470.5" y="658.5332"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1465.5" x2="1465.5" y1="642" y2="663.6094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1409.5" x2="1487.5" y1="663.6094" y2="663.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="28" x="1414.5" y="680.1426">port</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1470.5" y="680.1426"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1465.5" x2="1465.5" y1="663.6094" y2="685.2188"/><line style="stroke:#000000;stroke-width:1.0;" x1="1409.5" x2="1487.5" y1="685.2188" y2="685.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="46" x="1414.5" y="701.752">secure</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1470.5" y="701.752"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1465.5" x2="1465.5" y1="685.2188" y2="706.8281"/><line style="stroke:#000000;stroke-width:1.0;" x1="1409.5" x2="1487.5" y1="706.8281" y2="706.8281"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="31" x="1414.5" y="723.3613">auth</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1470.5" y="723.3613"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1465.5" x2="1465.5" y1="706.8281" y2="728.4375"/><rect fill="none" height="86.4375" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="78" x="1409.5" y="642"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="85" x="1584.5" y="614"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1589.5" y="630.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="1629.5" y="630.5332">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1624.5" x2="1624.5" y1="614" y2="635.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="85" x="1584.5" y="614"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1580" y="654"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1585" y="670.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="44" x="1625" y="670.5332">integer</text><line style="stroke:#000000;stroke-width:1.0;" x1="1620" x2="1620" y1="654" y2="675.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1580" y="654"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="101" x="1576.5" y="694"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1581.5" y="710.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="51" x="1621.5" y="710.5332">boolean</text><line style="stroke:#000000;stroke-width:1.0;" x1="1616.5" x2="1616.5" y1="694" y2="715.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="101" x="1576.5" y="694"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="128" x="1563" y="734.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1568" y="751.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="1648" y="751.0332">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="1643" x2="1643" y1="734.5" y2="756.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1563" x2="1691" y1="756.1094" y2="756.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="70" x="1568" y="772.6426">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1648" y="772.6426"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1643" x2="1643" y1="756.1094" y2="777.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="128" x="1563" y="734.5"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="65" x="1728" y="745.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1733" y="762.0332">user</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1776" y="762.0332"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1771" x2="1771" y1="745.5" y2="767.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1728" x2="1793" y1="767.1094" y2="767.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="33" x="1733" y="783.6426">pass</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1776" y="783.6426"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1771" x2="1771" y1="767.1094" y2="788.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="65" x="1728" y="745.5"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="99" x="1830" y="720.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1835" y="737.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="1889" y="737.0332">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1884" x2="1884" y1="720.5" y2="742.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1830" x2="1929" y1="742.1094" y2="742.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="44" x="1835" y="758.6426">format</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="34" x="1889" y="758.6426">email</text><line style="stroke:#000000;stroke-width:1.0;" x1="1884" x2="1884" y1="742.1094" y2="763.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="99" x="1830" y="720.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="85" x="1837" y="782"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1842" y="798.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="1882" y="798.5332">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1877" x2="1877" y1="782" y2="803.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="85" x="1837" y="782"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="128" x="1206" y="745.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1211" y="762.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="1291" y="762.0332">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="1286" x2="1286" y1="745.5" y2="767.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1206" x2="1334" y1="767.1094" y2="767.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="70" x="1211" y="783.6426">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1291" y="783.6426"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1286" x2="1286" y1="767.1094" y2="788.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="128" x="1206" y="745.5"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="155" x="1371" y="796.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="106" x="1376" y="813.0332">userVerifyEmail</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1509" y="813.0332"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1504" x2="1504" y1="796.5" y2="818.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="1371" x2="1526" y1="818.1094" y2="818.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="123" x="1376" y="834.6426">userRecoverEmail</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1509" y="834.6426"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1504" x2="1504" y1="818.1094" y2="839.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="155" x="1371" y="796.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="85" x="1584.5" y="796"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1589.5" y="812.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="1629.5" y="812.5332">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1624.5" x2="1624.5" y1="796" y2="817.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="85" x="1584.5" y="796"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="85" x="1584.5" y="836"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1589.5" y="852.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="1629.5" y="852.5332">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1624.5" x2="1624.5" y1="836" y2="857.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="85" x="1584.5" y="836"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="128" x="355" y="573.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="360" y="590.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="440" y="590.0332">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="435" x2="435" y1="573.5" y2="595.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="355" x2="483" y1="595.1094" y2="595.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="70" x="360" y="611.6426">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="440" y="611.6426"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="435" x2="435" y1="595.1094" y2="616.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="128" x="355" y="573.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="36" x="520" y="619"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="4" x="525" y="635.5332">/</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="539" y="635.5332"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="534" x2="534" y1="619" y2="640.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="36" x="520" y="619"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="128" x="593" y="615.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="598" y="632.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="678" y="632.0332">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="673" x2="673" y1="615.5" y2="637.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="593" x2="721" y1="637.1094" y2="637.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="70" x="598" y="653.6426">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="678" y="653.6426"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="673" x2="673" y1="637.1094" y2="658.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="128" x="593" y="615.5"/><rect fill="#F1F1F1" height="151.2656" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="110" x="758" y="662.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="38" x="763" y="679.0332">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="851" y="679.0332"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="846" x2="846" y1="662.5" y2="684.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="758" x2="868" y1="684.1094" y2="684.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="52" x="763" y="700.6426">runtime</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="851" y="700.6426"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="846" x2="846" y1="684.1094" y2="705.7188"/><line style="stroke:#000000;stroke-width:1.0;" x1="758" x2="868" y1="705.7188" y2="705.7188"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="29" x="763" y="722.252">apis</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="851" y="722.252"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="846" x2="846" y1="705.7188" y2="727.3281"/><line style="stroke:#000000;stroke-width:1.0;" x1="758" x2="868" y1="727.3281" y2="727.3281"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="48" x="763" y="743.8613">origins</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="851" y="743.8613"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="846" x2="846" y1="727.3281" y2="748.9375"/><line style="stroke:#000000;stroke-width:1.0;" x1="758" x2="868" y1="748.9375" y2="748.9375"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="78" x="763" y="765.4707">minifyBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="851" y="765.4707"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="846" x2="846" y1="748.9375" y2="770.5469"/><line style="stroke:#000000;stroke-width:1.0;" x1="758" x2="868" y1="770.5469" y2="770.5469"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="57" x="763" y="787.0801">liteBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="851" y="787.0801"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="846" x2="846" y1="770.5469" y2="792.1563"/><line style="stroke:#000000;stroke-width:1.0;" x1="758" x2="868" y1="792.1563" y2="792.1563"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="763" y="808.6895">proxy</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="851" y="808.6895"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="846" x2="846" y1="792.1563" y2="813.7656"/><rect fill="none" height="151.2656" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="110" x="758" y="662.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="72" x="933" y="616"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="938" y="632.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="22" x="978" y="632.5332">null</text><line style="stroke:#000000;stroke-width:1.0;" x1="973" x2="973" y1="616" y2="637.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="72" x="933" y="616"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="85" x="926.5" y="656"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="931.5" y="672.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="971.5" y="672.5332">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="966.5" x2="966.5" y1="656" y2="677.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="85" x="926.5" y="656"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="83" x="927.5" y="696"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="932.5" y="712.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="972.5" y="712.5332">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="967.5" x2="967.5" y1="696" y2="717.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="83" x="927.5" y="696"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="83" x="927.5" y="736"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="932.5" y="752.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="972.5" y="752.5332">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="967.5" x2="967.5" y1="736" y2="757.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="83" x="927.5" y="736"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="101" x="918.5" y="776"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="923.5" y="792.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="51" x="963.5" y="792.5332">boolean</text><line style="stroke:#000000;stroke-width:1.0;" x1="958.5" x2="958.5" y1="776" y2="797.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="101" x="918.5" y="776"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="101" x="918.5" y="816"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="923.5" y="832.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="51" x="963.5" y="832.5332">boolean</text><line style="stroke:#000000;stroke-width:1.0;" x1="958.5" x2="958.5" y1="816" y2="837.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="101" x="918.5" y="816"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="90" x="924" y="856.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="929" y="873.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="976" y="873.0332">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="971" x2="971" y1="856.5" y2="878.1094"/><line style="stroke:#000000;stroke-width:1.0;" x1="924" x2="1014" y1="878.1094" y2="878.1094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="929" y="894.6426">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="976" y="894.6426"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="971" x2="971" y1="878.1094" y2="899.7188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="90" x="924" y="856.5"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1072.5" y="878"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="1077.5" y="894.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="44" x="1117.5" y="894.5332">integer</text><line style="stroke:#000000;stroke-width:1.0;" x1="1112.5" x2="1112.5" y1="878" y2="899.6094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1072.5" y="878"/><path d="M857.5,164 L857.5,151 C857.5,97.7477 865.4653,76.6765 905,41 C909.3441,37.0799 914.4533,33.9281 919.8551,31.394 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M921.0114,34.1793 L921.9441,30.5268 L918.6988,28.6087 L926.8185,28.5032 L921.0114,34.1793 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="857.5" cy="164" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M856,184 L869,184 C917.4933,184 870.1807,114.7523 905,81 C909.2597,76.8708 914.364,73.5934 919.803,70.9922 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M920.9816,73.8042 L921.912,70.1083 L918.6245,68.1802 L926.833,68.0458 L920.9816,73.8042 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="856" cy="184" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1002.5,123 L1015.5,123 C1033.108,123 1052.4009,123 1069.509,123 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1069.509,126.0771 L1071.8168,123 L1069.509,119.9229 L1077.2018,123 L1069.509,126.0771 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1002.5" cy="123" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M856,206 L869,206 C901.249,206 881.4676,165.0506 905,143 C908.7892,139.4494 913.0614,136.2254 917.5532,133.3172 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M919.1677,136.0002 L919.5654,132.1063 L915.9386,130.6342 L924.2607,129.2809 L919.1677,136.0002 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="856" cy="206" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M856,227 L869,227 C894.267,227 884.0766,197.1644 905,183 C909.8455,179.7198 915.2578,176.9548 920.8232,174.6296 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M921.9096,177.4697 L922.9534,173.8148 L919.7369,171.7894 L927.9236,171.9137 L921.9096,177.4697 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="856" cy="227" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M856,249 L869,249 C888.7365,249 887.3618,231.8557 905,223 C909.5804,220.7003 914.4793,218.5972 919.4489,216.6916 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M920.5091,219.6127 L921.6397,215.8964 L918.3887,213.7705 L926.7516,214.0411 L920.5091,219.6127 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="856" cy="249" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M856,271 L869,271 C874.936,271 901.3153,263.5204 925.4203,256.2927 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M926.3109,259.2458 L927.6351,255.6248 L924.5297,253.3397 L932.803,254.0663 L926.3109,259.2458 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="856" cy="271" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M856,292 L869,292 C882.7566,292 897.5397,291.1361 911.3929,289.9437 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M911.67,292.9789 L913.6693,289.7358 L911.1157,286.9084 L918.981,289.2508 L911.67,292.9789 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="856" cy="292" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M856,314 L869,314 C882.7566,314 897.5397,314.8639 911.3929,316.0563 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M911.1157,319.0916 L913.6693,316.2642 L911.67,313.0211 L918.981,316.7492 L911.1157,319.0916 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="856" cy="314" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M856,336 L869,336 C880.498,336 905.5158,342.8004 927.5873,349.5754 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M926.6725,352.5147 L929.7918,350.2614 L928.502,346.636 L934.9356,351.8622 L926.6725,352.5147 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="856" cy="336" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M856,358 L869,358 C888.4797,358 887.5112,374.4209 905,383 C909.7799,385.3447 914.8955,387.4932 920.0712,389.4401 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M919.0595,392.2678 L922.192,390.1989 L921.083,386.6124 L927.1405,391.9696 L919.0595,392.2678 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="856" cy="358" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1002.5,465 L1015.5,465 C1031.6375,465 1049.1897,464.8769 1065.1782,464.7172 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1065.2106,467.8012 L1067.4912,464.6929 L1065.1458,461.6331 L1072.8884,464.6361 L1065.2106,467.8012 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1002.5" cy="465" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M856,379 L869,379 C894.267,379 885.1891,407.3173 905,423 C908.9422,426.1207 913.2497,429.0368 917.7044,431.7337 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M916.1873,434.3764 L919.6865,432.8715 L919.2216,429.091 L924.3112,435.5265 L916.1873,434.3764 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="856" cy="379" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1153,504 L1166,504 C1186.7323,504 1187.0931,488.5062 1206,480 C1211.0726,477.7178 1216.4821,475.5869 1221.9226,473.631 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1222.9452,476.5947 L1224.1454,472.8641 L1220.9,470.6673 L1229.3319,471.0746 L1222.9452,476.5947 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1153" cy="504" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1153,525 L1166,525 C1181.3637,525 1197.8953,523.4663 1213.1388,521.4143 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1213.5848,524.5506 L1215.4911,521.0798 L1212.6928,518.2779 L1220.9797,520.2993 L1213.5848,524.5506 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1153" cy="525" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1153,548 L1166,548 C1183.7683,548 1203.0989,550.0513 1220.1923,552.5835 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1219.7156,555.6566 L1222.497,552.941 L1220.6689,549.5105 L1227.8749,553.7752 L1219.7156,555.6566 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1153" cy="548" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1021,526 L1034,526 C1044.9109,526 1056.6096,526 1067.731,526 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1067.731,529.0361 L1070.0081,526 L1067.731,522.9639 L1075.3213,526 L1067.731,529.0361 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1021" cy="526" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M856,401 L869,401 C909.2093,401 877.2132,454.9365 905,484 C906.5498,485.621 908.2021,487.1687 909.9344,488.6451 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M908.035,491.111 L911.7838,490.0696 L911.8338,486.1791 L916.0992,493.3936 L908.035,491.111 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="856" cy="401" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1472,563 L1485,563 C1513.5295,563 1544.6479,557.2724 1570.4194,550.9081 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1571.1788,553.8953 L1572.6598,550.3386 L1569.66,547.9209 L1577.8874,549.0097 L1571.1788,553.8953 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1472" cy="563" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1472,585 L1485,585 C1515.5199,585 1549.7425,585 1576.8862,585 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1576.8862,588.1284 L1579.2325,585 L1576.8862,581.8716 L1584.7072,585 L1576.8862,588.1284 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1472" cy="585" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1322,624 L1335,624 C1361.9073,624 1389.5736,611.9977 1410.7961,599.7541 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1412.3836,602.416 L1412.7926,598.5634 L1409.2086,597.0921 L1417.451,595.7853 L1412.3836,602.416 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1322" cy="624" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1157,633 L1170,633 C1179.3846,633 1189.1712,632.1343 1198.7863,630.7631 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1199.2668,633.8284 L1201.0853,630.4027 L1198.3058,627.6977 L1206.4497,629.5619 L1199.2668,633.8284 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1157" cy="633" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1476,652 L1489,652 C1520.9098,652 1556.2176,644.9117 1583.0641,637.9989 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1583.8398,640.9341 L1585.2655,637.4172 L1582.2885,635.0638 L1590.402,636.0598 L1583.8398,640.9341 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1476" cy="652" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1476,674 L1489,674 C1516.6418,674 1547.3428,672.1665 1572.7101,670.1546 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1572.9614,673.2315 L1575.0178,669.9662 L1572.4588,667.0778 L1580.4022,669.5264 L1572.9614,673.2315 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1476" cy="674" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1476,696 L1489,696 C1515.4494,696 1544.6998,697.6787 1569.3982,699.5861 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1569.1591,702.5904 L1571.6514,699.7654 L1569.6373,696.5818 L1576.909,700.1838 L1569.1591,702.5904 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1476" cy="696" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1781,756 L1794,756 C1803.3228,756 1813.1453,755.1699 1822.6712,753.914 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1823.1076,756.9383 L1824.9395,753.5867 L1822.2349,750.8896 L1830.2321,752.8232 L1823.1076,756.9383 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1781" cy="756" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1781,778 L1794,778 C1805.6777,778 1818.1225,779.39 1829.7851,781.3238 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1829.2491,784.3378 L1832.0456,781.7258 L1830.3212,778.3097 L1837.3203,782.6639 L1829.2491,784.3378 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1781" cy="778" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1679,767 L1692,767 C1701.2231,767 1711.1498,767 1720.4918,767 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1720.4918,770.0726 L1722.7962,767 L1720.4918,763.9274 L1728.1732,767 L1720.4918,770.0726 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1679" cy="767" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1476,717 L1489,717 C1515.7595,717 1544.3746,723.9211 1568.5331,731.9321 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1567.5272,734.871 L1570.7373,732.6865 L1569.539,728.9931 L1575.8805,734.4467 L1567.5272,734.871 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1476" cy="717" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1322,685 L1335,685 C1357.0925,685 1381.6147,685 1402.1538,685 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1402.1538,688.0654 L1404.4528,685 L1402.1538,681.9346 L1409.8172,685 L1402.1538,688.0654 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1322" cy="685" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1157,654 L1170,654 C1179.3846,654 1189.1712,654.8657 1198.7863,656.2369 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1198.3058,659.3023 L1201.0853,656.5973 L1199.2668,653.1716 L1206.4497,657.4381 L1198.3058,659.3023 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1157" cy="654" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1514,807 L1527,807 C1543.3296,807 1561.1667,807 1577.1714,807 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1577.1714,810.078 L1579.4798,807 L1577.1714,803.922 L1584.8663,807 L1577.1714,810.078 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1514" cy="807" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1514,829 L1527,829 C1543.4438,829 1561.1756,831.41 1577.0512,834.4663 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1576.4334,837.5185 L1579.3404,834.9296 L1577.669,831.414 L1584.6818,836.0108 L1576.4334,837.5185 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1514" cy="829" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1322,778 L1335,778 C1357.5197,778 1381.1915,785.147 1401.0177,793.3989 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1399.7861,796.2474 L1403.154,794.3226 L1402.2493,790.5504 L1408.1388,796.4779 L1399.7861,796.2474 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1322" cy="778" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1157,677 L1170,677 C1174.7297,677 1213.5212,713.2391 1241.2421,739.726 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1239.0471,742.0185 L1242.9614,741.3723 L1243.4371,737.4336 L1246.9732,745.2135 L1239.0471,742.0185 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1157" cy="677" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1021,587 L1034,587 C1056.0488,587 1075.6553,601.1241 1090.4659,616.4982 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1088.1872,618.5923 L1092.0365,618.2073 L1092.7446,614.4042 L1095.7011,622.1951 L1088.1872,618.5923 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1021" cy="587" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M857.5,422 L857.5,435 C857.5,488.2523 868.231,506.4793 905,545 C906.5485,546.6223 908.1997,548.171 909.931,549.6483 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M908.0306,552.1132 L911.7796,551.0736 L911.8314,547.1834 L916.0932,554.3994 L908.0306,552.1132 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="857.5" cy="422" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M709,489 L722,489 C753.1417,489 773.6019,468.3528 787.0337,440.4611 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M789.7701,441.6998 L787.9627,438.4088 L784.2973,439.2224 L790.1305,433.6202 L789.7701,441.6998 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="709" cy="489" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M544,527 L557,527 C580.6661,527 604.5425,515.7056 622.9722,503.9617 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M624.703,506.5749 L624.9321,502.6636 L621.2414,501.3485 L629.5052,499.6347 L624.703,506.5749 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="544" cy="527" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M471,539 L484,539 C493.571,539 503.8768,537.1489 512.8637,534.9007 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M513.6802,537.9033 L515.1156,534.2883 L512.0472,531.8981 L520.3701,532.8594 L513.6802,537.9033 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="471" cy="539" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M306,550 L319,550 C328.353,550 338.0864,549.0618 347.6442,547.5728 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M348.1661,550.6195 L349.9293,547.1814 L347.1223,544.526 L355.2611,546.268 L348.1661,550.6195 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="306" cy="550" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M856,673 L869,673 C888.7365,673 887.3618,655.8557 905,647 C911.6624,643.655 918.9986,640.7259 926.2462,638.2156 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M927.1944,641.0914 L928.4031,637.5043 L925.2979,635.3397 L933.4359,635.8449 L927.1944,641.0914 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="856" cy="673" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M856,694 L869,694 C880.498,694 905.5158,687.1996 927.5873,680.4246 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M928.502,683.364 L929.7918,679.7386 L926.6725,677.4853 L934.9356,678.1378 L928.502,683.364 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="856" cy="694" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M856,716 L869,716 C885.6944,716 903.9005,714.7278 920.1218,713.14 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M920.442,716.2553 L922.4583,712.8998 L919.8015,710.0246 L927.9102,712.3394 L920.442,716.2553 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="856" cy="716" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M856,737 L869,737 C885.7103,737 903.9204,738.4136 920.1403,740.1778 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M919.7845,743.2928 L922.4766,740.4447 L920.4962,737.0629 L927.9277,741.0674 L919.7845,743.2928 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="856" cy="737" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M856,759 L869,759 C874.936,759 901.3153,766.4796 925.4203,773.7073 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M924.5297,776.6603 L927.6351,774.3752 L926.3109,770.7542 L932.803,775.9337 L924.5297,776.6603 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="856" cy="759" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M856,781 L869,781 C888.7365,781 887.3618,798.1443 905,807 C909.5804,809.2997 914.4793,811.4028 919.4489,813.3084 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M918.3887,816.2295 L921.6397,814.1036 L920.5091,810.3873 L926.7516,815.9589 L918.3887,816.2295 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="856" cy="781" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1002.5,889 L1015.5,889 C1031.6368,889 1049.1888,889 1065.1772,889 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1065.1772,892.0841 L1067.4903,889 L1065.1772,885.9159 L1072.8875,889 L1065.1772,892.0841 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1002.5" cy="889" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M856,803 L869,803 C894.267,803 885.1891,831.3173 905,847 C908.9422,850.1207 913.2497,853.0368 917.7044,855.7337 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M916.1873,858.3764 L919.6865,856.8715 L919.2216,853.091 L924.3112,859.5265 L916.1873,858.3764 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="856" cy="803" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M709,648 L722,648 C733.815,648 744.6343,651.9043 754.3602,658.0866 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M752.6108,660.5798 L756.23,659.3986 L756.1096,655.5935 L760.593,662.4601 L752.6108,660.5798 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="709" cy="648" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M544,630 L557,630 C566.2917,630 576.0594,630.3075 585.6954,630.7936 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M585.5251,633.8689 L588.0018,630.9213 L585.8657,627.7184 L593.3835,631.2193 L585.5251,633.8689 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="544" cy="630" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M471,606 L484,606 C494.8703,606 505.9804,610.1756 515.2391,615.0434 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M513.7192,617.7173 L517.2445,616.1834 L516.759,612.3696 L521.9237,618.8431 L513.7192,617.7173 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="471" cy="606" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M306,572 L319,572 C328.3733,572 338.1185,572.9809 347.6824,574.5375 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M347.1368,577.5858 L349.9686,574.9468 L348.2281,571.4893 L355.303,575.9016 L347.1368,577.5858 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="306" cy="572" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M126,561 L139,561 C148.3078,561 158.071,561 167.7548,561 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M167.7548,564.0956 L170.0765,561 L167.7548,557.9044 L175.4938,561 L167.7548,564.0956 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="126" cy="561" 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="148px" preserveAspectRatio="none" style="width:387px;height:148px;background:#FFFFFF;" version="1.1" viewBox="0 0 387 148" width="387px" zoomAndPan="magnify"><defs/><g><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="81" x="10" y="67.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="49" x="15" y="84.0332">Default</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="74" y="84.0332"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="69" x2="69" y1="67.5" y2="89.1094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="81" x="10" y="67.5"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="67" x="128" y="57"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="34" x="133" y="73.5332">head</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="178" y="73.5332"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="173" x2="173" y1="57" y2="78.6094"/><line style="stroke:#000000;stroke-width:1.0;" x1="128" x2="195" y1="78.6094" y2="78.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="133" y="95.1426">body</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="178" y="95.1426"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="173" x2="173" y1="78.6094" y2="100.2188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="67" x="128" y="57"/><rect fill="#F1F1F1" height="64.8281" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="98" x="254.5" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="72" x="259.5" y="26.5332">PwaDefault</text><line style="stroke:#000000;stroke-width:1.0;" x1="254.5" x2="352.5" y1="31.6094" y2="31.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="24" x="259.5" y="48.1426">Css</text><line style="stroke:#000000;stroke-width:1.0;" x1="254.5" x2="352.5" y1="53.2188" y2="53.2188"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="88" x="259.5" y="69.752">DefaultScripts</text><rect fill="none" height="64.8281" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="98" x="254.5" y="10"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="143" x="232" y="93"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="87" x="237" y="109.5332">CacheControl</text><line style="stroke:#000000;stroke-width:1.0;" x1="232" x2="375" y1="114.6094" y2="114.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="133" x="237" y="131.1426">DefaultSplashScreen</text><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="143" x="232" y="93"/><path d="M183,67.5 L196,67.5 C212.9566,67.5 231.0378,64.4861 247.4183,60.5512 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M248.1643,63.5097 L249.6372,59.9916 L246.6722,57.5926 L254.8146,58.6859 L248.1643,63.5097 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="183" cy="67.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M183,89.5 L196,89.5 C205.4079,89.5 215.162,90.4278 224.7798,91.9259 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M224.253,94.9958 L227.0822,92.3209 L225.3065,88.856 L232.4545,93.2428 L224.253,94.9958 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="183" cy="89.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M79,78.5 L92,78.5 C101.2651,78.5 111.2301,78.5 120.6263,78.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M120.6263,81.5925 L122.9456,78.5 L120.6263,75.4075 L128.3574,78.5 L120.6263,81.5925 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="79" cy="78.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentStyleType="text/css" height="126px" preserveAspectRatio="none" style="width:786px;height:126px;background:#FFFFFF;" version="1.1" viewBox="0 0 786 126" width="786px" 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="18"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="15" y="34.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="95" y="34.5332">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="90" x2="90" y1="18" y2="39.6094"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="138" y1="39.6094" y2="39.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="70" x="15" y="56.1426">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="95" y="56.1426"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="90" x2="90" y1="39.6094" y2="61.2188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="128" x="10" y="18"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="81" x="175" y="39.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="49" x="180" y="56.0332">Default</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="239" y="56.0332"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="234" x2="234" y1="39.5" y2="61.1094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="81" x="175" y="39.5"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="128" x="293" y="29"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="298" y="45.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="38" x="378" y="45.5332">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="373" x2="373" y1="29" y2="50.6094"/><line style="stroke:#000000;stroke-width:1.0;" x1="293" x2="421" y1="50.6094" y2="50.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="70" x="298" y="67.1426">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="378" y="67.1426"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="373" x2="373" y1="50.6094" y2="72.2188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="128" x="293" y="29"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="67" x="458" y="40"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="34" x="463" y="56.5332">head</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="508" y="56.5332"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="503" x2="503" y1="40" y2="61.6094"/><line style="stroke:#000000;stroke-width:1.0;" x1="458" x2="525" y1="61.6094" y2="61.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="463" y="78.1426">body</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="508" y="78.1426"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="503" x2="503" y1="61.6094" y2="83.2188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="67" x="458" y="40"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="90" x="562" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="567" y="26.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="614" y="26.5332">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="609" x2="609" y1="10" y2="31.6094"/><line style="stroke:#000000;stroke-width:1.0;" x1="562" x2="652" y1="31.6094" y2="31.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="567" y="48.1426">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="614" y="48.1426"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="609" x2="609" y1="31.6094" y2="53.2188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="90" x="562" y="10"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="85" x="689" y="31.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="694" y="48.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="734" y="48.0332">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="729" x2="729" y1="31.5" y2="53.1094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="85" x="689" y="31.5"/><rect fill="#F1F1F1" height="43.2188" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="90" x="562" y="71"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="567" y="87.5332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="614" y="87.5332">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="609" x2="609" y1="71" y2="92.6094"/><line style="stroke:#000000;stroke-width:1.0;" x1="562" x2="652" y1="92.6094" y2="92.6094"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="567" y="109.1426">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="614" y="109.1426"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="609" x2="609" y1="92.6094" y2="114.2188"/><rect fill="none" height="43.2188" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="90" x="562" y="71"/><rect fill="#F1F1F1" height="21.6094" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="85" x="689" y="92.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="694" y="109.0332">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="35" x="734" y="109.0332">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="729" x2="729" y1="92.5" y2="114.1094"/><rect fill="none" height="21.6094" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="85" x="689" y="92.5"/><path d="M640,42.5 L653,42.5 C662.2961,42.5 672.2155,42.5 681.7553,42.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M681.7553,45.5201 L684.0204,42.5 L681.7553,39.4799 L689.3056,42.5 L681.7553,45.5201 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="640" cy="42.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M513,50.5 L526,50.5 C535.4045,50.5 545.2657,49.2565 554.7344,47.4057 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M555.3753,50.403 L556.9824,46.925 L554.0935,44.4083 L562.2278,45.8034 L555.3753,50.403 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="513" cy="50.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M640,103.5 L653,103.5 C662.2961,103.5 672.2155,103.5 681.7553,103.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M681.7553,106.5201 L684.0204,103.5 L681.7553,100.4799 L689.3056,103.5 L681.7553,106.5201 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="640" cy="103.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M513,72.5 L526,72.5 C535.4312,72.5 545.3055,73.809 554.7789,75.7572 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M554.1042,78.7553 L557.0275,76.2632 L555.4535,72.759 L562.2743,77.4438 L554.1042,78.7553 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="513" cy="72.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M409,61.5 L422,61.5 C431.2651,61.5 441.2301,61.5 450.6263,61.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M450.6263,64.5925 L452.9456,61.5 L450.6263,58.4075 L458.3574,61.5 L450.6263,64.5925 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="409" cy="61.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M244,50.5 L257,50.5 C266.2687,50.5 276.0232,50.5 285.6525,50.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M285.6525,53.5736 L287.9577,50.5 L285.6525,47.4264 L293.3365,50.5 L285.6525,53.5736 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="244" cy="50.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M126,50.5 L139,50.5 C148.266,50.5 158.1675,50.5 167.6585,50.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M167.6585,53.5014 L169.9096,50.5 L167.6585,47.4986 L175.1621,50.5 L167.6585,53.5014 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="126" cy="50.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/></g></svg>
|