@openmrs/esm-fast-data-entry-app 1.0.0-pre.59 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +21 -2
- package/__mocks__/react-i18next.js +9 -14
- package/dist/101.js +1 -0
- package/dist/101.js.map +1 -0
- package/dist/132.js +1 -1
- package/dist/188.js +1 -0
- package/dist/188.js.map +1 -0
- package/dist/197.js +1 -0
- package/dist/219.js +1 -0
- package/dist/219.js.map +1 -0
- package/dist/221.js +1 -0
- package/dist/221.js.map +1 -0
- package/dist/259.js +1 -0
- package/dist/259.js.map +1 -0
- package/dist/29.js +2 -0
- package/dist/29.js.LICENSE.txt +3 -0
- package/dist/29.js.map +1 -0
- package/dist/300.js +1 -0
- package/dist/326.js +1 -0
- package/dist/326.js.map +1 -0
- package/dist/335.js +1 -0
- package/dist/367.js +1 -0
- package/dist/367.js.map +1 -0
- package/dist/480.js +1 -0
- package/dist/540.js +2 -0
- package/dist/{536.js.LICENSE.txt → 540.js.LICENSE.txt} +3 -2
- package/dist/540.js.map +1 -0
- package/dist/55.js +1 -0
- package/dist/564.js +1 -0
- package/dist/564.js.map +1 -0
- package/dist/602.js +1 -0
- package/dist/602.js.map +1 -0
- package/dist/626.js +2 -0
- package/dist/{294.js.LICENSE.txt → 626.js.LICENSE.txt} +3 -8
- package/dist/626.js.map +1 -0
- package/dist/652.js +1 -0
- package/dist/685.js +1 -0
- package/dist/685.js.map +1 -0
- package/dist/773.js +2 -0
- package/dist/773.js.LICENSE.txt +32 -0
- package/dist/773.js.map +1 -0
- package/dist/893.js +1 -0
- package/dist/893.js.map +1 -0
- package/dist/91.js +1 -0
- package/dist/91.js.map +1 -0
- package/dist/941.js +2 -0
- package/dist/941.js.LICENSE.txt +30 -0
- package/dist/941.js.map +1 -0
- package/dist/961.js +2 -0
- package/dist/{935.js.LICENSE.txt → 961.js.LICENSE.txt} +6 -10
- package/dist/961.js.map +1 -0
- package/dist/99.js +1 -0
- package/dist/99.js.map +1 -0
- package/dist/991.js +1 -0
- package/dist/991.js.map +1 -0
- package/dist/main.js +1 -0
- package/dist/main.js.map +1 -0
- package/dist/openmrs-esm-fast-data-entry-app.js +1 -1
- package/dist/openmrs-esm-fast-data-entry-app.js.buildmanifest.json +500 -122
- package/dist/openmrs-esm-fast-data-entry-app.js.map +1 -0
- package/dist/routes.json +1 -0
- package/jest.config.json +21 -18
- package/package.json +59 -62
- package/prettier.config.js +8 -0
- package/src/CancelModal.tsx +42 -0
- package/src/CompleteModal.tsx +35 -0
- package/src/FormBootstrap.tsx +45 -10
- package/src/Root.tsx +11 -9
- package/src/add-group-modal/AddGroupModal.tsx +249 -0
- package/src/add-group-modal/styles.scss +49 -0
- package/src/config-schema.ts +77 -16
- package/src/constant.ts +1 -1
- package/src/context/FormWorkflowContext.tsx +32 -33
- package/src/context/FormWorkflowReducer.ts +53 -67
- package/src/context/GroupFormWorkflowContext.tsx +155 -0
- package/src/context/GroupFormWorkflowReducer.ts +405 -0
- package/src/declarations.d.ts +4 -0
- package/src/empty-state/EmptyDataIllustration.tsx +4 -16
- package/src/empty-state/EmptyState.tsx +16 -17
- package/src/empty-state/styles.scss +14 -14
- package/src/form-entry-workflow/FormEntryWorkflow.tsx +89 -125
- package/src/{form-review-card → form-entry-workflow/form-review-card}/FormReviewCard.tsx +7 -7
- package/src/form-entry-workflow/form-review-card/index.ts +3 -0
- package/src/form-entry-workflow/form-review-card/styles.scss +37 -0
- package/src/form-entry-workflow/index.ts +1 -1
- package/src/form-entry-workflow/patient-banner/PatientBanner.test.tsx +9 -0
- package/src/{patient-banner → form-entry-workflow/patient-banner}/PatientBanner.tsx +14 -27
- package/src/form-entry-workflow/patient-banner/index.ts +3 -0
- package/src/form-entry-workflow/patient-banner/styles.scss +44 -0
- package/src/form-entry-workflow/patient-search-header/PatientSearchHeader.tsx +54 -0
- package/src/form-entry-workflow/patient-search-header/index.ts +3 -0
- package/src/form-entry-workflow/patient-search-header/styles.scss +25 -0
- package/src/form-entry-workflow/styles.scss +16 -16
- package/src/form-entry-workflow/workflow-review/WorkflowReview.tsx +37 -0
- package/src/form-entry-workflow/workflow-review/index.ts +3 -0
- package/src/{workflow-review → form-entry-workflow/workflow-review}/styles.scss +0 -4
- package/src/forms-app-menu-link.tsx +5 -7
- package/src/forms-page/FormsPage.tsx +48 -37
- package/src/forms-page/forms-table/FormsTable.tsx +117 -0
- package/src/forms-page/forms-table/index.ts +3 -0
- package/src/forms-page/forms-table/styles.scss +19 -0
- package/src/forms-page/index.ts +1 -1
- package/src/forms-page/styles.scss +3 -5
- package/src/group-form-entry-workflow/GroupFormEntryWorkflow.tsx +26 -0
- package/src/group-form-entry-workflow/GroupSessionWorkspace.tsx +207 -0
- package/src/group-form-entry-workflow/SessionDetailsForm.tsx +154 -0
- package/src/group-form-entry-workflow/SessionMetaWorkspace.tsx +99 -0
- package/src/group-form-entry-workflow/attendance-table/AttendanceTable.tsx +130 -0
- package/src/group-form-entry-workflow/attendance-table/index.ts +1 -0
- package/src/group-form-entry-workflow/configurable-questions/ConfigurableQuestionsSection.tsx +41 -0
- package/src/group-form-entry-workflow/group-display-header/GroupDisplayHeader.test.tsx +9 -0
- package/src/group-form-entry-workflow/group-display-header/GroupDisplayHeader.tsx +55 -0
- package/src/group-form-entry-workflow/group-display-header/index.ts +3 -0
- package/src/group-form-entry-workflow/group-display-header/styles.scss +60 -0
- package/src/group-form-entry-workflow/group-search/CompactGroupResults.tsx +128 -0
- package/src/group-form-entry-workflow/group-search/CompactGroupSearch.tsx +66 -0
- package/src/group-form-entry-workflow/group-search/GroupSearch.tsx +134 -0
- package/src/group-form-entry-workflow/group-search/compact-group-result.scss +63 -0
- package/src/group-form-entry-workflow/group-search/compact-group-search.scss +34 -0
- package/src/group-form-entry-workflow/group-search/group-search.scss +93 -0
- package/src/group-form-entry-workflow/group-search-header/GroupSearchHeader.tsx +72 -0
- package/src/group-form-entry-workflow/group-search-header/index.ts +3 -0
- package/src/group-form-entry-workflow/group-search-header/styles.scss +20 -0
- package/src/group-form-entry-workflow/index.ts +3 -0
- package/src/group-form-entry-workflow/styles.scss +94 -0
- package/src/hooks/index.ts +7 -5
- package/src/hooks/useForm.ts +56 -0
- package/src/hooks/useFormState.ts +3 -3
- package/src/hooks/useGetAllForms.ts +7 -15
- package/src/hooks/useGetEncounter.ts +3 -3
- package/src/hooks/useGetPatient.ts +3 -3
- package/src/hooks/useGetPatients.ts +32 -0
- package/src/hooks/useGetSystemSetting.ts +36 -0
- package/src/hooks/useKeyPress.ts +31 -0
- package/src/hooks/usePostEndpoint.ts +76 -0
- package/src/hooks/useSearchEndpoint.ts +103 -0
- package/src/hooks/useStartVisit.ts +82 -0
- package/src/index.ts +12 -72
- package/src/patient-card/PatientCard.tsx +10 -20
- package/src/patient-card/index.ts +1 -1
- package/src/patient-card/styles.scss +8 -8
- package/src/routes.json +24 -0
- package/src/setup-tests.ts +1 -1
- package/src/types.ts +20 -0
- package/tools/i18next-parser.config.js +93 -0
- package/translations/am.json +75 -0
- package/translations/ar.json +75 -0
- package/translations/en.json +57 -2
- package/translations/es.json +75 -0
- package/translations/fr.json +75 -0
- package/translations/he.json +75 -0
- package/translations/km.json +75 -0
- package/turbo.json +18 -0
- package/webpack.config.js +1 -1
- package/.editorconfig +0 -12
- package/.eslintignore +0 -2
- package/.eslintrc.js +0 -10
- package/.github/pull_request_template.md +0 -18
- package/.github/workflows/node.js.yml +0 -121
- package/.husky/pre-push +0 -1
- package/.prettierignore +0 -14
- package/dist/187.js +0 -1
- package/dist/247.js +0 -1
- package/dist/294.js +0 -2
- package/dist/312.js +0 -1
- package/dist/412.js +0 -1
- package/dist/536.js +0 -2
- package/dist/574.js +0 -1
- package/dist/592.js +0 -1
- package/dist/595.js +0 -2
- package/dist/595.js.LICENSE.txt +0 -1
- package/dist/776.js +0 -1
- package/dist/804.js +0 -1
- package/dist/880.js +0 -2
- package/dist/880.js.LICENSE.txt +0 -20
- package/dist/906.js +0 -1
- package/dist/935.js +0 -2
- package/dist/990.js +0 -1
- package/dist/openmrs-esm-fast-data-entry-app.old +0 -1
- package/src/declarations.d.tsx +0 -2
- package/src/form-review-card/index.ts +0 -3
- package/src/form-review-card/styles.scss +0 -38
- package/src/forms-table/FormsTable.tsx +0 -123
- package/src/forms-table/index.ts +0 -3
- package/src/forms-table/styles.scss +0 -20
- package/src/patient-banner/PatientBanner.test.tsx +0 -9
- package/src/patient-banner/index.ts +0 -3
- package/src/patient-banner/styles.scss +0 -44
- package/src/patient-search-header/PatientSearchHeader.tsx +0 -61
- package/src/patient-search-header/index.ts +0 -3
- package/src/patient-search-header/styles.scss +0 -21
- package/src/workflow-review/WorkflowReview.tsx +0 -35
- package/src/workflow-review/index.ts +0 -3
package/dist/595.js.LICENSE.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! For license information please see openmrs-esm-react-utils.js.LICENSE.txt */
|
package/dist/776.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";(self.webpackChunk_openmrs_esm_fast_data_entry_app=self.webpackChunk_openmrs_esm_fast_data_entry_app||[]).push([[776],{5776:(e,a,n)=>{n.r(a),n.d(a,{default:()=>_});var s=n(4211),r=n.n(s),t=n(3397),p=n(311);function _(){var e=(0,t.useTranslation)().t;return r().createElement(p.ConfigurableLink,{to:"${openmrsSpaBase}/forms"},e("formsAppMenuLink","Forms"))}}}]);
|
package/dist/804.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";(self.webpackChunk_openmrs_esm_fast_data_entry_app=self.webpackChunk_openmrs_esm_fast_data_entry_app||[]).push([[804],{9804:(e,t,n)=>{n.r(t),n.d(t,{default:()=>o});var a=n(4211),r=n.n(a),l=n(2221),c=window.spaBase,s="".concat(c).concat("/forms"),u=r().lazy((function(){return Promise.all([n.e(880),n.e(187),n.e(397),n.e(592),n.e(990)]).then(n.bind(n,4273))})),m=r().lazy((function(){return Promise.all([n.e(880),n.e(412),n.e(397),n.e(592),n.e(312)]).then(n.bind(n,2312))}));const o=function(){return r().createElement("main",null,r().createElement(l.BrowserRouter,{basename:s},r().createElement(l.Switch,null,r().createElement(l.Route,{exact:!0,path:"/",children:r().createElement(u,null)}),r().createElement(l.Route,{path:"/:formUuid?",children:r().createElement(m,null)}))))}}}]);
|
package/dist/880.js
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
/*! For license information please see 880.js.LICENSE.txt */
|
|
2
|
-
(self.webpackChunk_openmrs_esm_fast_data_entry_app=self.webpackChunk_openmrs_esm_fast_data_entry_app||[]).push([[880],{3346:(t,e,r)=>{"use strict";function n(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function o(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?n(Object(r),!0).forEach((function(e){i(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):n(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function i(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function a(t,e){if(null==t)return{};var r,n,o=function(t,e){if(null==t)return{};var r,n,o={},i=Object.keys(t);for(n=0;n<i.length;n++)r=i[n],e.indexOf(r)>=0||(o[r]=t[r]);return o}(t,e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);for(n=0;n<i.length;n++)r=i[n],e.indexOf(r)>=0||Object.prototype.propertyIsEnumerable.call(t,r)&&(o[r]=t[r])}return o}r.d(e,{I:()=>O,_:()=>g,a:()=>b});var c=["width","height","viewBox"],u=["tabindex"],l={focusable:"false",preserveAspectRatio:"xMidYMid meet"};var s=r(5697),f=r.n(s),d=r(4211),p=r.n(d);function h(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function v(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?h(Object(r),!0).forEach((function(e){y(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):h(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function y(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function b(){return b=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var r=arguments[e];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(t[n]=r[n])}return t},b.apply(this,arguments)}function g(t,e){if(null==t)return{};var r,n,o=function(t,e){if(null==t)return{};var r,n,o={},i=Object.keys(t);for(n=0;n<i.length;n++)r=i[n],e.indexOf(r)>=0||(o[r]=t[r]);return o}(t,e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);for(n=0;n<i.length;n++)r=i[n],e.indexOf(r)>=0||Object.prototype.propertyIsEnumerable.call(t,r)&&(o[r]=t[r])}return o}var m=["className","children","tabIndex"],w=["tabindex"],O=p().forwardRef((function(t,e){var r=t.className,n=t.children,i=t.tabIndex,s=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.width,r=t.height,n=t.viewBox,i=void 0===n?"0 0 ".concat(e," ").concat(r):n,s=a(t,c),f=s.tabindex,d=a(s,u),p=o(o(o({},l),d),{},{width:e,height:r,viewBox:i});return p["aria-label"]||p["aria-labelledby"]||p.title?(p.role="img",null!=f&&(p.focusable="true",p.tabindex=f)):p["aria-hidden"]=!0,p}(v(v({},g(t,m)),{},{tabindex:i})),f=s.tabindex,d=g(s,w);return r&&(d.className=r),null!=f&&(d.tabIndex=f),e&&(d.ref=e),p().createElement("svg",d,n)}));O.displayName="Icon",O.propTypes={"aria-hidden":f().string,"aria-label":f().string,"aria-labelledby":f().string,children:f().node,className:f().string,height:f().oneOfType([f().number,f().string]),preserveAspectRatio:f().string,tabIndex:f().string,viewBox:f().string,width:f().oneOfType([f().number,f().string]),xmlns:f().string},O.defaultProps={xmlns:"http://www.w3.org/2000/svg",preserveAspectRatio:"xMidYMid meet"}},7114:(t,e,r)=>{"use strict";r.d(e,{H_C:()=>d,RVU:()=>f});var n,o,i,a=r(3346),c=r(4211),u=r.n(c),l=["children"],s=["children"],f=u().forwardRef((function(t,e){var r=t.children,o=(0,a._)(t,l);return u().createElement(a.I,(0,a.a)({width:20,height:20,viewBox:"0 0 32 32",xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",ref:e},o),n||(n=u().createElement("path",{d:"M17 15L17 8 15 8 15 15 8 15 8 17 15 17 15 24 17 24 17 17 24 17 24 15z"})),r)})),d=u().forwardRef((function(t,e){var r=t.children,n=(0,a._)(t,s);return u().createElement(a.I,(0,a.a)({width:16,height:16,viewBox:"0 0 32 32",xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",ref:e},n),o||(o=u().createElement("path",{d:"M16,2A14.1725,14.1725,0,0,0,2,16,14.1725,14.1725,0,0,0,16,30,14.1725,14.1725,0,0,0,30,16,14.1725,14.1725,0,0,0,16,2Zm8,15H17v7H15V17H8V15h7V8h2v7h7Z"})),i||(i=u().createElement("path",{fill:"none",d:"M24 17L17 17 17 24 15 24 15 17 8 17 8 15 15 15 15 8 17 8 17 15 24 15 24 17z","data-icon-path":"inner-path"})),r)}))},7103:(t,e,r)=>{"use strict";r.d(e,{F3j:()=>P,PcV:()=>I,Y3p:()=>_,cDj:()=>E,cRw:()=>x,dOq:()=>k,tEK:()=>j});var n,o,i,a,c,u,l,s,f,d=r(3346),p=r(4211),h=r.n(p),v=["children"],y=["children"],b=["children"],g=["children"],m=["children"],w=["children"],O=["children"],_=h().forwardRef((function(t,e){var r=t.children,i=(0,d._)(t,v);return h().createElement(d.I,(0,d.a)({width:16,height:16,viewBox:"0 0 16 16",xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",ref:e},i),n||(n=h().createElement("path",{d:"M8,1C4.1,1,1,4.1,1,8c0,3.9,3.1,7,7,7s7-3.1,7-7C15,4.1,11.9,1,8,1z M7,11L4.3,8.3l0.9-0.8L7,9.3l4-3.9l0.9,0.8L7,11z"})),o||(o=h().createElement("path",{d:"M7,11L4.3,8.3l0.9-0.8L7,9.3l4-3.9l0.9,0.8L7,11z","data-icon-path":"inner-path",opacity:"0"})),r)})),j=h().forwardRef((function(t,e){var r=t.children,n=(0,d._)(t,y);return h().createElement(d.I,(0,d.a)({width:16,height:16,viewBox:"0 0 32 32",xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",ref:e},n),i||(i=h().createElement("path",{d:"M14 21.414L9 16.413 10.413 15 14 18.586 21.585 11 23 12.415 14 21.414z"})),a||(a=h().createElement("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z"})),r)})),x=h().forwardRef((function(t,e){var r=t.children,n=(0,d._)(t,b);return h().createElement(d.I,(0,d.a)({width:16,height:16,viewBox:"0 0 16 16",xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",ref:e},n),c||(c=h().createElement("path",{d:"M8 11L3 6 3.7 5.3 8 9.6 12.3 5.3 13 6z"})),r)})),E=h().forwardRef((function(t,e){var r=t.children,n=(0,d._)(t,g);return h().createElement(d.I,(0,d.a)({width:16,height:16,viewBox:"0 0 16 16",xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",ref:e},n),u||(u=h().createElement("path",{d:"M5 8L10 3 10.7 3.7 6.4 8 10.7 12.3 10 13z"})),r)})),P=h().forwardRef((function(t,e){var r=t.children,n=(0,d._)(t,m);return h().createElement(d.I,(0,d.a)({width:16,height:16,viewBox:"0 0 16 16",xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",ref:e},n),l||(l=h().createElement("path",{d:"M11 8L6 13 5.3 12.3 9.6 8 5.3 3.7 6 3z"})),r)})),k=h().forwardRef((function(t,e){var r=t.children,n=(0,d._)(t,w);return h().createElement(d.I,(0,d.a)({width:20,height:20,viewBox:"0 0 32 32",xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",ref:e},n),s||(s=h().createElement("path",{d:"M24 9.4L22.6 8 16 14.6 9.4 8 8 9.4 14.6 16 8 22.6 9.4 24 16 17.4 22.6 24 24 22.6 17.4 16 24 9.4z"})),r)})),I=h().forwardRef((function(t,e){var r=t.children,n=(0,d._)(t,O);return h().createElement(d.I,(0,d.a)({width:16,height:16,viewBox:"0 0 32 32",xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",ref:e},n),f||(f=h().createElement("path",{d:"M24 9.4L22.6 8 16 14.6 9.4 8 8 9.4 14.6 16 8 22.6 9.4 24 16 17.4 22.6 24 24 22.6 17.4 16 24 9.4z"})),r)}))},8663:(t,e,r)=>{"use strict";r.d(e,{Z:()=>y});var n=r(5697),o=r.n(n),i=r(4211),a=r.n(i),c=r(4184),u=r.n(c),l=r(9033),s=r(3299);function f(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function d(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?f(Object(r),!0).forEach((function(e){p(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):f(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function p(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var h=l.Z.prefix,v=a().forwardRef((function(t,e){var r,n=t.children,o=t.as,i=t.className,c=t.disabled,l=t.small,s=t.size,f=t.kind,v=t.href,y=t.isSelected,b=t.tabIndex,g=t.type,m=t.renderIcon,w=t.iconDescription,O=t.hasIconOnly,_=t.tooltipPosition,j=t.tooltipAlignment,x=function(t,e){if(null==t)return{};var r,n,o=function(t,e){if(null==t)return{};var r,n,o={},i=Object.keys(t);for(n=0;n<i.length;n++)r=i[n],e.indexOf(r)>=0||(o[r]=t[r]);return o}(t,e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);for(n=0;n<i.length;n++)r=i[n],e.indexOf(r)>=0||Object.prototype.propertyIsEnumerable.call(t,r)&&(o[r]=t[r])}return o}(t,["children","as","className","disabled","small","size","kind","href","isSelected","tabIndex","type","renderIcon","iconDescription","hasIconOnly","tooltipPosition","tooltipAlignment"]),E={tabIndex:b,className:u()(i,(p(r={},"".concat(h,"--btn"),!0),p(r,"".concat(h,"--btn--field"),"field"===s),p(r,"".concat(h,"--btn--sm"),"small"===s||"sm"===s||l),p(r,"".concat(h,"--btn--lg"),"lg"===s),p(r,"".concat(h,"--btn--xl"),"xl"===s),p(r,"".concat(h,"--btn--").concat(f),f),p(r,"".concat(h,"--btn--disabled"),c),p(r,"".concat(h,"--btn--icon-only"),O),p(r,"".concat(h,"--btn--selected"),O&&y&&"ghost"===f),p(r,"".concat(h,"--tooltip__trigger"),O),p(r,"".concat(h,"--tooltip--a11y"),O),p(r,"".concat(h,"--tooltip--").concat(_),O&&_),p(r,"".concat(h,"--tooltip--align-").concat(j),O&&j),r)),ref:e},P=m?a().createElement(m,{"aria-label":w,className:"".concat(h,"--btn__icon"),"aria-hidden":"true"}):null,k="button",I={disabled:c,type:g,"aria-pressed":O&&"ghost"===f?y:null},S={href:v},T=O?a().createElement("span",{className:"".concat(h,"--assistive-text")},w):null;return o?(k=o,I=d(d({},I),S)):v&&!c&&(k="a",I=S),a().createElement(k,d(d(d({},x),E),I),T,n,P)}));v.displayName="Button",v.propTypes={as:o().oneOfType([o().func,o().string,o().elementType]),children:o().node,className:o().string,disabled:o().bool,hasIconOnly:o().bool,href:o().string,iconDescription:function(t){if(t.renderIcon&&!t.children&&!t.iconDescription)return new Error("renderIcon property specified without also providing an iconDescription property.")},isSelected:o().bool,kind:o().oneOf(["primary","secondary","danger","ghost","danger--primary","danger--ghost","danger--tertiary","tertiary"]).isRequired,renderIcon:o().oneOfType([o().func,o().object]),role:o().string,size:o().oneOf(["default","field","small","sm","lg","xl"]),small:(0,s.Z)(o().bool,'\nThe prop `small` for Button has been deprecated in favor of `size`. Please use `size="sm"` instead.'),tabIndex:o().number,tooltipAlignment:o().oneOf(["start","center","end"]),tooltipPosition:o().oneOf(["top","right","bottom","left"]),type:o().oneOf(["button","reset","submit"])},v.defaultProps={tabIndex:0,type:"button",disabled:!1,kind:"primary",size:"default",tooltipAlignment:"center",tooltipPosition:"top"};const y=v},9303:(t,e,r)=>{"use strict";r.d(e,{Ce:()=>n,Cj:()=>a,K5:()=>f,L1:()=>o,SK:()=>c,T:()=>i,Xd:()=>u,a2:()=>l,ol:()=>s});var n={key:"Enter",which:13,keyCode:13},o={key:["Escape","Esc"],which:27,keyCode:27},i={key:" ",which:32,keyCode:32},a={key:"End",which:35,keyCode:35},c={key:"Home",which:36,keyCode:36},u={key:"ArrowLeft",which:37,keyCode:37},l={key:"ArrowUp",which:38,keyCode:38},s={key:"ArrowRight",which:39,keyCode:39},f={key:"ArrowDown",which:40,keyCode:40}},3494:(t,e,r)=>{"use strict";function n(t,e){for(var r=0;r<e.length;r++)if(o(t,e[r]))return!0;return!1}function o(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=e.key,n=e.which,o=e.keyCode;return"string"==typeof t?t===r:"number"==typeof t?t===n||t===o:t.key&&Array.isArray(r)?-1!==r.indexOf(t.key):t.key===r||t.which===n||t.keyCode===o}r.d(e,{EQ:()=>o,wB:()=>n})},3719:(t,e,r)=>{"use strict";r.d(e,{DY:()=>a,I0:()=>n,Kq:()=>i,ui:()=>o});var n="undefined"!=typeof Node&&Node.DOCUMENT_POSITION_PRECEDING|Node.DOCUMENT_POSITION_CONTAINS,o="undefined"!=typeof Node&&Node.DOCUMENT_POSITION_FOLLOWING|Node.DOCUMENT_POSITION_CONTAINED_BY,i="\n a[href], area[href], input:not([disabled]):not([tabindex='-1']),\n button:not([disabled]):not([tabindex='-1']),select:not([disabled]):not([tabindex='-1']),\n textarea:not([disabled]):not([tabindex='-1']),\n iframe, object, embed, *[tabindex]:not([tabindex='-1']):not([disabled]), *[contenteditable=true]\n",a="\n a[href], area[href], input:not([disabled]),\n button:not([disabled]),select:not([disabled]),\n textarea:not([disabled]),\n iframe, object, embed, *[tabindex]:not([disabled]), *[contenteditable=true]\n"},3712:(t,e,r)=>{"use strict";r.d(e,{M:()=>f});var n=r(4211),o=r(19),i=!("undefined"==typeof window||!window.document||!window.document.createElement);function a(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t)){var r=[],n=!0,o=!1,i=void 0;try{for(var a,c=t[Symbol.iterator]();!(n=(a=c.next()).done)&&(r.push(a.value),!e||r.length!==e);n=!0);}catch(t){o=!0,i=t}finally{try{n||null==c.return||c.return()}finally{if(o)throw i}}return r}}(t,e)||function(t,e){if(t){if("string"==typeof t)return c(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?c(t,e):void 0}}(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function c(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}var u=(0,o.Z)(),l=i?n.useLayoutEffect:n.useEffect,s=!1;function f(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"id",e=(0,n.useState)((function(){return s?"".concat(t,"-").concat(u()):null})),r=a(e,2),o=r[0],i=r[1];return l((function(){null===o&&i("".concat(t,"-").concat(u()))}),[u]),(0,n.useEffect)((function(){!1===s&&(s=!0)}),[]),o}},1593:(t,e,r)=>{"use strict";r.d(e,{Z:()=>u});var n=r(9176),o=r.n(n),i=r(9033),a=r(3719),c=i.Z.prefix;const u=function(t){var e=t.bodyNode,r=t.startTrapNode,n=t.endTrapNode,i=t.currentActiveNode,u=t.oldActiveNode,l=t.selectorsFloatingMenus;if(e&&i&&u&&!e.contains(i)&&!function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[".".concat(c,"--overflow-menu-options"),".".concat(c,"--tooltip"),".flatpickr-calendar"];if(t&&"function"==typeof t.closest)return e.some((function(e){return t.closest(e)}))}(i,l)){var s=u.compareDocumentPosition(i);if(i===r||s&a.I0){var f=o()(e.querySelectorAll(a.Kq),(function(t){return Boolean(t.offsetParent)}));f?f.focus():e!==u&&e.focus()}else if(i===n||s&a.ui){var d=Array.prototype.find.call(e.querySelectorAll(a.Kq),(function(t){return Boolean(t.offsetParent)}));d?d.focus():e!==u&&e.focus()}}}},3299:(t,e,r)=>{"use strict";function n(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function o(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?n(Object(r),!0).forEach((function(e){i(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):n(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function i(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}r.d(e,{Z:()=>c});var a={};function c(t,e){return function(e,r,n){if(void 0!==e[r]){a[n]&&a[n][r]||(a[n]=o(o({},a[n]),{},i({},r,!0)));for(var c=arguments.length,u=new Array(c>3?c-3:0),l=3;l<c;l++)u[l-3]=arguments[l];return t.apply(void 0,[e,r,n].concat(u))}}}},1839:(t,e,r)=>{"use strict";function n(t,e){return function(t,r,n){for(var o=arguments.length,i=new Array(o>3?o-3:0),a=3;a<o;a++)i[a-3]=arguments[a];return e.apply(void 0,[t,r,n].concat(i))}}r.d(e,{Z:()=>n})},19:(t,e,r)=>{"use strict";function n(){var t=0;return function(){return++t}}r.d(e,{Z:()=>n})},9033:(t,e,r)=>{"use strict";r.d(e,{Z:()=>n});const n={prefix:"bx",selectorTabbable:"\n a[href], area[href], input:not([disabled]):not([tabindex='-1']),\n button:not([disabled]):not([tabindex='-1']),select:not([disabled]):not([tabindex='-1']),\n textarea:not([disabled]):not([tabindex='-1']),\n iframe, object, embed, *[tabindex]:not([tabindex='-1']), *[contenteditable=true]\n ",selectorFocusable:"\n a[href], area[href], input:not([disabled]),\n button:not([disabled]),select:not([disabled]),\n textarea:not([disabled]),\n iframe, object, embed, *[tabindex], *[contenteditable=true]\n "}},4184:(t,e)=>{var r;!function(){"use strict";var n={}.hasOwnProperty;function o(){for(var t=[],e=0;e<arguments.length;e++){var r=arguments[e];if(r){var i=typeof r;if("string"===i||"number"===i)t.push(r);else if(Array.isArray(r)&&r.length){var a=o.apply(null,r);a&&t.push(a)}else if("object"===i)for(var c in r)n.call(r,c)&&r[c]&&t.push(c)}}return t.join(" ")}t.exports?(o.default=o,t.exports=o):void 0===(r=function(){return o}.apply(e,[]))||(t.exports=r)}()},3645:t=>{"use strict";t.exports=function(t){var e=[];return e.toString=function(){return this.map((function(e){var r=t(e);return e[2]?"@media ".concat(e[2]," {").concat(r,"}"):r})).join("")},e.i=function(t,r,n){"string"==typeof t&&(t=[[null,t,""]]);var o={};if(n)for(var i=0;i<this.length;i++){var a=this[i][0];null!=a&&(o[a]=!0)}for(var c=0;c<t.length;c++){var u=[].concat(t[c]);n&&o[u[0]]||(r&&(u[2]?u[2]="".concat(r," and ").concat(u[2]):u[2]=r),e.push(u))}},e}},9176:(t,e,r)=>{t=r.nmd(t);var n="__lodash_hash_undefined__",o=9007199254740991,i="[object Arguments]",a="[object Array]",c="[object Boolean]",u="[object Date]",l="[object Error]",s="[object Function]",f="[object Map]",d="[object Number]",p="[object Object]",h="[object Promise]",v="[object RegExp]",y="[object Set]",b="[object String]",g="[object Symbol]",m="[object WeakMap]",w="[object ArrayBuffer]",O="[object DataView]",_=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,j=/^\w*$/,x=/^\./,E=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,P=/^\s+|\s+$/g,k=/\\(\\)?/g,I=/^[-+]0x[0-9a-f]+$/i,S=/^0b[01]+$/i,T=/^\[object .+?Constructor\]$/,A=/^0o[0-7]+$/i,L=/^(?:0|[1-9]\d*)$/,C={};C["[object Float32Array]"]=C["[object Float64Array]"]=C["[object Int8Array]"]=C["[object Int16Array]"]=C["[object Int32Array]"]=C["[object Uint8Array]"]=C["[object Uint8ClampedArray]"]=C["[object Uint16Array]"]=C["[object Uint32Array]"]=!0,C[i]=C[a]=C[w]=C[c]=C[O]=C[u]=C[l]=C[s]=C[f]=C[d]=C[p]=C[v]=C[y]=C[b]=C[m]=!1;var N=parseInt,R="object"==typeof r.g&&r.g&&r.g.Object===Object&&r.g,D="object"==typeof self&&self&&self.Object===Object&&self,M=R||D||Function("return this")(),F=e&&!e.nodeType&&e,B=F&&t&&!t.nodeType&&t,V=B&&B.exports===F&&R.process,z=function(){try{return V&&V.binding("util")}catch(t){}}(),$=z&&z.isTypedArray;function U(t,e){for(var r=-1,n=t?t.length:0;++r<n;)if(e(t[r],r,t))return!0;return!1}function Z(t){var e=!1;if(null!=t&&"function"!=typeof t.toString)try{e=!!(t+"")}catch(t){}return e}function G(t){var e=-1,r=Array(t.size);return t.forEach((function(t,n){r[++e]=[n,t]})),r}function q(t){var e=-1,r=Array(t.size);return t.forEach((function(t){r[++e]=t})),r}var W,H,Y,K=Array.prototype,J=Function.prototype,Q=Object.prototype,X=M["__core-js_shared__"],tt=(W=/[^.]+$/.exec(X&&X.keys&&X.keys.IE_PROTO||""))?"Symbol(src)_1."+W:"",et=J.toString,rt=Q.hasOwnProperty,nt=Q.toString,ot=RegExp("^"+et.call(rt).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),it=M.Symbol,at=M.Uint8Array,ct=Q.propertyIsEnumerable,ut=K.splice,lt=(H=Object.keys,Y=Object,function(t){return H(Y(t))}),st=Math.max,ft=Math.min,dt=Bt(M,"DataView"),pt=Bt(M,"Map"),ht=Bt(M,"Promise"),vt=Bt(M,"Set"),yt=Bt(M,"WeakMap"),bt=Bt(Object,"create"),gt=Wt(dt),mt=Wt(pt),wt=Wt(ht),Ot=Wt(vt),_t=Wt(yt),jt=it?it.prototype:void 0,xt=jt?jt.valueOf:void 0,Et=jt?jt.toString:void 0;function Pt(t){var e=-1,r=t?t.length:0;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}function kt(t){var e=-1,r=t?t.length:0;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}function It(t){var e=-1,r=t?t.length:0;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}function St(t){var e=-1,r=t?t.length:0;for(this.__data__=new It;++e<r;)this.add(t[e])}function Tt(t){this.__data__=new kt(t)}function At(t,e){for(var r=t.length;r--;)if(Jt(t[r][0],e))return r;return-1}function Lt(t,e){for(var r=0,n=(e=$t(e,t)?[e]:Dt(e)).length;null!=t&&r<n;)t=t[qt(e[r++])];return r&&r==n?t:void 0}function Ct(t,e){return null!=t&&e in Object(t)}function Nt(t,e,r,n,o){return t===e||(null==t||null==e||!ne(t)&&!oe(e)?t!=t&&e!=e:function(t,e,r,n,o,s){var h=Xt(t),m=Xt(e),_=a,j=a;h||(_=(_=Vt(t))==i?p:_),m||(j=(j=Vt(e))==i?p:j);var x=_==p&&!Z(t),E=j==p&&!Z(e),P=_==j;if(P&&!x)return s||(s=new Tt),h||ae(t)?Mt(t,e,r,n,o,s):function(t,e,r,n,o,i,a){switch(r){case O:if(t.byteLength!=e.byteLength||t.byteOffset!=e.byteOffset)return!1;t=t.buffer,e=e.buffer;case w:return!(t.byteLength!=e.byteLength||!n(new at(t),new at(e)));case c:case u:case d:return Jt(+t,+e);case l:return t.name==e.name&&t.message==e.message;case v:case b:return t==e+"";case f:var s=G;case y:var p=2&i;if(s||(s=q),t.size!=e.size&&!p)return!1;var h=a.get(t);if(h)return h==e;i|=1,a.set(t,e);var m=Mt(s(t),s(e),n,o,i,a);return a.delete(t),m;case g:if(xt)return xt.call(t)==xt.call(e)}return!1}(t,e,_,r,n,o,s);if(!(2&o)){var k=x&&rt.call(t,"__wrapped__"),I=E&&rt.call(e,"__wrapped__");if(k||I){var S=k?t.value():t,T=I?e.value():e;return s||(s=new Tt),r(S,T,n,o,s)}}return!!P&&(s||(s=new Tt),function(t,e,r,n,o,i){var a=2&o,c=ce(t),u=c.length;if(u!=ce(e).length&&!a)return!1;for(var l=u;l--;){var s=c[l];if(!(a?s in e:rt.call(e,s)))return!1}var f=i.get(t);if(f&&i.get(e))return f==e;var d=!0;i.set(t,e),i.set(e,t);for(var p=a;++l<u;){var h=t[s=c[l]],v=e[s];if(n)var y=a?n(v,h,s,e,t,i):n(h,v,s,t,e,i);if(!(void 0===y?h===v||r(h,v,n,o,i):y)){d=!1;break}p||(p="constructor"==s)}if(d&&!p){var b=t.constructor,g=e.constructor;b==g||!("constructor"in t)||!("constructor"in e)||"function"==typeof b&&b instanceof b&&"function"==typeof g&&g instanceof g||(d=!1)}return i.delete(t),i.delete(e),d}(t,e,r,n,o,s))}(t,e,Nt,r,n,o))}function Rt(t){return"function"==typeof t?t:null==t?ue:"object"==typeof t?Xt(t)?function(t,e){return $t(t)&&Ut(e)?Zt(qt(t),e):function(r){var n=function(t,e,r){var n=null==t?void 0:Lt(t,e);return void 0===n?void 0:n}(r,t);return void 0===n&&n===e?function(t,e){return null!=t&&function(t,e,r){for(var n,o=-1,i=(e=$t(e,t)?[e]:Dt(e)).length;++o<i;){var a=qt(e[o]);if(!(n=null!=t&&r(t,a)))break;t=t[a]}return n||!!(i=t?t.length:0)&&re(i)&&zt(a,i)&&(Xt(t)||Qt(t))}(t,e,Ct)}(r,t):Nt(e,n,void 0,3)}}(t[0],t[1]):(r=function(t){for(var e=ce(t),r=e.length;r--;){var n=e[r],o=t[n];e[r]=[n,o,Ut(o)]}return e}(e=t),1==r.length&&r[0][2]?Zt(r[0][0],r[0][1]):function(t){return t===e||function(t,e,r,n){var o=r.length,i=o;if(null==t)return!i;for(t=Object(t);o--;){var a=r[o];if(a[2]?a[1]!==t[a[0]]:!(a[0]in t))return!1}for(;++o<i;){var c=(a=r[o])[0],u=t[c],l=a[1];if(a[2]){if(void 0===u&&!(c in t))return!1}else{var s,f=new Tt;if(!(void 0===s?Nt(l,u,n,3,f):s))return!1}}return!0}(t,0,r)}):$t(n=t)?(o=qt(n),function(t){return null==t?void 0:t[o]}):function(t){return function(e){return Lt(e,t)}}(n);var e,r,n,o}function Dt(t){return Xt(t)?t:Gt(t)}function Mt(t,e,r,n,o,i){var a=2&o,c=t.length,u=e.length;if(c!=u&&!(a&&u>c))return!1;var l=i.get(t);if(l&&i.get(e))return l==e;var s=-1,f=!0,d=1&o?new St:void 0;for(i.set(t,e),i.set(e,t);++s<c;){var p=t[s],h=e[s];if(n)var v=a?n(h,p,s,e,t,i):n(p,h,s,t,e,i);if(void 0!==v){if(v)continue;f=!1;break}if(d){if(!U(e,(function(t,e){if(!d.has(e)&&(p===t||r(p,t,n,o,i)))return d.add(e)}))){f=!1;break}}else if(p!==h&&!r(p,h,n,o,i)){f=!1;break}}return i.delete(t),i.delete(e),f}function Ft(t,e){var r,n,o=t.__data__;return("string"==(n=typeof(r=e))||"number"==n||"symbol"==n||"boolean"==n?"__proto__"!==r:null===r)?o["string"==typeof e?"string":"hash"]:o.map}function Bt(t,e){var r=function(t,e){return null==t?void 0:t[e]}(t,e);return function(t){return!(!ne(t)||function(t){return!!tt&&tt in t}(t))&&(ee(t)||Z(t)?ot:T).test(Wt(t))}(r)?r:void 0}Pt.prototype.clear=function(){this.__data__=bt?bt(null):{}},Pt.prototype.delete=function(t){return this.has(t)&&delete this.__data__[t]},Pt.prototype.get=function(t){var e=this.__data__;if(bt){var r=e[t];return r===n?void 0:r}return rt.call(e,t)?e[t]:void 0},Pt.prototype.has=function(t){var e=this.__data__;return bt?void 0!==e[t]:rt.call(e,t)},Pt.prototype.set=function(t,e){return this.__data__[t]=bt&&void 0===e?n:e,this},kt.prototype.clear=function(){this.__data__=[]},kt.prototype.delete=function(t){var e=this.__data__,r=At(e,t);return!(r<0||(r==e.length-1?e.pop():ut.call(e,r,1),0))},kt.prototype.get=function(t){var e=this.__data__,r=At(e,t);return r<0?void 0:e[r][1]},kt.prototype.has=function(t){return At(this.__data__,t)>-1},kt.prototype.set=function(t,e){var r=this.__data__,n=At(r,t);return n<0?r.push([t,e]):r[n][1]=e,this},It.prototype.clear=function(){this.__data__={hash:new Pt,map:new(pt||kt),string:new Pt}},It.prototype.delete=function(t){return Ft(this,t).delete(t)},It.prototype.get=function(t){return Ft(this,t).get(t)},It.prototype.has=function(t){return Ft(this,t).has(t)},It.prototype.set=function(t,e){return Ft(this,t).set(t,e),this},St.prototype.add=St.prototype.push=function(t){return this.__data__.set(t,n),this},St.prototype.has=function(t){return this.__data__.has(t)},Tt.prototype.clear=function(){this.__data__=new kt},Tt.prototype.delete=function(t){return this.__data__.delete(t)},Tt.prototype.get=function(t){return this.__data__.get(t)},Tt.prototype.has=function(t){return this.__data__.has(t)},Tt.prototype.set=function(t,e){var r=this.__data__;if(r instanceof kt){var n=r.__data__;if(!pt||n.length<199)return n.push([t,e]),this;r=this.__data__=new It(n)}return r.set(t,e),this};var Vt=function(t){return nt.call(t)};function zt(t,e){return!!(e=null==e?o:e)&&("number"==typeof t||L.test(t))&&t>-1&&t%1==0&&t<e}function $t(t,e){if(Xt(t))return!1;var r=typeof t;return!("number"!=r&&"symbol"!=r&&"boolean"!=r&&null!=t&&!ie(t))||j.test(t)||!_.test(t)||null!=e&&t in Object(e)}function Ut(t){return t==t&&!ne(t)}function Zt(t,e){return function(r){return null!=r&&r[t]===e&&(void 0!==e||t in Object(r))}}(dt&&Vt(new dt(new ArrayBuffer(1)))!=O||pt&&Vt(new pt)!=f||ht&&Vt(ht.resolve())!=h||vt&&Vt(new vt)!=y||yt&&Vt(new yt)!=m)&&(Vt=function(t){var e=nt.call(t),r=e==p?t.constructor:void 0,n=r?Wt(r):void 0;if(n)switch(n){case gt:return O;case mt:return f;case wt:return h;case Ot:return y;case _t:return m}return e});var Gt=Kt((function(t){var e;t=null==(e=t)?"":function(t){if("string"==typeof t)return t;if(ie(t))return Et?Et.call(t):"";var e=t+"";return"0"==e&&1/t==-1/0?"-0":e}(e);var r=[];return x.test(t)&&r.push(""),t.replace(E,(function(t,e,n,o){r.push(n?o.replace(k,"$1"):e||t)})),r}));function qt(t){if("string"==typeof t||ie(t))return t;var e=t+"";return"0"==e&&1/t==-1/0?"-0":e}function Wt(t){if(null!=t){try{return et.call(t)}catch(t){}try{return t+""}catch(t){}}return""}var Ht,Yt=(Ht=function(t,e,r){var n=t?t.length:0;if(!n)return-1;var o,i,a,c=n-1;return void 0!==r&&(i=(o=(a=r)?1/0===(a=function(t){if("number"==typeof t)return t;if(ie(t))return NaN;if(ne(t)){var e="function"==typeof t.valueOf?t.valueOf():t;t=ne(e)?e+"":e}if("string"!=typeof t)return 0===t?t:+t;t=t.replace(P,"");var r=S.test(t);return r||A.test(t)?N(t.slice(2),r?2:8):I.test(t)?NaN:+t}(a))||a===-1/0?17976931348623157e292*(a<0?-1:1):a==a?a:0:0===a?a:0)%1,c=o==o?i?o-i:o:0,c=r<0?st(n+c,0):ft(c,n-1)),function(t,e,r,n){t.length;for(var o=r+1;o--;)if(e(t[o],o,t))return o;return-1}(t,Rt(e),c)},function(t,e,r){var n=Object(t);if(!te(t)){var o=Rt(e);t=ce(t),e=function(t){return o(n[t],t,n)}}var i=Ht(t,e,r);return i>-1?n[o?t[i]:i]:void 0});function Kt(t,e){if("function"!=typeof t||e&&"function"!=typeof e)throw new TypeError("Expected a function");var r=function(){var n=arguments,o=e?e.apply(this,n):n[0],i=r.cache;if(i.has(o))return i.get(o);var a=t.apply(this,n);return r.cache=i.set(o,a),a};return r.cache=new(Kt.Cache||It),r}function Jt(t,e){return t===e||t!=t&&e!=e}function Qt(t){return function(t){return oe(t)&&te(t)}(t)&&rt.call(t,"callee")&&(!ct.call(t,"callee")||nt.call(t)==i)}Kt.Cache=It;var Xt=Array.isArray;function te(t){return null!=t&&re(t.length)&&!ee(t)}function ee(t){var e=ne(t)?nt.call(t):"";return e==s||"[object GeneratorFunction]"==e}function re(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=o}function ne(t){var e=typeof t;return!!t&&("object"==e||"function"==e)}function oe(t){return!!t&&"object"==typeof t}function ie(t){return"symbol"==typeof t||oe(t)&&nt.call(t)==g}var ae=$?function(t){return function(e){return t(e)}}($):function(t){return oe(t)&&re(t.length)&&!!C[nt.call(t)]};function ce(t){return te(t)?function(t,e){var r=Xt(t)||Qt(t)?function(t,e){for(var r=-1,n=Array(t);++r<t;)n[r]=e(r);return n}(t.length,String):[],n=r.length,o=!!n;for(var i in t)!e&&!rt.call(t,i)||o&&("length"==i||zt(i,n))||r.push(i);return r}(t):function(t){if(r=(e=t)&&e.constructor,e!==("function"==typeof r&&r.prototype||Q))return lt(t);var e,r,n=[];for(var o in Object(t))rt.call(t,o)&&"constructor"!=o&&n.push(o);return n}(t)}function ue(t){return t}t.exports=Yt},2703:(t,e,r)=>{"use strict";var n=r(414);function o(){}function i(){}i.resetWarningCache=o,t.exports=function(){function t(t,e,r,o,i,a){if(a!==n){var c=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw c.name="Invariant Violation",c}}function e(){return t}t.isRequired=t;var r={array:t,bigint:t,bool:t,func:t,number:t,object:t,string:t,symbol:t,any:t,arrayOf:e,element:t,elementType:t,instanceOf:e,node:t,objectOf:e,oneOf:e,oneOfType:e,shape:e,exact:e,checkPropTypes:i,resetWarningCache:o};return r.PropTypes=r,r}},5697:(t,e,r)=>{t.exports=r(2703)()},414:t=>{"use strict";t.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},5666:t=>{var e=function(t){"use strict";var e,r=Object.prototype,n=r.hasOwnProperty,o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",a=o.asyncIterator||"@@asyncIterator",c=o.toStringTag||"@@toStringTag";function u(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{u({},"")}catch(t){u=function(t,e,r){return t[e]=r}}function l(t,e,r,n){var o=e&&e.prototype instanceof y?e:y,i=Object.create(o.prototype),a=new I(n||[]);return i._invoke=function(t,e,r){var n=f;return function(o,i){if(n===p)throw new Error("Generator is already running");if(n===h){if("throw"===o)throw i;return T()}for(r.method=o,r.arg=i;;){var a=r.delegate;if(a){var c=E(a,r);if(c){if(c===v)continue;return c}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(n===f)throw n=h,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n=p;var u=s(t,e,r);if("normal"===u.type){if(n=r.done?h:d,u.arg===v)continue;return{value:u.arg,done:r.done}}"throw"===u.type&&(n=h,r.method="throw",r.arg=u.arg)}}}(t,r,a),i}function s(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=l;var f="suspendedStart",d="suspendedYield",p="executing",h="completed",v={};function y(){}function b(){}function g(){}var m={};u(m,i,(function(){return this}));var w=Object.getPrototypeOf,O=w&&w(w(S([])));O&&O!==r&&n.call(O,i)&&(m=O);var _=g.prototype=y.prototype=Object.create(m);function j(t){["next","throw","return"].forEach((function(e){u(t,e,(function(t){return this._invoke(e,t)}))}))}function x(t,e){function r(o,i,a,c){var u=s(t[o],t,i);if("throw"!==u.type){var l=u.arg,f=l.value;return f&&"object"==typeof f&&n.call(f,"__await")?e.resolve(f.__await).then((function(t){r("next",t,a,c)}),(function(t){r("throw",t,a,c)})):e.resolve(f).then((function(t){l.value=t,a(l)}),(function(t){return r("throw",t,a,c)}))}c(u.arg)}var o;this._invoke=function(t,n){function i(){return new e((function(e,o){r(t,n,e,o)}))}return o=o?o.then(i,i):i()}}function E(t,r){var n=t.iterator[r.method];if(n===e){if(r.delegate=null,"throw"===r.method){if(t.iterator.return&&(r.method="return",r.arg=e,E(t,r),"throw"===r.method))return v;r.method="throw",r.arg=new TypeError("The iterator does not provide a 'throw' method")}return v}var o=s(n,t.iterator,r.arg);if("throw"===o.type)return r.method="throw",r.arg=o.arg,r.delegate=null,v;var i=o.arg;return i?i.done?(r[t.resultName]=i.value,r.next=t.nextLoc,"return"!==r.method&&(r.method="next",r.arg=e),r.delegate=null,v):i:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,v)}function P(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function k(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function I(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(P,this),this.reset(!0)}function S(t){if(t){var r=t[i];if(r)return r.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,a=function r(){for(;++o<t.length;)if(n.call(t,o))return r.value=t[o],r.done=!1,r;return r.value=e,r.done=!0,r};return a.next=a}}return{next:T}}function T(){return{value:e,done:!0}}return b.prototype=g,u(_,"constructor",g),u(g,"constructor",b),b.displayName=u(g,c,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===b||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,g):(t.__proto__=g,u(t,c,"GeneratorFunction")),t.prototype=Object.create(_),t},t.awrap=function(t){return{__await:t}},j(x.prototype),u(x.prototype,a,(function(){return this})),t.AsyncIterator=x,t.async=function(e,r,n,o,i){void 0===i&&(i=Promise);var a=new x(l(e,r,n,o),i);return t.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},j(_),u(_,c,"Generator"),u(_,i,(function(){return this})),u(_,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=[];for(var r in t)e.push(r);return e.reverse(),function r(){for(;e.length;){var n=e.pop();if(n in t)return r.value=n,r.done=!1,r}return r.done=!0,r}},t.values=S,I.prototype={constructor:I,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=e,this.done=!1,this.delegate=null,this.method="next",this.arg=e,this.tryEntries.forEach(k),!t)for(var r in this)"t"===r.charAt(0)&&n.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=e)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var r=this;function o(n,o){return c.type="throw",c.arg=t,r.next=n,o&&(r.method="next",r.arg=e),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i],c=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var u=n.call(a,"catchLoc"),l=n.call(a,"finallyLoc");if(u&&l){if(this.prev<a.catchLoc)return o(a.catchLoc,!0);if(this.prev<a.finallyLoc)return o(a.finallyLoc)}else if(u){if(this.prev<a.catchLoc)return o(a.catchLoc,!0)}else{if(!l)throw new Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return o(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,v):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),v},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),k(r),v}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;k(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,r,n){return this.delegate={iterator:S(t),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=e),v}},t}(t.exports);try{regeneratorRuntime=e}catch(t){"object"==typeof globalThis?globalThis.regeneratorRuntime=e:Function("r","regeneratorRuntime = r")(e)}},3379:t=>{"use strict";var e=[];function r(t){for(var r=-1,n=0;n<e.length;n++)if(e[n].identifier===t){r=n;break}return r}function n(t,n){for(var i={},a=[],c=0;c<t.length;c++){var u=t[c],l=n.base?u[0]+n.base:u[0],s=i[l]||0,f="".concat(l," ").concat(s);i[l]=s+1;var d=r(f),p={css:u[1],media:u[2],sourceMap:u[3],supports:u[4],layer:u[5]};if(-1!==d)e[d].references++,e[d].updater(p);else{var h=o(p,n);n.byIndex=c,e.splice(c,0,{identifier:f,updater:h,references:1})}a.push(f)}return a}function o(t,e){var r=e.domAPI(e);return r.update(t),function(e){if(e){if(e.css===t.css&&e.media===t.media&&e.sourceMap===t.sourceMap&&e.supports===t.supports&&e.layer===t.layer)return;r.update(t=e)}else r.remove()}}t.exports=function(t,o){var i=n(t=t||[],o=o||{});return function(t){t=t||[];for(var a=0;a<i.length;a++){var c=r(i[a]);e[c].references--}for(var u=n(t,o),l=0;l<i.length;l++){var s=r(i[l]);0===e[s].references&&(e[s].updater(),e.splice(s,1))}i=u}}},569:t=>{"use strict";var e={};t.exports=function(t,r){var n=function(t){if(void 0===e[t]){var r=document.querySelector(t);if(window.HTMLIFrameElement&&r instanceof window.HTMLIFrameElement)try{r=r.contentDocument.head}catch(t){r=null}e[t]=r}return e[t]}(t);if(!n)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");n.appendChild(r)}},9216:t=>{"use strict";t.exports=function(t){var e=document.createElement("style");return t.setAttributes(e,t.attributes),t.insert(e,t.options),e}},3565:(t,e,r)=>{"use strict";t.exports=function(t){var e=r.nc;e&&t.setAttribute("nonce",e)}},7795:t=>{"use strict";t.exports=function(t){var e=t.insertStyleElement(t);return{update:function(r){!function(t,e,r){var n="";r.supports&&(n+="@supports (".concat(r.supports,") {")),r.media&&(n+="@media ".concat(r.media," {"));var o=void 0!==r.layer;o&&(n+="@layer".concat(r.layer.length>0?" ".concat(r.layer):""," {")),n+=r.css,o&&(n+="}"),r.media&&(n+="}"),r.supports&&(n+="}");var i=r.sourceMap;i&&"undefined"!=typeof btoa&&(n+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(i))))," */")),e.styleTagTransform(n,t,e.options)}(e,t,r)},remove:function(){!function(t){if(null===t.parentNode)return!1;t.parentNode.removeChild(t)}(e)}}}},4589:t=>{"use strict";t.exports=function(t,e){if(e.styleSheet)e.styleSheet.cssText=t;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(t))}}},8100:(t,e,r)=>{"use strict";r.d(e,{ZP:()=>Y});var n=r(4211);function o(t,e,r,n){return new(r||(r=Promise))((function(o,i){function a(t){try{u(n.next(t))}catch(t){i(t)}}function c(t){try{u(n.throw(t))}catch(t){i(t)}}function u(t){var e;t.done?o(t.value):(e=t.value,e instanceof r?e:new r((function(t){t(e)}))).then(a,c)}u((n=n.apply(t,e||[])).next())}))}function i(t,e){var r,n,o,i,a={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return i={next:c(0),throw:c(1),return:c(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function c(i){return function(c){return function(i){if(r)throw new TypeError("Generator is already executing.");for(;a;)try{if(r=1,n&&(o=2&i[0]?n.return:i[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,i[1])).done)return o;switch(n=0,o&&(i=[2&i[0],o.value]),i[0]){case 0:case 1:o=i;break;case 4:return a.label++,{value:i[1],done:!1};case 5:a.label++,n=i[1],i=[0];continue;case 7:i=a.ops.pop(),a.trys.pop();continue;default:if(!((o=(o=a.trys).length>0&&o[o.length-1])||6!==i[0]&&2!==i[0])){a=0;continue}if(3===i[0]&&(!o||i[1]>o[0]&&i[1]<o[3])){a.label=i[1];break}if(6===i[0]&&a.label<o[1]){a.label=o[1],o=i;break}if(o&&a.label<o[2]){a.label=o[2],a.ops.push(i);break}o[2]&&a.ops.pop(),a.trys.pop();continue}i=e.call(t,a)}catch(t){i=[6,t],n=0}finally{r=o=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,c])}}}var a,c=function(){},u=c(),l=Object,s=function(t){return t===u},f=function(t){return"function"==typeof t},d=function(t,e){return l.assign({},t,e)},p="undefined",h=function(){return typeof window!=p},v=new WeakMap,y=0,b=function(t){var e,r,n=typeof t,o=t&&t.constructor,i=o==Date;if(l(t)!==t||i||o==RegExp)e=i?t.toJSON():"symbol"==n?t.toString():"string"==n?JSON.stringify(t):""+t;else{if(e=v.get(t))return e;if(e=++y+"~",v.set(t,e),o==Array){for(e="@",r=0;r<t.length;r++)e+=b(t[r])+",";v.set(t,e)}if(o==l){e="#";for(var a=l.keys(t).sort();!s(r=a.pop());)s(t[r])||(e+=r+":"+b(t[r])+",");v.set(t,e)}}return e},g=!0,m=h(),w=typeof document!=p,O=m&&window.addEventListener?window.addEventListener.bind(window):c,_=w?document.addEventListener.bind(document):c,j=m&&window.removeEventListener?window.removeEventListener.bind(window):c,x=w?document.removeEventListener.bind(document):c,E={isOnline:function(){return g},isVisible:function(){var t=w&&document.visibilityState;return s(t)||"hidden"!==t}},P={initFocus:function(t){return _("visibilitychange",t),O("focus",t),function(){x("visibilitychange",t),j("focus",t)}},initReconnect:function(t){var e=function(){g=!0,t()},r=function(){g=!1};return O("online",e),O("offline",r),function(){j("online",e),j("offline",r)}}},k=!h()||"Deno"in window,I=k?n.useEffect:n.useLayoutEffect,S="undefined"!=typeof navigator&&navigator.connection,T=!k&&S&&(["slow-2g","2g"].includes(S.effectiveType)||S.saveData),A=function(t){if(f(t))try{t=t()}catch(e){t=""}var e=[].concat(t);return[t="string"==typeof t?t:(Array.isArray(t)?t.length:t)?b(t):"",e,t?"$swr$"+t:""]},L=new WeakMap,C=function(t,e,r,n,o,i,a){void 0===a&&(a=!0);var c=L.get(t),u=c[0],l=c[1],s=c[3],f=u[e],d=l[e];if(a&&d)for(var p=0;p<d.length;++p)d[p](r,n,o);return i&&(delete s[e],f&&f[0])?f[0](2).then((function(){return t.get(e)})):t.get(e)},N=0,R=function(){return++N},D=function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];return o(void 0,void 0,void 0,(function(){var e,r,n,o,a,c,l,p,h,v,y,b,g,m,w,O,_,j,x,E,P;return i(this,(function(i){switch(i.label){case 0:if(e=t[0],r=t[1],n=t[2],o=t[3],c=!!s((a="boolean"==typeof o?{revalidate:o}:o||{}).populateCache)||a.populateCache,l=!1!==a.revalidate,p=!1!==a.rollbackOnError,h=a.optimisticData,v=A(r),y=v[0],b=v[2],!y)return[2];if(g=L.get(e),m=g[2],t.length<3)return[2,C(e,y,e.get(y),u,u,l,!0)];if(w=n,_=R(),m[y]=[_,0],j=!s(h),x=e.get(y),j&&(E=f(h)?h(x):h,e.set(y,E),C(e,y,E)),f(w))try{w=w(e.get(y))}catch(t){O=t}return w&&f(w.then)?[4,w.catch((function(t){O=t}))]:[3,2];case 1:if(w=i.sent(),_!==m[y][0]){if(O)throw O;return[2,w]}O&&j&&p&&(c=!0,w=x,e.set(y,x)),i.label=2;case 2:return c&&(O||(f(c)&&(w=c(w,x)),e.set(y,w)),e.set(b,d(e.get(b),{error:O}))),m[y][1]=R(),[4,C(e,y,w,O,u,l,!!c)];case 3:if(P=i.sent(),O)throw O;return[2,c?P:w]}}))}))},M=function(t,e){for(var r in t)t[r][0]&&t[r][0](e)},F=function(t,e){if(!L.has(t)){var r=d(P,e),n={},o=D.bind(u,t),i=c;if(L.set(t,[n,{},{},{},o]),!k){var a=r.initFocus(setTimeout.bind(u,M.bind(u,n,0))),l=r.initReconnect(setTimeout.bind(u,M.bind(u,n,1)));i=function(){a&&a(),l&&l(),L.delete(t)}}return[t,o,i]}return[t,L.get(t)[4]]},B=F(new Map),V=B[0],z=B[1],$=d({onLoadingSlow:c,onSuccess:c,onError:c,onErrorRetry:function(t,e,r,n,o){var i=r.errorRetryCount,a=o.retryCount,c=~~((Math.random()+.5)*(1<<(a<8?a:8)))*r.errorRetryInterval;!s(i)&&a>i||setTimeout(n,c,o)},onDiscarded:c,revalidateOnFocus:!0,revalidateOnReconnect:!0,revalidateIfStale:!0,shouldRetryOnError:!0,errorRetryInterval:T?1e4:5e3,focusThrottleInterval:5e3,dedupingInterval:2e3,loadingTimeout:T?5e3:3e3,compare:function(t,e){return b(t)==b(e)},isPaused:function(){return!1},cache:V,mutate:z,fallback:{}},E),U=function(t,e){var r=d(t,e);if(e){var n=t.use,o=t.fallback,i=e.use,a=e.fallback;n&&i&&(r.use=n.concat(i)),o&&a&&(r.fallback=d(o,a))}return r},Z=(0,n.createContext)({}),G=function(t){return f(t[1])?[t[0],t[1],t[2]||{}]:[t[0],null,(null===t[1]?t[2]:t[1])||{}]},q=function(){return d($,(0,n.useContext)(Z))},W=function(t,e,r){var n=e[t]||(e[t]=[]);return n.push(r),function(){var t=n.indexOf(r);t>=0&&(n[t]=n[n.length-1],n.pop())}},H={dedupe:!0},Y=(l.defineProperty((function(t){var e=t.value,r=U((0,n.useContext)(Z),e),o=e&&e.provider,i=(0,n.useState)((function(){return o?F(o(r.cache||V),e):u}))[0];return i&&(r.cache=i[0],r.mutate=i[1]),I((function(){return i?i[2]:u}),[]),(0,n.createElement)(Z.Provider,d(t,{value:r}))}),"default",{value:$}),a=function(t,e,r){var a=r.cache,c=r.compare,l=r.fallbackData,v=r.suspense,y=r.revalidateOnMount,b=r.refreshInterval,g=r.refreshWhenHidden,m=r.refreshWhenOffline,w=L.get(a),O=w[0],_=w[1],j=w[2],x=w[3],E=A(t),P=E[0],S=E[1],T=E[2],N=(0,n.useRef)(!1),M=(0,n.useRef)(!1),F=(0,n.useRef)(P),B=(0,n.useRef)(e),V=(0,n.useRef)(r),z=function(){return V.current},$=function(){return z().isVisible()&&z().isOnline()},U=function(t){return a.set(T,d(a.get(T),t))},Z=a.get(P),G=s(l)?r.fallback[P]:l,q=s(Z)?G:Z,Y=a.get(T)||{},K=Y.error,J=!N.current,Q=function(){return J&&!s(y)?y:!z().isPaused()&&(v?!s(q)&&r.revalidateIfStale:s(q)||r.revalidateIfStale)},X=!(!P||!e)&&(!!Y.isValidating||J&&Q()),tt=function(t,e){var r=(0,n.useState)({})[1],o=(0,n.useRef)(t),i=(0,n.useRef)({data:!1,error:!1,isValidating:!1}),a=(0,n.useCallback)((function(t){var n=!1,a=o.current;for(var c in t){var u=c;a[u]!==t[u]&&(a[u]=t[u],i.current[u]&&(n=!0))}n&&!e.current&&r({})}),[]);return I((function(){o.current=t})),[o,i.current,a]}({data:q,error:K,isValidating:X},M),et=tt[0],rt=tt[1],nt=tt[2],ot=(0,n.useCallback)((function(t){return o(void 0,void 0,void 0,(function(){var e,n,o,l,d,p,h,v,y,b,g,m,w;return i(this,(function(i){switch(i.label){case 0:if(e=B.current,!P||!e||M.current||z().isPaused())return[2,!1];l=!0,d=t||{},p=!x[P]||!d.dedupe,h=function(){return!M.current&&P===F.current&&N.current},v=function(){var t=x[P];t&&t[1]===o&&delete x[P]},y={isValidating:!1},b=function(){U({isValidating:!1}),h()&&nt(y)},U({isValidating:!0}),nt({isValidating:!0}),i.label=1;case 1:return i.trys.push([1,3,,4]),p&&(C(a,P,et.current.data,et.current.error,!0),r.loadingTimeout&&!a.get(P)&&setTimeout((function(){l&&h()&&z().onLoadingSlow(P,r)}),r.loadingTimeout),x[P]=[e.apply(void 0,S),R()]),w=x[P],n=w[0],o=w[1],[4,n];case 2:return n=i.sent(),p&&setTimeout(v,r.dedupingInterval),x[P]&&x[P][1]===o?(U({error:u}),y.error=u,g=j[P],!s(g)&&(o<=g[0]||o<=g[1]||0===g[1])?(b(),p&&h()&&z().onDiscarded(P),[2,!1]):(c(et.current.data,n)?y.data=et.current.data:y.data=n,c(a.get(P),n)||a.set(P,n),p&&h()&&z().onSuccess(n,P,r),[3,4])):(p&&h()&&z().onDiscarded(P),[2,!1]);case 3:return m=i.sent(),v(),z().isPaused()||(U({error:m}),y.error=m,p&&h()&&(z().onError(m,P,r),("boolean"==typeof r.shouldRetryOnError&&r.shouldRetryOnError||f(r.shouldRetryOnError)&&r.shouldRetryOnError(m))&&$()&&z().onErrorRetry(m,P,r,ot,{retryCount:(d.retryCount||0)+1,dedupe:!0}))),[3,4];case 4:return l=!1,b(),h()&&p&&C(a,P,y.data,y.error,!1),[2,!0]}}))}))}),[P]),it=(0,n.useCallback)(D.bind(u,a,(function(){return F.current})),[]);if(I((function(){B.current=e,V.current=r})),I((function(){if(P){var t=P!==F.current,e=ot.bind(u,H),r=0,n=W(P,_,(function(t,e,r){nt(d({error:e,isValidating:r},c(et.current.data,t)?u:{data:t}))})),o=W(P,O,(function(t){if(0==t){var n=Date.now();z().revalidateOnFocus&&n>r&&$()&&(r=n+z().focusThrottleInterval,e())}else if(1==t)z().revalidateOnReconnect&&$()&&e();else if(2==t)return ot()}));return M.current=!1,F.current=P,N.current=!0,t&&nt({data:q,error:K,isValidating:X}),Q()&&(s(q)||k?e():(i=e,h()&&typeof window.requestAnimationFrame!=p?window.requestAnimationFrame(i):setTimeout(i,1))),function(){M.current=!0,n(),o()}}var i}),[P,ot]),I((function(){var t;function e(){var e=f(b)?b(q):b;e&&-1!==t&&(t=setTimeout(r,e))}function r(){et.current.error||!g&&!z().isVisible()||!m&&!z().isOnline()?e():ot(H).then(e)}return e(),function(){t&&(clearTimeout(t),t=-1)}}),[b,g,m,ot]),(0,n.useDebugValue)(q),v&&s(q)&&P)throw B.current=e,V.current=r,M.current=!1,s(K)?ot(H):K;return{mutate:it,get data(){return rt.data=!0,q},get error(){return rt.error=!0,K},get isValidating(){return rt.isValidating=!0,X}}},function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];var r=q(),n=G(t),o=n[0],i=n[1],c=n[2],u=U(r,c),l=a,s=u.use;if(s)for(var f=s.length;f-- >0;)l=s[f](l);return l(o,i||u.fetcher,u)})}}]);
|
package/dist/880.js.LICENSE.txt
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
Copyright (c) 2017 Jed Watson.
|
|
3
|
-
Licensed under the MIT License (MIT), see
|
|
4
|
-
http://jedwatson.github.io/classnames
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
/*! *****************************************************************************
|
|
8
|
-
Copyright (c) Microsoft Corporation.
|
|
9
|
-
|
|
10
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
|
11
|
-
purpose with or without fee is hereby granted.
|
|
12
|
-
|
|
13
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
14
|
-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
15
|
-
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
16
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
17
|
-
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
18
|
-
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
19
|
-
PERFORMANCE OF THIS SOFTWARE.
|
|
20
|
-
***************************************************************************** */
|
package/dist/906.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";(self.webpackChunk_openmrs_esm_fast_data_entry_app=self.webpackChunk_openmrs_esm_fast_data_entry_app||[]).push([[906],{906:(i,e,s)=>{s.r(e),s.d(e,{default:()=>rs,iconAdd:()=>o,iconAddGlyph:()=>c,iconAddOutline:()=>n,iconAddSolid:()=>t,iconApi:()=>a,iconApis:()=>h,iconAppServices:()=>p,iconApplications:()=>r,iconApps:()=>d,iconArrowDown:()=>v,iconArrowLeft:()=>g,iconArrowRight:()=>z,iconArrowUp:()=>y,iconArrows:()=>m,iconAsleep:()=>w,iconAsleepGlyph:()=>M,iconAttachment:()=>H,iconAwake:()=>V,iconBackToTop:()=>u,iconBlockChain:()=>L,iconCalendar:()=>D,iconCaretDown:()=>f,iconCaretLeft:()=>x,iconCaretRight:()=>B,iconCaretUp:()=>C,iconCfApps:()=>S,iconChat:()=>A,iconCheckmark:()=>k,iconCheckmarkGlyph:()=>b,iconCheckmarkOutline:()=>G,iconCheckmarkSolid:()=>O,iconChevronDown:()=>P,iconChevronLeft:()=>F,iconChevronRight:()=>U,iconChevronUp:()=>E,iconClose:()=>I,iconCloseGlyph:()=>W,iconCloseOutline:()=>_,iconCloseSolid:()=>N,iconCloudFoundry:()=>R,iconCode:()=>T,iconConsole:()=>j,iconContainers:()=>q,iconCopy:()=>J,iconCopyGlyph:()=>K,iconCrash:()=>Q,iconDashboard:()=>X,iconData:()=>Y,iconDelete:()=>Z,iconDeleteGlyph:()=>$,iconDevices:()=>ii,iconDevops:()=>ei,iconDocument:()=>si,iconDollars:()=>li,iconDownload:()=>oi,iconDownloadGlyph:()=>ci,iconDraggable:()=>ni,iconEdit:()=>ti,iconEditGlyph:()=>ai,iconEmail:()=>hi,iconError:()=>pi,iconErrorGlyph:()=>ri,iconErrorOutline:()=>di,iconErrorSolid:()=>vi,iconFavorite:()=>gi,iconFavoriteOutline:()=>zi,iconFavoriteSolid:()=>yi,iconFilter:()=>mi,iconFilterGlyph:()=>wi,iconFinance:()=>Mi,iconFinancial:()=>Hi,iconFolder:()=>Vi,iconFolderAdd:()=>Li,iconFolderGlyph:()=>ui,iconForum:()=>Di,iconFunctions:()=>fi,iconGrid:()=>xi,iconHeaderAvatar:()=>Bi,iconHeaderChevron:()=>Ci,iconHeaderClose:()=>Si,iconHeaderContact:()=>Ai,iconHeaderDocs:()=>ki,iconHeaderHamburger:()=>bi,iconHeaderHelp:()=>Gi,iconHeaderNotification:()=>Oi,iconHeaderSearch:()=>Pi,iconHeaderTicket:()=>Fi,iconHeaderUser:()=>Ui,iconHelp:()=>Ei,iconHelpGlyph:()=>Ii,iconHelpOutline:()=>Wi,iconHelpSolid:()=>_i,iconHpa:()=>Ni,iconHpaStress:()=>Ri,iconInfo:()=>Ti,iconInfoGlyph:()=>ji,iconInfoOutline:()=>qi,iconInfoSolid:()=>Ji,iconInfrastructure:()=>Ki,iconIntegration:()=>Qi,iconIot:()=>Xi,iconLaunch:()=>Yi,iconLaunchGlyph:()=>Zi,iconLight:()=>$i,iconLightGlyph:()=>ie,iconLink:()=>ee,iconList:()=>se,iconLocked:()=>le,iconMaximize:()=>oe,iconMenu:()=>ce,iconMinimize:()=>ne,iconMobile:()=>te,iconNetwork:()=>ae,iconNewTab:()=>he,iconNotificationOff:()=>pe,iconNotificationOn:()=>re,iconOpenWhisk:()=>de,iconOverflowMenu:()=>ve,iconPa:()=>ge,iconPaStress:()=>ze,iconPause:()=>ye,iconPauseGlyph:()=>me,iconPauseOutline:()=>we,iconPauseSolid:()=>Me,iconPlay:()=>He,iconPlayGlyph:()=>Ve,iconPlayOutline:()=>ue,iconPlaySolid:()=>Le,iconPortfolio:()=>De,iconPower:()=>fe,iconPowerGlyph:()=>xe,iconPredictive:()=>Be,iconPurchase:()=>Ce,iconRestart:()=>Se,iconRestartGlyph:()=>Ae,iconSave:()=>ke,iconSchematics:()=>be,iconSearch:()=>Ge,iconSearchGlyph:()=>Oe,iconSecurity:()=>Pe,iconServices:()=>Fe,iconSettings:()=>Ue,iconSettingsGlyph:()=>Ee,iconStarOutline:()=>Ie,iconStarSolid:()=>We,iconStart:()=>_e,iconStartGlyph:()=>Ne,iconStartOutline:()=>Re,iconStop:()=>Te,iconStopGlyph:()=>je,iconStopOutline:()=>qe,iconStopSolid:()=>Je,iconStorage:()=>Ke,iconSubtractGlyph:()=>Qe,iconSubtractOutline:()=>Xe,iconSubtractSolid:()=>Ye,iconTerminal:()=>Ze,iconUnlock:()=>$e,iconUnlocked:()=>is,iconUpload:()=>es,iconUser:()=>ss,iconVisibilityOff:()=>ls,iconVisibilityOn:()=>os,iconWarning:()=>cs,iconWarningGlyph:()=>ns,iconWarningOutline:()=>ts,iconWarningSolid:()=>as,iconWatson:()=>hs,iconWhisk:()=>ps});var l={};s.r(l),s.d(l,{iconAdd:()=>o,iconAddGlyph:()=>c,iconAddOutline:()=>n,iconAddSolid:()=>t,iconApi:()=>a,iconApis:()=>h,iconAppServices:()=>p,iconApplications:()=>r,iconApps:()=>d,iconArrowDown:()=>v,iconArrowLeft:()=>g,iconArrowRight:()=>z,iconArrowUp:()=>y,iconArrows:()=>m,iconAsleep:()=>w,iconAsleepGlyph:()=>M,iconAttachment:()=>H,iconAwake:()=>V,iconBackToTop:()=>u,iconBlockChain:()=>L,iconCalendar:()=>D,iconCaretDown:()=>f,iconCaretLeft:()=>x,iconCaretRight:()=>B,iconCaretUp:()=>C,iconCfApps:()=>S,iconChat:()=>A,iconCheckmark:()=>k,iconCheckmarkGlyph:()=>b,iconCheckmarkOutline:()=>G,iconCheckmarkSolid:()=>O,iconChevronDown:()=>P,iconChevronLeft:()=>F,iconChevronRight:()=>U,iconChevronUp:()=>E,iconClose:()=>I,iconCloseGlyph:()=>W,iconCloseOutline:()=>_,iconCloseSolid:()=>N,iconCloudFoundry:()=>R,iconCode:()=>T,iconConsole:()=>j,iconContainers:()=>q,iconCopy:()=>J,iconCopyGlyph:()=>K,iconCrash:()=>Q,iconDashboard:()=>X,iconData:()=>Y,iconDelete:()=>Z,iconDeleteGlyph:()=>$,iconDevices:()=>ii,iconDevops:()=>ei,iconDocument:()=>si,iconDollars:()=>li,iconDownload:()=>oi,iconDownloadGlyph:()=>ci,iconDraggable:()=>ni,iconEdit:()=>ti,iconEditGlyph:()=>ai,iconEmail:()=>hi,iconError:()=>pi,iconErrorGlyph:()=>ri,iconErrorOutline:()=>di,iconErrorSolid:()=>vi,iconFavorite:()=>gi,iconFavoriteOutline:()=>zi,iconFavoriteSolid:()=>yi,iconFilter:()=>mi,iconFilterGlyph:()=>wi,iconFinance:()=>Mi,iconFinancial:()=>Hi,iconFolder:()=>Vi,iconFolderAdd:()=>Li,iconFolderGlyph:()=>ui,iconForum:()=>Di,iconFunctions:()=>fi,iconGrid:()=>xi,iconHeaderAvatar:()=>Bi,iconHeaderChevron:()=>Ci,iconHeaderClose:()=>Si,iconHeaderContact:()=>Ai,iconHeaderDocs:()=>ki,iconHeaderHamburger:()=>bi,iconHeaderHelp:()=>Gi,iconHeaderNotification:()=>Oi,iconHeaderSearch:()=>Pi,iconHeaderTicket:()=>Fi,iconHeaderUser:()=>Ui,iconHelp:()=>Ei,iconHelpGlyph:()=>Ii,iconHelpOutline:()=>Wi,iconHelpSolid:()=>_i,iconHpa:()=>Ni,iconHpaStress:()=>Ri,iconInfo:()=>Ti,iconInfoGlyph:()=>ji,iconInfoOutline:()=>qi,iconInfoSolid:()=>Ji,iconInfrastructure:()=>Ki,iconIntegration:()=>Qi,iconIot:()=>Xi,iconLaunch:()=>Yi,iconLaunchGlyph:()=>Zi,iconLight:()=>$i,iconLightGlyph:()=>ie,iconLink:()=>ee,iconList:()=>se,iconLocked:()=>le,iconMaximize:()=>oe,iconMenu:()=>ce,iconMinimize:()=>ne,iconMobile:()=>te,iconNetwork:()=>ae,iconNewTab:()=>he,iconNotificationOff:()=>pe,iconNotificationOn:()=>re,iconOpenWhisk:()=>de,iconOverflowMenu:()=>ve,iconPa:()=>ge,iconPaStress:()=>ze,iconPause:()=>ye,iconPauseGlyph:()=>me,iconPauseOutline:()=>we,iconPauseSolid:()=>Me,iconPlay:()=>He,iconPlayGlyph:()=>Ve,iconPlayOutline:()=>ue,iconPlaySolid:()=>Le,iconPortfolio:()=>De,iconPower:()=>fe,iconPowerGlyph:()=>xe,iconPredictive:()=>Be,iconPurchase:()=>Ce,iconRestart:()=>Se,iconRestartGlyph:()=>Ae,iconSave:()=>ke,iconSchematics:()=>be,iconSearch:()=>Ge,iconSearchGlyph:()=>Oe,iconSecurity:()=>Pe,iconServices:()=>Fe,iconSettings:()=>Ue,iconSettingsGlyph:()=>Ee,iconStarOutline:()=>Ie,iconStarSolid:()=>We,iconStart:()=>_e,iconStartGlyph:()=>Ne,iconStartOutline:()=>Re,iconStop:()=>Te,iconStopGlyph:()=>je,iconStopOutline:()=>qe,iconStopSolid:()=>Je,iconStorage:()=>Ke,iconSubtractGlyph:()=>Qe,iconSubtractOutline:()=>Xe,iconSubtractSolid:()=>Ye,iconTerminal:()=>Ze,iconUnlock:()=>$e,iconUnlocked:()=>is,iconUpload:()=>es,iconUser:()=>ss,iconVisibilityOff:()=>ls,iconVisibilityOn:()=>os,iconWarning:()=>cs,iconWarningGlyph:()=>ns,iconWarningOutline:()=>ts,iconWarningSolid:()=>as,iconWatson:()=>hs,iconWhisk:()=>ps});var o={id:"icon--add",name:"icon--add",tags:"icon--add",styles:"",viewBox:"0 0 10 10",width:"10",height:"10",svgData:{circles:"",ellipses:"",paths:[{d:"M6 4h4v2H6v4H4V6H0V4h4V0h2v4z"}],polygons:"",polylines:"",rects:""}},c={id:"icon--add--glyph",name:"icon--add--glyph",tags:"icon--add--glyph",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm4 9H9v3H7V9H4V7h3V4h2v3h3v2z"}],polygons:"",polylines:"",rects:""}},n={id:"icon--add--outline",name:"icon--add--outline",tags:"icon--add--outline",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M8 14.5c3.6 0 6.5-2.9 6.5-6.5S11.6 1.5 8 1.5 1.5 4.4 1.5 8s2.9 6.5 6.5 6.5zM8 16c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8z"},{d:"M7 7V4h2v3h3v2H9v3H7V9H4V7h3z"}],polygons:"",polylines:"",rects:""}},t={id:"icon--add--solid",name:"icon--add--solid",tags:"icon--add--solid",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M7 7H4v2h3v3h2V9h3V7H9V4H7v3zm1 9A8 8 0 1 1 8 0a8 8 0 0 1 0 16z"}],polygons:"",polylines:"",rects:""}},a={id:"icon--api",name:"icon--api",tags:"icon--api",styles:"",viewBox:"0 0 25 24",width:"25",height:"24",svgData:{circles:"",ellipses:"",paths:[{d:"M23.4 24H.6c-.3 0-.6-.3-.6-.6s.3-.6.6-.6h22.8c.3 0 .6.3.6.6s-.3.6-.6.6zM9.5 9.7c0 .3.1.4.3.4h.3v.8c-.2 0-.6.1-.8.1-.5 0-.8-.2-.9-.6-.4.4-1.1.6-1.7.6-.9 0-1.7-.5-1.7-1.5C5 8.3 6 8.1 6.9 8c.8-.2 1.5 0 1.5-.7 0-.6-.6-.7-1-.7-.6 0-1.1.3-1.1.8H5.2c.1-1.3 1.2-1.7 2.3-1.7 1 0 2 .4 2 1.5v2.5zM8.4 8.3c-.4.3-.9.3-1.4.3-.5.1-.9.3-.9.9 0 .5.6.6 1 .6.5 0 1.2-.3 1.2-1v-.8h.1zM11 6h1.1v.7c.3-.6.9-.8 1.6-.8 1.6 0 2.4 1.2 2.4 2.7 0 1.4-.7 2.6-2.2 2.6-.6 0-1.3-.2-1.7-.8v2.5H11V6zm2.5.8c-.9 0-1.4.7-1.4 1.8 0 1 .5 1.8 1.4 1.8 1 0 1.4-.9 1.4-1.8 0-1-.5-1.8-1.4-1.8zM17 4h1v1h-1V4zm0 2h1v5h-1V6z"},{d:"M22 1.2c.4 0 .8.3.8.8v14c0 .4-.3.8-.8.8H2c-.4 0-.8-.3-.8-.8V2c0-.4.3-.8.8-.8h20zM22 0H2C.9 0 0 .9 0 2v14c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2z"}],polygons:"",polylines:"",rects:""}},h={id:"icon--apis",name:"icon--apis",tags:"icon--apis",styles:"",viewBox:"0 0 25 24",width:"25",height:"24",svgData:{circles:"",ellipses:"",paths:[{d:"M23.4 24H.6c-.3 0-.6-.3-.6-.6s.3-.6.6-.6h22.8c.3 0 .6.3.6.6s-.3.6-.6.6zM9.5 9.7c0 .3.1.4.3.4h.3v.8c-.2 0-.6.1-.8.1-.5 0-.8-.2-.9-.6-.4.4-1.1.6-1.7.6-.9 0-1.7-.5-1.7-1.5C5 8.3 6 8.1 6.9 8c.8-.2 1.5 0 1.5-.7 0-.6-.6-.7-1-.7-.6 0-1.1.3-1.1.8H5.2c.1-1.3 1.2-1.7 2.3-1.7 1 0 2 .4 2 1.5v2.5zM8.4 8.3c-.4.3-.9.3-1.4.3-.5.1-.9.3-.9.9 0 .5.6.6 1 .6.5 0 1.2-.3 1.2-1v-.8h.1zM11 6h1.1v.7c.3-.6.9-.8 1.6-.8 1.6 0 2.4 1.2 2.4 2.7 0 1.4-.7 2.6-2.2 2.6-.6 0-1.3-.2-1.7-.8v2.5H11V6zm2.5.8c-.9 0-1.4.7-1.4 1.8 0 1 .5 1.8 1.4 1.8 1 0 1.4-.9 1.4-1.8 0-1-.5-1.8-1.4-1.8zM17 4h1v1h-1V4zm0 2h1v5h-1V6z"},{d:"M22 1.2c.4 0 .8.3.8.8v14c0 .4-.3.8-.8.8H2c-.4 0-.8-.3-.8-.8V2c0-.4.3-.8.8-.8h20zM22 0H2C.9 0 0 .9 0 2v14c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2z"}],polygons:"",polylines:"",rects:""}},p={id:"icon--app-services",name:"icon--app-services",tags:"icon--app-services",styles:"",viewBox:"0 0 24 24",width:"24",height:"24",svgData:{circles:"",ellipses:"",paths:[{d:"M12 1.2l10.5 5.7L12 12.8 1.5 7.1 12 1.2zM12 0c-.2 0-.4.1-.6.2L.4 6.3c-.6.4-.6 1.2 0 1.5l11 6c.2.1.4.1.5.1.2 0 .4-.1.6-.2l11-6.1c.6-.4.6-1.2 0-1.6l-11-6H12z"},{d:"M12.1 18.9c-.3 0-.5-.1-.8-.2L.7 12.8c-.5-.2-.7-.7-.7-1.1 0-.5.2-.9.7-1.2l.6-.4c.2-.2.5-.1.7.1.2.2.1.5-.1.7l-.6.4c-.3.1-.3.3-.3.4 0 .1 0 .2.2.3l10.6 5.9c.2.1.4.1.6 0l10.5-6c.2-.1.2-.3.2-.3 0-.1 0-.2-.2-.3l-.6-.3c-.2-.1-.4-.4-.2-.7.1-.2.4-.3.7-.2l.5.3c.5.3.7.7.7 1.2s-.2.9-.7 1.2l-10.5 6c-.2 0-.5.1-.7.1z"},{d:"M12.1 24c-.3 0-.5-.1-.8-.2L.7 17.9c-.5-.2-.7-.7-.7-1.2s.2-.9.7-1.2l.6-.4c.2-.2.5-.1.7.1.1.3 0 .6-.2.8l-.6.4c-.2.1-.2.3-.2.3 0 .1 0 .2.2.3l10.6 5.9c.2.1.4.1.6 0l10.5-6c.2-.1.2-.3.2-.3 0-.1 0-.2-.2-.3l-.6-.3c-.2-.1-.4-.4-.2-.7.1-.2.4-.3.7-.2l.5.3c.5.3.7.7.7 1.2s-.2.9-.7 1.2l-10.5 6c-.2.1-.5.2-.7.2z"}],polygons:"",polylines:"",rects:""}},r={id:"icon--applications",name:"icon--applications",tags:"icon--applications",styles:"",viewBox:"0 0 23 23",width:"23",height:"23",svgData:{circles:"",ellipses:"",paths:[{d:"M5.8 1.2v4.7H1.2V1.2h4.6zM7 0H0v7h7V0zm6.8 1.2v4.7H9.2V1.2h4.6zM15 0H8v7h7V0zm6.8 1.2v4.7h-4.7V1.2h4.7zM23 0h-7v7h7V0zM5.8 9.2v4.7H1.2V9.2h4.6zM7 8H0v7h7V8zm6.8 1.2v4.7H9.2V9.2h4.6zM15 8H8v7h7V8zm6.8 1.2v4.7h-4.7V9.2h4.7zM23 8h-7v7h7V8zM5.8 17.2v4.7H1.2v-4.7h4.6zM7 16H0v7h7v-7zm6.8 1.2v4.7H9.2v-4.7h4.6zM15 16H8v7h7v-7zm6.8 1.2v4.7h-4.7v-4.7h4.7zM23 16h-7v7h7v-7z"}],polygons:"",polylines:"",rects:""}},d={id:"icon--apps",name:"icon--apps",tags:"icon--apps",styles:"",viewBox:"0 0 23 23",width:"23",height:"23",svgData:{circles:"",ellipses:"",paths:[{d:"M5.8 1.2v4.7H1.2V1.2h4.6zM7 0H0v7h7V0zm6.8 1.2v4.7H9.2V1.2h4.6zM15 0H8v7h7V0zm6.8 1.2v4.7h-4.7V1.2h4.7zM23 0h-7v7h7V0zM5.8 9.2v4.7H1.2V9.2h4.6zM7 8H0v7h7V8zm6.8 1.2v4.7H9.2V9.2h4.6zM15 8H8v7h7V8zm6.8 1.2v4.7h-4.7V9.2h4.7zM23 8h-7v7h7V8zM5.8 17.2v4.7H1.2v-4.7h4.6zM7 16H0v7h7v-7zm6.8 1.2v4.7H9.2v-4.7h4.6zM15 16H8v7h7v-7zm6.8 1.2v4.7h-4.7v-4.7h4.7zM23 16h-7v7h7v-7z"}],polygons:"",polylines:"",rects:""}},v={id:"icon--arrow--down",name:"icon--arrow--down",tags:"icon--arrow--down",styles:"",viewBox:"0 0 14 16",width:"14",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M8 11.953l3.905-4.09 1.453 1.374L7 16 .635 9.238l1.452-1.376L6 11.954V0h2v11.953z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},g={id:"icon--arrow--left",name:"icon--arrow--left",tags:"icon--arrow--left",styles:"",viewBox:"0 0 16 14",width:"16",height:"14",svgData:{circles:"",ellipses:"",paths:[{d:"M4.044 8.003l4.09 3.905-1.374 1.453-6.763-6.356L6.759.639 8.135 2.09 4.043 6.003h11.954v2H4.044z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},z={id:"icon--arrow--right",name:"icon--arrow--right",tags:"icon--arrow--right",styles:"",viewBox:"0 0 16 14",width:"16",height:"14",svgData:{circles:"",ellipses:"",paths:[{d:"M11.95 5.997L7.86 2.092 9.233.639l6.763 6.356-6.763 6.366L7.86 11.91l4.092-3.912H-.003v-2h11.952z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},y={id:"icon--arrow--up",name:"icon--arrow--up",tags:"icon--arrow--up",styles:"",viewBox:"0 0 14 16",width:"14",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M5.993 4.047l-3.905 4.09L.635 6.763 6.992 0l6.366 6.762-1.452 1.376-3.913-4.092V16h-2V4.047z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},m={id:"icon--arrows",name:"icon--arrows",tags:"icon--arrows",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M12 14.186l2.724-2.477.686.726-3.875 3.524-3.875-3.524.686-.726L11 14.122V0h1v14.186zM5.038 1.805V16h-1V1.805L1.348 4.25l-.685-.727L4.538 0l3.875 3.523-.686.727-2.69-2.445z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},w={id:"icon--asleep",name:"icon--asleep",tags:"icon--asleep",styles:"",viewBox:"0 0 15 16",width:"15",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M14 12c-3.8-.2-6.8-3.3-6.8-7.1 0-1.4.4-2.8 1.3-4V.8c.1-.1.1-.2.1-.3 0-.3-.2-.5-.5-.5H8C3.6 0 0 3.6 0 8s3.6 8 8 8c2.5 0 4.8-1.2 6.3-3.1.2-.2.2-.5.1-.7-.1-.1-.3-.2-.4-.2zm-6 3c-3.9 0-7-3.1-7-7 0-3.6 2.6-6.6 6.2-7-2.1 4-.6 8.9 3.3 11 .8.4 1.6.7 2.5.9-1.3 1.4-3.1 2.1-5 2.1z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},M={id:"icon--asleep--glyph",name:"icon--asleep--glyph",tags:"icon--asleep--glyph",styles:"",viewBox:"0 0 14 17",width:"14",height:"17",svgData:{circles:"",ellipses:"",paths:[{d:"M12.043 3.505c-1.5-2.3-4.1-3.6-6.8-3.5-.301 0-.501.1-.601.4-.1.2 0 .4.2.6.3.3.5.6.7.9 1.2 1.9 1.5 4.3.8 6.4-1 2.5-3.2 4.3-5.8 4.7-.2 0-.4.2-.5.4-.1.2 0 .4.1.6 1.5 1.3 3.4 2 5.3 2 .6 0 1.3-.1 1.9-.2 2.6-.7 4.6-2.5 5.601-5 1-2.5.7-5.2-.9-7.3z"}],polygons:"",polylines:"",rects:""}},H={id:"icon--attachment",name:"icon--attachment",tags:"icon--attachment",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M3.498 7.54l-.707.706L1.124 6.58A3.858 3.858 0 1 1 6.58 1.123l8.31 8.311a3.838 3.838 0 0 1 0 5.429 3.883 3.883 0 0 1-5.484 0L6.17 11.625A2.599 2.599 0 0 1 9.845 7.95l1.484 1.484-.707.707-1.484-1.484a1.599 1.599 0 1 0-2.262 2.261l3.237 3.237a2.878 2.878 0 0 0 4.059.012 2.842 2.842 0 0 0 .011-4.026l-8.31-8.31a2.858 2.858 0 0 0-4.043 4.04L3.498 7.54z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},V={id:"icon--awake",name:"icon--awake",tags:"icon--awake",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M7.5 0h1v3h-1zm0 13h1v3h-1zM16 7.5v1h-3v-1zm-13 0v1H0v-1zM1.99 2.697l.707-.707 2.121 2.12-.707.708zm9.192 9.193l.707-.708 2.121 2.121-.707.707zm2.121-9.9l.707.707-2.12 2.121-.708-.707zM4.11 11.182l.708.707-2.121 2.121-.707-.707zM8 10.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm0 1a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},u={id:"icon--back-to-top",name:"icon--back-to-top",tags:"icon--back-to-top",styles:"",viewBox:"0 0 11 16",width:"11",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M0 1V0h11v1zm5 3.984L.862 9.357.135 8.67 5.502 3l5.363 5.673-.727.687-4.137-4.376V16H5V4.984z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},L={id:"icon--block-chain",name:"icon--block-chain",tags:"icon--block-chain",styles:"",viewBox:"0 0 21 24",width:"21",height:"24",svgData:{circles:"",ellipses:"",paths:[{d:"M9.5 1c.9 0 1.5.7 1.5 1.5S10.4 4 9.5 4C8.7 4 8 3.3 8 2.5S8.7 1 9.5 1zm0-1C8.2 0 7 1.1 7 2.5S8.2 5 9.5 5 12 3.9 12 2.5 10.9 0 9.5 0zM17 4l-3 1.7v2.4L10.3 6 5 9v3.6l-2-1.1-3 1.7v3.5l3 1.7 3-1.7v-1.1l4.5 2.4 5-3v-4.9l1.5.9 3-1.7V5.8L17 4zm-6.7 3.2l3.8 2.1-3.5 1.8-4-1.8 3.7-2.1zM5 16.1l-2 1.2-2-1.1v-2.3l2-1.2 2 1.1v2.3zm1-5.9l4 1.8v4.6l-4-2.2v-4.2zm5 6.3V12l3.5-1.8v4.2L11 16.5zm8-7.8l-2 1.2-2-1.2V6.3l2-1.2 2 1.2v2.4zM2.5 4C3.4 4 4 4.7 4 5.5S3.4 7 2.5 7 1 6.3 1 5.5 1.7 4 2.5 4zm0-1C1.1 3 0 4.1 0 5.5S1.1 8 2.5 8 5 6.9 5 5.5 3.9 3 2.5 3zm9 17c.8 0 1.5.7 1.5 1.5s-.6 1.5-1.5 1.5-1.5-.7-1.5-1.5.7-1.5 1.5-1.5zm0-1C10.1 19 9 20.1 9 21.5s1.1 2.5 2.5 2.5 2.5-1.1 2.5-2.5-1.1-2.5-2.5-2.5zm7-3c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5-1.5-.7-1.5-1.5.7-1.5 1.5-1.5zm0-1c-1.4 0-2.5 1.1-2.5 2.5s1.1 2.5 2.5 2.5 2.5-1.1 2.5-2.5-1.1-2.5-2.5-2.5z"}],polygons:"",polylines:"",rects:""}},D={id:"icon--calendar",name:"icon--calendar",tags:"icon--calendar",styles:"",viewBox:"0 0 14 16",width:"14",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M0 5h14v1H0V5zm3-5h1v4H3V0zm7 0h1v4h-1V0zM0 2.5A1.5 1.5 0 0 1 1.5 1h11A1.5 1.5 0 0 1 14 2.5v12a1.5 1.5 0 0 1-1.5 1.5h-11A1.5 1.5 0 0 1 0 14.5v-12zm1 0v12a.5.5 0 0 0 .5.5h11a.5.5 0 0 0 .5-.5v-12a.5.5 0 0 0-.5-.5h-11a.5.5 0 0 0-.5.5z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},f={id:"icon--caret--down",name:"icon--caret--down",tags:"icon--caret--down",styles:"",viewBox:"0 0 10 5",width:"10",height:"5",svgData:{circles:"",ellipses:"",paths:[{d:"M0 0l5 4.998L10 0z"}],polygons:"",polylines:"",rects:""}},x={id:"icon--caret--left",name:"icon--caret--left",tags:"icon--caret--left",styles:"",viewBox:"0 0 5 10",width:"5",height:"10",svgData:{circles:"",ellipses:"",paths:[{d:"M4.998 10L0 5l4.998-5z"}],polygons:"",polylines:"",rects:""}},B={id:"icon--caret--right",name:"icon--caret--right",tags:"icon--caret--right",styles:"",viewBox:"0 0 5 10",width:"5",height:"10",svgData:{circles:"",ellipses:"",paths:[{d:"M0 10l4.998-5L0 0z"}],polygons:"",polylines:"",rects:""}},C={id:"icon--caret--up",name:"icon--caret--up",tags:"icon--caret--up",styles:"",viewBox:"0 0 10 5",width:"10",height:"5",svgData:{circles:"",ellipses:"",paths:[{d:"M0 5L5 .002 10 5z"}],polygons:"",polylines:"",rects:""}},S={id:"icon--cf-apps",name:"icon--cf-apps",tags:"icon--cf-apps",styles:"",viewBox:"0 0 24 18",width:"24",height:"18",svgData:{circles:"",ellipses:"",paths:[{d:"M12.2 10.5c-.1-.5-.6-.9-1.2-.9-1.1 0-1.5.9-1.5 1.9 0 .9.4 1.8 1.5 1.8.7 0 1.1-.5 1.2-1.2h1.2c-.1 1.4-1 2.2-2.4 2.2-1.7 0-2.7-1.3-2.7-2.8 0-1.6 1-2.9 2.7-2.9 1.2 0 2.2.7 2.3 2h-1.1v-.1zm1.9-1.8h3.8v1h-2.6V11h2.3v.9h-2.3v2.2h-1.2V8.7z"},{d:"M13.6 1.2c3 0 5.4 2.4 5.5 5.4v.8l.7.3c1.8.7 2.9 2.4 2.9 4.4 0 2.6-2 4.7-4.5 4.7H5.6c-2.5-.1-4.5-2.2-4.5-4.7 0-2.6 2.1-4.8 4.7-4.8.3 0 .6 0 .9.1l1.3.2.1-1.3c.3-2.9 2.6-5.1 5.5-5.1zm0-1.2c-3.5 0-6.4 2.7-6.7 6.2-.3-.1-.7-.1-1-.1C2.6 6.1 0 8.7 0 12c0 3.2 2.5 5.8 5.6 5.9h12.7c3.2 0 5.7-2.6 5.7-5.9 0-2.5-1.5-4.6-3.7-5.5-.1-3.6-3.1-6.5-6.7-6.5z"}],polygons:"",polylines:"",rects:""}},A={id:"icon--chat",name:"icon--chat",tags:"icon--chat",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M3 8V7h6v1zm0-3V4h10v1z"},{d:"M11.7 12l-3.9 4-.7-.7 4.1-4.3H14c.6 0 1-.4 1-1V2c0-.6-.4-1-1-1H2c-.6 0-1 .4-1 1v8c0 .6.4 1 1 1h5.5v1H2c-1.1 0-2-.9-2-2V2C0 .9.9 0 2 0h12c1.1 0 2 .9 2 2v8c0 1.1-.9 2-2 2h-2.3z"}],polygons:"",polylines:"",rects:""}},k={id:"icon--checkmark",name:"icon--checkmark",tags:"icon--checkmark",styles:"",viewBox:"0 0 10 8",width:"10",height:"8",svgData:{circles:"",ellipses:"",paths:[{"fill-rule":"nonzero",d:"M8.498 0L10 1.502 3.672 7.83 0 4.158l1.502-1.502 2.17 2.17z"}],polygons:"",polylines:"",rects:""}},b={id:"icon--checkmark--glyph",name:"icon--checkmark--glyph",tags:"icon--checkmark--glyph",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zM6.7 11.5L3.4 8.1l1.4-1.4 1.9 1.9 4.1-4.1 1.4 1.4-5.5 5.6z"}],polygons:"",polylines:"",rects:""}},G={id:"icon--checkmark--outline",name:"icon--checkmark--outline",tags:"icon--checkmark--outline",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M8 14.5c3.6 0 6.5-2.9 6.5-6.5S11.6 1.5 8 1.5 1.5 4.4 1.5 8s2.9 6.5 6.5 6.5zM8 16c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8z"},{d:"M11.3 4.7l1.4 1.4L6.8 12 3.3 8.6l1.4-1.4 2.1 2z"}],polygons:"",polylines:"",rects:""}},O={id:"icon--checkmark--solid",name:"icon--checkmark--solid",tags:"icon--checkmark--solid",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16zm3.293-11.332L6.75 9.21 4.707 7.168 3.293 8.582 6.75 12.04l5.957-5.957-1.414-1.414z"}],polygons:"",polylines:"",rects:""}},P={id:"icon--chevron--down",name:"icon--chevron--down",tags:"icon--chevron--down",styles:"",viewBox:"0 0 12 7",width:"12",height:"7",svgData:{circles:"",ellipses:"",paths:[{"fill-rule":"nonzero",d:"M6.002 5.55L11.27 0l.726.685L6.003 7 0 .685.726 0z"}],polygons:"",polylines:"",rects:""}},F={id:"icon--chevron--left",name:"icon--chevron--left",tags:"icon--chevron--left",styles:"",viewBox:"0 0 7 12",width:"7",height:"12",svgData:{circles:"",ellipses:"",paths:[{"fill-rule":"nonzero",d:"M1.45 6.002L7 11.27l-.685.726L0 6.003 6.315 0 7 .726z"}],polygons:"",polylines:"",rects:""}},U={id:"icon--chevron--right",name:"icon--chevron--right",tags:"icon--chevron--right",styles:"",viewBox:"0 0 7 12",width:"7",height:"12",svgData:{circles:"",ellipses:"",paths:[{"fill-rule":"nonzero",d:"M5.569 5.994L0 .726.687 0l6.336 5.994-6.335 6.002L0 11.27z"}],polygons:"",polylines:"",rects:""}},E={id:"icon--chevron--up",name:"icon--chevron--up",tags:"icon--chevron--up",styles:"",viewBox:"0 0 12 7",width:"12",height:"7",svgData:{circles:"",ellipses:"",paths:[{"fill-rule":"nonzero",d:"M5.994 1.45L.726 7 0 6.315 5.994 0l6.002 6.315L11.27 7z"}],polygons:"",polylines:"",rects:""}},I={id:"icon--close",name:"icon--close",tags:"icon--close",styles:"",viewBox:"0 0 10 10",width:"10",height:"10",svgData:{circles:"",ellipses:"",paths:[{d:"M6.32 5L10 8.68 8.68 10 5 6.32 1.32 10 0 8.68 3.68 5 0 1.32 1.32 0 5 3.68 8.68 0 10 1.32 6.32 5z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},W={id:"icon--close--glyph",name:"icon--close--glyph",tags:"icon--close--glyph",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm3.5 10.1l-1.4 1.4L8 9.4l-2.1 2.1-1.4-1.4L6.6 8 4.5 5.9l1.4-1.4L8 6.6l2.1-2.1 1.4 1.4L9.4 8l2.1 2.1z"}],polygons:"",polylines:"",rects:""}},_={id:"icon--close--outline",name:"icon--close--outline",tags:"icon--close--outline",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M8 14.5c3.6 0 6.5-2.9 6.5-6.5S11.6 1.5 8 1.5 1.5 4.4 1.5 8s2.9 6.5 6.5 6.5zM8 16c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8z"},{d:"M8 6.6l2.1-2.1 1.4 1.4L9.4 8l2.1 2.1-1.4 1.4L8 9.4l-2.1 2.1-1.4-1.4L6.6 8 4.5 5.9l1.4-1.4L8 6.6z"}],polygons:"",polylines:"",rects:""}},N={id:"icon--close--solid",name:"icon--close--solid",tags:"icon--close--solid",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M8 6.586L5.879 4.464 4.464 5.88 6.586 8l-2.122 2.121 1.415 1.415L8 9.414l2.121 2.122 1.415-1.415L9.414 8l2.122-2.121-1.415-1.415L8 6.586zM8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16z"}],polygons:"",polylines:"",rects:""}},R={id:"icon--cloud-foundry",name:"icon--cloud-foundry",tags:"icon--cloud-foundry",styles:"",viewBox:"0 0 24 18",width:"24",height:"18",svgData:{circles:"",ellipses:"",paths:[{d:"M12.2 10.5c-.1-.5-.6-.9-1.2-.9-1.1 0-1.5.9-1.5 1.9 0 .9.4 1.8 1.5 1.8.7 0 1.1-.5 1.2-1.2h1.2c-.1 1.4-1 2.2-2.4 2.2-1.7 0-2.7-1.3-2.7-2.8 0-1.6 1-2.9 2.7-2.9 1.2 0 2.2.7 2.3 2h-1.1v-.1zm1.9-1.8h3.8v1h-2.6V11h2.3v.9h-2.3v2.2h-1.2V8.7z"},{d:"M13.6 1.2c3 0 5.4 2.4 5.5 5.4v.8l.7.3c1.8.7 2.9 2.4 2.9 4.4 0 2.6-2 4.7-4.5 4.7H5.6c-2.5-.1-4.5-2.2-4.5-4.7 0-2.6 2.1-4.8 4.7-4.8.3 0 .6 0 .9.1l1.3.2.1-1.3c.3-2.9 2.6-5.1 5.5-5.1zm0-1.2c-3.5 0-6.4 2.7-6.7 6.2-.3-.1-.7-.1-1-.1C2.6 6.1 0 8.7 0 12c0 3.2 2.5 5.8 5.6 5.9h12.7c3.2 0 5.7-2.6 5.7-5.9 0-2.5-1.5-4.6-3.7-5.5-.1-3.6-3.1-6.5-6.7-6.5z"}],polygons:"",polylines:"",rects:""}},T={id:"icon--code",name:"icon--code",tags:"icon--code",styles:"",viewBox:"0 0 16 10",width:"16",height:"10",svgData:{circles:"",ellipses:"",paths:[{d:"M1.363 5.098l2.928 3.16-.733.68L0 5.098l3.558-3.84.733.68zm13.274 0l-2.928-3.16.733-.68L16 5.098l-3.558 3.84-.733-.68zM6.466 10l-.927-.388L9.56 0l.927.388z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},j={id:"icon--console",name:"icon--console",tags:"icon--console",styles:"",viewBox:"0 0 24 24",width:"24",height:"24",svgData:{circles:"",ellipses:"",paths:[{d:"M0 0v24h24V0H0zm1 23V7h8v16H1zm22 0H10v-8h13v8zm0-9H10V7h13v7zM1 6V1h22v5H1z"}],polygons:"",polylines:"",rects:""}},q={id:"icon--containers",name:"icon--containers",tags:"icon--containers",styles:"",viewBox:"0 0 24 24",width:"24",height:"24",svgData:{circles:"",ellipses:"",paths:[{d:"M21.7 5.8L13.5.4c-.9-.6-2.2-.6-3.1 0L2.2 5.9c-.4.3-.7.6-.9 1.1 0 0-.3.6-.3 1.3v7.6c0 .9.5 1.7 1.3 2.2l8.2 5.4c.5.3 1 .5 1.5.5s1.1-.2 1.6-.5l8.2-5.4c.8-.5 1.2-1.3 1.2-2.2V8.3c0-.3.1-1.5-1.3-2.5zm-18.9.9L11 1.3c.6-.4 1.4-.4 1.9 0l8.2 5.4c.3.2.6.5.7.9L16 11.2l-.4.3L13 9.6c-.6-.4-1.3-.4-1.9 0l-2.6 1.7-6.3-3.8c.1-.3.3-.6.6-.8zm11.9 5.4l-2.3 1.5c-.2.1-.5.1-.7 0L9.4 12l2.3-1.5c.2-.1.5-.1.7 0l2.3 1.6zm7.3 3.8c0 .6-.3 1.1-.8 1.4L13 22.7c-.6.4-1.4.4-1.9 0l-8.3-5.4C2.3 17 2 16.5 2 16V8.6l6.2 3.8 2.9 2c.6.4 1.3.4 1.9 0l2.9-1.9L22 8.6v7.3z"}],polygons:"",polylines:"",rects:""}},J={id:"icon--copy",name:"icon--copy",tags:"icon--copy",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M1 10H0V2C0 .9.9 0 2 0h8v1H2c-.6 0-1 .5-1 1v8z"},{d:"M11 4.2V8h3.8L11 4.2zM15 9h-4c-.6 0-1-.4-1-1V4H4.5c-.3 0-.5.2-.5.5v10c0 .3.2.5.5.5h10c.3 0 .5-.2.5-.5V9zm-4-6c.1 0 .3.1.4.1l4.5 4.5c0 .1.1.3.1.4v6.5c0 .8-.7 1.5-1.5 1.5h-10c-.8 0-1.5-.7-1.5-1.5v-10C3 3.7 3.7 3 4.5 3H11z"}],polygons:"",polylines:"",rects:""}},K={id:"icon--copy--glyph",name:"icon--copy--glyph",tags:"icon--copy--glyph",styles:"",viewBox:"0 0 14 16",width:"14",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M10 4V0H0v12h4v4h10V4h-4zm-6 6H2V2h6v2H4v6zm8 4H6V6h6v8z"},{d:"M7 7h4v2H7zm0 3h4v2H7z"}],polygons:"",polylines:"",rects:""}},Q={id:"icon--crash",name:"icon--crash",tags:"icon--crash",styles:"",viewBox:"0 0 24 17",width:"24",height:"17",svgData:{circles:"",ellipses:"",paths:[{d:"M21 10l3 3-3 3v-2.5h-2.153A.986.986 0 0 1 18 14c-.086 0-.164-.028-.244-.05l-1.805 1.806c.022.08.05.158.05.244a1 1 0 1 1-2 0c0-.18.06-.342.145-.488L10.995 10a.988.988 0 0 1-.953-.792l-1.39-.464C8.475 8.898 8.25 9 8 9s-.476-.102-.65-.256l-1.392.464A.985.985 0 0 1 5 10a1 1 0 0 1-1-1c0-.038.018-.07.022-.108L1.392 6.92A1 1 0 1 1 2 6c0 .038-.018.07-.022.108l2.63 1.972a.978.978 0 0 1 1.042.176l1.392-.464A.985.985 0 0 1 8 7c.48 0 .86.343.958.792l1.39.464c.16-.14.36-.228.586-.242l3.24-6.482A.989.989 0 0 1 14 1a1 1 0 1 1 2 0c0 .14-.03.27-.08.393l1.97 2.627c.037-.002.07-.02.108-.02.366 0 .673.207.847.5H21V2l3 3-3 3V5.5h-2.153A.986.986 0 0 1 18 6a1 1 0 0 1-.92-1.393L15.108 1.98c-.014 0-.028.006-.043.006l-3.24 6.482c.1.156.175.332.175.532 0 .18-.06.342-.146.488L15.004 15c.086.002.16.03.24.05l1.805-1.806c-.022-.08-.05-.158-.05-.244a1 1 0 0 1 1-1c.366 0 .673.207.847.5H21V10z"}],polygons:"",polylines:"",rects:""}},X={id:"icon--dashboard",name:"icon--dashboard",tags:"icon--dashboard",styles:"",viewBox:"0 0 24 24",width:"24",height:"24",svgData:{circles:"",ellipses:"",paths:[{d:"M0 0v24h24V0H0zm1 23V7h8v16H1zm22 0H10v-8h13v8zm0-9H10V7h13v7zM1 6V1h22v5H1z"}],polygons:"",polylines:"",rects:""}},Y={id:"icon--data",name:"icon--data",tags:"icon--data",styles:"",viewBox:"0 0 24 24",width:"24",height:"24",svgData:{circles:"",ellipses:"",paths:[{d:"M0 0v24h24V0H0zm22.1 7l-7.2 8.9-9.2-3.8c-.2-.1-.4 0-.6.1L1 16.6V7h21.1zm.9 16H1v-4.9l4.6-5 9.2 3.8c.2.1.4 0 .6-.1L23 7.5V23zm0-17H1V1h22v5z"}],polygons:"",polylines:"",rects:""}},Z={id:"icon--delete",name:"icon--delete",tags:"icon--delete",styles:"",viewBox:"0 0 12 16",width:"12",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M11 4v11c0 .6-.4 1-1 1H2c-.6 0-1-.4-1-1V4H0V3h12v1h-1zM2 4v11h8V4H2z"},{d:"M4 6h1v7H4zm3 0h1v7H7zM3 1V0h6v1z"}],polygons:"",polylines:"",rects:""}},$={id:"icon--delete--glyph",name:"icon--delete--glyph",tags:"icon--delete--glyph",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M5 0h6v2H5zM2 3v3h1v10h10V6h1V3H2zm5 11H5V7h2v7zm4 0H9V7h2v7z"}],polygons:"",polylines:"",rects:""}},ii={id:"icon--devices",name:"icon--devices",tags:"icon--devices",styles:"",viewBox:"0 0 24 23",width:"24",height:"23",svgData:{circles:"",ellipses:"",paths:[{d:"M20.5 17c1.4 0 2.5 1.1 2.5 2.5S21.9 22 20.5 22h-17C2.1 22 1 20.9 1 19.5S2.1 17 3.5 17h17zm0-1h-17C1.6 16 0 17.6 0 19.5S1.6 23 3.5 23h17c1.9 0 3.5-1.6 3.5-3.5S22.4 16 20.5 16z"},{d:"M19.5 20h-15c-.3 0-.5-.2-.5-.5s.2-.5.5-.5h15c.3 0 .5.2.5.5s-.2.5-.5.5zm1-11c1.4 0 2.5 1.1 2.5 2.5S21.9 14 20.5 14h-17C2.1 14 1 12.9 1 11.5S2.1 9 3.5 9h17zm0-1h-17C1.6 8 0 9.6 0 11.5S1.6 15 3.5 15h17c1.9 0 3.5-1.6 3.5-3.5S22.4 8 20.5 8z"},{d:"M19.5 12h-15c-.3 0-.5-.2-.5-.5s.2-.5.5-.5h15c.3 0 .5.2.5.5s-.2.5-.5.5zm1-11C21.9 1 23 2.1 23 3.5S21.9 6 20.5 6h-17C2.1 6 1 4.9 1 3.5S2.1 1 3.5 1h17zm0-1h-17C1.6 0 0 1.6 0 3.5S1.6 7 3.5 7h17C22.4 7 24 5.4 24 3.5S22.4 0 20.5 0z"},{d:"M19.5 4h-15c-.3 0-.5-.2-.5-.5s.2-.5.5-.5h15c.3 0 .5.2.5.5s-.2.5-.5.5z"}],polygons:"",polylines:"",rects:""}},ei={id:"icon--devops",name:"icon--devops",tags:"icon--devops",styles:"",viewBox:"0 0 24 24",width:"24",height:"24",svgData:{circles:"",ellipses:"",paths:[{d:"M21 13V3h-3v1h2v9h-3v11h7V13h-3zm2 10h-5v-9h5v9zM17 3.5L11 0v3H3v13h1V4h7v3l6-3.5zm-5-1.8l3 1.8-3 1.8V1.7zM16 20H6.4c-.3-1.4-1.6-2.5-3.2-2.5C1.4 17.5 0 19 0 20.7 0 22.5 1.5 24 3.2 24c1.7 0 3.1-1.3 3.2-3h9.5l.1-1zM3.2 23C2 23 1 22 1 20.7c0-1.2 1-2.2 2.2-2.2 1.2 0 2.2 1 2.2 2.2.1 1.3-.9 2.3-2.2 2.3z"}],polygons:"",polylines:"",rects:""}},si={id:"icon--document",name:"icon--document",tags:"icon--document",styles:"",viewBox:"0 0 12 16",width:"12",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M10.581 3.996L8.014 1.429l.026 2.559 2.541.008zM7.011 1H1v14h10V4.997l-2.963-.01a1 1 0 0 1-.997-.99L7.01 1zM1 0h7l4 4v11a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1V1a1 1 0 0 1 1-1z","fill-rule":"nonzero"},{d:"M3 9h6v1H3zm0 3h6v1H3z"}],polygons:"",polylines:"",rects:""}},li={id:"icon--dollars",name:"icon--dollars",tags:"icon--dollars",styles:"",viewBox:"0 0 24 24",width:"24",height:"24",svgData:{circles:"",ellipses:"",paths:[{d:"M22.462 10.59l-3.404-9.04-6.834 2.61a1.745 1.745 0 0 0-1.002 2.243c.19.506.226 1.03.155 1.53a3.34 3.34 0 0 1 3.746 2.11c.655 1.742-.214 3.69-1.942 4.35l.502 1.332c.134-1.106.843-2.104 1.945-2.526l6.835-2.61zm-8.617 6.6c-.012-.032-.014-.062-.025-.09-.275.07-.553.12-.834.12a3.314 3.314 0 0 1-3.098-2.156c-.647-1.72.216-3.652 1.923-4.306L11.1 8.86a3.057 3.057 0 0 1-1.658 1.533l-7.9 3.02 3.4 9.038 7.903-3.02a1.742 1.742 0 0 0 1.002-2.24zm10.096-5.93a.673.673 0 0 1-.374.354l-7.46 2.852a1.712 1.712 0 0 0-.965.912 1.742 1.742 0 0 0-.038 1.33c.6 1.595-.2 3.383-1.783 3.988l-8.53 3.26a.658.658 0 0 1-.514-.016.672.672 0 0 1-.353-.376L.043 13.26a.682.682 0 0 1 .39-.874l8.53-3.26a1.744 1.744 0 0 0 1.003-2.24c-.6-1.597.2-3.385 1.782-3.99l7.46-2.852a.672.672 0 0 1 .868.393l3.88 10.303a.684.684 0 0 1-.015.52zM18.19 9.635a1.515 1.515 0 0 0 1.958.888 1.534 1.534 0 0 0 .88-1.973 1.515 1.515 0 0 0-1.958-.886 1.533 1.533 0 0 0-.88 1.972zm.178-3.838a.678.678 0 0 0 .39-.873l-.72-1.912a.675.675 0 0 0-.868-.393.682.682 0 0 0-.39.874l.72 1.91a.68.68 0 0 0 .63.438.69.69 0 0 0 .238-.044zM6.06 14.123a1.516 1.516 0 0 0-1.958-.888 1.53 1.53 0 0 0-.88 1.972 1.513 1.513 0 0 0 1.956.888 1.53 1.53 0 0 0 .88-1.972zm.912 5.995a.678.678 0 0 1-.628.918.674.674 0 0 1-.628-.436l-.72-1.912a.68.68 0 0 1 .39-.874.675.675 0 0 1 .866.392l.72 1.912z"}],polygons:"",polylines:"",rects:""}},oi={id:"icon--download",name:"icon--download",tags:"icon--download",styles:"",viewBox:"0 0 14 16",width:"14",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M7.5 11l4.1-4.4.7.7L7 13 1.6 7.3l.7-.7L6.5 11V0h1v11zm5.5 4v-2h1v2c0 .6-.4 1-1 1H1c-.6 0-1-.4-1-1v-2h1v2h12z"}],polygons:"",polylines:"",rects:""}},ci={id:"icon--download--glyph",name:"icon--download--glyph",tags:"icon--download--glyph",styles:"",viewBox:"-1 2 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M8 9V2H6.1v7L3.5 6.5 2 8l5 5 5-5-1.5-1.5L8 9z"},{d:"M13 12v3H1v-3h-2v6h16v-6h-2z"}],polygons:"",polylines:"",rects:""}},ni={id:"icon--draggable",name:"icon--draggable",tags:"icon--draggable",styles:"",viewBox:"0 0 6 14",width:"6",height:"14",svgData:{circles:"",ellipses:"",paths:[{d:"M0 0h2v2H0zm4 0h2v2H4zM0 6h2v2H0zm4 0h2v2H4zm-4 6h2v2H0zm4 0h2v2H4z"}],polygons:"",polylines:"",rects:""}},ti={id:"icon--edit",name:"icon--edit",tags:"icon--edit",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M7.926 3.38L1.002 9.72V12h2.304l6.926-6.316L7.926 3.38zm.738-.675l2.308 2.304 1.451-1.324-2.308-2.309-1.451 1.329zM.002 9.28L9.439.639a1 1 0 0 1 1.383.03l2.309 2.309a1 1 0 0 1-.034 1.446L3.694 13H.002V9.28zM0 16.013v-1h16v1z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},ai={id:"icon--edit--glyph",name:"icon--edit--glyph",tags:"icon--edit--glyph",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M2.032 10.924l7.99-7.99 2.97 2.97-7.99 7.99zm9.014-8.91l1.98-1.98 2.97 2.97-1.98 1.98zM0 16l3-1-2-2z"}],polygons:"",polylines:"",rects:""}},hi={id:"icon--email",name:"icon--email",tags:"icon--email",styles:"",viewBox:"0 0 16 11",width:"16",height:"11",svgData:{circles:"",ellipses:"",paths:[{d:"M2.028 1l5.977 4.38L13.974 1H2.028zM15 1.487L8.3 6.403a.5.5 0 0 1-.59 0L1 1.486V10h14V1.487zM1 0h14a1 1 0 0 1 1 1v9a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1V1a1 1 0 0 1 1-1z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},pi={id:"icon--error",name:"icon--error",tags:"icon--error",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16zM4 4.65L11.35 12l.65-.65L4.65 4 4 4.65z"}],polygons:"",polylines:"",rects:""}},ri={id:"icon--error--glyph",name:"icon--error--glyph",tags:"icon--error--glyph",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zM5.1 13.3L3.5 12 11 2.6l1.5 1.2-7.4 9.5z"}],polygons:"",polylines:"",rects:""}},di={id:"icon--error--outline",name:"icon--error--outline",tags:"icon--error--outline",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M2.751 4.165a6.5 6.5 0 0 0 9.084 9.084L2.75 4.165zm1.414-1.414l9.084 9.084A6.5 6.5 0 0 0 4.165 2.75zM8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},vi={id:"icon--error--solid",name:"icon--error--solid",tags:"icon--error--solid",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16zM3.293 4.707l8 8 1.414-1.414-8-8-1.414 1.414z"}],polygons:"",polylines:"",rects:""}},gi={id:"icon--favorite",name:"icon--favorite",tags:"icon--favorite",styles:"",viewBox:"0 0 16 15",width:"16",height:"15",svgData:{circles:"",ellipses:"",paths:[{d:"M8.109 11.75l-4.5 3.2c-.2.1-.5 0-.4-.3l1.5-5.1-4.6-3.2c-.2-.2-.1-.5.1-.5l5.5-.5 2-5.2c.1-.2.4-.2.5 0l2 5.2 5.5.5c.2 0 .3.3.1.4l-4.5 3.3 1.5 5.1c.1.2-.2.4-.4.3l-4.3-3.2z"}],polygons:"",polylines:"",rects:""}},zi={id:"icon--favorite--outline",name:"icon--favorite--outline",tags:"icon--favorite--outline",styles:"",viewBox:"0 0 16 14",width:"16",height:"14",svgData:{circles:"",ellipses:"",paths:[{d:"M11.58 1a3.41 3.41 0 0 1 2.21 6L8 12.49 2.15 7a3.42 3.42 0 1 1 5-4.55L8 3.54l.81-1.12A3.43 3.43 0 0 1 11.58 1m0-1A4.39 4.39 0 0 0 8 1.84a4.41 4.41 0 1 0-6.51 5.88L8 13.87l6.46-6.08A4.42 4.42 0 0 0 11.58 0z"}],polygons:"",polylines:"",rects:""}},yi={id:"icon--favorite--solid",name:"icon--favorite--solid",tags:"icon--favorite--solid",styles:"",viewBox:"0 0 16 14",width:"16",height:"14",svgData:{circles:"",ellipses:"",paths:[{d:"M1.49 7.72A4.41 4.41 0 1 1 8 1.84a4.42 4.42 0 1 1 6.44 6L8 13.87z"}],polygons:"",polylines:"",rects:""}},mi={id:"icon--filter",name:"icon--filter",tags:"icon--filter",styles:"",viewBox:"0 0 16 12",width:"16",height:"12",svgData:{circles:"",ellipses:"",paths:[{d:"M8.05 2a2.5 2.5 0 0 1 4.9 0H16v1h-3.05a2.5 2.5 0 0 1-4.9 0H0V2h8.05zm2.45 2a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zM3.05 9a2.5 2.5 0 0 1 4.9 0H16v1H7.95a2.5 2.5 0 0 1-4.9 0H0V9h3.05zm2.45 2a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},wi={id:"icon--filter--glyph",name:"icon--filter--glyph",tags:"icon--filter--glyph",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M5 0C3.7 0 2.6.8 2.2 2H0v2h2.2C2.6 5.2 3.7 6 5 6c1.3 0 2.4-.8 2.8-2H16V2H7.8C7.4.8 6.3 0 5 0zm0 4c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1zm0 6c-1.3 0-2.4.8-2.8 2H0v2h2.2c.4 1.2 1.5 2 2.8 2 1.3 0 2.4-.8 2.8-2H16v-2H7.8c-.4-1.2-1.5-2-2.8-2zm0 4c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1z"},{d:"M11 5c-1.3 0-2.4.8-2.8 2H0v2h8.2c.4 1.2 1.5 2 2.8 2 1.3 0 2.4-.8 2.8-2H16V7h-2.2c-.4-1.2-1.5-2-2.8-2zm0 4c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1z"}],polygons:"",polylines:"",rects:""}},Mi={id:"icon--finance",name:"icon--finance",tags:"icon--finance",styles:"",viewBox:"4 -4 24 24",width:"24",height:"24",svgData:{circles:"",ellipses:"",paths:[{d:"M21 14h1V4h-1v10zm3 0h1V4h-1v10zM27 .7L16-2.9 5 .7V2h22V.7zm1-.7v3H4V0l12-4 12 4zM5 19h22v-3H5v3zm23-3v3c0 .6-.4 1-1 1H5c-.6 0-1-.4-1-1v-3c0-.6.4-1 1-1h22c.6 0 1 .4 1 1zm-18-2h1V4h-1v10zm-3 0h1V4H7v10z"}],polygons:"",polylines:"",rects:""}},Hi={id:"icon--financial",name:"icon--financial",tags:"icon--financial",styles:"",viewBox:"4 -4 24 24",width:"24",height:"24",svgData:{circles:"",ellipses:"",paths:[{d:"M21 14h1V4h-1v10zm3 0h1V4h-1v10zM27 .7L16-2.9 5 .7V2h22V.7zm1-.7v3H4V0l12-4 12 4zM5 19h22v-3H5v3zm23-3v3c0 .6-.4 1-1 1H5c-.6 0-1-.4-1-1v-3c0-.6.4-1 1-1h22c.6 0 1 .4 1 1zm-18-2h1V4h-1v10zm-3 0h1V4H7v10z"}],polygons:"",polylines:"",rects:""}},Vi={id:"icon--folder",name:"icon--folder",tags:"icon--folder",styles:"",viewBox:"0 0 14 12",width:"14",height:"12",svgData:{circles:"",ellipses:"",paths:[{d:"M13 12H1a1 1 0 0 1-1-1V1.001a1 1 0 0 1 1.002-1l2.293.005a1 1 0 0 1 .704.291L5.707 2H13a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1zm0-9H5.707A1 1 0 0 1 5 2.708L3.293 1.006 1 1v10h12V3z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},ui={id:"icon--folder--glyph",name:"icon--folder--glyph",tags:"icon--folder--glyph",styles:"",viewBox:"0 0 16 12",width:"16",height:"12",svgData:{circles:"",ellipses:"",paths:[{d:"M0 12h16V2H8V0H0z"}],polygons:"",polylines:"",rects:""}},Li={id:"icon--folder-add",name:"icon--folder-add",tags:"icon--folder-add",styles:"",viewBox:"0 0 14 12",width:"14",height:"12",svgData:{circles:"",ellipses:"",paths:[{d:"M13 12H1a1 1 0 0 1-1-1V1.001a1 1 0 0 1 1.002-1l2.293.005a1 1 0 0 1 .704.291L5.707 2H13a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1zm0-9H5.707A1 1 0 0 1 5 2.708L3.293 1.006 1 1v10h12V3z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},Di={id:"icon--forum",name:"icon--forum",tags:"icon--forum",styles:"",viewBox:"0 0 16 15",width:"16",height:"15",svgData:{circles:"",ellipses:"",paths:[{d:"M11.7 12l-3 3-.7-.7 3.3-3.3h3.2c.3 0 .5-.2.5-.5v-6c0-.3-.2-.5-.5-.5h-10c-.3 0-.5.2-.5.5v6c0 .3.2.5.5.5H8v1H4.5c-.8 0-1.5-.7-1.5-1.5v-6C3 3.7 3.7 3 4.5 3h10c.8 0 1.5.7 1.5 1.5v6c0 .8-.7 1.5-1.5 1.5h-2.8z"},{d:"M1 8H0V1.5C0 .7.7 0 1.5 0H8v1H1.5c-.3 0-.5.2-.5.5V8z"}],polygons:"",polylines:"",rects:""}},fi={id:"icon--functions",name:"icon--functions",tags:"icon--functions",styles:"",viewBox:"0 0 25 25",width:"25",height:"25",svgData:{circles:"",ellipses:"",paths:[{d:"M14.3 24c-.2 0-.5-.2-.5-.4 0-.3.1-.5.4-.6 2.2-.4 4.2-1.4 5.8-3 4.1-4.1 4.2-10.6.4-14.9-.2-.2-.2-.5 0-.7.2-.2.5-.2.7 0 4.2 4.7 4 11.8-.5 16.2-1.6 1.8-3.8 3-6.3 3.4zM3.9 20.4c-.1 0-.3-.1-.4-.2C-.7 15.5-.5 8.4 4 4 5.8 2.2 8 1.1 10.5.7c.3 0 .5.1.6.4 0 .3-.1.5-.4.6-2.3.4-4.3 1.4-5.9 3-4.2 4-4.4 10.6-.6 14.8.2.2.2.5 0 .7-.1.1-.2.2-.3.2z"},{d:"M6.7 24.2c-.6 0-.9-.1-1-.1-.4-.1-.9-.4-.8-1.2.1-.8.5-1 1-1 2.6 0 3-2.8 3-9.3L6.2 12c-.9-.2-.9-1-.9-1.3 0-.4 0-1.2.9-1.4l2.9-.6C9.6 6 10.6 4 12.2 2.6 14.3.8 16.7.5 17.9.5c.6 0 1 .1 1 .1.5.1.8.5.7 1.2 0 .3-.1 1-.9 1-2 0-2.8 1.6-3 6l2.3.5c.9.2.9 1 .9 1.4 0 .4 0 1.2-.9 1.4l-2.4.5c0 4.4-1.1 7.6-3.4 9.6-1.8 1.7-4.3 2-5.5 2zM6 23.1c.5 0 3.4.3 5.8-1.8 2.1-1.8 3.1-4.9 3.1-9v-.6L18 11c.1-.1.1-.3.1-.4v-.4l-3.2-.6v-.4c.1-3.7.5-7.3 3.8-7.4v-.2H18c-1.1 0-3.3.2-5.1 1.8-1.5 1.3-2.5 3.3-2.9 5.9v.2l-3.6.8c-.1 0-.1.3-.1.4v.4l3.5.7v.8c0 5.2 0 10.2-4 10.3v.1c.1.1.1.1.2.1-.1 0-.1 0 0 0z"}],polygons:"",polylines:"",rects:""}},xi={id:"icon--grid",name:"icon--grid",tags:"icon--grid",styles:"",viewBox:"0 0 15 15",width:"15",height:"15",svgData:{circles:"",ellipses:"",paths:[{d:"M1 1v4h4V1H1zm0-1h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1V1a1 1 0 0 1 1-1zm0 10v4h4v-4H1zm0-1h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1zm9-8v4h4V1h-4zm0-1h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1V1a1 1 0 0 1 1-1zm0 14h4v-4h-4v4zm0-5h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},Bi={id:"icon--header--avatar",name:"icon--header--avatar",tags:"icon--header--avatar",styles:"",viewBox:"0 0 20 20",width:"20",height:"20",svgData:{circles:"",ellipses:"",paths:[{d:"M6 15.745A6.968 6.968 0 0 0 10 17a6.968 6.968 0 0 0 4-1.255V15.5a2.5 2.5 0 0 0-2.5-2.5h-3A2.5 2.5 0 0 0 6 15.5v.245zm-.956-.802A3.5 3.5 0 0 1 8.5 12h3a3.5 3.5 0 0 1 3.456 2.943 7 7 0 1 0-9.912 0zM10 18a8 8 0 1 1 0-16 8 8 0 0 1 0 16z","fill-rule":"nonzero"},{d:"M10 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm0 1a3 3 0 1 1 0-6 3 3 0 0 1 0 6z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},Ci={id:"icon--header--chevron",name:"icon--header--chevron",tags:"icon--header--chevron",styles:"",viewBox:"0 0 20 20",width:"20",height:"20",svgData:{circles:"",ellipses:"",paths:[{"fill-rule":"nonzero",d:"M6.542 4.945l.707-.707 6.004 6.004-6.004 6.02-.708-.707 5.298-5.312z"}],polygons:"",polylines:"",rects:""}},Si={id:"icon--header--close",name:"icon--header--close",tags:"icon--header--close",styles:"",viewBox:"0 0 20 20",width:"20",height:"20",svgData:{circles:"",ellipses:"",paths:[{d:"M10 9.293l4.146-4.147.708.708L10.707 10l4.147 4.146-.708.708L10 10.707l-4.146 4.147-.708-.708L9.293 10 5.146 5.854l.708-.708L10 9.293z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},Ai={id:"icon--header--contact",name:"icon--header--contact",tags:"icon--header--contact",styles:"",viewBox:"0 0 12 12",width:"12",height:"12",svgData:{circles:"",ellipses:"",paths:[{d:"M10.563 1.4c-1-.9-2.2-1.4-3.5-1.4-1.3 0-2.5.5-3.4 1.4-.9.9-1.3 2-1.4 3.2-.5.1-1 .4-1.4.8-1.2 1.2-1.1 3 0 4.2.5.7 2.1 2.4 2.1 2.4v-1.5c.8 0 1.5-.3 2.1-.9.1-.1.1-.2.2-.2.5.2 1 .3 1.4.4V12l3.8-3.7c2-1.9 2-5 .1-6.9zm-1.1 5.9c-.6.6-1.5 1-2.4 1-.4 0-.8-.1-1.2-.2.2-.9-.1-1.9-.8-2.6-.4-.4-.8-.6-1.3-.8.1-.8.4-1.6 1-2.1.6-.6 1.5-1 2.4-1 .9 0 1.7.4 2.4 1 .6.6 1 1.5 1 2.4-.1.8-.5 1.6-1.1 2.3z"}],polygons:"",polylines:"",rects:""}},ki={id:"icon--header--docs",name:"icon--header--docs",tags:"icon--header--docs",styles:"",viewBox:"0 0 20 20",width:"20",height:"20",svgData:{circles:"",ellipses:"",paths:[{d:"M5 2h7l4 4v11a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1zm6.586 1H5v14h10V6.414L11.586 3zm3.41 2.997L16 7l-3.963-.012a1 1 0 0 1-.997-.99L11 2l1.01 1.01.03 2.978 2.957.009zM16 7l-3.963-.012a1 1 0 0 1-.997-.99L11 2l1.01 1.01.03 2.978 2.957.009L16 7z","fill-rule":"nonzero"},{d:"M7 11h6v1H7zm0 3h6v1H7z"}],polygons:"",polylines:"",rects:""}},bi={id:"icon--header--hamburger",name:"icon--header--hamburger",tags:"icon--header--hamburger",styles:"",viewBox:"0 0 20 20",width:"20",height:"20",svgData:{circles:"",ellipses:"",paths:[{d:"M3 4h14v1H3zm0 6h14v1H3zm0 6h14v1H3z"}],polygons:"",polylines:"",rects:""}},Gi={id:"icon--header--help",name:"icon--header--help",tags:"icon--header--help",styles:"",viewBox:"0 0 20 20",width:"20",height:"20",svgData:{circles:"",ellipses:"",paths:[{d:"M10 17a7 7 0 1 0 0-14 7 7 0 0 0 0 14zm0 1a8 8 0 1 1 0-16 8 8 0 0 1 0 16z","fill-rule":"nonzero"},{d:"M10.5 10.5V12h-1V9.5h1a1.5 1.5 0 0 0 0-3h-1A1.5 1.5 0 0 0 8 8H7a2.5 2.5 0 0 1 2.5-2.5h1a2.5 2.5 0 1 1 0 5zM9 14a1 1 0 1 1 2 0 1 1 0 1 1-2 0"}],polygons:"",polylines:"",rects:""}},Oi={id:"icon--header--notification",name:"icon--header--notification",tags:"icon--header--notification",styles:"",viewBox:"0 0 20 20",width:"20",height:"20",svgData:{circles:"",ellipses:"",paths:[{d:"M7.17 17H2.5a.5.5 0 0 1-.5-.5v-2a.5.5 0 0 1 .146-.354L4 12.293V9a6 6 0 0 1 5.5-5.98V1h1v2.02A6 6 0 0 1 16 9v3.293l1.854 1.853A.5.5 0 0 1 18 14.5v2a.5.5 0 0 1-.5.5h-4.67a3.001 3.001 0 0 1-5.66 0zm1.098 0a2 2 0 0 0 3.464 0H8.268zM13 16h4v-1.293l-1.854-1.853A.5.5 0 0 1 15 12.5V9A5 5 0 0 0 5 9v3.5a.5.5 0 0 1-.146.354L3 14.707V16h10z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},Pi={id:"icon--header--search",name:"icon--header--search",tags:"icon--header--search",styles:"",viewBox:"0 0 20 20",width:"20",height:"20",svgData:{circles:"",ellipses:"",paths:[{d:"M8.5 14a5.5 5.5 0 1 0 0-11 5.5 5.5 0 0 0 0 11zm4.936-1.27l4.418 4.416-.708.708-4.417-4.418a6.5 6.5 0 1 1 .707-.707z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},Fi={id:"icon--header--ticket",name:"icon--header--ticket",tags:"icon--header--ticket",styles:"",viewBox:"0 0 14 14",width:"14",height:"14",svgData:{circles:"",ellipses:"",paths:[{d:"M5.5 3l3-3 1.4 1.4c-.8.8-.8 2 0 2.8.8.8 2 .8 2.8 0L14 5.6 5.6 14l-1.4-1.3c.8-.8.8-2 0-2.8-.8-.8-2-.8-2.8 0L0 8.5l5-5c0 .3.2.5.5.5s.5-.2.5-.5-.2-.5-.5-.5zm2 3c.3 0 .5-.2.5-.5S7.8 5 7.5 5s-.5.2-.5.5.2.5.5.5zm-1-1c.3 0 .5-.2.5-.5S6.8 4 6.5 4s-.5.2-.5.5.2.5.5.5zm2 2c.3 0 .5-.2.5-.5S8.8 6 8.5 6s-.5.2-.5.5.2.5.5.5zm1 1c.3 0 .5-.2.5-.5S9.8 7 9.5 7s-.5.2-.5.5.2.5.5.5zm1 1c.3 0 .5-.2.5-.5s-.2-.5-.5-.5-.5.2-.5.5.2.5.5.5z"}],polygons:"",polylines:"",rects:""}},Ui={id:"icon--header--user",name:"icon--header--user",tags:"icon--header--user",styles:"",viewBox:"0 0 20 20",width:"20",height:"20",svgData:{circles:"",ellipses:"",paths:[{d:"M10 9a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 1a4 4 0 1 1 0-8 4 4 0 0 1 0 8zm-5 8H4v-2.48a4.5 4.5 0 0 1 4.5-4.5l3.022.014a4.5 4.5 0 0 1 4.478 4.5V18h-1v-2.466a3.5 3.5 0 0 0-3.483-3.5l-3-.015A3.504 3.504 0 0 0 5 15.52V18z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},Ei={id:"icon--help",name:"icon--help",tags:"icon--help",styles:"",viewBox:"0 0 24 24",width:"24",height:"24",svgData:{circles:"",ellipses:"",paths:[{d:"M12 2c5.5 0 10 4.5 10 10s-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2zm0-2C5.4 0 0 5.4 0 12s5.4 12 12 12 12-5.4 12-12S18.6 0 12 0z"},{d:"M8.3 10c.2-2 1.5-3.5 3.7-3.5 2.8 0 3.7 1.8 3.7 2.9 0 2.9-2.5 2.5-2.7 4.3V15h-2v-1c.2-2.6 2.4-2.8 2.3-4.4 0-.9-.5-1.3-1.3-1.3-1 0-1.5.8-1.5 1.7H8.3zm2.7 6h2v2h-2v-2z"}],polygons:"",polylines:"",rects:""}},Ii={id:"icon--help--glyph",name:"icon--help--glyph",tags:"icon--help--glyph",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm.9 13H7v-1.8h1.9V13zm-.1-3.6v.5H7.1v-.6c.2-2.1 2-1.9 1.9-3.2.1-.7-.3-1.1-1-1.1-.8 0-1.2.7-1.2 1.6H5c0-1.7 1.2-3 2.9-3 2.3 0 3 1.4 3 2.3.1 2.3-1.9 2-2.1 3.5z"}],polygons:"",polylines:"",rects:""}},Wi={id:"icon--help--outline",name:"icon--help--outline",tags:"icon--help--outline",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M8 14.5a6.5 6.5 0 1 0 0-13 6.5 6.5 0 0 0 0 13zM8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16z","fill-rule":"nonzero"},{d:"M8.75 9.364V10.5h-1.5V7.863h1.5A1.682 1.682 0 0 0 8.678 4.5h-.996C6.753 4.5 6 5.253 6 6.182H4.5A3.182 3.182 0 0 1 7.682 3h.996a3.182 3.182 0 0 1 .072 6.364z","fill-rule":"nonzero"},{d:"M7 13a1 1 0 1 1 2 0 1 1 0 1 1-2 0"}],polygons:"",polylines:"",rects:""}},_i={id:"icon--help--solid",name:"icon--help--solid",tags:"icon--help--solid",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M8.75 9.364A3.182 3.182 0 0 0 8.678 3h-.996A3.182 3.182 0 0 0 4.5 6.182H6C6 5.253 6.753 4.5 7.682 4.5h.996a1.682 1.682 0 0 1 .072 3.363h-1.5V10.5h1.5V9.364zM8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16zm0-2a1 1 0 1 0 0-2 1 1 0 0 0 0 2z"}],polygons:"",polylines:"",rects:""}},Ni={id:"icon--hpa",name:"icon--hpa",tags:"icon--hpa",styles:"",viewBox:"0 0 24 22",width:"24",height:"22",svgData:{circles:"",ellipses:"",paths:[{d:"M21.992 18.666l-.03.04a5.479 5.479 0 0 1-4 2.27V16.04L18 16h4.974c-.088.988-.44 1.9-.982 2.666zm-8.004-7.385c.015-.01.026-.027.04-.04.052-.04.11-.073.162-.112a5.458 5.458 0 0 1 3.31-1.128c1.293 0 2.467.463 3.405 1.21.138.11.277.217.403.34.11.104.206.22.307.336.113.13.23.254.33.392.566.78.94 1.71 1.03 2.722h-5.267l-3.72-3.72zM17 16v4.975a5.504 5.504 0 0 1-4.125-2.506c-.035-.058-.065-.117-.1-.175a5.463 5.463 0 0 1 .495-6.307l.005-.006L17 15.707V16zm-9 1.973V12h4.028a6.481 6.481 0 0 0-.538 5.973H8zM1.027 11H7V5H1.027v6zm0 6.973H7V12H1.027v5.973zM8 5h6v5.028c-.433.278-.83.603-1.184.972H8V5zm12.972 0v5.012A6.456 6.456 0 0 0 17.5 9a6.5 6.5 0 0 0-2.5.5V5h5.972zM22 10.816V1a1 1 0 0 0-1-1H1a1 1 0 0 0-1 1v17a1 1 0 0 0 1 1h11.028a6.494 6.494 0 0 0 6.618 2.9c2.63-.448 4.764-2.556 5.242-5.18A6.494 6.494 0 0 0 22 10.816z"}],polygons:"",polylines:"",rects:""}},Ri={id:"icon--hpa--stress",name:"icon--hpa--stress",tags:"icon--hpa--stress",styles:"",viewBox:"0 0 24 22",width:"24",height:"22",svgData:{circles:"",ellipses:"",paths:[{d:"M18 20.975V16h4.975A5.5 5.5 0 0 1 18 20.975zm-4.02-9.7A5.499 5.499 0 0 1 22.975 15h-5.268l-3.726-3.725zM17 16v4.975a5.498 5.498 0 0 1-3.726-8.993L17 15.707V16zM6.9 17.973L10 11H7V5l-4 9h3v3.973H1.027V5H14v5.03a6.486 6.486 0 0 0-2.51 7.943H6.9zM15 5h5.973v5.012A6.462 6.462 0 0 0 17.5 9c-.887 0-1.73.18-2.5.5V5zm7 5.817V1a1 1 0 0 0-1-1H1a1 1 0 0 0-1 1v17a1 1 0 0 0 1 1h5v1l.444-1h5.584a6.498 6.498 0 0 0 6.618 2.902c2.63-.45 4.764-2.558 5.243-5.18a6.5 6.5 0 0 0-1.89-5.905z"}],polygons:"",polylines:"",rects:""}},Ti={id:"icon--info",name:"icon--info",tags:"icon--info",styles:"",viewBox:"0 0 24 24",width:"24",height:"24",svgData:{circles:"",ellipses:"",paths:[{d:"M12 2c5.5 0 10 4.5 10 10s-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2zm0-2C5.4 0 0 5.4 0 12s5.4 12 12 12 12-5.4 12-12S18.6 0 12 0z"},{d:"M14 10H9v2h2v4H9v2h7v-2h-2zM11 7.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 1 1-3 0"}],polygons:"",polylines:"",rects:""}},ji={id:"icon--info--glyph",name:"icon--info--glyph",tags:"icon--info--glyph",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm0 4c.6 0 1 .4 1 1s-.4 1-1 1-1-.4-1-1 .4-1 1-1zm2 8H6v-1h1V8H6V7h3v4h1v1z"}],polygons:"",polylines:"",rects:""}},qi={id:"icon--info--outline",name:"icon--info--outline",tags:"icon--info--outline",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M8 14.5a6.5 6.5 0 1 0 0-13 6.5 6.5 0 0 0 0 13zM8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16z","fill-rule":"nonzero"},{"fill-rule":"nonzero",d:"M9 13H7V7h2z"},{d:"M7 4a1 1 0 1 1 2 0 1 1 0 1 1-2 0"}],polygons:"",polylines:"",rects:""}},Ji={id:"icon--info--solid",name:"icon--info--solid",tags:"icon--info--solid",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16zm1-3V7H7v6h2zM8 5a1 1 0 1 0 0-2 1 1 0 0 0 0 2z"}],polygons:"",polylines:"",rects:""}},Ki={id:"icon--infrastructure",name:"icon--infrastructure",tags:"icon--infrastructure",styles:"",viewBox:"0 0 24 24",width:"24",height:"24",svgData:{circles:"",ellipses:"",paths:[{d:"M14 1v22H1V1h13zm1-1H0v24h15V0zm8 1v22h-5V1h5zm1-1h-7v24h7V0z"},{d:"M12 4v4H3V4h9zm1-1H2v6h11V3zm8 0v1h-1V3h1zm1-1h-3v3h3V2zm-1 5v1h-1V7h1zm1-1h-3v3h3V6zm-1 5v1h-1v-1h1zm1-1h-3v3h3v-3zm-1 5v1h-1v-1h1zm1-1h-3v3h3v-3zm-1 5v1h-1v-1h1zm1-1h-3v3h3v-3z"}],polygons:"",polylines:"",rects:""}},Qi={id:"icon--integration",name:"icon--integration",tags:"icon--integration",styles:"",viewBox:"0 0 24 21",width:"24",height:"21",svgData:{circles:"",ellipses:"",paths:[{d:"M18 0H6L0 10.5 6 21h12l6-10.5L18 0zm4.5 10h-9.7l4.8-8.5 4.9 8.5zM6.3 19.4L1.4 11H11l-4.7 8.4zm5.6-7.8l4.8 8.4H7.2l4.7-8.4zm0-2.1L7 1h9.7l-4.8 8.5zM6.2 1.6L11 10H1.5l4.7-8.4zm11.5 18L12.8 11h9.8l-4.9 8.6z"}],polygons:"",polylines:"",rects:""}},Xi={id:"icon--iot",name:"icon--iot",tags:"icon--iot",styles:"",viewBox:"0 0 24 24",width:"24",height:"24",svgData:{circles:"",ellipses:"",paths:[{d:"M12 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0-1c-1.6 0-3 1.3-3 3s1.3 3 3 3 3-1.3 3-3-1.3-3-3-3z"},{d:"M17 7v10H7V7h10zm1-1H6v12h12V6zm-7-1h-1V2.1C10 1.5 9.5 1 8.9 1c-.6 0-.9.6-.9 1.1V5H7V2.1C7 .9 7.8 0 8.9 0H9c1.1 0 2 1 2 2.1V5zm6 0h-1V2.1c0-.6-.5-1.1-1.1-1.1-.6 0-.9.6-.9 1.1V5h-1V2.1c0-1.2.8-2.1 1.9-2.1h.1c1.1 0 2 1 2 2.1V5zm-1.9 19s-.1 0 0 0c-1.2 0-2.1-1-2.1-2.1V19h1v2.9c0 .6.5 1.1 1.1 1.1.7 0 .9-.6.9-1.1V19h1v2.9c0 1.2-.8 2.1-1.9 2.1zm-6 0s-.1 0 0 0C7.9 24 7 23 7 21.9V19h1v2.9c0 .6.5 1.1 1.1 1.1.7 0 .9-.6.9-1.1V19h1v2.9c0 1.2-.8 2.1-1.9 2.1zM5 17H2.1C.9 17 0 16.2 0 15.1c0-1.1 1-2 2.1-2H5v1H2.1c-.6-.1-1.1.4-1.1 1s.6.9 1.1.9H5v1zm0-6H2.1C.9 11 0 10.2 0 9.1c0-1.1 1-2 2.1-2H5v1H2.1C1.5 8 1 8.5 1 9.1s.6.9 1.1.9H5v1zm16.9 0H19v-1h2.9c.6 0 1.1-.4 1.1-1 0-.7-.6-1-1.1-1H19V7h2.9c1.2 0 2.1.8 2.1 1.9 0 1.2-1 2.1-2.1 2.1zm0 6H19v-1h2.9c.6 0 1.1-.5 1.1-1.1 0-.7-.6-.9-1.1-.9H19v-1h2.9c1.2 0 2.1.8 2.1 1.9 0 1.2-1 2.1-2.1 2.1z"}],polygons:"",polylines:"",rects:""}},Yi={id:"icon--launch",name:"icon--launch",tags:"icon--launch",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M14.3 1h-3.8V0H16v5.5h-1V1.7L9.7 7 9 6.3 14.3 1z"},{d:"M14.3 1h-3.8V0H16v5.5h-1V1.7L9.7 7 9 6.3 14.3 1z"},{d:"M13 9h1v6c0 .6-.4 1-1 1H1c-.6 0-1-.4-1-1V3c0-.6.4-1 1-1h7v1H1v12h12V9z"}],polygons:"",polylines:"",rects:""}},Zi={id:"icon--launch--glyph",name:"icon--launch--glyph",tags:"icon--launch--glyph",styles:"",viewBox:"-3 5 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M11 19H-1V9h3V5h-5v16h16v-5h-2z"},{d:"M4.7 14.7L11 8.4V13h2V5H5v2h4.6l-6.3 6.3z"}],polygons:"",polylines:"",rects:""}},$i={id:"icon--light",name:"icon--light",tags:"icon--light",styles:"",viewBox:"0 0 18 18",width:"18",height:"18",svgData:{circles:"",ellipses:"",paths:[{d:"M9 0c.3 0 .6.3.6.6v2.5c0 .3-.3.6-.6.6s-.6-.3-.6-.6V.6c0-.3.3-.6.6-.6zm0 14.4c.3 0 .6.3.6.6v2.5c0 .3-.3.6-.6.6s-.6-.3-.6-.6V15c0-.4.3-.6.6-.6zM14.4 9c0-.3.3-.6.6-.6h2.5c.2.1.5.3.5.6s-.3.6-.6.6h-2.5c-.3 0-.5-.3-.5-.6zM0 9c0-.3.3-.6.6-.6h2.5c.3 0 .6.3.6.6s-.3.6-.6.6H.6C.3 9.6 0 9.3 0 9zm2.1-6.6c.2-.2.6-.2.8 0l1.8 1.8c.2.2.2.6 0 .8-.2.2-.6.2-.8 0L2.1 3.2c-.2-.2-.2-.6 0-.8zm11 2.6c-.2-.2-.2-.6 0-.8l1.8-1.8c.2-.2.6-.2.8 0 .2.2.2.6 0 .8L13.9 5c-.2.2-.6.2-.8 0zm2.6 10.7c-.2.2-.6.2-.8 0l-1.8-1.8c-.2-.2-.2-.6 0-.8.2-.2.6-.2.8 0l1.8 1.8c.2.2.2.6 0 .8zm-11-2.6c.2.2.2.6 0 .8l-1.8 1.8c-.2.2-.6.2-.8 0-.2-.2-.2-.6 0-.8l1.8-1.8c.2-.2.6-.2.8 0zM5 9a4 4 0 1 1 8 0 4 4 0 1 1-8 0"}],polygons:"",polylines:"",rects:""}},ie={id:"icon--light--glyph",name:"icon--light--glyph",tags:"icon--light--glyph",styles:"",viewBox:"0 0 18 18",width:"18",height:"18",svgData:{circles:"",ellipses:"",paths:[{d:"M9.1 18h-.2c-.5 0-.9-.4-.9-.9V15c0-.6.4-1 .9-1H9c.6 0 1 .4 1 .9V17c0 .6-.4 1-.9 1zm7-2.3c-.5.5-1 .5-1.4.1l-1.5-1.5c-.4-.4-.4-1 0-1.3l.1-.1c.4-.4 1-.4 1.3 0l1.5 1.5c.3.4.3 1 0 1.3zm-13.8.1c-.5-.5-.5-1-.1-1.4l1.5-1.5c.4-.4 1-.4 1.3 0l.1.1c.4.4.4 1 0 1.3l-1.5 1.5c-.4.4-1 .4-1.3 0zM8.9 0c.7 0 1.1.4 1.1.9V3c0 .6-.4 1-.9 1h-.2c-.5 0-.9-.4-.9-.9V.9c0-.5.4-.9.9-.9zM2.2 2.2c.5-.5 1-.5 1.4-.1l1.5 1.5c.4.4.4 1 0 1.3L5 5c-.4.4-1 .4-1.3 0L2.2 3.5c-.4-.4-.4-1 0-1.3zm13.7-.1c.5.5.5 1 .1 1.4L14.6 5c-.4.4-1 .4-1.3 0l-.1-.1c-.4-.4-.4-1 0-1.3l1.5-1.5c.2-.4.9-.4 1.2 0zM.1 9.1V9c0-.5.4-.9.9-.9h2.1c.6-.1 1 .3 1 .8V9c0 .6-.4 1-.9 1H1.1c-.6 0-1-.4-1-.9zm14 0V9c0-.5.4-.9.9-.9h2.1c.5 0 .9.4.9.9v.1c0 .5-.4.9-.9.9H15c-.6 0-.9-.4-.9-.9zM5.1 9a4 4 0 1 1 8 0 4 4 0 1 1-8 0"}],polygons:"",polylines:"",rects:""}},ee={id:"icon--link",name:"icon--link",tags:"icon--link",styles:"",viewBox:"0 0 16 13",width:"16",height:"13",svgData:{circles:"",ellipses:"",paths:[{d:"M9.3 7.1l-.7-.7c.1-.1.2-.2.6-.5.9-.8.9-2.2.1-3l-.1-.1c-.8-.8-2.3-.8-3.1.1L1.6 7.3c-.9.9-.9 2.3 0 3.1l.2.2c.8.8 2 .8 2.8.1l.7.7c-1.2 1.1-3 1-4.2-.1l-.2-.2C-.3 9.9-.3 7.8.9 6.6l4.4-4.4C6.6.9 8.6.9 9.9 2.2l.1.1c1.2 1.3 1.1 3.2-.1 4.4-.3.2-.5.4-.6.4z"},{d:"M6.8 4.7l.7.7-.7.7c-.9.9-.9 2.3 0 3.2.9.9 2.3.9 3.1 0l4.5-4.5c.9-.9.9-2.3 0-3.1l-.1-.1c-.7-.7-1.9-.7-2.7 0l-.1.1-.8-.7.1-.1c1.1-1.1 3-1.1 4.1 0l.2.1c1.2 1.2 1.2 3.3 0 4.5L10.6 10c-1.2 1.2-3.3 1.2-4.5 0-1.3-1.3-1.3-3.3 0-4.5l.7-.8z"}],polygons:"",polylines:"",rects:""}},se={id:"icon--list",name:"icon--list",tags:"icon--list",styles:"",viewBox:"0 0 16 10",width:"16",height:"10",svgData:{circles:"",ellipses:"",paths:[{"fill-rule":"nonzero",d:"M6 9V8h10v1zm0-7V1h10v1z"},{d:"M0 1.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 1 1-3 0M0 8.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 1 1-3 0"}],polygons:"",polylines:"",rects:""}},le={id:"icon--locked",name:"icon--locked",tags:"icon--locked",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M4.5 7V3.5a3.5 3.5 0 0 1 7 0V7h1A1.5 1.5 0 0 1 14 8.5v6a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 2 14.5v-6A1.5 1.5 0 0 1 3.5 7h1zm1 0h5V3.5a2.5 2.5 0 0 0-5 0V7zm-2 1a.5.5 0 0 0-.5.5v6a.5.5 0 0 0 .5.5h9a.5.5 0 0 0 .5-.5v-6a.5.5 0 0 0-.5-.5h-9z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},oe={id:"icon--maximize",name:"icon--maximize",tags:"icon--maximize",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M1.71 15H4v1H.003L0 12h1l.002 2.293 4.296-4.296.707.707L1.709 15zM14.998 1.668l-4.271 4.317-.711-.703L14.252 1H12V0h3.997L16 4h-1l-.002-2.332z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},ce={id:"icon--menu",name:"icon--menu",tags:"icon--menu",styles:"",viewBox:"0 0 20 14",width:"20",height:"14",svgData:{circles:"",ellipses:"",paths:[{d:"M0 0h20v2H0zm0 6h20v2H0zm0 6h20v2H0z"}],polygons:"",polylines:"",rects:""}},ne={id:"icon--minimize",name:"icon--minimize",tags:"icon--minimize",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M4.998 11.709L.704 16.004l-.708-.708 4.274-4.273L1.995 11l.01-1 3.992.04L6 14H5l-.002-2.291zM11.707 5H14v1h-3.997L10 2h1l.002 2.291 4.291-4.29.707.706L11.707 5z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},te={id:"icon--mobile",name:"icon--mobile",tags:"icon--mobile",styles:"",viewBox:"0 0 24 24",width:"24",height:"24",svgData:{circles:"",ellipses:"",paths:[{d:"M23 0H1C.5 0 0 .5 0 1v21c0 .6.5 1 1 1h22c.6 0 1-.5 1-1V1c0-.5-.5-1-1-1zM1 1h7v3H1V1zm22 21H1V5h22v17zm0-21v3H9V1h14z"},{d:"M7.5 8h-5c-.3 0-.5-.2-.5-.5s.2-.5.5-.5h5c.3 0 .5.2.5.5s-.2.5-.5.5zm3 3h-8c-.3 0-.5-.2-.5-.5s.2-.5.5-.5h8c.3 0 .5.2.5.5s-.2.5-.5.5zm3-3h-4c-.3 0-.5-.2-.5-.5s.2-.5.5-.5h4c.3 0 .5.2.5.5s-.2.5-.5.5zm1 3h-2c-.3 0-.5-.2-.5-.5s.2-.5.5-.5h2c.3 0 .5.2.5.5s-.2.5-.5.5zm-10 3h-2c-.3 0-.5-.2-.5-.5s.2-.5.5-.5h2c.3 0 .5.2.5.5s-.2.5-.5.5zm4 0h-1c-.3 0-.5-.2-.5-.5s.2-.5.5-.5h1c.3 0 .5.2.5.5s-.2.5-.5.5zm11-3h-3c-.3 0-.5-.2-.5-.5s.2-.5.5-.5h3c.3 0 .5.2.5.5s-.2.5-.5.5zM2 2.5a.5.5 0 1 1 1 0 .5.5 0 1 1-1 0M4 2.5a.5.5 0 1 1 1 0 .5.5 0 1 1-1 0M6 2.5a.5.5 0 1 1 1 0 .5.5 0 1 1-1 0"}],polygons:"",polylines:"",rects:""}},ae={id:"icon--network",name:"icon--network",tags:"icon--network",styles:"",viewBox:"0 0 23 24",width:"23",height:"24",svgData:{circles:"",ellipses:"",paths:[{d:"M20.5 18v-6h-9V5.9C12.9 5.7 14 4.5 14 3c0-1.7-1.3-3-3-3S8 1.3 8 3c0 1.5 1.1 2.7 2.5 2.9V12h-8v6.1C1.1 18.4 0 19.6 0 21c0 1.7 1.3 3 3 3s3-1.3 3-3c0-1.5-1.1-2.7-2.5-2.9V13h16v5.1c-1.4.2-2.5 1.5-2.5 2.9 0 1.7 1.3 3 3 3s3-1.3 3-3c0-1.5-1-2.8-2.5-3zM9 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM5 21c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm15 2c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"}],polygons:"",polylines:"",rects:""}},he={id:"icon--new-tab",name:"icon--new-tab",tags:"icon--new-tab",styles:"",viewBox:"0 0 16 15",width:"16",height:"15",svgData:{circles:"",ellipses:"",paths:[{d:"M14 2h2v1h-2v2h-1V3h-2V2h2V0h1v2zM1 3h8V2H1a1 1 0 0 0-1 1v11a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V7.227h-1V14H1V3z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},pe={id:"icon--notification-off",name:"icon--notification-off",tags:"icon--notification-off",styles:"",viewBox:"0 0 14 16",width:"14",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M1.501 13.987l-.876.702L0 13.908 13.33 3.24l.625.78-1.963 1.572v3.642l1.801 1.35a.5.5 0 0 1 .2.399l.008 2.516a.5.5 0 0 1-.5.501h-4.05a2.5 2.5 0 0 1-4.9 0h-3.05v-.013zM2.735 13H13l-.006-1.765-1.802-1.35a.5.5 0 0 1-.2-.4V6.391L2.735 13zm2.852 1a1.5 1.5 0 0 0 2.829 0h-2.83z","fill-rule":"nonzero"},{d:"M7.501 1.248c.629.05 1.128.2 1.695.481.933.46 1.616 1.114 2.076 1.9l-.864.505a4.163 4.163 0 0 0-1.68-1.512c-.506-.25-1.148-.376-1.891-.376-.494 0-.875.05-1.366.293-1.429.708-2.324 1.814-2.474 3.475L2.941 9.74.797 11.434l-.62-.784 1.771-1.4.05-3.28c.106-1.968 1.41-3.724 3.071-4.347a5.207 5.207 0 0 1 1.432-.367V0h1v1.248z"}],polygons:"",polylines:"",rects:""}},re={id:"icon--notification-on",name:"icon--notification-on",tags:"icon--notification-on",styles:"",viewBox:"0 0 14 16",width:"14",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M11.199 9.9a.5.5 0 0 1-.2-.4V6.23a4 4 0 0 0-3.99-4A3.989 3.989 0 0 0 3.01 6.206L3 9.52a.5.5 0 0 1-.202.4L1 11.252V13h12v-1.75L11.199 9.9zM4.55 14H.5a.5.5 0 0 1-.5-.5V11a.5.5 0 0 1 .202-.402l1.799-1.333.01-3.062A4.99 4.99 0 0 1 6.5 1.254V0h1v1.254a5 5 0 0 1 4.498 4.975v3.02L13.8 10.6a.5.5 0 0 1 .2.4v2.5a.5.5 0 0 1-.5.5H9.45a2.5 2.5 0 0 1-4.9 0zm1.035 0a1.5 1.5 0 0 0 2.83 0h-2.83z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},de={id:"icon--open-whisk",name:"icon--open-whisk",tags:"icon--open-whisk",styles:"",viewBox:"0 0 25 16",width:"25",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M9.9 9.7L4.5 0 0 8l4.5 8h8l.5-.8 3-5.5H9.9zm-4.7 5.1L1.4 8l3.1-5.5 6.9 12.3H5.2zm7.2-1.1l-1.6-2.8h3.1l-1.5 2.8z"},{d:"M19.5 0h-7.8l-.6 1.1-3 5.5h6l5.3 9.5L24 8l-4.5-8zm-9.3 5.3l1.5-2.8 1.6 2.8h-3.1zm2.4-4.1h6.2L22.6 8l-3.1 5.5-6.9-12.3z"}],polygons:"",polylines:"",rects:""}},ve={id:"icon--overflow-menu",name:"icon--overflow-menu",tags:"icon--overflow-menu",styles:"",viewBox:"0 0 3 15",width:"3",height:"15",svgData:{circles:"",ellipses:"",paths:[{d:"M0 1.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 1 1-3 0M0 7.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 1 1-3 0M0 13.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 1 1-3 0"}],polygons:"",polylines:"",rects:""}},ge={id:"icon--pa",name:"icon--pa",tags:"icon--pa",styles:"",viewBox:"0 0 24 24",width:"24",height:"24",svgData:{circles:"",ellipses:"",paths:[{d:"M22.588 12.982L10.643 1h-6.23L1 4.406v6.265l12.004 11.917 9.584-9.605zm1.412 0L13.008 24 0 11.087V3.99L4 0h7.058L24 12.982zM9 7a2 2 0 1 1-4 0 2 2 0 0 1 4 0z"}],polygons:"",polylines:"",rects:""}},ze={id:"icon--pa--stress",name:"icon--pa--stress",tags:"icon--pa--stress",styles:"",viewBox:"0 0 24 24",width:"24",height:"24",svgData:{circles:"",ellipses:"",paths:[{d:"M22.588 12.982l-3.937-3.95L16 15V9h-3l1.733-3.898L10.643 1h-6.23L1 4.406v6.265l12.004 11.917 9.584-9.605zm1.412 0L13.008 24 0 11.087V3.99L4 0h7.058l4.11 4.123L17 0v5.96l.04.04H20l-.913 2.053L24 12.983zM9 7a2 2 0 1 1-4 0 2 2 0 0 1 4 0z"}],polygons:"",polylines:"",rects:""}},ye={id:"icon--pause",name:"icon--pause",tags:"icon--pause",styles:"",viewBox:"0 0 24 24",width:"24",height:"24",svgData:{circles:"",ellipses:"",paths:[{d:"M0 0h9v24H0zm15 0h9v24h-9z"}],polygons:"",polylines:"",rects:""}},me={id:"icon--pause--glyph",name:"icon--pause--glyph",tags:"icon--pause--glyph",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zM7 11H5V5h2v6zm4 0H9V5h2v6z"}],polygons:"",polylines:"",rects:""}},we={id:"icon--pause--outline",name:"icon--pause--outline",tags:"icon--pause--outline",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M5 5h2v6H5zm4 0h2v6H9z"},{d:"M8 14.5a6.5 6.5 0 1 0 0-13 6.5 6.5 0 0 0 0 13zM8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},Me={id:"icon--pause--solid",name:"icon--pause--solid",tags:"icon--pause--solid",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16zM5 5v6h2V5H5zm4 0v6h2V5H9z"}],polygons:"",polylines:"",rects:""}},He={id:"icon--play",name:"icon--play",tags:"icon--play",styles:"",viewBox:"0 0 21 24",width:"21",height:"24",svgData:{circles:"",ellipses:"",paths:[{d:"M0 24l21-12L0 0z"}],polygons:"",polylines:"",rects:""}},Ve={id:"icon--play--glyph",name:"icon--play--glyph",tags:"icon--play--glyph",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zM5 11V5l6.6 3L5 11z"}],polygons:"",polylines:"",rects:""}},ue={id:"icon--play--outline",name:"icon--play--outline",tags:"icon--play--outline",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M8 14.5c3.6 0 6.5-2.9 6.5-6.5S11.6 1.5 8 1.5 1.5 4.4 1.5 8s2.9 6.5 6.5 6.5zM8 16c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8z"},{d:"M5 4.8c0-.2.1-.4.2-.6.3-.6 1.1-.8 1.7-.4L12.4 7c.2.1.3.3.4.4.3.6.2 1.4-.4 1.7l-5.5 3.2c-.2.1-.4.2-.6.2-.7 0-1.2-.6-1.2-1.2V4.8zm2 5.1L10.3 8 7 6.1v3.8z"}],polygons:"",polylines:"",rects:""}},Le={id:"icon--play--solid",name:"icon--play--solid",tags:"icon--play--solid",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16zM5.497 4.776v6.456a.25.25 0 0 0 .377.216l5.498-3.232a.25.25 0 0 0 0-.431L5.874 4.56a.25.25 0 0 0-.377.215z"}],polygons:"",polylines:"",rects:""}},De={id:"icon--portfolio",name:"icon--portfolio",tags:"icon--portfolio",styles:"",viewBox:"0 0 24 20",width:"24",height:"20",svgData:{circles:"",ellipses:"",paths:[{d:"M7 5H6V1a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v4h-1V1H7v4zM1 19h22V7H1v12zM23 6H1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h22a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1z"}],polygons:"",polylines:"",rects:""}},fe={id:"icon--power",name:"icon--power",tags:"icon--power",styles:"",viewBox:"0 0 15 16",width:"15",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M7 0h1v8H7z"},{d:"M10.74 1.735a7.5 7.5 0 1 1-8.45 1.371c.627-.605 1.62-1.186 2.086-1.398l.414.91c-.52.236-1.356.774-1.805 1.208a6.5 6.5 0 1 0 7.323-1.189l.432-.902z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},xe={id:"icon--power--glyph",name:"icon--power--glyph",tags:"icon--power--glyph",styles:"",viewBox:"0 0 14 16",width:"14",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M9 2.3V0H5v2.3C2.1 3.2 0 5.8 0 9c0 3.9 3.1 7 7 7s7-3.1 7-7c0-3.2-2.1-5.8-5-6.7zM7 14c-2.8 0-5-2.2-5-5 0-2 1.2-3.8 3-4.6V9h4V4.4c1.8.8 3 2.6 3 4.6 0 2.8-2.2 5-5 5z"}],polygons:"",polylines:"",rects:""}},Be={id:"icon--predictive",name:"icon--predictive",tags:"icon--predictive",styles:"",viewBox:"0 0 24 18",width:"24",height:"18",svgData:{circles:"",ellipses:"",paths:[{d:"M6 9h1V8H6v1zM4 9h1V8H4v1zm-1-.5a1.5 1.5 0 1 1-2.999.001A1.5 1.5 0 0 1 3 8.5zM13 12a3 3 0 1 1 0-6 3 3 0 0 1 0 6zm9.5-5c-.652 0-1.2.42-1.408 1h-4.234a3.968 3.968 0 0 0-.85-1.61l2.274-3.41c.072.008.144.02.218.02A1.5 1.5 0 1 0 17 1.5c0 .39.152.74.395 1.007l-2.132 3.198A3.978 3.978 0 0 0 13 5a3.988 3.988 0 0 0-3.858 3H8v1h1a3.999 3.999 0 0 0 6.263 3.295l2.132 3.198A1.49 1.49 0 0 0 17 16.5a1.5 1.5 0 1 0 1.5-1.5c-.074 0-.146.012-.218.02l-2.274-3.41c.61-.702.992-1.607.992-2.61h4.092c.207.58.756 1 1.408 1a1.5 1.5 0 0 0 0-3z"}],polygons:"",polylines:"",rects:""}},Ce={id:"icon--purchase",name:"icon--purchase",tags:"icon--purchase",styles:"",viewBox:"0 0 16 11",width:"16",height:"11",svgData:{circles:"",ellipses:"",paths:[{d:"M15 3V1H1v2h14zm0 1H1v6h14V4zM.8 0h14.5c.4 0 .7.3.7.8v9.5c0 .4-.3.8-.8.8H.8c-.5-.1-.8-.4-.8-.9V.8C0 .3.3 0 .8 0z"},{d:"M2 9V8h5v1z"}],polygons:"",polylines:"",rects:""}},Se={id:"icon--restart",name:"icon--restart",tags:"icon--restart",styles:"",viewBox:"0 0 13 16",width:"13",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M10.948 3L8.542.727 9.23 0 13 3.564 9.228 7.108l-.685-.729L11.075 4H6.5A5.5 5.5 0 1 0 12 9.5h1A6.5 6.5 0 1 1 6.5 3h4.448z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},Ae={id:"icon--restart--glyph",name:"icon--restart--glyph",tags:"icon--restart--glyph",styles:"",viewBox:"0 0 12 16",width:"12",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M6 8l1.3 1.3 1.9-1.9L10.6 6 12 4.7 7.3 0 6 1.2l2.6 2.4H5.9c-1.7 0-3.3.8-4.4 2C.5 6.7 0 8.1 0 9.6c0 3.3 2.7 6 6 6 1.6 0 3-.6 4-1.6l-1.4-1.4c-.7.6-1.6 1-2.6 1-2.2 0-4-1.8-4-4s1.8-4 4-4h2.8l-.6.6L6 8z"}],polygons:"",polylines:"",rects:""}},ke={id:"icon--save",name:"icon--save",tags:"icon--save",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M12 1.597v2.406a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V1H1v14h3V9a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v6h3V4.702l-3-3.105zM1 0h10.848L16 4.298V15a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1V1a1 1 0 0 1 1-1zm10 9H5v5.992l6 .007V9zM5 1v3.003h6V1H5z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},be={id:"icon--schematics",name:"icon--schematics",tags:"icon--schematics",styles:"",viewBox:"0 0 24 24",width:"24",height:"24",svgData:{circles:"",ellipses:"",paths:[{d:"M22.259 11.576L19.2 9.694c1.882-1.082 3.53-2.023 3.67-2.118a.494.494 0 0 0 .236-.423.494.494 0 0 0-.235-.424A2472.813 2472.813 0 0 0 12.988.706c-.047-.047-.047-.047-.094-.047C12.471.424 12 .424 11.53.565c-.376.14-.705.33-.988.517-.141.047-6.117 3.765-8.094 4.989l-.659.423a2.054 2.054 0 0 0-.612.424c-.847.94-.894 2.682-.517 4 .188.517.423 1.035.706 1.411.376.424.753.706 1.176.942l.094.047c.283.188 8.941 5.082 9.318 5.27.047.047.659.424.659 1.883 0 .282.188.47.47.47.283 0 .47-.188.47-.47 0-2.024-1.034-2.636-1.128-2.683-3.106-1.74-9.083-5.13-9.318-5.27l-.094-.047c-.33-.236-.66-.424-.847-.753-.236-.283-.377-.66-.518-1.083-.282-1.035-.282-2.447.33-3.106.094-.094.188-.14.329-.235l.659-.423c7.106-4.377 8.047-4.989 8.094-4.989.235-.188.47-.33.753-.423.282-.094.47-.047.706.047h.047c.47.33 5.788 3.53 9.176 5.553-2.259 1.317-9.317 5.317-9.553 5.459a.539.539 0 0 1-.47 0c-.236-.142-6.024-3.483-8.236-4.753-.235-.094-.517-.047-.658.188-.142.188-.048.518.14.612.33.188 8 4.611 8.33 4.847a1.41 1.41 0 0 0 1.365 0c.188-.094 3.012-1.741 5.647-3.247l3.53 2.164c.093.047 1.27.706 1.27 2.26 0 1.693-.47 2.023-1.224 2.635-.047 0-1.223.752-8.47 5.223l-.33.188c-.33.236-.847.518-1.082.424-.235-.141-4.047-2.494-10.024-6.118l1.6-.988a.507.507 0 0 0 .142-.659c-.142-.235-.424-.33-.66-.188L.8 16.47a.562.562 0 0 0-.235.423c0 .188.094.33.235.424l.141.094c10.4 6.353 10.588 6.447 10.635 6.494.142.094.33.094.518.094.518 0 1.082-.282 1.459-.47l.33-.189c8.47-5.27 8.47-5.27 8.517-5.27.847-.66 1.6-1.224 1.6-3.389 0-2.117-1.6-3.011-1.741-3.106z"},{d:"M5.694 7.247a.488.488 0 0 0 .565.377l4.612-.753-1.036 2.588c-.094.235.047.517.283.612.047.047.14.047.188.047.188 0 .376-.142.423-.283l1.695-4.188L6.07 6.682c-.236.047-.424.33-.377.565zm12.47-1.082a.507.507 0 0 0-.658-.141l-3.012 1.835a.507.507 0 0 0-.141.659c.047.094.141.14.235.188.141.047.33 0 .424-.047l3.012-1.835a.507.507 0 0 0 .14-.66z"}],polygons:"",polylines:"",rects:""}},Ge={id:"icon--search",name:"icon--search",tags:"icon--search",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M6.5 12a5.5 5.5 0 1 0 0-11 5.5 5.5 0 0 0 0 11zm4.936-1.27l4.563 4.557-.707.708-4.563-4.558a6.5 6.5 0 1 1 .707-.707z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},Oe={id:"icon--search--glyph",name:"icon--search--glyph",tags:"icon--search--glyph",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M6 2c2.2 0 4 1.8 4 4s-1.8 4-4 4-4-1.8-4-4 1.8-4 4-4zm0-2C2.7 0 0 2.7 0 6s2.7 6 6 6 6-2.7 6-6-2.7-6-6-6zm10 13.8L13.8 16l-3.6-3.6 2.2-2.2z"},{d:"M16 13.8L13.8 16l-3.6-3.6 2.2-2.2z"}],polygons:"",polylines:"",rects:""}},Pe={id:"icon--security",name:"icon--security",tags:"icon--security",styles:"",viewBox:"0 0 16 24",width:"16",height:"24",svgData:{circles:"",ellipses:"",paths:[{d:"M13 9.8V5c0-2.8-2.2-5-5-5S3 2.2 3 5v4.8c-1.8 1.5-3 3.7-3 6.2 0 4.4 3.6 8 8 8s8-3.6 8-8c0-2.5-1.2-4.8-3-6.2zM4 5c0-2.2 1.8-4 4-4s4 1.8 4 4v4.1C10.8 8.4 9.5 8 8 8s-2.8.4-4 1.1V5zm4 18c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7z"},{d:"M9.6 14.4c0-.9-.7-1.6-1.6-1.6-.9 0-1.6.7-1.6 1.6 0 .5.2.9.6 1.2V18c0 .6.4 1 1 1s1-.5 1-1v-2.4c.3-.2.6-.7.6-1.2z"}],polygons:"",polylines:"",rects:""}},Fe={id:"icon--services",name:"icon--services",tags:"icon--services",styles:"",viewBox:"0 0 23 23",width:"23",height:"23",svgData:{circles:"",ellipses:"",paths:[{d:"M20.5 9c-1.4 0-2.5 1.1-2.5 2.5s1.1 2.5 2.5 2.5 2.5-1.1 2.5-2.5S21.9 9 20.5 9zm0 4c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5c0 .9-.7 1.5-1.5 1.5zM5 11.5C5 10.1 3.9 9 2.5 9S0 10.1 0 11.5 1.1 14 2.5 14 5 12.9 5 11.5zM2.5 13c-.8 0-1.5-.6-1.5-1.5 0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5c0 .9-.7 1.5-1.5 1.5zm9.5 5v-4c1.1-.2 2-1.2 2-2.5 0-1.2-.9-2.2-2-2.5V5c1.1-.2 2-1.2 2-2.5C14 1.1 12.9 0 11.5 0S9 1.1 9 2.5c0 1.2.9 2.2 2 2.5v4c-1.1.2-2 1.2-2 2.5 0 1.2.9 2.2 2 2.5v4c-1.1.2-2 1.2-2 2.5 0 1.4 1.1 2.5 2.5 2.5s2.5-1.1 2.5-2.5c0-1.2-.8-2.2-2-2.5zM10 2.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5S12.3 4 11.5 4 10 3.3 10 2.5zm0 9c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5-.7 1.5-1.5 1.5-1.5-.7-1.5-1.5zM11.5 22c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5z"},{d:"M9 6.5C9 5.1 7.9 4 6.5 4S4 5.1 4 6.5c0 1.2.9 2.2 2 2.5v5.1c-1.1.2-2 1.2-2 2.5S5.1 19 6.5 19 9 17.9 9 16.5c0-1.2-.9-2.2-2-2.5V8.9c1.1-.2 2-1.2 2-2.4zm-4 0C5 5.7 5.7 5 6.5 5S8 5.7 8 6.5 7.3 8 6.5 8 5 7.3 5 6.5zm3 10c0 .9-.7 1.5-1.5 1.5S5 17.4 5 16.5 5.7 15 6.5 15s1.5.7 1.5 1.5zm9-2.4V8.9c1.1-.2 2-1.2 2-2.5S17.9 4 16.5 4 14 5.1 14 6.5c0 1.2.9 2.2 2 2.5v5.1c-1.1.2-2 1.2-2 2.5 0 1.4 1.1 2.5 2.5 2.5S19 18 19 16.6c0-1.3-.8-2.3-2-2.5zm-2-7.6c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5S17.3 8 16.5 8 15 7.3 15 6.5zM16.5 18c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5z"}],polygons:"",polylines:"",rects:""}},Ue={id:"icon--settings",name:"icon--settings",tags:"icon--settings",styles:"",viewBox:"0 0 15 16",width:"15",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M7.5 10.5C8.9 10.5 10 9.4 10 8S8.9 5.5 7.5 5.5 5 6.6 5 8s1.2 2.5 2.5 2.5zm0 1C5.6 11.5 4 9.9 4 8s1.6-3.5 3.5-3.5S11 6.1 11 8s-1.5 3.5-3.5 3.5z"},{d:"M6.3 2.6l-.3.1c-.7.2-1.3.5-1.9 1l-.2.2-1.4-.8-1.3 1.8L2.4 6l-.1.2C2.1 6.8 2 7.4 2 8c0 .3 0 .7.1 1l.1.3-1.2 1L2.2 12l1.1-.6.3.3c.6.8 1.4 1.3 2.4 1.6l.3.1.2 1.6h2.1l.2-1.6.3-.1c.8-.2 1.6-.7 2.2-1.3l.3-.2 1.1.6 1.2-1.7-1.1-1 .1-.3c.1-.5.1-1 .1-1.4 0-.5-.1-1.1-.2-1.6l-.1-.3 1.2-1-1.2-1.7-1.4.6-.3-.2c-.6-.5-1.3-.9-2-1.1l-.2-.1L8.6 1H6.5l-.2 1.6zM5.5.9c0-.5.5-.9 1-.9h2.1c.5 0 .9.4 1 .9l.1 1c.6.2 1.2.5 1.8 1l.7-.4c.4-.2 1-.1 1.3.3l1.2 1.7c.3.4.2 1-.1 1.3l-.7.6c.1.5.1 1.1.1 1.6 0 .4 0 .8-.1 1.3l.6.6c.4.3.4.9.1 1.3l-1.2 1.7c-.3.4-.8.5-1.3.3l-.4-.2c-.6.5-1.3.9-2 1.2l-.1 1c-.1.5-.5.9-1 .9H6.5c-.5 0-.9-.4-1-.9l-.1-1c-.8-.3-1.6-.8-2.3-1.4l-.4.2c-.4.2-1 .1-1.3-.3L.2 11c-.3-.4-.2-1 .1-1.3l.8-.7c0-.4-.1-.7-.1-1 0-.6.1-1.2.2-1.8l-.6-.6C.2 5.3.1 4.7.4 4.3l1.2-1.7c.3-.5.9-.6 1.3-.4l.9.5c.5-.3 1-.6 1.6-.8l.1-1z"}],polygons:"",polylines:"",rects:""}},Ee={id:"icon--settings--glyph",name:"icon--settings--glyph",tags:"icon--settings--glyph",styles:"",viewBox:"-1 2 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M13.1 10c0-.3 0-.6-.1-1l2-1.7-1.7-2.7-2.3.8c-.6-.5-1.2-.9-1.9-1.1L8.6 2H5.4l-.5 2.2c-.7.3-1.4.7-1.9 1.2L.7 4.6-1 7.3.9 9c0 .3-.1.6-.1 1s0 .6.1 1L-1 12.7l1.7 2.7 2.3-.8c.6.5 1.2.9 1.9 1.1l.5 2.3h3.2l.5-2.2c.7-.3 1.3-.6 1.9-1.1l2.3.8 1.7-2.7-1.9-1.8v-1zM7 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"}],polygons:"",polylines:"",rects:""}},Ie={id:"icon--star--outline",name:"icon--star--outline",tags:"icon--star--outline",styles:"",viewBox:"0 0 16 15",width:"16",height:"15",svgData:{circles:"",ellipses:"",paths:[{d:"M3 15l1-5.2-4-4L5.5 5 8 0l2.5 5 5.5.7-4 4 1 5.2-5-2.5L3 15zm5-3.6l3.6 1.8-.7-3.8 2.9-3-4-.5L8 2.2 6.2 5.9l-4 .5 2.9 2.9-.7 3.8L8 11.4z"}],polygons:"",polylines:"",rects:""}},We={id:"icon--star--solid",name:"icon--star--solid",tags:"icon--star--solid",styles:"",viewBox:"0 0 16 15",width:"16",height:"15",svgData:{circles:"",ellipses:"",paths:[{d:"M7.998 0L5.5 5 0 5.75l4 4L3 15l4.998-2.5L13 15l-1-5.25 4-4.005L10.5 5z"}],polygons:"",polylines:"",rects:""}},_e={id:"icon--start",name:"icon--start",tags:"icon--start",styles:"",viewBox:"0 0 21 24",width:"21",height:"24",svgData:{circles:"",ellipses:"",paths:[{d:"M0 24l21-12L0 0z"}],polygons:"",polylines:"",rects:""}},Ne={id:"icon--start--glyph",name:"icon--start--glyph",tags:"icon--start--glyph",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zM5 11V5l6.6 3L5 11z"}],polygons:"",polylines:"",rects:""}},Re={id:"icon--start--outline",name:"icon--start--outline",tags:"icon--start--outline",styles:"",viewBox:"0 0 24 24",width:"24",height:"24",svgData:{circles:"",ellipses:"",paths:[{d:"M8 17l9-5-9-5z"},{d:"M12 2c5.5 0 10 4.5 10 10s-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2zm0-2C5.4 0 0 5.4 0 12s5.4 12 12 12 12-5.4 12-12S18.6 0 12 0z"}],polygons:"",polylines:"",rects:""}},Te={id:"icon--stop",name:"icon--stop",tags:"icon--stop",styles:"",viewBox:"0 0 24 24",width:"24",height:"24",svgData:{circles:"",ellipses:"",paths:[{d:"M0 0h24v24H0z"}],polygons:"",polylines:"",rects:""}},je={id:"icon--stop--glyph",name:"icon--stop--glyph",tags:"icon--stop--glyph",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm3 11H5V5h6v6z"}],polygons:"",polylines:"",rects:""}},qe={id:"icon--stop--outline",name:"icon--stop--outline",tags:"icon--stop--outline",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M8 14.5c3.6 0 6.5-2.9 6.5-6.5S11.6 1.5 8 1.5 1.5 4.4 1.5 8s2.9 6.5 6.5 6.5zM8 16c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8z"},{d:"M6 6v4h4V6H6zM5 4h6c.6 0 1 .4 1 1v6c0 .6-.4 1-1 1H5c-.6 0-1-.4-1-1V5c0-.6.4-1 1-1z"}],polygons:"",polylines:"",rects:""}},Je={id:"icon--stop--solid",name:"icon--stop--solid",tags:"icon--stop--solid",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16zM6 5a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H6z"}],polygons:"",polylines:"",rects:""}},Ke={id:"icon--storage",name:"icon--storage",tags:"icon--storage",styles:"",viewBox:"0 0 24 24",width:"24",height:"24",svgData:{circles:"",ellipses:"",paths:[{d:"M11.9 1.3c5.4 0 9.3 1 10.6 1.7-1.3.7-4.9 1.6-10.6 1.6-5.6 0-9.1-1-10.3-1.6 1.1-.7 4.7-1.7 10.3-1.7zm0-1.3C5.1 0 0 1.4 0 3s5.1 3 11.9 3C18.7 6 24 4.6 24 3s-5.4-3-12.1-3zm.1 18c-4.5 0-12-.7-12-3.2V12h1.2v2.9c0 .5 3.3 2 10.8 2 7.1 0 10.8-1.4 10.8-2V12H24v2.9c0 2.4-7.5 3.1-12 3.1zm0 6c-4.5 0-12-.7-12-3.2V18h1.2v2.8c0 .5 3.3 2 10.8 2 7.1 0 10.8-1.4 10.8-2V18H24v2.8c0 2.5-7.5 3.2-12 3.2zm0-12c-4.4 0-12-.7-12-3.2V6h1.2v2.8c0 .5 3.3 2 10.8 2 7.5 0 10.8-1.4 10.8-2V6H24v2.8c0 2.5-7.5 3.2-12 3.2z"}],polygons:"",polylines:"",rects:""}},Qe={id:"icon--subtract--glyph",name:"icon--subtract--glyph",tags:"icon--subtract--glyph",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm4 7v2H4V7"}],polygons:"",polylines:"",rects:""}},Xe={id:"icon--subtract--outline",name:"icon--subtract--outline",tags:"icon--subtract--outline",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M8 14.5a6.5 6.5 0 1 0 0-13 6.5 6.5 0 0 0 0 13zM8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16z","fill-rule":"nonzero"},{d:"M4 7h8v2H4z"}],polygons:"",polylines:"",rects:""}},Ye={id:"icon--subtract--solid",name:"icon--subtract--solid",tags:"icon--subtract--solid",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16zM4 7v2h8V7H4z"}],polygons:"",polylines:"",rects:""}},Ze={id:"icon--terminal",name:"icon--terminal",tags:"icon--terminal",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M16 4.5V15c0 .6-.4 1-1 1H1c-.6 0-1-.4-1-1V1c0-.6.4-1 1-1h14c.6 0 1 .4 1 1v3.5zM15 4V1H1v3h14zm0 1H1v10h14V5z"},{d:"M3 8.4l.7-.8L6 9.9l-2.3 2.3-.7-.7 1.6-1.6z"}],polygons:"",polylines:"",rects:""}},$e={id:"icon--unlock",name:"icon--unlock",tags:"icon--unlock",styles:"",viewBox:"0 0 12 16",width:"12",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M2.5 7V3.5a3.5 3.5 0 0 1 7 0V4h-1v-.5a2.5 2.5 0 0 0-5 0V7h7A1.5 1.5 0 0 1 12 8.5v6a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 0 14.5v-6A1.5 1.5 0 0 1 1.5 7h1zm-1 1a.5.5 0 0 0-.5.5v6a.5.5 0 0 0 .5.5h9a.5.5 0 0 0 .5-.5v-6a.5.5 0 0 0-.5-.5h-9z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},is={id:"icon--unlocked",name:"icon--unlocked",tags:"icon--unlocked",styles:"",viewBox:"0 0 18 24",width:"18",height:"24",svgData:{circles:"",ellipses:"",paths:[{d:"M9 6.5c-1.6 0-3.1.4-4.4 1.2V6.5c0-2.3 2-4.4 4.4-4.4 1.2 0 2.3.5 3.1 1.3l1.5-1.5C12.4.8 10.8 0 9 0 5.5 0 2.5 3 2.5 6.5v3C1.1 11 .3 13 .3 15.3.3 20.1 4.2 24 9 24c4.8 0 8.7-3.9 8.7-8.7 0-4.8-3.9-8.8-8.7-8.8zm4 11.3l-1.5 1.5L9 16.8l-2.5 2.5L5 17.8l2.5-2.5L5 12.8l1.5-1.5L9 13.7l2.5-2.5 1.5 1.6-2.5 2.5 2.5 2.5z"}],polygons:"",polylines:"",rects:""}},es={id:"icon--upload",name:"icon--upload",tags:"icon--upload",styles:"",viewBox:"0 0 24 24",width:"24",height:"24",svgData:{circles:"",ellipses:"",paths:[{d:"M5 6.6l1.2 1.1L11 3v13h2V3l4.8 4.7L19 6.6 12 0z"},{d:"M22 14v6H2v-6H0v10h24V14z"}],polygons:"",polylines:"",rects:""}},ss={id:"icon--user",name:"icon--user",tags:"icon--user",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M4 13.7c1.1.8 2.5 1.3 4 1.3s2.9-.5 4-1.3v-1.2c0-.8-.7-1.5-1.5-1.5h-5c-.8 0-1.5.7-1.5 1.5v1.2zm-1-.8v-.4C3 11.1 4.1 10 5.5 10h5c1.4 0 2.5 1.1 2.5 2.5v.4c1.2-1.3 2-3 2-4.9 0-3.9-3.1-7-7-7S1 4.1 1 8c0 1.9.8 3.6 2 4.9zM8 16c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8z"},{d:"M8 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 1C6.3 9 5 7.7 5 6s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3z"}],polygons:"",polylines:"",rects:""}},ls={id:"icon--visibility-off",name:"icon--visibility-off",tags:"icon--visibility-off",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M11.846 3.45L15.293.007 16 .714l-3.284 3.281c1.261.902 2.377 2.212 3.347 3.93C14.02 11.642 11.333 13.5 8 13.5c-1.392 0-2.667-.324-3.822-.973L.703 16l-.706-.708 3.323-3.32C2.071 11.042.976 9.694.035 7.924 2.012 4.308 4.667 2.5 8 2.5c1.395 0 2.677.317 3.846.95zm-6.928 8.338c.944.477 1.97.712 3.082.712 2.795 0 5.076-1.483 6.907-4.568-.866-1.417-1.833-2.486-2.91-3.219l-1.55 1.55a3 3 0 0 1-4.185 4.182l-1.344 1.343zm-.882-.533l1.518-1.517A3 3 0 0 1 9.74 5.556l1.364-1.363A7.02 7.02 0 0 0 8 3.5c-2.798 0-5.047 1.439-6.819 4.432.842 1.465 1.792 2.568 2.855 3.323zm2.948-1.532a2 2 0 0 0 2.74-2.738l-2.74 2.738zm-.707-.707l2.74-2.738a2 2 0 0 0-2.74 2.738z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},os={id:"icon--visibility-on",name:"icon--visibility-on",tags:"icon--visibility-on",styles:"",viewBox:"0 0 16 11",width:"16",height:"11",svgData:{circles:"",ellipses:"",paths:[{d:"M8 7.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 1c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3z"},{d:"M8 10c2.8 0 5.1-1.5 6.9-4.6C13.1 2.5 10.8 1 8 1 5.2 1 3 2.4 1.2 5.4 2.9 8.6 5.2 10 8 10zM8 0c3.3 0 6 1.8 8.1 5.4C14 9.2 11.3 11 8 11S2 9.2 0 5.5C2 1.9 4.6 0 8 0z"}],polygons:"",polylines:"",rects:""}},cs={id:"icon--warning",name:"icon--warning",tags:"icon--warning",styles:"",viewBox:"0 0 24 21",width:"24",height:"21",svgData:{circles:"",ellipses:"",paths:[{d:"M12 0L0 21h24L12 0zm0 3l9 16H3l9-16z"},{d:"M11.2 8.4V10l.4 4h.8l.4-4V8.4zM11.2 16a.8.8 0 1 1 1.6 0 .8.8 0 1 1-1.6 0"}],polygons:"",polylines:"",rects:""}},ns={id:"icon--warning--glyph",name:"icon--warning--glyph",tags:"icon--warning--glyph",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M8 1L0 15h16L8 1zm-.8 5h1.5v1.4L8.3 11h-.8l-.4-3.6V6h.1zm.8 8c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1z"}],polygons:"",polylines:"",rects:""}},ts={id:"icon--warning--outline",name:"icon--warning--outline",tags:"icon--warning--outline",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M7.25 6h1.5v5h-1.5z"},{d:"M.75 16a.75.75 0 0 1-.67-1.085L7.33.415a.75.75 0 0 1 1.34 0l7.25 14.5A.75.75 0 0 1 15.25 16H.75zm1.214-1.5h12.072L8 2.427 1.964 14.5z","fill-rule":"nonzero"},{d:"M7 12.75a1 1 0 1 1 2 0 1 1 0 1 1-2 0"}],polygons:"",polylines:"",rects:""}},as={id:"icon--warning--solid",name:"icon--warning--solid",tags:"icon--warning--solid",styles:"",viewBox:"0 0 16 16",width:"16",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M.75 16a.75.75 0 0 1-.67-1.085L7.33.415a.75.75 0 0 1 1.34 0l7.25 14.5A.75.75 0 0 1 15.25 16H.75zm6.5-10v5h1.5V6h-1.5zM8 13.5A.75.75 0 1 0 8 12a.75.75 0 0 0 0 1.5z","fill-rule":"nonzero"}],polygons:"",polylines:"",rects:""}},hs={id:"icon--watson",name:"icon--watson",tags:"icon--watson",styles:"",viewBox:"0 0 24 22",width:"24",height:"22",svgData:{circles:"",ellipses:"",paths:[{d:"M16.3 5.9c-2-1.1-4.3-1.5-6.5-.9-.3.1-.5.5-.4.8.1.3.4.5.8.4 1-.3 2.1-.3 3.1-.1-1.6.8-3.4 2.7-4.9 5.2-.5.9-1 1.9-1.3 2.9-.4-.4-.7-.8-1-1.2-.8-1.3-.9-2.4-.5-3.2.5-.8 1.6-1.3 3.2-1.2.3 0 .6-.3.7-.6 0-.3-.3-.6-.6-.7-2.1-.2-3.6.5-4.4 1.8-.7 1.2-.5 2.8.5 4.4.4.7 1 1.3 1.6 2-.1.5-.2 1-.3 1.4V18c-.7-.9-1.2-1.9-1.5-3-.1-.3-.4-.5-.8-.5-.3.1-.5.4-.5.8.6 2.3 2 4.3 4.1 5.5C9 21.6 10.5 22 12 22c3 0 5.9-1.5 7.5-4.3 2.4-4.1.9-9.4-3.2-11.8zm-6.9 6c2.2-3.8 5-5.6 6.2-4.9 3.5 2 4.7 6.6 2.7 10.1-1 1.7-4.8 1.5-8.3-.5-.8-.4-1.5-1-2.1-1.5.5-1 .9-2.1 1.5-3.2zm-1.1 7.9c-.6-.3-.9-1.3-.7-2.7 0-.2.1-.4.1-.6l1.8 1.2c2.1 1.2 4.2 1.8 6 1.8h.6c-2.2 1.5-5.3 1.7-7.8.3zM3.2 7.6L.9 6.3c-.3-.2-.6-.1-.8.2-.2.3-.1.7.2.8l2.3 1.3c.1.1.2.1.3.1.2 0 .4-.1.5-.3.2-.3.1-.7-.2-.8zM12 3.5c.3 0 .6-.3.6-.6V.6c0-.3-.3-.6-.6-.6s-.6.3-.6.6v2.2c0 .4.3.7.6.7zm5 1.3c.1.1.2.1.3.1.2 0 .4-.1.5-.3l1.2-2c.2-.3.1-.7-.2-.8-.3-.2-.7-.1-.9.2l-1.2 2c-.1.2 0 .6.3.8zm-10 0c-.1 0-.2.1-.3.1-.2 0-.4-.1-.5-.3L5 2.6c-.1-.3 0-.7.3-.9.3-.2.7-.1.9.2l1.2 2c0 .3-.1.7-.4.9zm16.9 1.7c-.2-.3-.6-.4-.9-.2l-2.3 1.3c-.3.2-.4.6-.2.9.1.2.3.3.5.3.1 0 .2 0 .3-.1l2.3-1.3c.4-.2.5-.6.3-.9z"}],polygons:"",polylines:"",rects:""}},ps={id:"icon--whisk",name:"icon--whisk",tags:"icon--whisk",styles:"",viewBox:"0 0 25 16",width:"25",height:"16",svgData:{circles:"",ellipses:"",paths:[{d:"M9.9 9.7L4.5 0 0 8l4.5 8h8l.5-.8 3-5.5H9.9zm-4.7 5.1L1.4 8l3.1-5.5 6.9 12.3H5.2zm7.2-1.1l-1.6-2.8h3.1l-1.5 2.8z"},{d:"M19.5 0h-7.8l-.6 1.1-3 5.5h6l5.3 9.5L24 8l-4.5-8zm-9.3 5.3l1.5-2.8 1.6 2.8h-3.1zm2.4-4.1h6.2L22.6 8l-3.1 5.5-6.9-12.3z"}],polygons:"",polylines:"",rects:""}};const rs=Object.keys(l).map((function(i){return l[i]}))}}]);
|