@popsure/dirty-swan 0.27.29 → 0.27.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (86) hide show
  1. package/dist/App.d.ts +0 -1
  2. package/dist/index.js +213 -148
  3. package/dist/index.js.map +1 -1
  4. package/dist/lib/components/autocompleteAddress/demo.d.ts +0 -1
  5. package/dist/lib/components/autocompleteAddress/index.d.ts +0 -1
  6. package/dist/lib/components/button/index.d.ts +1 -1
  7. package/dist/lib/components/chip/index.d.ts +0 -1
  8. package/dist/lib/components/comparisonTable/components/AccordionItem/AccordionItem.d.ts +0 -1
  9. package/dist/lib/components/comparisonTable/components/Chevron.d.ts +0 -1
  10. package/dist/lib/components/comparisonTable/components/Row/index.d.ts +0 -1
  11. package/dist/lib/components/comparisonTable/components/TableArrows/Arrow.d.ts +0 -1
  12. package/dist/lib/components/comparisonTable/components/TableArrows/index.d.ts +0 -1
  13. package/dist/lib/components/comparisonTable/components/TableInfoButton/index.d.ts +0 -1
  14. package/dist/lib/components/comparisonTable/components/TableRating/StarIcon.d.ts +0 -1
  15. package/dist/lib/components/comparisonTable/components/TableRating/ZapIcon.d.ts +0 -1
  16. package/dist/lib/components/comparisonTable/components/TableRating/index.d.ts +0 -1
  17. package/dist/lib/components/comparisonTable/components/TableRowHeader/index.d.ts +0 -1
  18. package/dist/lib/components/comparisonTable/components/TableTrueFalse.d.ts +0 -1
  19. package/dist/lib/components/dateSelector/index.d.ts +0 -1
  20. package/dist/lib/components/input/autoSuggestInput/index.d.ts +0 -1
  21. package/dist/lib/components/input/autoSuggestMultiSelect/index.d.ts +0 -1
  22. package/dist/lib/components/input/currency/index.d.ts +0 -1
  23. package/dist/lib/components/input/iban/index.d.ts +0 -1
  24. package/dist/lib/components/input/index.d.ts +1 -1
  25. package/dist/lib/components/modal/bottomModal/index.d.ts +0 -1
  26. package/dist/lib/components/modal/bottomOrRegularModal/index.d.ts +0 -1
  27. package/dist/lib/components/modal/regularModal/index.d.ts +0 -1
  28. package/dist/lib/components/multiDropzone/UploadFileCell/index.d.ts +6 -5
  29. package/dist/lib/components/multiDropzone/icons/index.d.ts +6 -20
  30. package/dist/lib/components/multiDropzone/index.d.ts +8 -19
  31. package/dist/lib/components/multiDropzone/index.test.d.ts +1 -0
  32. package/dist/lib/components/multiDropzone/types.d.ts +31 -0
  33. package/dist/lib/components/multiDropzone/utils/index.d.ts +11 -0
  34. package/dist/lib/components/segmentedControl/index.d.ts +0 -1
  35. package/dist/lib/scss/private/base/demo.d.ts +0 -1
  36. package/dist/lib/scss/public/demo.d.ts +0 -1
  37. package/dist/lib/util/formatBytes/index.d.ts +1 -0
  38. package/dist/lib/util/testUtils/customRender.d.ts +7 -0
  39. package/dist/lib/util/testUtils/index.d.ts +2 -0
  40. package/package.json +7 -4
  41. package/src/lib/components/autocompleteAddress/index.test.tsx +22 -21
  42. package/src/lib/components/input/currency/index.test.tsx +22 -22
  43. package/src/lib/components/input/index.tsx +3 -6
  44. package/src/lib/components/modal/regularModal/index.tsx +14 -12
  45. package/src/lib/components/modal/regularModal/style.module.scss +16 -15
  46. package/src/lib/components/multiDropzone/UploadFileCell/index.tsx +44 -64
  47. package/src/lib/components/multiDropzone/UploadFileCell/style.module.scss +3 -9
  48. package/src/lib/components/multiDropzone/icons/eye.svg +10 -3
  49. package/src/lib/components/multiDropzone/icons/file-error.svg +4 -0
  50. package/src/lib/components/multiDropzone/icons/file-upload.svg +4 -0
  51. package/src/lib/components/multiDropzone/icons/file.svg +4 -0
  52. package/src/lib/components/multiDropzone/icons/index.ts +12 -44
  53. package/src/lib/components/multiDropzone/icons/trash-error.svg +6 -0
  54. package/src/lib/components/multiDropzone/icons/trash.svg +5 -5
  55. package/src/lib/components/multiDropzone/icons/upload-small.svg +12 -0
  56. package/src/lib/components/multiDropzone/index.stories.mdx +60 -2
  57. package/src/lib/components/multiDropzone/index.test.tsx +230 -0
  58. package/src/lib/components/multiDropzone/index.tsx +98 -69
  59. package/src/lib/components/multiDropzone/types.ts +36 -0
  60. package/src/lib/components/multiDropzone/utils/index.test.ts +112 -0
  61. package/src/lib/components/multiDropzone/utils/index.ts +69 -0
  62. package/src/lib/components/segmentedControl/index.test.tsx +15 -21
  63. package/src/lib/util/formatBytes/index.test.ts +19 -0
  64. package/src/lib/util/formatBytes/index.ts +13 -0
  65. package/src/lib/util/testUtils/customRender.tsx +15 -0
  66. package/src/lib/util/testUtils/index.ts +5 -0
  67. package/src/setupTests.js +2 -0
  68. package/src/lib/components/multiDropzone/icons/bmp-complete.svg +0 -10
  69. package/src/lib/components/multiDropzone/icons/bmp.svg +0 -10
  70. package/src/lib/components/multiDropzone/icons/doc-complete.svg +0 -11
  71. package/src/lib/components/multiDropzone/icons/doc.svg +0 -11
  72. package/src/lib/components/multiDropzone/icons/docx-complete.svg +0 -12
  73. package/src/lib/components/multiDropzone/icons/docx.svg +0 -12
  74. package/src/lib/components/multiDropzone/icons/generic-complete.svg +0 -4
  75. package/src/lib/components/multiDropzone/icons/generic-error.svg +0 -7
  76. package/src/lib/components/multiDropzone/icons/generic.svg +0 -4
  77. package/src/lib/components/multiDropzone/icons/heic-complete.svg +0 -11
  78. package/src/lib/components/multiDropzone/icons/heic.svg +0 -11
  79. package/src/lib/components/multiDropzone/icons/jpeg-complete.svg +0 -11
  80. package/src/lib/components/multiDropzone/icons/jpeg.svg +0 -11
  81. package/src/lib/components/multiDropzone/icons/jpg-complete.svg +0 -10
  82. package/src/lib/components/multiDropzone/icons/jpg.svg +0 -10
  83. package/src/lib/components/multiDropzone/icons/pdf-complete.svg +0 -8
  84. package/src/lib/components/multiDropzone/icons/pdf.svg +0 -8
  85. package/src/lib/components/multiDropzone/icons/png-complete.svg +0 -10
  86. package/src/lib/components/multiDropzone/icons/png.svg +0 -10
package/dist/index.js CHANGED
@@ -4,6 +4,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  var jsxRuntime = require('react/jsx-runtime');
6
6
  var require$$0 = require('react');
7
+ var crypto = require('crypto');
7
8
  var require$$1 = require('react-dom');
8
9
  var path = require('path');
9
10
  var require$$2 = require('querystring');
@@ -11,6 +12,7 @@ var require$$2 = require('querystring');
11
12
  function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
12
13
 
13
14
  var require$$0__default = /*#__PURE__*/_interopDefaultLegacy(require$$0);
15
+ var crypto__default = /*#__PURE__*/_interopDefaultLegacy(crypto);
14
16
  var require$$1__default = /*#__PURE__*/_interopDefaultLegacy(require$$1);
15
17
  var path__default = /*#__PURE__*/_interopDefaultLegacy(path);
16
18
  var require$$2__default = /*#__PURE__*/_interopDefaultLegacy(require$$2);
@@ -5151,20 +5153,82 @@ module.exports = isEqual;
5151
5153
 
5152
5154
  var isEqual = lodash_isequal.exports;
5153
5155
 
5156
+ const rnds8Pool = new Uint8Array(256); // # of random values to pre-allocate
5157
+
5158
+ let poolPtr = rnds8Pool.length;
5159
+ function rng() {
5160
+ if (poolPtr > rnds8Pool.length - 16) {
5161
+ crypto__default['default'].randomFillSync(rnds8Pool);
5162
+ poolPtr = 0;
5163
+ }
5164
+
5165
+ return rnds8Pool.slice(poolPtr, poolPtr += 16);
5166
+ }
5167
+
5168
+ var REGEX = /^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i;
5169
+
5170
+ function validate(uuid) {
5171
+ return typeof uuid === 'string' && REGEX.test(uuid);
5172
+ }
5173
+
5174
+ /**
5175
+ * Convert array of 16 byte values to UUID string format of the form:
5176
+ * XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
5177
+ */
5178
+
5179
+ const byteToHex = [];
5180
+
5181
+ for (let i = 0; i < 256; ++i) {
5182
+ byteToHex.push((i + 0x100).toString(16).substr(1));
5183
+ }
5184
+
5185
+ function stringify$2(arr, offset = 0) {
5186
+ // Note: Be careful editing this code! It's been tuned for performance
5187
+ // and works in ways you may not expect. See https://github.com/uuidjs/uuid/pull/434
5188
+ const uuid = (byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + '-' + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + '-' + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + '-' + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + '-' + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]]).toLowerCase(); // Consistency check for valid UUID. If this throws, it's likely due to one
5189
+ // of the following:
5190
+ // - One or more input array values don't map to a hex octet (leading to
5191
+ // "undefined" in the uuid)
5192
+ // - Invalid input values for the RFC `version` or `variant` fields
5193
+
5194
+ if (!validate(uuid)) {
5195
+ throw TypeError('Stringified UUID is invalid');
5196
+ }
5197
+
5198
+ return uuid;
5199
+ }
5200
+
5201
+ function v4(options, buf, offset) {
5202
+ options = options || {};
5203
+ const rnds = options.random || (options.rng || rng)(); // Per 4.4, set bits for version and `clock_seq_hi_and_reserved`
5204
+
5205
+ rnds[6] = rnds[6] & 0x0f | 0x40;
5206
+ rnds[8] = rnds[8] & 0x3f | 0x80; // Copy bytes to buffer, if provided
5207
+
5208
+ if (buf) {
5209
+ offset = offset || 0;
5210
+
5211
+ for (let i = 0; i < 16; ++i) {
5212
+ buf[offset + i] = rnds[i];
5213
+ }
5214
+
5215
+ return buf;
5216
+ }
5217
+
5218
+ return stringify$2(rnds);
5219
+ }
5220
+
5154
5221
  var css_248z$p = ".style-module_container__2L4SP {\n position: relative;\n}\n\n.style-module_prefix__3jAFZ {\n position: absolute;\n left: 16px;\n top: 50%;\n transform: translateY(-50%);\n color: var(--ds-grey-500);\n transition: 0.3s top;\n}\n.style-module_prefix--with-error__1yTTM {\n color: var(--ds-red-500);\n}\n.style-module_prefix--disabled__2-gcw {\n color: var(--ds-grey-600);\n}\n\n.style-module_input__1eJO5:not(:placeholder-shown) ~ .style-module_placeholder__1U2z0,\n.style-module_input__1eJO5:focus ~ .style-module_placeholder__1U2z0 {\n top: 7px;\n left: 16px;\n transform: translateY(0);\n font-size: 10px;\n line-height: 12px;\n opacity: 1;\n}\n\n.style-module_input__1eJO5:focus ~ .style-module_placeholder__1U2z0 {\n color: var(--ds-primary-500);\n}\n.style-module_input__1eJO5:focus ~ .style-module_placeholder--with-error__2ieRU {\n color: var(--ds-red-500);\n}\n\n.style-module_input__1eJO5:focus ~ .style-module_prefix__3jAFZ {\n color: var(--ds-primary-500);\n}\n.style-module_input__1eJO5:focus ~ .style-module_prefix--with-error__1yTTM {\n color: var(--ds-red-500);\n}\n\n.style-module_input__1eJO5:not(:placeholder-shown) ~ .style-module_prefix__3jAFZ,\n.style-module_input__1eJO5:focus ~ .style-module_prefix__3jAFZ {\n top: 28px;\n}\n\n.style-module_input__1eJO5 {\n box-sizing: border-box;\n padding-top: 9px;\n font-family: inherit;\n}\n.style-module_input--no-placeholder__3EGwh {\n padding-top: 0px;\n}\n.style-module_input--with-prefix__38e0j {\n padding-left: 32px !important;\n}\n\n.style-module_placeholder__1U2z0 {\n position: absolute;\n pointer-events: none;\n left: 16px;\n top: 50%;\n transform: translateY(-50%);\n transition: 0.3s ease all;\n color: var(--ds-grey-500);\n}\n.style-module_placeholder--with-prefix__2PquQ {\n left: 32px;\n}\n.style-module_placeholder--with-error__2ieRU {\n color: var(--ds-red-500);\n}\n\n.style-module_label__3FEZ1 {\n display: inline-block;\n margin-bottom: 8px;\n color: var(--ds-grey-600);\n}\n.style-module_label--with-error__166bP {\n color: var(--ds-red-500);\n}\n\n.style-module_error__167Zc {\n margin-top: 4px;\n}";
5155
5222
  var styles$o = {"container":"style-module_container__2L4SP","prefix":"style-module_prefix__3jAFZ","prefix--with-error":"style-module_prefix--with-error__1yTTM","prefix--disabled":"style-module_prefix--disabled__2-gcw","input":"style-module_input__1eJO5","placeholder":"style-module_placeholder__1U2z0","placeholder--with-error":"style-module_placeholder--with-error__2ieRU","input--no-placeholder":"style-module_input--no-placeholder__3EGwh","input--with-prefix":"style-module_input--with-prefix__38e0j","placeholder--with-prefix":"style-module_placeholder--with-prefix__2PquQ","label":"style-module_label__3FEZ1","label--with-error":"style-module_label--with-error__166bP","error":"style-module_error__167Zc"};
5156
5223
  styleInject(css_248z$p);
5157
5224
 
5158
- var generateUniqueId = function () {
5159
- return "input-id-" + Math.floor(Math.random() * 10000000);
5160
- };
5161
5225
  var Input = require$$0__default['default'].forwardRef(function (_a, ref) {
5162
5226
  var _b, _c, _d, _e, _f, _g;
5163
5227
  var className = _a.className, placeholder = _a.placeholder, label = _a.label, id = _a.id, prefix = _a.prefix, error = _a.error, disabled = _a.disabled, _h = _a.hideLabel, hideLabel = _h === void 0 ? false : _h, props = __rest$1(_a, ["className", "placeholder", "label", "id", "prefix", "error", "disabled", "hideLabel"]);
5164
- var uniqueId = require$$0.useState(id !== null && id !== void 0 ? id : generateUniqueId())[0];
5228
+ var uniqueId = require$$0.useState(id !== null && id !== void 0 ? id : v4())[0];
5165
5229
  return (jsxRuntime.jsxs("div", __assign({ className: styles$o.container + " " + (className !== null && className !== void 0 ? className : '') }, { children: [label && (jsxRuntime.jsx("label", __assign({ htmlFor: uniqueId, className: classNames('p-p', styles$o.label, (_b = {},
5166
5230
  _b[styles$o['label--with-error']] = error,
5167
- _b["sr-only"] = hideLabel,
5231
+ _b['sr-only'] = hideLabel,
5168
5232
  _b)) }, { children: label }), void 0)),
5169
5233
  jsxRuntime.jsxs("div", __assign({ style: { position: 'relative' } }, { children: [jsxRuntime.jsx("input", __assign({ id: uniqueId, "data-testid": "ds-input-input", type: "text", ref: ref, className: classNames(error ? 'p-input--error' : 'p-input', !label && placeholder && placeholder.length > 0
5170
5234
  ? styles$o.input
@@ -5383,12 +5447,12 @@ var reactIs_production_min$2 = {};
5383
5447
  * This source code is licensed under the MIT license found in the
5384
5448
  * LICENSE file in the root directory of this source tree.
5385
5449
  */
5386
- var b$2="function"===typeof Symbol&&Symbol.for,c$2=b$2?Symbol.for("react.element"):60103,d$2=b$2?Symbol.for("react.portal"):60106,e$2=b$2?Symbol.for("react.fragment"):60107,f$2=b$2?Symbol.for("react.strict_mode"):60108,g$2=b$2?Symbol.for("react.profiler"):60114,h$3=b$2?Symbol.for("react.provider"):60109,k$2=b$2?Symbol.for("react.context"):60110,l$2=b$2?Symbol.for("react.async_mode"):60111,m$2=b$2?Symbol.for("react.concurrent_mode"):60111,n$2=b$2?Symbol.for("react.forward_ref"):60112,p$2=b$2?Symbol.for("react.suspense"):60113,q$2=b$2?
5450
+ var b$2="function"===typeof Symbol&&Symbol.for,c$2=b$2?Symbol.for("react.element"):60103,d$2=b$2?Symbol.for("react.portal"):60106,e$2=b$2?Symbol.for("react.fragment"):60107,f$2=b$2?Symbol.for("react.strict_mode"):60108,g$2=b$2?Symbol.for("react.profiler"):60114,h$3=b$2?Symbol.for("react.provider"):60109,k$3=b$2?Symbol.for("react.context"):60110,l$2=b$2?Symbol.for("react.async_mode"):60111,m$2=b$2?Symbol.for("react.concurrent_mode"):60111,n$2=b$2?Symbol.for("react.forward_ref"):60112,p$2=b$2?Symbol.for("react.suspense"):60113,q$2=b$2?
5387
5451
  Symbol.for("react.suspense_list"):60120,r$1=b$2?Symbol.for("react.memo"):60115,t$2=b$2?Symbol.for("react.lazy"):60116,v$2=b$2?Symbol.for("react.block"):60121,w$1=b$2?Symbol.for("react.fundamental"):60117,x$1=b$2?Symbol.for("react.responder"):60118,y$1=b$2?Symbol.for("react.scope"):60119;
5388
- function z$1(a){if("object"===typeof a&&null!==a){var u=a.$$typeof;switch(u){case c$2:switch(a=a.type,a){case l$2:case m$2:case e$2:case g$2:case f$2:case p$2:return a;default:switch(a=a&&a.$$typeof,a){case k$2:case n$2:case t$2:case r$1:case h$3:return a;default:return u}}case d$2:return u}}}function A$1(a){return z$1(a)===m$2}reactIs_production_min$2.AsyncMode=l$2;reactIs_production_min$2.ConcurrentMode=m$2;reactIs_production_min$2.ContextConsumer=k$2;reactIs_production_min$2.ContextProvider=h$3;reactIs_production_min$2.Element=c$2;reactIs_production_min$2.ForwardRef=n$2;reactIs_production_min$2.Fragment=e$2;reactIs_production_min$2.Lazy=t$2;reactIs_production_min$2.Memo=r$1;reactIs_production_min$2.Portal=d$2;
5389
- reactIs_production_min$2.Profiler=g$2;reactIs_production_min$2.StrictMode=f$2;reactIs_production_min$2.Suspense=p$2;reactIs_production_min$2.isAsyncMode=function(a){return A$1(a)||z$1(a)===l$2};reactIs_production_min$2.isConcurrentMode=A$1;reactIs_production_min$2.isContextConsumer=function(a){return z$1(a)===k$2};reactIs_production_min$2.isContextProvider=function(a){return z$1(a)===h$3};reactIs_production_min$2.isElement=function(a){return "object"===typeof a&&null!==a&&a.$$typeof===c$2};reactIs_production_min$2.isForwardRef=function(a){return z$1(a)===n$2};reactIs_production_min$2.isFragment=function(a){return z$1(a)===e$2};reactIs_production_min$2.isLazy=function(a){return z$1(a)===t$2};
5452
+ function z$1(a){if("object"===typeof a&&null!==a){var u=a.$$typeof;switch(u){case c$2:switch(a=a.type,a){case l$2:case m$2:case e$2:case g$2:case f$2:case p$2:return a;default:switch(a=a&&a.$$typeof,a){case k$3:case n$2:case t$2:case r$1:case h$3:return a;default:return u}}case d$2:return u}}}function A$1(a){return z$1(a)===m$2}reactIs_production_min$2.AsyncMode=l$2;reactIs_production_min$2.ConcurrentMode=m$2;reactIs_production_min$2.ContextConsumer=k$3;reactIs_production_min$2.ContextProvider=h$3;reactIs_production_min$2.Element=c$2;reactIs_production_min$2.ForwardRef=n$2;reactIs_production_min$2.Fragment=e$2;reactIs_production_min$2.Lazy=t$2;reactIs_production_min$2.Memo=r$1;reactIs_production_min$2.Portal=d$2;
5453
+ reactIs_production_min$2.Profiler=g$2;reactIs_production_min$2.StrictMode=f$2;reactIs_production_min$2.Suspense=p$2;reactIs_production_min$2.isAsyncMode=function(a){return A$1(a)||z$1(a)===l$2};reactIs_production_min$2.isConcurrentMode=A$1;reactIs_production_min$2.isContextConsumer=function(a){return z$1(a)===k$3};reactIs_production_min$2.isContextProvider=function(a){return z$1(a)===h$3};reactIs_production_min$2.isElement=function(a){return "object"===typeof a&&null!==a&&a.$$typeof===c$2};reactIs_production_min$2.isForwardRef=function(a){return z$1(a)===n$2};reactIs_production_min$2.isFragment=function(a){return z$1(a)===e$2};reactIs_production_min$2.isLazy=function(a){return z$1(a)===t$2};
5390
5454
  reactIs_production_min$2.isMemo=function(a){return z$1(a)===r$1};reactIs_production_min$2.isPortal=function(a){return z$1(a)===d$2};reactIs_production_min$2.isProfiler=function(a){return z$1(a)===g$2};reactIs_production_min$2.isStrictMode=function(a){return z$1(a)===f$2};reactIs_production_min$2.isSuspense=function(a){return z$1(a)===p$2};
5391
- reactIs_production_min$2.isValidElementType=function(a){return "string"===typeof a||"function"===typeof a||a===e$2||a===m$2||a===g$2||a===f$2||a===p$2||a===q$2||"object"===typeof a&&null!==a&&(a.$$typeof===t$2||a.$$typeof===r$1||a.$$typeof===h$3||a.$$typeof===k$2||a.$$typeof===n$2||a.$$typeof===w$1||a.$$typeof===x$1||a.$$typeof===y$1||a.$$typeof===v$2)};reactIs_production_min$2.typeOf=z$1;
5455
+ reactIs_production_min$2.isValidElementType=function(a){return "string"===typeof a||"function"===typeof a||a===e$2||a===m$2||a===g$2||a===f$2||a===p$2||a===q$2||"object"===typeof a&&null!==a&&(a.$$typeof===t$2||a.$$typeof===r$1||a.$$typeof===h$3||a.$$typeof===k$3||a.$$typeof===n$2||a.$$typeof===w$1||a.$$typeof===x$1||a.$$typeof===y$1||a.$$typeof===v$2)};reactIs_production_min$2.typeOf=z$1;
5392
5456
 
5393
5457
  var reactIs_development$2 = {};
5394
5458
 
@@ -6923,6 +6987,12 @@ var FILE_INVALID_TYPE = "file-invalid-type";
6923
6987
  var FILE_TOO_LARGE = "file-too-large";
6924
6988
  var FILE_TOO_SMALL = "file-too-small";
6925
6989
  var TOO_MANY_FILES = "too-many-files";
6990
+ var ErrorCode = {
6991
+ FileInvalidType: FILE_INVALID_TYPE,
6992
+ FileTooLarge: FILE_TOO_LARGE,
6993
+ FileTooSmall: FILE_TOO_SMALL,
6994
+ TooManyFiles: TOO_MANY_FILES
6995
+ }; // File Errors
6926
6996
 
6927
6997
  var getInvalidTypeRejectionErr = function getInvalidTypeRejectionErr(accept) {
6928
6998
  accept = Array.isArray(accept) && accept.length === 1 ? accept[0] : accept;
@@ -8406,131 +8476,48 @@ var css_248z$n = ".style-module_container__Uyltc {\n background-color: transpar
8406
8476
  var styles$m = {"container":"style-module_container__Uyltc","dropzoneContainer":"style-module_dropzoneContainer__yZoGP","img":"style-module_img__11JI8","textInline":"style-module_textInline__2F21z","dropzoneContainerDisabled":"style-module_dropzoneContainerDisabled__1X3gP"};
8407
8477
  styleInject(css_248z$n);
8408
8478
 
8409
- var uploadSvg = "data:image/svg+xml,%3Csvg%20width%3D%2270%22%20height%3D%2270%22%20viewBox%3D%220%200%2070%2070%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M25.589%2052.324H16.6368C12.2734%2052.324%202.91699%2048.3383%202.91699%2038.0351C2.91699%2026.9493%2012.2734%2023.2325%2016.9623%2023.2325C17.6018%2017.8902%2021.1291%207.97805%2034.1238%207.29132C46.6242%207.29132%2052.2035%2018.5714%2051.2854%2026.9756C56.175%2026.6729%2067.0837%2028.8787%2067.0837%2039.8558C67.0837%2049.1926%2057.3044%2052.7417%2052.4147%2052.324H44.7121%22%20stroke%3D%22%238E8CEE%22%20stroke-width%3D%223.08333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M35%2063.2981V32.646%22%20stroke%3D%22%238E8CEE%22%20stroke-width%3D%223.08333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M27.3428%2040.3045L35.0013%2032.646L42.6599%2040.3045%22%20stroke%3D%22%238E8CEE%22%20stroke-width%3D%223.08333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E";
8410
-
8411
- var genericSvg = "data:image/svg+xml,%3Csvg%20width%3D%2256%22%20height%3D%2269%22%20viewBox%3D%220%200%2056%2069%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.2542%201.10374C18.4419%200.914378%2018.6976%200.807861%2018.9642%200.807861H48.7127C50.5586%200.807861%2052.3271%201.54742%2053.6298%202.8611C54.9322%204.17449%2055.6623%205.95405%2055.6623%207.80786V61.8079C55.6623%2063.6617%2054.9322%2065.4412%2053.6298%2066.7546C52.3271%2068.0683%2050.5586%2068.8079%2048.7127%2068.8079H7.06486C5.21896%2068.8079%203.45038%2068.0683%202.14772%2066.7546C0.845342%2065.4412%200.115173%2063.6617%200.115173%2061.8079V19.8079C0.115173%2019.5441%200.219378%2019.291%200.405096%2019.1037L18.2542%201.10374ZM19.3809%202.80786L2.11517%2020.2196V61.8079C2.11517%2063.1367%202.63868%2064.4093%203.56787%2065.3464C4.49678%2066.2831%205.75485%2066.8079%207.06486%2066.8079H48.7127C50.0227%2066.8079%2051.2807%2066.2831%2052.2096%2065.3464C53.1388%2064.4093%2053.6623%2063.1366%2053.6623%2061.8079V7.80786C53.6623%206.47907%2053.1388%205.20639%2052.2096%204.26934C51.2807%203.33258%2050.0227%202.80786%2048.7127%202.80786H19.3809Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M17.5491%2014.2607V1.80786H19.5491V14.2607C19.5491%2016.1558%2018.8471%2017.9861%2017.5781%2019.3458C16.3069%2020.7078%2014.5674%2021.4871%2012.7378%2021.4871H1.11517V19.4871H12.7378C13.9907%2019.4871%2015.2075%2018.9545%2016.116%2017.9811C17.0266%2017.0054%2017.5491%2015.6682%2017.5491%2014.2607Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3C%2Fsvg%3E";
8412
-
8413
- var bmpSvg = "data:image/svg+xml,%3Csvg%20width%3D%2257%22%20height%3D%2269%22%20viewBox%3D%220%200%2057%2069%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.9708%201.10374C19.1586%200.914378%2019.4142%200.807861%2019.6809%200.807861H49.4293C51.2752%200.807861%2053.0438%201.54742%2054.3465%202.8611C55.6488%204.17449%2056.379%205.95405%2056.379%207.80786V61.8079C56.379%2063.6617%2055.6488%2065.4412%2054.3465%2066.7546C53.0438%2068.0683%2051.2752%2068.8079%2049.4293%2068.8079H7.78153C5.93563%2068.8079%204.16705%2068.0683%202.86439%2066.7546C1.56202%2065.4412%200.831848%2063.6617%200.831848%2061.8079V19.8079C0.831848%2019.5441%200.936052%2019.291%201.12177%2019.1037L18.9708%201.10374ZM20.0976%202.80786L2.83185%2020.2196V61.8079C2.83185%2063.1367%203.35536%2064.4093%204.28455%2065.3464C5.21346%2066.2831%206.47153%2066.8079%207.78153%2066.8079H49.4293C50.7393%2066.8079%2051.9974%2066.2831%2052.9263%2065.3464C53.8555%2064.4093%2054.379%2063.1366%2054.379%2061.8079V7.80786C54.379%206.47907%2053.8555%205.20639%2052.9263%204.26934C51.9974%203.33258%2050.7393%202.80786%2049.4293%202.80786H20.0976Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M16.0771%2061.808V53.21H18.8191C19.3471%2053.21%2019.8011%2053.262%2020.1811%2053.366C20.5651%2053.47%2020.8791%2053.618%2021.1231%2053.81C21.3711%2054.002%2021.5531%2054.238%2021.6691%2054.518C21.7891%2054.794%2021.8491%2055.106%2021.8491%2055.454C21.8491%2055.666%2021.8151%2055.87%2021.7471%2056.066C21.6831%2056.262%2021.5831%2056.444%2021.4471%2056.612C21.3151%2056.78%2021.1471%2056.93%2020.9431%2057.062C20.7431%2057.194%2020.5071%2057.302%2020.2351%2057.386C20.8631%2057.51%2021.3371%2057.736%2021.6571%2058.064C21.9771%2058.392%2022.1371%2058.824%2022.1371%2059.36C22.1371%2059.724%2022.0691%2060.056%2021.9331%2060.356C21.8011%2060.656%2021.6051%2060.914%2021.3451%2061.13C21.0891%2061.346%2020.7731%2061.514%2020.3971%2061.634C20.0251%2061.75%2019.5991%2061.808%2019.1191%2061.808H16.0771ZM17.2411%2057.89V60.884H19.1011C19.4331%2060.884%2019.7171%2060.846%2019.9531%2060.77C20.1931%2060.694%2020.3891%2060.588%2020.5411%2060.452C20.6971%2060.312%2020.8111%2060.148%2020.8831%2059.96C20.9551%2059.768%2020.9911%2059.558%2020.9911%2059.33C20.9911%2058.886%2020.8331%2058.536%2020.5171%2058.28C20.2051%2058.02%2019.7311%2057.89%2019.0951%2057.89H17.2411ZM17.2411%2057.062H18.7771C19.1051%2057.062%2019.3891%2057.026%2019.6291%2056.954C19.8691%2056.882%2020.0671%2056.782%2020.2231%2056.654C20.3831%2056.526%2020.5011%2056.372%2020.5771%2056.192C20.6531%2056.008%2020.6911%2055.808%2020.6911%2055.592C20.6911%2055.088%2020.5391%2054.718%2020.2351%2054.482C19.9311%2054.246%2019.4591%2054.128%2018.8191%2054.128H17.2411V57.062Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M28.5767%2058.7C28.6327%2058.796%2028.6807%2058.898%2028.7207%2059.006C28.7647%2059.11%2028.8067%2059.216%2028.8467%2059.324C28.8867%2059.212%2028.9287%2059.106%2028.9727%2059.006C29.0167%2058.902%2029.0667%2058.798%2029.1227%2058.694L32.0327%2053.408C32.0847%2053.316%2032.1387%2053.26%2032.1947%2053.24C32.2507%2053.22%2032.3307%2053.21%2032.4347%2053.21H33.2927V61.808H32.2727V55.49C32.2727%2055.406%2032.2747%2055.316%2032.2787%2055.22C32.2827%2055.124%2032.2887%2055.026%2032.2967%2054.926L29.3507%2060.302C29.2507%2060.482%2029.1107%2060.572%2028.9307%2060.572H28.7627C28.5827%2060.572%2028.4427%2060.482%2028.3427%2060.302L25.3307%2054.908C25.3427%2055.012%2025.3507%2055.114%2025.3547%2055.214C25.3627%2055.314%2025.3667%2055.406%2025.3667%2055.49V61.808H24.3467V53.21H25.2047C25.3087%2053.21%2025.3887%2053.22%2025.4447%2053.24C25.5007%2053.26%2025.5547%2053.316%2025.6067%2053.408L28.5767%2058.7Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M37.1637%2058.592V61.808H36.0057V53.21H38.5437C39.0877%2053.21%2039.5597%2053.274%2039.9597%2053.402C40.3637%2053.526%2040.6977%2053.704%2040.9617%2053.936C41.2257%2054.168%2041.4217%2054.448%2041.5497%2054.776C41.6817%2055.104%2041.7477%2055.47%2041.7477%2055.874C41.7477%2056.274%2041.6777%2056.64%2041.5377%2056.972C41.3977%2057.304%2041.1917%2057.59%2040.9197%2057.83C40.6517%2058.07%2040.3177%2058.258%2039.9177%2058.394C39.5177%2058.526%2039.0597%2058.592%2038.5437%2058.592H37.1637ZM37.1637%2057.668H38.5437C38.8757%2057.668%2039.1677%2057.624%2039.4197%2057.536C39.6757%2057.448%2039.8897%2057.326%2040.0617%2057.17C40.2337%2057.01%2040.3637%2056.82%2040.4517%2056.6C40.5397%2056.38%2040.5837%2056.138%2040.5837%2055.874C40.5837%2055.326%2040.4137%2054.898%2040.0737%2054.59C39.7377%2054.282%2039.2277%2054.128%2038.5437%2054.128H37.1637V57.668Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M41.7273%2010.8079C39.1583%2010.8079%2037.0756%2012.8905%2037.0756%2015.4596C37.0756%2018.0286%2039.1583%2020.1112%2041.7273%2020.1112C44.2964%2020.1112%2046.379%2018.0286%2046.379%2015.4596C46.379%2012.8905%2044.2964%2010.8079%2041.7273%2010.8079ZM35.0756%2015.4596C35.0756%2011.7859%2038.0537%208.80786%2041.7273%208.80786C45.4009%208.80786%2048.379%2011.7859%2048.379%2015.4596C48.379%2019.1332%2045.4009%2022.1112%2041.7273%2022.1112C38.0537%2022.1112%2035.0756%2019.1332%2035.0756%2015.4596Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M26.5021%2035.6977C23.7684%2032.964%2019.3362%2032.964%2016.6026%2035.6977L2.49942%2049.8009L1.08521%2048.3867L15.1884%2034.2835C18.7031%2030.7688%2024.4016%2030.7688%2027.9163%2034.2835L30.3057%2036.6729L28.8915%2038.0871L26.5021%2035.6977Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M43.6894%2034.281C40.9557%2031.5473%2036.5235%2031.5473%2033.7899%2034.2809L22.533%2045.5377C22.1425%2045.9282%2021.5093%2045.9282%2021.1188%2045.5377C20.7283%2045.1472%2020.7283%2044.514%2021.1188%2044.1235L32.3757%2032.8667C35.8904%2029.352%2041.5889%2029.352%2045.1036%2032.8668L55.9224%2043.6856C56.3129%2044.0761%2056.3129%2044.7092%2055.9224%2045.0998C55.5318%2045.4903%2054.8987%2045.4903%2054.5082%2045.0998L43.6894%2034.281Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.2658%2014.2607V1.80786H20.2658V14.2607C20.2658%2016.1558%2019.5638%2017.9861%2018.2948%2019.3458C17.0236%2020.7078%2015.2841%2021.4871%2013.4545%2021.4871H1.83185V19.4871H13.4545C14.7074%2019.4871%2015.9242%2018.9545%2016.8327%2017.9811C17.7433%2017.0054%2018.2658%2015.6682%2018.2658%2014.2607Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3C%2Fsvg%3E";
8414
-
8415
- var docSvg = "data:image/svg+xml,%3Csvg%20width%3D%2256%22%20height%3D%2269%22%20viewBox%3D%220%200%2056%2069%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.1418%201.10374C18.3296%200.914378%2018.5852%200.807861%2018.8519%200.807861H48.6004C50.4463%200.807861%2052.2148%201.54742%2053.5175%202.8611C54.8199%204.17449%2055.55%205.95405%2055.55%207.80786V61.8079C55.55%2063.6617%2054.8199%2065.4412%2053.5175%2066.7546C52.2148%2068.0683%2050.4463%2068.8079%2048.6004%2068.8079H6.95255C5.10665%2068.8079%203.33807%2068.0683%202.03541%2066.7546C0.733037%2065.4412%200.00286865%2063.6617%200.00286865%2061.8079V19.8079C0.00286865%2019.5441%200.107073%2019.291%200.292791%2019.1037L18.1418%201.10374ZM19.2686%202.80786L2.00287%2020.2196V61.8079C2.00287%2063.1367%202.52638%2064.4093%203.45557%2065.3464C4.38448%2066.2831%205.64255%2066.8079%206.95255%2066.8079H48.6004C49.9104%2066.8079%2051.1684%2066.2831%2052.0973%2065.3464C53.0265%2064.4093%2053.55%2063.1366%2053.55%2061.8079V7.80786C53.55%206.47907%2053.0265%205.20639%2052.0973%204.26934C51.1684%203.33258%2049.9104%202.80786%2048.6004%202.80786H19.2686Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M15.5019%2027.137C15.5019%2026.5847%2015.9496%2026.137%2016.5019%2026.137H38.7545C39.3068%2026.137%2039.7545%2026.5847%2039.7545%2027.137C39.7545%2027.6892%2039.3068%2028.137%2038.7545%2028.137H16.5019C15.9496%2028.137%2015.5019%2027.6892%2015.5019%2027.137Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M15.5019%2032.137C15.5019%2031.5847%2015.9496%2031.137%2016.5019%2031.137H29.7545C30.3068%2031.137%2030.7545%2031.5847%2030.7545%2032.137C30.7545%2032.6892%2030.3068%2033.137%2029.7545%2033.137H16.5019C15.9496%2033.137%2015.5019%2032.6892%2015.5019%2032.137Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M15.5019%2037.137C15.5019%2036.5847%2015.9496%2036.137%2016.5019%2036.137H38.7545C39.3068%2036.137%2039.7545%2036.5847%2039.7545%2037.137C39.7545%2037.6892%2039.3068%2038.137%2038.7545%2038.137H16.5019C15.9496%2038.137%2015.5019%2037.6892%2015.5019%2037.137Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M15.5019%2042.137C15.5019%2041.5847%2015.9496%2041.137%2016.5019%2041.137H29.7545C30.3068%2041.137%2030.7545%2041.5847%2030.7545%2042.137C30.7545%2042.6892%2030.3068%2043.137%2029.7545%2043.137H16.5019C15.9496%2043.137%2015.5019%2042.6892%2015.5019%2042.137Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M21.9305%2057.4158C21.9305%2058.0598%2021.8285%2058.6458%2021.6245%2059.1738C21.4205%2059.7018%2021.1325%2060.1538%2020.7605%2060.5298C20.3885%2060.9058%2019.9425%2061.1978%2019.4225%2061.4058C18.9025%2061.6098%2018.3265%2061.7118%2017.6945%2061.7118H14.4785V53.1138H17.6945C18.3265%2053.1138%2018.9025%2053.2178%2019.4225%2053.4258C19.9425%2053.6298%2020.3885%2053.9218%2020.7605%2054.3018C21.1325%2054.6778%2021.4205%2055.1298%2021.6245%2055.6578C21.8285%2056.1858%2021.9305%2056.7718%2021.9305%2057.4158ZM20.7365%2057.4158C20.7365%2056.8878%2020.6645%2056.4158%2020.5205%2055.9998C20.3765%2055.5838%2020.1725%2055.2318%2019.9085%2054.9438C19.6445%2054.6558%2019.3245%2054.4358%2018.9485%2054.2838C18.5725%2054.1318%2018.1545%2054.0558%2017.6945%2054.0558H15.6485V60.7698H17.6945C18.1545%2060.7698%2018.5725%2060.6938%2018.9485%2060.5418C19.3245%2060.3898%2019.6445%2060.1718%2019.9085%2059.8878C20.1725%2059.5998%2020.3765%2059.2478%2020.5205%2058.8318C20.6645%2058.4158%2020.7365%2057.9438%2020.7365%2057.4158Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M31.9997%2057.4158C31.9997%2058.0598%2031.8977%2058.6518%2031.6937%2059.1918C31.4897%2059.7278%2031.2017%2060.1898%2030.8297%2060.5778C30.4577%2060.9658%2030.0097%2061.2678%2029.4857%2061.4838C28.9657%2061.6958%2028.3897%2061.8018%2027.7577%2061.8018C27.1257%2061.8018%2026.5497%2061.6958%2026.0297%2061.4838C25.5097%2061.2678%2025.0637%2060.9658%2024.6917%2060.5778C24.3197%2060.1898%2024.0317%2059.7278%2023.8277%2059.1918C23.6237%2058.6518%2023.5217%2058.0598%2023.5217%2057.4158C23.5217%2056.7718%2023.6237%2056.1818%2023.8277%2055.6458C24.0317%2055.1058%2024.3197%2054.6418%2024.6917%2054.2538C25.0637%2053.8618%2025.5097%2053.5578%2026.0297%2053.3418C26.5497%2053.1258%2027.1257%2053.0178%2027.7577%2053.0178C28.3897%2053.0178%2028.9657%2053.1258%2029.4857%2053.3418C30.0097%2053.5578%2030.4577%2053.8618%2030.8297%2054.2538C31.2017%2054.6418%2031.4897%2055.1058%2031.6937%2055.6458C31.8977%2056.1818%2031.9997%2056.7718%2031.9997%2057.4158ZM30.8057%2057.4158C30.8057%2056.8878%2030.7337%2056.4138%2030.5897%2055.9938C30.4457%2055.5738%2030.2417%2055.2198%2029.9777%2054.9318C29.7137%2054.6398%2029.3937%2054.4158%2029.0177%2054.2598C28.6417%2054.1038%2028.2217%2054.0258%2027.7577%2054.0258C27.2977%2054.0258%2026.8797%2054.1038%2026.5037%2054.2598C26.1277%2054.4158%2025.8057%2054.6398%2025.5377%2054.9318C25.2737%2055.2198%2025.0697%2055.5738%2024.9257%2055.9938C24.7817%2056.4138%2024.7097%2056.8878%2024.7097%2057.4158C24.7097%2057.9438%2024.7817%2058.4178%2024.9257%2058.8378C25.0697%2059.2538%2025.2737%2059.6078%2025.5377%2059.8998C25.8057%2060.1878%2026.1277%2060.4098%2026.5037%2060.5658C26.8797%2060.7178%2027.2977%2060.7938%2027.7577%2060.7938C28.2217%2060.7938%2028.6417%2060.7178%2029.0177%2060.5658C29.3937%2060.4098%2029.7137%2060.1878%2029.9777%2059.8998C30.2417%2059.6078%2030.4457%2059.2538%2030.5897%2058.8378C30.7337%2058.4178%2030.8057%2057.9438%2030.8057%2057.4158Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M40.1479%2059.9358C40.2119%2059.9358%2040.2699%2059.9618%2040.3219%2060.0138L40.7779%2060.5118C40.4259%2060.9198%2039.9979%2061.2378%2039.4939%2061.4658C38.9939%2061.6938%2038.3899%2061.8078%2037.6819%2061.8078C37.0619%2061.8078%2036.4999%2061.7018%2035.9959%2061.4898C35.4919%2061.2738%2035.0619%2060.9738%2034.7059%2060.5898C34.3499%2060.2018%2034.0739%2059.7378%2033.8779%2059.1978C33.6819%2058.6578%2033.5839%2058.0638%2033.5839%2057.4158C33.5839%2056.7678%2033.6879%2056.1738%2033.8959%2055.6338C34.1079%2055.0938%2034.4039%2054.6298%2034.7839%2054.2418C35.1639%2053.8538%2035.6179%2053.5538%2036.1459%2053.3418C36.6779%2053.1258%2037.2639%2053.0178%2037.9039%2053.0178C38.5359%2053.0178%2039.0799%2053.1158%2039.5359%2053.3118C39.9959%2053.5078%2040.4039%2053.7738%2040.7599%2054.1098L40.3819%2054.6438C40.3539%2054.6838%2040.3219%2054.7178%2040.2859%2054.7458C40.2499%2054.7698%2040.1979%2054.7818%2040.1299%2054.7818C40.0779%2054.7818%2040.0219%2054.7638%2039.9619%2054.7278C39.9059%2054.6878%2039.8379%2054.6398%2039.7579%2054.5838C39.6779%2054.5278%2039.5839%2054.4678%2039.4759%2054.4038C39.3679%2054.3398%2039.2399%2054.2798%2039.0919%2054.2238C38.9439%2054.1678%2038.7719%2054.1218%2038.5759%2054.0858C38.3799%2054.0458%2038.1539%2054.0258%2037.8979%2054.0258C37.4379%2054.0258%2037.0159%2054.1058%2036.6319%2054.2658C36.2519%2054.4218%2035.9239%2054.6458%2035.6479%2054.9378C35.3719%2055.2298%2035.1559%2055.5858%2034.9999%2056.0058C34.8479%2056.4258%2034.7719%2056.8958%2034.7719%2057.4158C34.7719%2057.9518%2034.8479%2058.4298%2034.9999%2058.8498C35.1559%2059.2698%2035.3659%2059.6258%2035.6299%2059.9178C35.8979%2060.2058%2036.2139%2060.4258%2036.5779%2060.5778C36.9419%2060.7298%2037.3339%2060.8058%2037.7539%2060.8058C38.0099%2060.8058%2038.2399%2060.7918%2038.4439%2060.7638C38.6479%2060.7318%2038.8359%2060.6838%2039.0079%2060.6198C39.1839%2060.5558%2039.3459%2060.4758%2039.4939%2060.3798C39.6459%2060.2798%2039.7979%2060.1618%2039.9499%2060.0258C40.0179%2059.9658%2040.0839%2059.9358%2040.1479%2059.9358Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M17.4368%2014.2607V1.80786H19.4368V14.2607C19.4368%2016.1558%2018.7348%2017.9861%2017.4658%2019.3458C16.1946%2020.7078%2014.4551%2021.4871%2012.6255%2021.4871H1.00287V19.4871H12.6255C13.8784%2019.4871%2015.0952%2018.9545%2016.0037%2017.9811C16.9143%2017.0054%2017.4368%2015.6682%2017.4368%2014.2607Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3C%2Fsvg%3E";
8416
-
8417
- var docxSvg = "data:image/svg+xml,%3Csvg%20width%3D%2257%22%20height%3D%2269%22%20viewBox%3D%220%200%2057%2069%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.698%201.10374C18.8858%200.914378%2019.1414%200.807861%2019.4081%200.807861H49.1565C51.0024%200.807861%2052.771%201.54742%2054.0736%202.8611C55.376%204.17449%2056.1062%205.95405%2056.1062%207.80786V61.8079C56.1062%2063.6617%2055.376%2065.4412%2054.0736%2066.7546C52.771%2068.0683%2051.0024%2068.8079%2049.1565%2068.8079H7.50871C5.6628%2068.8079%203.89422%2068.0683%202.59157%2066.7546C1.28919%2065.4412%200.559021%2063.6617%200.559021%2061.8079V19.8079C0.559021%2019.5441%200.663225%2019.291%200.848943%2019.1037L18.698%201.10374ZM19.8248%202.80786L2.55902%2020.2196V61.8079C2.55902%2063.1367%203.08253%2064.4093%204.01172%2065.3464C4.94063%2066.2831%206.1987%2066.8079%207.50871%2066.8079H49.1565C50.4665%2066.8079%2051.7246%2066.2831%2052.6535%2065.3464C53.5827%2064.4093%2054.1062%2063.1366%2054.1062%2061.8079V7.80786C54.1062%206.47907%2053.5827%205.20639%2052.6535%204.26934C51.7246%203.33258%2050.4665%202.80786%2049.1565%202.80786H19.8248Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M18.3345%2057.4158C18.3345%2058.0598%2018.2325%2058.6458%2018.0285%2059.1738C17.8245%2059.7018%2017.5365%2060.1538%2017.1645%2060.5298C16.7925%2060.9058%2016.3465%2061.1978%2015.8265%2061.4058C15.3065%2061.6098%2014.7305%2061.7118%2014.0985%2061.7118H10.8825V53.1138H14.0985C14.7305%2053.1138%2015.3065%2053.2178%2015.8265%2053.4258C16.3465%2053.6298%2016.7925%2053.9218%2017.1645%2054.3018C17.5365%2054.6778%2017.8245%2055.1298%2018.0285%2055.6578C18.2325%2056.1858%2018.3345%2056.7718%2018.3345%2057.4158ZM17.1405%2057.4158C17.1405%2056.8878%2017.0685%2056.4158%2016.9245%2055.9998C16.7805%2055.5838%2016.5765%2055.2318%2016.3125%2054.9438C16.0485%2054.6558%2015.7285%2054.4358%2015.3525%2054.2838C14.9765%2054.1318%2014.5585%2054.0558%2014.0985%2054.0558H12.0525V60.7698H14.0985C14.5585%2060.7698%2014.9765%2060.6938%2015.3525%2060.5418C15.7285%2060.3898%2016.0485%2060.1718%2016.3125%2059.8878C16.5765%2059.5998%2016.7805%2059.2478%2016.9245%2058.8318C17.0685%2058.4158%2017.1405%2057.9438%2017.1405%2057.4158Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M28.4037%2057.4158C28.4037%2058.0598%2028.3017%2058.6518%2028.0977%2059.1918C27.8937%2059.7278%2027.6057%2060.1898%2027.2337%2060.5778C26.8617%2060.9658%2026.4137%2061.2678%2025.8897%2061.4838C25.3697%2061.6958%2024.7937%2061.8018%2024.1617%2061.8018C23.5297%2061.8018%2022.9537%2061.6958%2022.4337%2061.4838C21.9137%2061.2678%2021.4677%2060.9658%2021.0957%2060.5778C20.7237%2060.1898%2020.4357%2059.7278%2020.2317%2059.1918C20.0277%2058.6518%2019.9257%2058.0598%2019.9257%2057.4158C19.9257%2056.7718%2020.0277%2056.1818%2020.2317%2055.6458C20.4357%2055.1058%2020.7237%2054.6418%2021.0957%2054.2538C21.4677%2053.8618%2021.9137%2053.5578%2022.4337%2053.3418C22.9537%2053.1258%2023.5297%2053.0178%2024.1617%2053.0178C24.7937%2053.0178%2025.3697%2053.1258%2025.8897%2053.3418C26.4137%2053.5578%2026.8617%2053.8618%2027.2337%2054.2538C27.6057%2054.6418%2027.8937%2055.1058%2028.0977%2055.6458C28.3017%2056.1818%2028.4037%2056.7718%2028.4037%2057.4158ZM27.2097%2057.4158C27.2097%2056.8878%2027.1377%2056.4138%2026.9937%2055.9938C26.8497%2055.5738%2026.6457%2055.2198%2026.3817%2054.9318C26.1177%2054.6398%2025.7977%2054.4158%2025.4217%2054.2598C25.0457%2054.1038%2024.6257%2054.0258%2024.1617%2054.0258C23.7017%2054.0258%2023.2837%2054.1038%2022.9077%2054.2598C22.5317%2054.4158%2022.2097%2054.6398%2021.9417%2054.9318C21.6777%2055.2198%2021.4737%2055.5738%2021.3297%2055.9938C21.1857%2056.4138%2021.1137%2056.8878%2021.1137%2057.4158C21.1137%2057.9438%2021.1857%2058.4178%2021.3297%2058.8378C21.4737%2059.2538%2021.6777%2059.6078%2021.9417%2059.8998C22.2097%2060.1878%2022.5317%2060.4098%2022.9077%2060.5658C23.2837%2060.7178%2023.7017%2060.7938%2024.1617%2060.7938C24.6257%2060.7938%2025.0457%2060.7178%2025.4217%2060.5658C25.7977%2060.4098%2026.1177%2060.1878%2026.3817%2059.8998C26.6457%2059.6078%2026.8497%2059.2538%2026.9937%2058.8378C27.1377%2058.4178%2027.2097%2057.9438%2027.2097%2057.4158Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M36.5519%2059.9358C36.6159%2059.9358%2036.6739%2059.9618%2036.7259%2060.0138L37.1819%2060.5118C36.8299%2060.9198%2036.4019%2061.2378%2035.8979%2061.4658C35.3979%2061.6938%2034.7939%2061.8078%2034.0859%2061.8078C33.4659%2061.8078%2032.9039%2061.7018%2032.3999%2061.4898C31.8959%2061.2738%2031.4659%2060.9738%2031.1099%2060.5898C30.7539%2060.2018%2030.4779%2059.7378%2030.2819%2059.1978C30.0859%2058.6578%2029.9879%2058.0638%2029.9879%2057.4158C29.9879%2056.7678%2030.0919%2056.1738%2030.2999%2055.6338C30.5119%2055.0938%2030.8079%2054.6298%2031.1879%2054.2418C31.5679%2053.8538%2032.0219%2053.5538%2032.5499%2053.3418C33.0819%2053.1258%2033.6679%2053.0178%2034.3079%2053.0178C34.9399%2053.0178%2035.4839%2053.1158%2035.9399%2053.3118C36.3999%2053.5078%2036.8079%2053.7738%2037.1639%2054.1098L36.7859%2054.6438C36.7579%2054.6838%2036.7259%2054.7178%2036.6899%2054.7458C36.6539%2054.7698%2036.6019%2054.7818%2036.5339%2054.7818C36.4819%2054.7818%2036.4259%2054.7638%2036.3659%2054.7278C36.3099%2054.6878%2036.2419%2054.6398%2036.1619%2054.5838C36.0819%2054.5278%2035.9879%2054.4678%2035.8799%2054.4038C35.7719%2054.3398%2035.6439%2054.2798%2035.4959%2054.2238C35.3479%2054.1678%2035.1759%2054.1218%2034.9799%2054.0858C34.7839%2054.0458%2034.5579%2054.0258%2034.3019%2054.0258C33.8419%2054.0258%2033.4199%2054.1058%2033.0359%2054.2658C32.6559%2054.4218%2032.3279%2054.6458%2032.0519%2054.9378C31.7759%2055.2298%2031.5599%2055.5858%2031.4039%2056.0058C31.2519%2056.4258%2031.1759%2056.8958%2031.1759%2057.4158C31.1759%2057.9518%2031.2519%2058.4298%2031.4039%2058.8498C31.5599%2059.2698%2031.7699%2059.6258%2032.0339%2059.9178C32.3019%2060.2058%2032.6179%2060.4258%2032.9819%2060.5778C33.3459%2060.7298%2033.7379%2060.8058%2034.1579%2060.8058C34.4139%2060.8058%2034.6439%2060.7918%2034.8479%2060.7638C35.0519%2060.7318%2035.2399%2060.6838%2035.4119%2060.6198C35.5879%2060.5558%2035.7499%2060.4758%2035.8979%2060.3798C36.0499%2060.2798%2036.2019%2060.1618%2036.3539%2060.0258C36.4219%2059.9658%2036.4879%2059.9358%2036.5519%2059.9358Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M41.2047%2057.2958L38.3667%2053.1138H39.5247C39.6087%2053.1138%2039.6707%2053.1278%2039.7107%2053.1558C39.7507%2053.1838%2039.7867%2053.2238%2039.8187%2053.2758L42.0627%2056.7198C42.0907%2056.6358%2042.1327%2056.5438%2042.1887%2056.4438L44.3067%2053.2998C44.3427%2053.2438%2044.3807%2053.1998%2044.4207%2053.1678C44.4647%2053.1318%2044.5167%2053.1138%2044.5767%2053.1138H45.6867L42.8367%2057.2418L45.7827%2061.7118H44.6307C44.5427%2061.7118%2044.4727%2061.6898%2044.4207%2061.6458C44.3727%2061.5978%2044.3327%2061.5458%2044.3007%2061.4898L41.9967%2057.8838C41.9687%2057.9678%2041.9327%2058.0478%2041.8887%2058.1238L39.6447%2061.4898C39.6087%2061.5458%2039.5667%2061.5978%2039.5187%2061.6458C39.4747%2061.6898%2039.4107%2061.7118%2039.3267%2061.7118H38.2467L41.2047%2057.2958Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M16.058%2027.137C16.058%2026.5847%2016.5058%2026.137%2017.058%2026.137H39.3106C39.8629%2026.137%2040.3106%2026.5847%2040.3106%2027.137C40.3106%2027.6892%2039.8629%2028.137%2039.3106%2028.137H17.058C16.5058%2028.137%2016.058%2027.6892%2016.058%2027.137Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M16.058%2032.137C16.058%2031.5847%2016.5058%2031.137%2017.058%2031.137H30.3106C30.8629%2031.137%2031.3106%2031.5847%2031.3106%2032.137C31.3106%2032.6892%2030.8629%2033.137%2030.3106%2033.137H17.058C16.5058%2033.137%2016.058%2032.6892%2016.058%2032.137Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M16.058%2037.137C16.058%2036.5847%2016.5058%2036.137%2017.058%2036.137H39.3106C39.8629%2036.137%2040.3106%2036.5847%2040.3106%2037.137C40.3106%2037.6892%2039.8629%2038.137%2039.3106%2038.137H17.058C16.5058%2038.137%2016.058%2037.6892%2016.058%2037.137Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M16.058%2042.137C16.058%2041.5847%2016.5058%2041.137%2017.058%2041.137H30.3106C30.8629%2041.137%2031.3106%2041.5847%2031.3106%2042.137C31.3106%2042.6892%2030.8629%2043.137%2030.3106%2043.137H17.058C16.5058%2043.137%2016.058%2042.6892%2016.058%2042.137Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M17.993%2014.2607V1.80786H19.993V14.2607C19.993%2016.1558%2019.291%2017.9861%2018.0219%2019.3458C16.7507%2020.7078%2015.0113%2021.4871%2013.1817%2021.4871H1.55902V19.4871H13.1817C14.4346%2019.4871%2015.6514%2018.9545%2016.5598%2017.9811C17.4705%2017.0054%2017.993%2015.6682%2017.993%2014.2607Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3C%2Fsvg%3E";
8418
-
8419
- var heicSvg = "data:image/svg+xml,%3Csvg%20width%3D%2257%22%20height%3D%2269%22%20viewBox%3D%220%200%2057%2069%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M49.4951%2067.2263H7.84733C6.26937%2067.2263%204.75605%2066.5942%203.64027%2065.469C2.52448%2064.3437%201.89764%2062.8176%201.89764%2061.2263V19.2263L19.7467%201.22632H49.4951C51.0731%201.22632%2052.5864%201.85846%2053.7022%202.98368C54.818%204.1089%2055.4448%205.63502%2055.4448%207.22632V61.2263C55.4448%2062.8176%2054.818%2064.3437%2053.7022%2065.469C52.5864%2066.5942%2051.0731%2067.2263%2049.4951%2067.2263Z%22%20stroke%3D%22%238E8CEE%22%20strokeWidth%3D%222%22%20strokeLinejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M21.9685%2061.1303H20.7985V57.2183H16.1665V61.1303H14.9965V52.5323H16.1665V56.3663H20.7985V52.5323H21.9685V61.1303Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M29.8648%2052.5323V53.4803H25.7368V56.3363H29.0788V57.2483H25.7368V60.1823H29.8648V61.1303H24.5668V52.5323H29.8648Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M33.4194%2061.1303H32.2554V52.5323H33.4194V61.1303Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M42.2791%2059.3543C42.3431%2059.3543%2042.4011%2059.3803%2042.4531%2059.4323L42.9091%2059.9303C42.5571%2060.3383%2042.1291%2060.6563%2041.6251%2060.8843C41.1251%2061.1123%2040.5211%2061.2263%2039.8131%2061.2263C39.1931%2061.2263%2038.6311%2061.1203%2038.1271%2060.9083C37.6231%2060.6923%2037.1931%2060.3923%2036.8371%2060.0083C36.4811%2059.6203%2036.2051%2059.1563%2036.0091%2058.6163C35.8131%2058.0763%2035.7151%2057.4823%2035.7151%2056.8343C35.7151%2056.1863%2035.8191%2055.5923%2036.0271%2055.0523C36.2391%2054.5123%2036.5351%2054.0483%2036.9151%2053.6603C37.2951%2053.2723%2037.7491%2052.9723%2038.2771%2052.7603C38.8091%2052.5443%2039.3951%2052.4363%2040.0351%2052.4363C40.6671%2052.4363%2041.2111%2052.5343%2041.6671%2052.7303C42.1271%2052.9263%2042.5351%2053.1923%2042.8911%2053.5283L42.5131%2054.0623C42.4851%2054.1023%2042.4531%2054.1363%2042.4171%2054.1643C42.3811%2054.1883%2042.3291%2054.2003%2042.2611%2054.2003C42.2091%2054.2003%2042.1531%2054.1823%2042.0931%2054.1463C42.0371%2054.1063%2041.9691%2054.0583%2041.8891%2054.0023C41.8091%2053.9463%2041.7151%2053.8863%2041.6071%2053.8223C41.4991%2053.7583%2041.3711%2053.6983%2041.2231%2053.6423C41.0751%2053.5863%2040.9031%2053.5403%2040.7071%2053.5043C40.5111%2053.4643%2040.2851%2053.4443%2040.0291%2053.4443C39.5691%2053.4443%2039.1471%2053.5243%2038.7631%2053.6843C38.3831%2053.8403%2038.0551%2054.0643%2037.7791%2054.3563C37.5031%2054.6483%2037.2871%2055.0043%2037.1311%2055.4243C36.9791%2055.8443%2036.9031%2056.3143%2036.9031%2056.8343C36.9031%2057.3703%2036.9791%2057.8483%2037.1311%2058.2683C37.2871%2058.6883%2037.4971%2059.0443%2037.7611%2059.3363C38.0291%2059.6243%2038.3451%2059.8443%2038.7091%2059.9963C39.0731%2060.1483%2039.4651%2060.2243%2039.8851%2060.2243C40.1411%2060.2243%2040.3711%2060.2103%2040.5751%2060.1823C40.7791%2060.1503%2040.9671%2060.1023%2041.1391%2060.0383C41.3151%2059.9743%2041.4771%2059.8943%2041.6251%2059.7983C41.7771%2059.6983%2041.9291%2059.5803%2042.0811%2059.4443C42.1491%2059.3843%2042.2151%2059.3543%2042.2791%2059.3543Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Ccircle%20cx%3D%2241.7931%22%20cy%3D%2214.878%22%20r%3D%225.65169%22%20stroke%3D%22%238E8CEE%22%20strokeWidth%3D%222%22%20strokeLinecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M1.85809%2048.5122L15.9613%2034.409C19.0854%2031.2849%2024.1508%2031.2849%2027.275%2034.4091L29.6643%2036.7984%22%20stroke%3D%22%238E8CEE%22%20strokeWidth%3D%222%22%2F%3E%3Cpath%20d%3D%22M21.8917%2044.249L33.1486%2032.9923C36.2728%2029.8681%2041.3381%2029.8681%2044.4623%2032.9923L55.2811%2043.8111%22%20stroke%3D%22%238E8CEE%22%20strokeWidth%3D%222%22%20strokeLinecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M19.3316%201.22632V13.6791C19.3316%2015.3305%2018.7193%2016.9142%2017.6295%2018.0819C16.5397%2019.2496%2015.0615%2019.9056%2013.5203%2019.9056H1.89764%22%20stroke%3D%22%238E8CEE%22%20strokeWidth%3D%222%22%20strokeLinejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E";
8420
-
8421
- var jpegSvg = "data:image/svg+xml,%3Csvg%20width%3D%2257%22%20height%3D%2269%22%20viewBox%3D%220%200%2057%2069%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M19.0294%201.10374C19.2171%200.914378%2019.4728%200.807861%2019.7394%200.807861H49.4879C51.3338%200.807861%2053.1023%201.54742%2054.405%202.8611C55.7074%204.17449%2056.4375%205.95405%2056.4375%207.80786V61.8079C56.4375%2063.6617%2055.7074%2065.4412%2054.405%2066.7546C53.1023%2068.0683%2051.3338%2068.8079%2049.4879%2068.8079H7.84007C5.99416%2068.8079%204.22558%2068.0683%202.92293%2066.7546C1.62055%2065.4412%200.890381%2063.6617%200.890381%2061.8079V19.8079C0.890381%2019.5441%200.994585%2019.291%201.1803%2019.1037L19.0294%201.10374ZM20.1561%202.80786L2.89038%2020.2196V61.8079C2.89038%2063.1367%203.41389%2064.4093%204.34308%2065.3464C5.27199%2066.2831%206.53006%2066.8079%207.84007%2066.8079H49.4879C50.7979%2066.8079%2052.0559%2066.2831%2052.9848%2065.3464C53.914%2064.4093%2054.4375%2063.1366%2054.4375%2061.8079V7.80786C54.4375%206.47907%2053.914%205.20639%2052.9848%204.26934C52.0559%203.33258%2050.7979%202.80786%2049.4879%202.80786H20.1561Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M18.1596%2058.7418C18.1596%2059.2218%2018.0996%2059.6518%2017.9796%2060.0318C17.8636%2060.4118%2017.6896%2060.7338%2017.4576%2060.9978C17.2296%2061.2578%2016.9476%2061.4578%2016.6116%2061.5978C16.2756%2061.7378%2015.8896%2061.8078%2015.4536%2061.8078C15.0656%2061.8078%2014.6616%2061.7518%2014.2416%2061.6398C14.2496%2061.5238%2014.2596%2061.4098%2014.2716%2061.2978C14.2836%2061.1818%2014.2956%2061.0678%2014.3076%2060.9558C14.3156%2060.8878%2014.3396%2060.8338%2014.3796%2060.7938C14.4236%2060.7498%2014.4876%2060.7278%2014.5716%2060.7278C14.6436%2060.7278%2014.7396%2060.7458%2014.8596%2060.7818C14.9796%2060.8178%2015.1396%2060.8358%2015.3396%2060.8358C15.6036%2060.8358%2015.8376%2060.7958%2016.0416%2060.7158C16.2496%2060.6358%2016.4236%2060.5118%2016.5636%2060.3438C16.7076%2060.1758%2016.8156%2059.9618%2016.8876%2059.7018C16.9636%2059.4378%2017.0016%2059.1258%2017.0016%2058.7658V53.1138H18.1596V58.7418Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M22.0357%2058.4958V61.7118H20.8777V53.1138H23.4157C23.9597%2053.1138%2024.4317%2053.1778%2024.8317%2053.3058C25.2357%2053.4298%2025.5697%2053.6078%2025.8337%2053.8398C26.0977%2054.0718%2026.2937%2054.3518%2026.4217%2054.6798C26.5537%2055.0078%2026.6197%2055.3738%2026.6197%2055.7778C26.6197%2056.1778%2026.5497%2056.5438%2026.4097%2056.8758C26.2697%2057.2078%2026.0637%2057.4938%2025.7917%2057.7338C25.5237%2057.9738%2025.1897%2058.1618%2024.7897%2058.2978C24.3897%2058.4298%2023.9317%2058.4958%2023.4157%2058.4958H22.0357ZM22.0357%2057.5718H23.4157C23.7477%2057.5718%2024.0397%2057.5278%2024.2917%2057.4398C24.5477%2057.3518%2024.7617%2057.2298%2024.9337%2057.0738C25.1057%2056.9138%2025.2357%2056.7238%2025.3237%2056.5038C25.4117%2056.2838%2025.4557%2056.0418%2025.4557%2055.7778C25.4557%2055.2298%2025.2857%2054.8018%2024.9457%2054.4938C24.6097%2054.1858%2024.0997%2054.0318%2023.4157%2054.0318H22.0357V57.5718Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M33.8916%2053.1138V54.0618H29.7636V56.9178H33.1056V57.8298H29.7636V60.7638H33.8916V61.7118H28.5936V53.1138H33.8916Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M39.9003%2060.8658C40.1323%2060.8658%2040.3443%2060.8558%2040.5363%2060.8358C40.7323%2060.8118%2040.9163%2060.7778%2041.0883%2060.7338C41.2603%2060.6898%2041.4223%2060.6378%2041.5743%2060.5778C41.7263%2060.5138%2041.8783%2060.4418%2042.0303%2060.3618V58.4658H40.6983C40.6223%2058.4658%2040.5603%2058.4438%2040.5123%2058.3998C40.4683%2058.3558%2040.4463%2058.3018%2040.4463%2058.2378V57.5778H43.0863V60.8778C42.8703%2061.0338%2042.6443%2061.1698%2042.4083%2061.2858C42.1763%2061.4018%2041.9263%2061.4998%2041.6583%2061.5798C41.3943%2061.6558%2041.1103%2061.7118%2040.8063%2061.7478C40.5023%2061.7878%2040.1723%2061.8078%2039.8163%2061.8078C39.1923%2061.8078%2038.6203%2061.7018%2038.1003%2061.4898C37.5803%2061.2738%2037.1323%2060.9738%2036.7563%2060.5898C36.3803%2060.2018%2036.0863%2059.7378%2035.8743%2059.1978C35.6663%2058.6578%2035.5623%2058.0638%2035.5623%2057.4158C35.5623%2056.7598%2035.6643%2056.1618%2035.8683%2055.6218C36.0763%2055.0818%2036.3703%2054.6198%2036.7503%2054.2358C37.1343%2053.8478%2037.5963%2053.5478%2038.1363%2053.3358C38.6803%2053.1238%2039.2883%2053.0178%2039.9603%2053.0178C40.3003%2053.0178%2040.6163%2053.0438%2040.9083%2053.0958C41.2003%2053.1438%2041.4703%2053.2158%2041.7183%2053.3118C41.9703%2053.4038%2042.2023%2053.5178%2042.4143%2053.6538C42.6263%2053.7858%2042.8243%2053.9358%2043.0083%2054.1038L42.6783%2054.6318C42.6103%2054.7398%2042.5223%2054.7938%2042.4143%2054.7938C42.3503%2054.7938%2042.2803%2054.7718%2042.2043%2054.7278C42.1043%2054.6718%2041.9923%2054.6038%2041.8683%2054.5238C41.7443%2054.4438%2041.5923%2054.3678%2041.4123%2054.2958C41.2363%2054.2198%2041.0263%2054.1558%2040.7823%2054.1038C40.5423%2054.0518%2040.2563%2054.0258%2039.9243%2054.0258C39.4403%2054.0258%2039.0023%2054.1058%2038.6103%2054.2658C38.2183%2054.4218%2037.8843%2054.6478%2037.6083%2054.9438C37.3323%2055.2358%2037.1203%2055.5918%2036.9723%2056.0118C36.8243%2056.4278%2036.7503%2056.8958%2036.7503%2057.4158C36.7503%2057.9598%2036.8263%2058.4458%2036.9783%2058.8738C37.1343%2059.2978%2037.3523%2059.6578%2037.6323%2059.9538C37.9123%2060.2498%2038.2443%2060.4758%2038.6283%2060.6318C39.0123%2060.7878%2039.4363%2060.8658%2039.9003%2060.8658Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M26.5606%2035.6977C23.8269%2032.964%2019.3948%2032.964%2016.6611%2035.6977L2.55795%2049.8009L1.14374%2048.3867L15.2469%2034.2835C18.7616%2030.7688%2024.4601%2030.7688%2027.9748%2034.2835L30.3642%2036.6729L28.95%2038.0871L26.5606%2035.6977Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M43.7479%2034.281C41.0142%2031.5473%2036.5821%2031.5473%2033.8484%2034.2809L22.5916%2045.5377C22.201%2045.9282%2021.5679%2045.9282%2021.1774%2045.5377C20.7868%2045.1472%2020.7868%2044.514%2021.1774%2044.1235L32.4342%2032.8667C35.9489%2029.352%2041.6474%2029.352%2045.1621%2032.8668L55.9809%2043.6856C56.3714%2044.0761%2056.3714%2044.7092%2055.9809%2045.0998C55.5904%2045.4903%2054.9572%2045.4903%2054.5667%2045.0998L43.7479%2034.281Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.3243%2014.2607V1.80786H20.3243V14.2607C20.3243%2016.1558%2019.6223%2017.9861%2018.3533%2019.3458C17.0821%2020.7078%2015.3426%2021.4871%2013.513%2021.4871H1.89038V19.4871H13.513C14.7659%2019.4871%2015.9827%2018.9545%2016.8912%2017.9811C17.8018%2017.0054%2018.3243%2015.6682%2018.3243%2014.2607Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M41.7858%2010.8079C39.2168%2010.8079%2037.1342%2012.8905%2037.1342%2015.4596C37.1342%2018.0286%2039.2168%2020.1112%2041.7858%2020.1112C44.3549%2020.1112%2046.4375%2018.0286%2046.4375%2015.4596C46.4375%2012.8905%2044.3549%2010.8079%2041.7858%2010.8079ZM35.1342%2015.4596C35.1342%2011.7859%2038.1122%208.80786%2041.7858%208.80786C45.4595%208.80786%2048.4375%2011.7859%2048.4375%2015.4596C48.4375%2019.1332%2045.4595%2022.1112%2041.7858%2022.1112C38.1122%2022.1112%2035.1342%2019.1332%2035.1342%2015.4596Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3C%2Fsvg%3E";
8422
-
8423
- var jpgSvg = "data:image/svg+xml,%3Csvg%20width%3D%2257%22%20height%3D%2269%22%20viewBox%3D%220%200%2057%2069%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.9902%201.10374C19.178%200.914378%2019.4336%200.807861%2019.7003%200.807861H49.4487C51.2946%200.807861%2053.0632%201.54742%2054.3659%202.8611C55.6683%204.17449%2056.3984%205.95405%2056.3984%207.80786V61.8079C56.3984%2063.6617%2055.6683%2065.4412%2054.3659%2066.7546C53.0632%2068.0683%2051.2946%2068.8079%2049.4487%2068.8079H7.80094C5.95504%2068.8079%204.18646%2068.0683%202.8838%2066.7546C1.58143%2065.4412%200.851257%2063.6617%200.851257%2061.8079V19.8079C0.851257%2019.5441%200.955462%2019.291%201.14118%2019.1037L18.9902%201.10374ZM20.117%202.80786L2.85126%2020.2196V61.8079C2.85126%2063.1367%203.37477%2064.4093%204.30396%2065.3464C5.23286%2066.2831%206.49094%2066.8079%207.80094%2066.8079H49.4487C50.7588%2066.8079%2052.0168%2066.2831%2052.9457%2065.3464C53.8749%2064.4093%2054.3984%2063.1366%2054.3984%2061.8079V7.80786C54.3984%206.47907%2053.8749%205.20639%2052.9457%204.26934C52.0168%203.33258%2050.7588%202.80786%2049.4487%202.80786H20.117Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M21.8371%2058.7418C21.8371%2059.2218%2021.7771%2059.6518%2021.6571%2060.0318C21.5411%2060.4118%2021.3671%2060.7338%2021.1351%2060.9978C20.9071%2061.2578%2020.6251%2061.4578%2020.2891%2061.5978C19.9531%2061.7378%2019.5671%2061.8078%2019.1311%2061.8078C18.7431%2061.8078%2018.3391%2061.7518%2017.9191%2061.6398C17.9271%2061.5238%2017.9371%2061.4098%2017.9491%2061.2978C17.9611%2061.1818%2017.9731%2061.0678%2017.9851%2060.9558C17.9931%2060.8878%2018.0171%2060.8338%2018.0571%2060.7938C18.1011%2060.7498%2018.1651%2060.7278%2018.2491%2060.7278C18.3211%2060.7278%2018.4171%2060.7458%2018.5371%2060.7818C18.6571%2060.8178%2018.8171%2060.8358%2019.0171%2060.8358C19.2811%2060.8358%2019.5151%2060.7958%2019.7191%2060.7158C19.9271%2060.6358%2020.1011%2060.5118%2020.2411%2060.3438C20.3851%2060.1758%2020.4931%2059.9618%2020.5651%2059.7018C20.6411%2059.4378%2020.6791%2059.1258%2020.6791%2058.7658V53.1138H21.8371V58.7418Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M25.7131%2058.4958V61.7118H24.5551V53.1138H27.0931C27.6371%2053.1138%2028.1091%2053.1778%2028.5091%2053.3058C28.9131%2053.4298%2029.2471%2053.6078%2029.5111%2053.8398C29.7751%2054.0718%2029.9711%2054.3518%2030.0991%2054.6798C30.2311%2055.0078%2030.2971%2055.3738%2030.2971%2055.7778C30.2971%2056.1778%2030.2271%2056.5438%2030.0871%2056.8758C29.9471%2057.2078%2029.7411%2057.4938%2029.4691%2057.7338C29.2011%2057.9738%2028.8671%2058.1618%2028.4671%2058.2978C28.0671%2058.4298%2027.6091%2058.4958%2027.0931%2058.4958H25.7131ZM25.7131%2057.5718H27.0931C27.4251%2057.5718%2027.7171%2057.5278%2027.9691%2057.4398C28.2251%2057.3518%2028.4391%2057.2298%2028.6111%2057.0738C28.7831%2056.9138%2028.9131%2056.7238%2029.0011%2056.5038C29.0891%2056.2838%2029.1331%2056.0418%2029.1331%2055.7778C29.1331%2055.2298%2028.9631%2054.8018%2028.6231%2054.4938C28.2871%2054.1858%2027.7771%2054.0318%2027.0931%2054.0318H25.7131V57.5718Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M36.105%2060.8658C36.337%2060.8658%2036.549%2060.8558%2036.741%2060.8358C36.937%2060.8118%2037.121%2060.7778%2037.293%2060.7338C37.465%2060.6898%2037.627%2060.6378%2037.779%2060.5778C37.931%2060.5138%2038.083%2060.4418%2038.235%2060.3618V58.4658H36.903C36.827%2058.4658%2036.765%2058.4438%2036.717%2058.3998C36.673%2058.3558%2036.651%2058.3018%2036.651%2058.2378V57.5778H39.291V60.8778C39.075%2061.0338%2038.849%2061.1698%2038.613%2061.2858C38.381%2061.4018%2038.131%2061.4998%2037.863%2061.5798C37.599%2061.6558%2037.315%2061.7118%2037.011%2061.7478C36.707%2061.7878%2036.377%2061.8078%2036.021%2061.8078C35.397%2061.8078%2034.825%2061.7018%2034.305%2061.4898C33.785%2061.2738%2033.337%2060.9738%2032.961%2060.5898C32.585%2060.2018%2032.291%2059.7378%2032.079%2059.1978C31.871%2058.6578%2031.767%2058.0638%2031.767%2057.4158C31.767%2056.7598%2031.869%2056.1618%2032.073%2055.6218C32.281%2055.0818%2032.575%2054.6198%2032.955%2054.2358C33.339%2053.8478%2033.801%2053.5478%2034.341%2053.3358C34.885%2053.1238%2035.493%2053.0178%2036.165%2053.0178C36.505%2053.0178%2036.821%2053.0438%2037.113%2053.0958C37.405%2053.1438%2037.675%2053.2158%2037.923%2053.3118C38.175%2053.4038%2038.407%2053.5178%2038.619%2053.6538C38.831%2053.7858%2039.029%2053.9358%2039.213%2054.1038L38.883%2054.6318C38.815%2054.7398%2038.727%2054.7938%2038.619%2054.7938C38.555%2054.7938%2038.485%2054.7718%2038.409%2054.7278C38.309%2054.6718%2038.197%2054.6038%2038.073%2054.5238C37.949%2054.4438%2037.797%2054.3678%2037.617%2054.2958C37.441%2054.2198%2037.231%2054.1558%2036.987%2054.1038C36.747%2054.0518%2036.461%2054.0258%2036.129%2054.0258C35.645%2054.0258%2035.207%2054.1058%2034.815%2054.2658C34.423%2054.4218%2034.089%2054.6478%2033.813%2054.9438C33.537%2055.2358%2033.325%2055.5918%2033.177%2056.0118C33.029%2056.4278%2032.955%2056.8958%2032.955%2057.4158C32.955%2057.9598%2033.031%2058.4458%2033.183%2058.8738C33.339%2059.2978%2033.557%2059.6578%2033.837%2059.9538C34.117%2060.2498%2034.449%2060.4758%2034.833%2060.6318C35.217%2060.7878%2035.641%2060.8658%2036.105%2060.8658Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M26.5215%2035.6977C23.7878%2032.964%2019.3557%2032.964%2016.622%2035.6977L2.51883%2049.8009L1.10461%2048.3867L15.2078%2034.2835C18.7225%2030.7688%2024.421%2030.7688%2027.9357%2034.2835L30.3251%2036.6729L28.9109%2038.0871L26.5215%2035.6977Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M43.7088%2034.281C40.9751%2031.5473%2036.543%2031.5473%2033.8093%2034.2809L22.5524%2045.5377C22.1619%2045.9282%2021.5288%2045.9282%2021.1382%2045.5377C20.7477%2045.1472%2020.7477%2044.514%2021.1382%2044.1235L32.3951%2032.8667C35.9098%2029.352%2041.6083%2029.352%2045.123%2032.8668L55.9418%2043.6856C56.3323%2044.0761%2056.3323%2044.7092%2055.9418%2045.0998C55.5513%2045.4903%2054.9181%2045.4903%2054.5276%2045.0998L43.7088%2034.281Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.2852%2014.2607V1.80786H20.2852V14.2607C20.2852%2016.1558%2019.5832%2017.9861%2018.3142%2019.3458C17.043%2020.7078%2015.3035%2021.4871%2013.4739%2021.4871H1.85126V19.4871H13.4739C14.7268%2019.4871%2015.9436%2018.9545%2016.8521%2017.9811C17.7627%2017.0054%2018.2852%2015.6682%2018.2852%2014.2607Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M41.7467%2010.8079C39.1777%2010.8079%2037.095%2012.8905%2037.095%2015.4596C37.095%2018.0286%2039.1777%2020.1112%2041.7467%2020.1112C44.3158%2020.1112%2046.3984%2018.0286%2046.3984%2015.4596C46.3984%2012.8905%2044.3158%2010.8079%2041.7467%2010.8079ZM35.095%2015.4596C35.095%2011.7859%2038.0731%208.80786%2041.7467%208.80786C45.4204%208.80786%2048.3984%2011.7859%2048.3984%2015.4596C48.3984%2019.1332%2045.4204%2022.1112%2041.7467%2022.1112C38.0731%2022.1112%2035.095%2019.1332%2035.095%2015.4596Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3C%2Fsvg%3E";
8479
+ var eyeSvg = "data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20clip-path%3D%22url%28%23clip0_14605_3108%29%22%3E%3Cpath%20d%3D%22M0.832031%209.99998C0.832031%209.99998%204.16536%203.33331%209.9987%203.33331C15.832%203.33331%2019.1654%209.99998%2019.1654%209.99998C19.1654%209.99998%2015.832%2016.6666%209.9987%2016.6666C4.16536%2016.6666%200.832031%209.99998%200.832031%209.99998Z%22%20stroke%3D%22%23D2D2D8%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M9.99902%2012.5C11.3797%2012.5%2012.499%2011.3807%2012.499%2010C12.499%208.61929%2011.3797%207.5%209.99902%207.5C8.61831%207.5%207.49902%208.61929%207.49902%2010C7.49902%2011.3807%208.61831%2012.5%209.99902%2012.5Z%22%20stroke%3D%22%23D2D2D8%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip0_14605_3108%22%3E%3Crect%20width%3D%2220%22%20height%3D%2220%22%20fill%3D%22white%22%20transform%3D%22translate%28-0.000976562%29%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E";
8424
8480
 
8425
- var pdfSvg = "data:image/svg+xml,%3Csvg%20width%3D%2256%22%20height%3D%2269%22%20viewBox%3D%220%200%2056%2069%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.5857%201.10374C18.7735%200.914378%2019.0291%200.807861%2019.2958%200.807861H49.0442C50.8901%200.807861%2052.6587%201.54742%2053.9613%202.8611C55.2637%204.17449%2055.9939%205.95405%2055.9939%207.80786V61.8079C55.9939%2063.6617%2055.2637%2065.4412%2053.9613%2066.7546C52.6587%2068.0683%2050.8901%2068.8079%2049.0442%2068.8079H7.3964C5.5505%2068.8079%203.78192%2068.0683%202.47926%2066.7546C1.17689%2065.4412%200.446716%2063.6617%200.446716%2061.8079V19.8079C0.446716%2019.5441%200.550921%2019.291%200.736639%2019.1037L18.5857%201.10374ZM19.7125%202.80786L2.44672%2020.2196V61.8079C2.44672%2063.1367%202.97023%2064.4093%203.89942%2065.3464C4.82832%2066.2831%206.08639%2066.8079%207.3964%2066.8079H49.0442C50.3542%2066.8079%2051.6123%2066.2831%2052.5412%2065.3464C53.4704%2064.4093%2053.9939%2063.1366%2053.9939%2061.8079V7.80786C53.9939%206.47907%2053.4704%205.20639%2052.5412%204.26934C51.6123%203.33258%2050.3542%202.80786%2049.0442%202.80786H19.7125Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M18.1037%2058.592V61.808H16.9457V53.21H19.4837C20.0277%2053.21%2020.4997%2053.274%2020.8997%2053.402C21.3037%2053.526%2021.6377%2053.704%2021.9017%2053.936C22.1657%2054.168%2022.3617%2054.448%2022.4897%2054.776C22.6217%2055.104%2022.6877%2055.47%2022.6877%2055.874C22.6877%2056.274%2022.6177%2056.64%2022.4777%2056.972C22.3377%2057.304%2022.1317%2057.59%2021.8597%2057.83C21.5917%2058.07%2021.2577%2058.258%2020.8577%2058.394C20.4577%2058.526%2019.9997%2058.592%2019.4837%2058.592H18.1037ZM18.1037%2057.668H19.4837C19.8157%2057.668%2020.1077%2057.624%2020.3597%2057.536C20.6157%2057.448%2020.8297%2057.326%2021.0017%2057.17C21.1737%2057.01%2021.3037%2056.82%2021.3917%2056.6C21.4797%2056.38%2021.5237%2056.138%2021.5237%2055.874C21.5237%2055.326%2021.3537%2054.898%2021.0137%2054.59C20.6777%2054.282%2020.1677%2054.128%2019.4837%2054.128H18.1037V57.668Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M32.1137%2057.512C32.1137%2058.156%2032.0117%2058.742%2031.8077%2059.27C31.6037%2059.798%2031.3157%2060.25%2030.9437%2060.626C30.5717%2061.002%2030.1257%2061.294%2029.6057%2061.502C29.0857%2061.706%2028.5097%2061.808%2027.8777%2061.808H24.6617V53.21H27.8777C28.5097%2053.21%2029.0857%2053.314%2029.6057%2053.522C30.1257%2053.726%2030.5717%2054.018%2030.9437%2054.398C31.3157%2054.774%2031.6037%2055.226%2031.8077%2055.754C32.0117%2056.282%2032.1137%2056.868%2032.1137%2057.512ZM30.9197%2057.512C30.9197%2056.984%2030.8477%2056.512%2030.7037%2056.096C30.5597%2055.68%2030.3557%2055.328%2030.0917%2055.04C29.8277%2054.752%2029.5077%2054.532%2029.1317%2054.38C28.7557%2054.228%2028.3377%2054.152%2027.8777%2054.152H25.8317V60.866H27.8777C28.3377%2060.866%2028.7557%2060.79%2029.1317%2060.638C29.5077%2060.486%2029.8277%2060.268%2030.0917%2059.984C30.3557%2059.696%2030.5597%2059.344%2030.7037%2058.928C30.8477%2058.512%2030.9197%2058.04%2030.9197%2057.512Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M39.4948%2053.21V54.158H35.3668V57.164H38.8948V58.112H35.3668V61.808H34.1968V53.21H39.4948Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M16.5119%2045.0107C15.3078%2045.0107%2014.5497%2044.1633%2014.2821%2043.5836C14.0145%2043.1376%2013.2563%2041.4875%2015.3524%2039.3469C16.2443%2038.4103%2017.939%2036.7156%2022.3095%2035.2439C22.8893%2034.0398%2023.5137%2032.7019%2024.1826%2031.3194C24.8962%2029.7585%2025.4759%2028.4206%2025.9219%2027.2165C24.138%2024.3623%2023.8258%2022.2662%2023.8704%2019.9026C23.915%2017.2267%2025.6989%2016.5132%2026.6354%2016.5132C26.68%2016.5132%2029.2221%2016.6024%2029.4005%2020.4823C29.4451%2021.9094%2029.2221%2023.5595%2027.9288%2026.9935C28.8207%2028.3314%2030.0694%2029.8477%2031.6303%2031.587C32.1655%2032.2113%2032.7006%2032.7465%2033.1466%2033.2371C33.5926%2033.2371%2034.0385%2033.1925%2034.4845%2033.1925C38.3199%2033.1925%2040.2375%2034.0398%2041.0403%2034.5304C42.735%2035.6007%2042.6458%2037.2954%2042.3336%2038.0089C42.1106%2038.5887%2041.2633%2039.659%2039.5686%2039.659C39.1672%2039.659%2038.7212%2039.6144%2038.2753%2039.4806C36.8482%2039.0793%2035.7778%2038.4995%2032.4777%2035.0655C30.9614%2035.1993%2029.2667%2035.4223%2027.4828%2035.7791C26.1003%2036.0467%2024.7624%2036.3589%2023.6029%2036.7156C19.9459%2043.8066%2018.2512%2044.5201%2017.716%2044.7431C17.3147%2044.9215%2016.9133%2045.0107%2016.5119%2045.0107ZM21.0608%2037.6076C18.4296%2038.7225%2017.2701%2039.882%2016.6011%2040.5956C15.3078%2041.9335%2015.7538%2042.647%2015.7538%2042.647L15.8876%2042.7808V42.8254C15.8876%2042.87%2016.1106%2043.2268%2016.5119%2043.2268C16.6457%2043.2268%2016.8241%2043.1822%2017.0025%2043.093C17.3593%2042.9592%2018.608%2042.1119%2021.0608%2037.6076ZM34.8413%2034.9763C37.0711%2037.2508%2037.8293%2037.5184%2038.7212%2037.7414C39.0334%2037.8306%2039.301%2037.8752%2039.5686%2037.8752C40.4159%2037.8752%2040.6389%2037.3846%2040.6389%2037.34C40.7281%2037.117%2040.8619%2036.4926%2040.1037%2036.0021C39.5686%2035.7345%2038.0969%2035.0209%2034.8413%2034.9763ZM24.7178%2034.4412L24.6732%2034.5304C25.4313%2034.352%2026.2787%2034.129%2027.126%2033.9952C28.4193%2033.7276%2029.7126%2033.5492%2030.9168%2033.4154L30.8722%2033.3709C30.6938%2033.1925%2030.5154%2033.0141%2030.337%2032.7911C29.0437%2031.4086%2028.018%2030.1153%2027.1706%2029.0003L27.126%2029.0449C26.7246%2029.9815%2026.3233%2030.9626%2025.8327%2032.0775C25.4313%2032.8803%2025.03%2033.683%2024.7178%2034.4412ZM26.5908%2018.2525C26.3233%2018.2971%2025.6989%2018.4755%2025.6543%2019.858C25.6097%2021.3297%2025.6989%2022.846%2026.7246%2024.942C27.572%2022.4%2027.6166%2021.3297%2027.6166%2020.4823C27.5274%2018.6092%2026.7246%2018.2971%2026.5908%2018.2525Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M17.8807%2014.2607V1.80786H19.8807V14.2607C19.8807%2016.1558%2019.1787%2017.9861%2017.9096%2019.3458C16.6384%2020.7078%2014.899%2021.4871%2013.0694%2021.4871H1.44672V19.4871H13.0694C14.3223%2019.4871%2015.5391%2018.9545%2016.4475%2017.9811C17.3582%2017.0054%2017.8807%2015.6682%2017.8807%2014.2607Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3C%2Fsvg%3E";
8481
+ var fileSvg = "data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2222%22%20viewBox%3D%220%200%2018%2022%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M14.8272%2021H2.7284C2.27%2021%201.83037%2020.8084%201.50624%2020.4675C1.1821%2020.1265%201%2019.664%201%2019.1818V6.45455L6.18519%201H14.8272C15.2856%201%2015.7252%201.19156%2016.0493%201.53253C16.3735%201.87351%2016.5556%202.33597%2016.5556%202.81818V19.1818C16.5556%2019.664%2016.3735%2020.1265%2016.0493%2020.4675C15.7252%2020.8084%2015.2856%2021%2014.8272%2021Z%22%20stroke%3D%22%23696970%22%20stroke-width%3D%222%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M6.0646%201V4.77358C6.0646%205.27399%205.88674%205.75391%205.57014%206.10775C5.25354%206.46159%204.82414%206.66038%204.3764%206.66038H1%22%20stroke%3D%22%23696970%22%20stroke-width%3D%222%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E";
8426
8482
 
8427
- var pngSvg = "data:image/svg+xml,%3Csvg%20width%3D%2257%22%20height%3D%2269%22%20viewBox%3D%220%200%2057%2069%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M19.01%201.10374C19.1977%200.914378%2019.4534%200.807861%2019.72%200.807861H49.4685C51.3144%200.807861%2053.0829%201.54742%2054.3856%202.8611C55.688%204.17449%2056.4181%205.95405%2056.4181%207.80786V61.8079C56.4181%2063.6617%2055.688%2065.4412%2054.3856%2066.7546C53.0829%2068.0683%2051.3144%2068.8079%2049.4685%2068.8079H7.82066C5.97476%2068.8079%204.20617%2068.0683%202.90352%2066.7546C1.60114%2065.4412%200.870972%2063.6617%200.870972%2061.8079V19.8079C0.870972%2019.5441%200.975176%2019.291%201.16089%2019.1037L19.01%201.10374ZM20.1367%202.80786L2.87097%2020.2196V61.8079C2.87097%2063.1367%203.39448%2064.4093%204.32367%2065.3464C5.25258%2066.2831%206.51065%2066.8079%207.82066%2066.8079H49.4685C50.7785%2066.8079%2052.0365%2066.2831%2052.9654%2065.3464C53.8946%2064.4093%2054.4181%2063.1366%2054.4181%2061.8079V7.80786C54.4181%206.47907%2053.8946%205.20639%2052.9654%204.26934C52.0365%203.33258%2050.7785%202.80786%2049.4685%202.80786H20.1367Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M41.7664%2010.8079C39.1974%2010.8079%2037.1147%2012.8905%2037.1147%2015.4596C37.1147%2018.0286%2039.1974%2020.1112%2041.7664%2020.1112C44.3355%2020.1112%2046.4181%2018.0286%2046.4181%2015.4596C46.4181%2012.8905%2044.3355%2010.8079%2041.7664%2010.8079ZM35.1147%2015.4596C35.1147%2011.7859%2038.0928%208.80786%2041.7664%208.80786C45.4401%208.80786%2048.4181%2011.7859%2048.4181%2015.4596C48.4181%2019.1332%2045.4401%2022.1112%2041.7664%2022.1112C38.0928%2022.1112%2035.1147%2019.1332%2035.1147%2015.4596Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M17.7522%2058.4958V61.7118H16.5942V53.1138H19.1322C19.6762%2053.1138%2020.1482%2053.1778%2020.5482%2053.3058C20.9522%2053.4298%2021.2862%2053.6078%2021.5502%2053.8398C21.8142%2054.0718%2022.0102%2054.3518%2022.1382%2054.6798C22.2702%2055.0078%2022.3362%2055.3738%2022.3362%2055.7778C22.3362%2056.1778%2022.2662%2056.5438%2022.1262%2056.8758C21.9862%2057.2078%2021.7802%2057.4938%2021.5082%2057.7338C21.2402%2057.9738%2020.9062%2058.1618%2020.5062%2058.2978C20.1062%2058.4298%2019.6482%2058.4958%2019.1322%2058.4958H17.7522ZM17.7522%2057.5718H19.1322C19.4642%2057.5718%2019.7562%2057.5278%2020.0082%2057.4398C20.2642%2057.3518%2020.4782%2057.2298%2020.6502%2057.0738C20.8222%2056.9138%2020.9522%2056.7238%2021.0402%2056.5038C21.1282%2056.2838%2021.1722%2056.0418%2021.1722%2055.7778C21.1722%2055.2298%2021.0022%2054.8018%2020.6622%2054.4938C20.3262%2054.1858%2019.8162%2054.0318%2019.1322%2054.0318H17.7522V57.5718Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M24.9101%2053.1138C25.0141%2053.1138%2025.0901%2053.1278%2025.1381%2053.1558C25.1901%2053.1798%2025.2481%2053.2318%2025.3121%2053.3118L30.2921%2059.7918C30.2801%2059.6878%2030.2721%2059.5878%2030.2681%2059.4918C30.2641%2059.3918%2030.2621%2059.2958%2030.2621%2059.2038V53.1138H31.2821V61.7118H30.6941C30.6021%2061.7118%2030.5241%2061.6958%2030.4601%2061.6638C30.4001%2061.6318%2030.3401%2061.5778%2030.2801%2061.5018L25.3061%2055.0278C25.3141%2055.1278%2025.3201%2055.2258%2025.3241%2055.3218C25.3281%2055.4178%2025.3301%2055.5058%2025.3301%2055.5858V61.7118H24.3101V53.1138H24.9101Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20d%3D%22M37.7144%2060.8658C37.9464%2060.8658%2038.1584%2060.8558%2038.3504%2060.8358C38.5464%2060.8118%2038.7304%2060.7778%2038.9024%2060.7338C39.0744%2060.6898%2039.2364%2060.6378%2039.3884%2060.5778C39.5404%2060.5138%2039.6924%2060.4418%2039.8444%2060.3618V58.4658H38.5124C38.4364%2058.4658%2038.3744%2058.4438%2038.3264%2058.3998C38.2824%2058.3558%2038.2604%2058.3018%2038.2604%2058.2378V57.5778H40.9004V60.8778C40.6844%2061.0338%2040.4584%2061.1698%2040.2224%2061.2858C39.9904%2061.4018%2039.7404%2061.4998%2039.4724%2061.5798C39.2084%2061.6558%2038.9244%2061.7118%2038.6204%2061.7478C38.3164%2061.7878%2037.9864%2061.8078%2037.6304%2061.8078C37.0064%2061.8078%2036.4344%2061.7018%2035.9144%2061.4898C35.3944%2061.2738%2034.9464%2060.9738%2034.5704%2060.5898C34.1944%2060.2018%2033.9004%2059.7378%2033.6884%2059.1978C33.4804%2058.6578%2033.3764%2058.0638%2033.3764%2057.4158C33.3764%2056.7598%2033.4784%2056.1618%2033.6824%2055.6218C33.8904%2055.0818%2034.1844%2054.6198%2034.5644%2054.2358C34.9484%2053.8478%2035.4104%2053.5478%2035.9504%2053.3358C36.4944%2053.1238%2037.1024%2053.0178%2037.7744%2053.0178C38.1144%2053.0178%2038.4304%2053.0438%2038.7224%2053.0958C39.0144%2053.1438%2039.2844%2053.2158%2039.5324%2053.3118C39.7844%2053.4038%2040.0164%2053.5178%2040.2284%2053.6538C40.4404%2053.7858%2040.6384%2053.9358%2040.8224%2054.1038L40.4924%2054.6318C40.4244%2054.7398%2040.3364%2054.7938%2040.2284%2054.7938C40.1644%2054.7938%2040.0944%2054.7718%2040.0184%2054.7278C39.9184%2054.6718%2039.8064%2054.6038%2039.6824%2054.5238C39.5584%2054.4438%2039.4064%2054.3678%2039.2264%2054.2958C39.0504%2054.2198%2038.8404%2054.1558%2038.5964%2054.1038C38.3564%2054.0518%2038.0704%2054.0258%2037.7384%2054.0258C37.2544%2054.0258%2036.8164%2054.1058%2036.4244%2054.2658C36.0324%2054.4218%2035.6984%2054.6478%2035.4224%2054.9438C35.1464%2055.2358%2034.9344%2055.5918%2034.7864%2056.0118C34.6384%2056.4278%2034.5644%2056.8958%2034.5644%2057.4158C34.5644%2057.9598%2034.6404%2058.4458%2034.7924%2058.8738C34.9484%2059.2978%2035.1664%2059.6578%2035.4464%2059.9538C35.7264%2060.2498%2036.0584%2060.4758%2036.4424%2060.6318C36.8264%2060.7878%2037.2504%2060.8658%2037.7144%2060.8658Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M26.5412%2035.6977C23.8075%2032.964%2019.3754%2032.964%2016.6417%2035.6977L2.53854%2049.8009L1.12433%2048.3867L15.2275%2034.2835C18.7422%2030.7688%2024.4407%2030.7688%2027.9554%2034.2835L30.3448%2036.6729L28.9306%2038.0871L26.5412%2035.6977Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M43.7285%2034.281C40.9948%2031.5473%2036.5627%2031.5473%2033.829%2034.2809L22.5722%2045.5377C22.1816%2045.9282%2021.5485%2045.9282%2021.1579%2045.5377C20.7674%2045.1472%2020.7674%2044.514%2021.1579%2044.1235L32.4148%2032.8667C35.9295%2029.352%2041.628%2029.352%2045.1427%2032.8668L55.9615%2043.6856C56.352%2044.0761%2056.352%2044.7092%2055.9615%2045.0998C55.571%2045.4903%2054.9378%2045.4903%2054.5473%2045.0998L43.7285%2034.281Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.3049%2014.2607V1.80786H20.3049V14.2607C20.3049%2016.1558%2019.6029%2017.9861%2018.3339%2019.3458C17.0627%2020.7078%2015.3232%2021.4871%2013.4936%2021.4871H1.87097V19.4871H13.4936C14.7465%2019.4871%2015.9633%2018.9545%2016.8718%2017.9811C17.7824%2017.0054%2018.3049%2015.6682%2018.3049%2014.2607Z%22%20fill%3D%22%238E8CEE%22%2F%3E%3C%2Fsvg%3E";
8483
+ var fileErrorSvg = "data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2222%22%20viewBox%3D%220%200%2018%2022%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M14.8272%2021H2.72839C2.27%2021%201.83037%2020.8084%201.50624%2020.4675C1.1821%2020.1265%201%2019.664%201%2019.1818V6.45455L6.18518%201H14.8272C15.2856%201%2015.7252%201.19156%2016.0493%201.53253C16.3735%201.87351%2016.5556%202.33597%2016.5556%202.81818V19.1818C16.5556%2019.664%2016.3735%2020.1265%2016.0493%2020.4675C15.7252%2020.8084%2015.2856%2021%2014.8272%2021Z%22%20stroke%3D%22%23E55454%22%20stroke-width%3D%222%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M6.0646%201V4.77358C6.0646%205.27399%205.88674%205.75391%205.57014%206.10775C5.25354%206.46159%204.82414%206.66038%204.3764%206.66038H1%22%20stroke%3D%22%23E55454%22%20stroke-width%3D%222%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E";
8428
8484
 
8429
- var genericCompleteSvg = "data:image/svg+xml,%3Csvg%20width%3D%2256%22%20height%3D%2269%22%20viewBox%3D%220%200%2056%2069%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.2542%201.10374C18.4419%200.914378%2018.6976%200.807861%2018.9642%200.807861H48.7127C50.5586%200.807861%2052.3271%201.54742%2053.6298%202.8611C54.9322%204.17449%2055.6623%205.95405%2055.6623%207.80786V61.8079C55.6623%2063.6617%2054.9322%2065.4412%2053.6298%2066.7546C52.3271%2068.0683%2050.5586%2068.8079%2048.7127%2068.8079H7.06486C5.21896%2068.8079%203.45038%2068.0683%202.14772%2066.7546C0.845342%2065.4412%200.115173%2063.6617%200.115173%2061.8079V19.8079C0.115173%2019.5441%200.219378%2019.291%200.405096%2019.1037L18.2542%201.10374ZM19.3809%202.80786L2.11517%2020.2196V61.8079C2.11517%2063.1367%202.63868%2064.4093%203.56787%2065.3464C4.49678%2066.2831%205.75485%2066.8079%207.06486%2066.8079H48.7127C50.0227%2066.8079%2051.2807%2066.2831%2052.2096%2065.3464C53.1388%2064.4093%2053.6623%2063.1366%2053.6623%2061.8079V7.80786C53.6623%206.47907%2053.1388%205.20639%2052.2096%204.26934C51.2807%203.33258%2050.0227%202.80786%2048.7127%202.80786H19.3809Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M17.5491%2014.2607V1.80786H19.5491V14.2607C19.5491%2016.1558%2018.8471%2017.9861%2017.5781%2019.3458C16.3069%2020.7078%2014.5674%2021.4871%2012.7378%2021.4871H1.11517V19.4871H12.7378C13.9907%2019.4871%2015.2075%2018.9545%2016.116%2017.9811C17.0266%2017.0054%2017.5491%2015.6682%2017.5491%2014.2607Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3C%2Fsvg%3E";
8485
+ var fileUploadSvg = "data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2222%22%20viewBox%3D%220%200%2018%2022%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M14.8272%2021H2.72839C2.27%2021%201.83037%2020.8084%201.50624%2020.4675C1.1821%2020.1265%201%2019.664%201%2019.1818V6.45455L6.18518%201H14.8272C15.2856%201%2015.7252%201.19156%2016.0493%201.53253C16.3735%201.87351%2016.5556%202.33597%2016.5556%202.81818V19.1818C16.5556%2019.664%2016.3735%2020.1265%2016.0493%2020.4675C15.7252%2020.8084%2015.2856%2021%2014.8272%2021Z%22%20stroke%3D%22%238E8CEE%22%20stroke-width%3D%222%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M6.0646%201V4.77358C6.0646%205.27399%205.88674%205.75391%205.57014%206.10775C5.25354%206.46159%204.82414%206.66038%204.3764%206.66038H1%22%20stroke%3D%22%238E8CEE%22%20stroke-width%3D%222%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E";
8430
8486
 
8431
- var bmpCompleteSvg = "data:image/svg+xml,%3Csvg%20width%3D%2257%22%20height%3D%2269%22%20viewBox%3D%220%200%2057%2069%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.9708%201.10374C19.1586%200.914378%2019.4142%200.807861%2019.6809%200.807861H49.4293C51.2752%200.807861%2053.0438%201.54742%2054.3465%202.8611C55.6488%204.17449%2056.379%205.95405%2056.379%207.80786V61.8079C56.379%2063.6617%2055.6488%2065.4412%2054.3465%2066.7546C53.0438%2068.0683%2051.2752%2068.8079%2049.4293%2068.8079H7.78153C5.93563%2068.8079%204.16705%2068.0683%202.86439%2066.7546C1.56202%2065.4412%200.831848%2063.6617%200.831848%2061.8079V19.8079C0.831848%2019.5441%200.936052%2019.291%201.12177%2019.1037L18.9708%201.10374ZM20.0976%202.80786L2.83185%2020.2196V61.8079C2.83185%2063.1367%203.35536%2064.4093%204.28455%2065.3464C5.21346%2066.2831%206.47153%2066.8079%207.78153%2066.8079H49.4293C50.7393%2066.8079%2051.9974%2066.2831%2052.9263%2065.3464C53.8555%2064.4093%2054.379%2063.1366%2054.379%2061.8079V7.80786C54.379%206.47907%2053.8555%205.20639%2052.9263%204.26934C51.9974%203.33258%2050.7393%202.80786%2049.4293%202.80786H20.0976Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M16.0771%2061.808V53.21H18.8191C19.3471%2053.21%2019.8011%2053.262%2020.1811%2053.366C20.5651%2053.47%2020.8791%2053.618%2021.1231%2053.81C21.3711%2054.002%2021.5531%2054.238%2021.6691%2054.518C21.7891%2054.794%2021.8491%2055.106%2021.8491%2055.454C21.8491%2055.666%2021.8151%2055.87%2021.7471%2056.066C21.6831%2056.262%2021.5831%2056.444%2021.4471%2056.612C21.3151%2056.78%2021.1471%2056.93%2020.9431%2057.062C20.7431%2057.194%2020.5071%2057.302%2020.2351%2057.386C20.8631%2057.51%2021.3371%2057.736%2021.6571%2058.064C21.9771%2058.392%2022.1371%2058.824%2022.1371%2059.36C22.1371%2059.724%2022.0691%2060.056%2021.9331%2060.356C21.8011%2060.656%2021.6051%2060.914%2021.3451%2061.13C21.0891%2061.346%2020.7731%2061.514%2020.3971%2061.634C20.0251%2061.75%2019.5991%2061.808%2019.1191%2061.808H16.0771ZM17.2411%2057.89V60.884H19.1011C19.4331%2060.884%2019.7171%2060.846%2019.9531%2060.77C20.1931%2060.694%2020.3891%2060.588%2020.5411%2060.452C20.6971%2060.312%2020.8111%2060.148%2020.8831%2059.96C20.9551%2059.768%2020.9911%2059.558%2020.9911%2059.33C20.9911%2058.886%2020.8331%2058.536%2020.5171%2058.28C20.2051%2058.02%2019.7311%2057.89%2019.0951%2057.89H17.2411ZM17.2411%2057.062H18.7771C19.1051%2057.062%2019.3891%2057.026%2019.6291%2056.954C19.8691%2056.882%2020.0671%2056.782%2020.2231%2056.654C20.3831%2056.526%2020.5011%2056.372%2020.5771%2056.192C20.6531%2056.008%2020.6911%2055.808%2020.6911%2055.592C20.6911%2055.088%2020.5391%2054.718%2020.2351%2054.482C19.9311%2054.246%2019.4591%2054.128%2018.8191%2054.128H17.2411V57.062Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M28.5767%2058.7C28.6327%2058.796%2028.6807%2058.898%2028.7207%2059.006C28.7647%2059.11%2028.8067%2059.216%2028.8467%2059.324C28.8867%2059.212%2028.9287%2059.106%2028.9727%2059.006C29.0167%2058.902%2029.0667%2058.798%2029.1227%2058.694L32.0327%2053.408C32.0847%2053.316%2032.1387%2053.26%2032.1947%2053.24C32.2507%2053.22%2032.3307%2053.21%2032.4347%2053.21H33.2927V61.808H32.2727V55.49C32.2727%2055.406%2032.2747%2055.316%2032.2787%2055.22C32.2827%2055.124%2032.2887%2055.026%2032.2967%2054.926L29.3507%2060.302C29.2507%2060.482%2029.1107%2060.572%2028.9307%2060.572H28.7627C28.5827%2060.572%2028.4427%2060.482%2028.3427%2060.302L25.3307%2054.908C25.3427%2055.012%2025.3507%2055.114%2025.3547%2055.214C25.3627%2055.314%2025.3667%2055.406%2025.3667%2055.49V61.808H24.3467V53.21H25.2047C25.3087%2053.21%2025.3887%2053.22%2025.4447%2053.24C25.5007%2053.26%2025.5547%2053.316%2025.6067%2053.408L28.5767%2058.7Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M37.1637%2058.592V61.808H36.0057V53.21H38.5437C39.0877%2053.21%2039.5597%2053.274%2039.9597%2053.402C40.3637%2053.526%2040.6977%2053.704%2040.9617%2053.936C41.2257%2054.168%2041.4217%2054.448%2041.5497%2054.776C41.6817%2055.104%2041.7477%2055.47%2041.7477%2055.874C41.7477%2056.274%2041.6777%2056.64%2041.5377%2056.972C41.3977%2057.304%2041.1917%2057.59%2040.9197%2057.83C40.6517%2058.07%2040.3177%2058.258%2039.9177%2058.394C39.5177%2058.526%2039.0597%2058.592%2038.5437%2058.592H37.1637ZM37.1637%2057.668H38.5437C38.8757%2057.668%2039.1677%2057.624%2039.4197%2057.536C39.6757%2057.448%2039.8897%2057.326%2040.0617%2057.17C40.2337%2057.01%2040.3637%2056.82%2040.4517%2056.6C40.5397%2056.38%2040.5837%2056.138%2040.5837%2055.874C40.5837%2055.326%2040.4137%2054.898%2040.0737%2054.59C39.7377%2054.282%2039.2277%2054.128%2038.5437%2054.128H37.1637V57.668Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M41.7273%2010.8079C39.1583%2010.8079%2037.0756%2012.8905%2037.0756%2015.4596C37.0756%2018.0286%2039.1583%2020.1112%2041.7273%2020.1112C44.2964%2020.1112%2046.379%2018.0286%2046.379%2015.4596C46.379%2012.8905%2044.2964%2010.8079%2041.7273%2010.8079ZM35.0756%2015.4596C35.0756%2011.7859%2038.0537%208.80786%2041.7273%208.80786C45.4009%208.80786%2048.379%2011.7859%2048.379%2015.4596C48.379%2019.1332%2045.4009%2022.1112%2041.7273%2022.1112C38.0537%2022.1112%2035.0756%2019.1332%2035.0756%2015.4596Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M26.5021%2035.6977C23.7684%2032.964%2019.3362%2032.964%2016.6026%2035.6977L2.49942%2049.8009L1.08521%2048.3867L15.1884%2034.2835C18.7031%2030.7688%2024.4016%2030.7688%2027.9163%2034.2835L30.3057%2036.6729L28.8915%2038.0871L26.5021%2035.6977Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M43.6894%2034.281C40.9557%2031.5473%2036.5235%2031.5473%2033.7899%2034.2809L22.533%2045.5377C22.1425%2045.9282%2021.5093%2045.9282%2021.1188%2045.5377C20.7283%2045.1472%2020.7283%2044.514%2021.1188%2044.1235L32.3757%2032.8667C35.8904%2029.352%2041.5889%2029.352%2045.1036%2032.8668L55.9224%2043.6856C56.3129%2044.0761%2056.3129%2044.7092%2055.9224%2045.0998C55.5318%2045.4903%2054.8987%2045.4903%2054.5082%2045.0998L43.6894%2034.281Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.2658%2014.2607V1.80786H20.2658V14.2607C20.2658%2016.1558%2019.5638%2017.9861%2018.2948%2019.3458C17.0236%2020.7078%2015.2841%2021.4871%2013.4545%2021.4871H1.83185V19.4871H13.4545C14.7074%2019.4871%2015.9242%2018.9545%2016.8327%2017.9811C17.7433%2017.0054%2018.2658%2015.6682%2018.2658%2014.2607Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3C%2Fsvg%3E";
8487
+ var trashSvg = "data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2.5%205H4.16667H17.5%22%20stroke%3D%22%23D2D2D8%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M6.66699%205.00002V3.33335C6.66699%202.89133%206.84259%202.4674%207.15515%202.15484C7.46771%201.84228%207.89163%201.66669%208.33366%201.66669H11.667C12.109%201.66669%2012.5329%201.84228%2012.8455%202.15484C13.1581%202.4674%2013.3337%202.89133%2013.3337%203.33335V5.00002M15.8337%205.00002V16.6667C15.8337%2017.1087%2015.6581%2017.5326%2015.3455%2017.8452C15.0329%2018.1578%2014.609%2018.3334%2014.167%2018.3334H5.83366C5.39163%2018.3334%204.96771%2018.1578%204.65515%2017.8452C4.34259%2017.5326%204.16699%2017.1087%204.16699%2016.6667V5.00002H15.8337Z%22%20stroke%3D%22%23D2D2D8%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M8.33301%209.16669V14.1667%22%20stroke%3D%22%23D2D2D8%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M11.667%209.16669V14.1667%22%20stroke%3D%22%23D2D2D8%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E";
8432
8488
 
8433
- var docCompleteSvg = "data:image/svg+xml,%3Csvg%20width%3D%2256%22%20height%3D%2269%22%20viewBox%3D%220%200%2056%2069%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.1418%201.10374C18.3296%200.914378%2018.5852%200.807861%2018.8519%200.807861H48.6004C50.4463%200.807861%2052.2148%201.54742%2053.5175%202.8611C54.8199%204.17449%2055.55%205.95405%2055.55%207.80786V61.8079C55.55%2063.6617%2054.8199%2065.4412%2053.5175%2066.7546C52.2148%2068.0683%2050.4463%2068.8079%2048.6004%2068.8079H6.95255C5.10665%2068.8079%203.33807%2068.0683%202.03541%2066.7546C0.733037%2065.4412%200.00286865%2063.6617%200.00286865%2061.8079V19.8079C0.00286865%2019.5441%200.107073%2019.291%200.292791%2019.1037L18.1418%201.10374ZM19.2686%202.80786L2.00287%2020.2196V61.8079C2.00287%2063.1367%202.52638%2064.4093%203.45557%2065.3464C4.38448%2066.2831%205.64255%2066.8079%206.95255%2066.8079H48.6004C49.9104%2066.8079%2051.1684%2066.2831%2052.0973%2065.3464C53.0265%2064.4093%2053.55%2063.1366%2053.55%2061.8079V7.80786C53.55%206.47907%2053.0265%205.20639%2052.0973%204.26934C51.1684%203.33258%2049.9104%202.80786%2048.6004%202.80786H19.2686Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M15.5019%2027.137C15.5019%2026.5847%2015.9496%2026.137%2016.5019%2026.137H38.7545C39.3068%2026.137%2039.7545%2026.5847%2039.7545%2027.137C39.7545%2027.6892%2039.3068%2028.137%2038.7545%2028.137H16.5019C15.9496%2028.137%2015.5019%2027.6892%2015.5019%2027.137Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M15.5019%2032.137C15.5019%2031.5847%2015.9496%2031.137%2016.5019%2031.137H29.7545C30.3068%2031.137%2030.7545%2031.5847%2030.7545%2032.137C30.7545%2032.6892%2030.3068%2033.137%2029.7545%2033.137H16.5019C15.9496%2033.137%2015.5019%2032.6892%2015.5019%2032.137Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M15.5019%2037.137C15.5019%2036.5847%2015.9496%2036.137%2016.5019%2036.137H38.7545C39.3068%2036.137%2039.7545%2036.5847%2039.7545%2037.137C39.7545%2037.6892%2039.3068%2038.137%2038.7545%2038.137H16.5019C15.9496%2038.137%2015.5019%2037.6892%2015.5019%2037.137Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M15.5019%2042.137C15.5019%2041.5847%2015.9496%2041.137%2016.5019%2041.137H29.7545C30.3068%2041.137%2030.7545%2041.5847%2030.7545%2042.137C30.7545%2042.6892%2030.3068%2043.137%2029.7545%2043.137H16.5019C15.9496%2043.137%2015.5019%2042.6892%2015.5019%2042.137Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M21.9305%2057.4158C21.9305%2058.0598%2021.8285%2058.6458%2021.6245%2059.1738C21.4205%2059.7018%2021.1325%2060.1538%2020.7605%2060.5298C20.3885%2060.9058%2019.9425%2061.1978%2019.4225%2061.4058C18.9025%2061.6098%2018.3265%2061.7118%2017.6945%2061.7118H14.4785V53.1138H17.6945C18.3265%2053.1138%2018.9025%2053.2178%2019.4225%2053.4258C19.9425%2053.6298%2020.3885%2053.9218%2020.7605%2054.3018C21.1325%2054.6778%2021.4205%2055.1298%2021.6245%2055.6578C21.8285%2056.1858%2021.9305%2056.7718%2021.9305%2057.4158ZM20.7365%2057.4158C20.7365%2056.8878%2020.6645%2056.4158%2020.5205%2055.9998C20.3765%2055.5838%2020.1725%2055.2318%2019.9085%2054.9438C19.6445%2054.6558%2019.3245%2054.4358%2018.9485%2054.2838C18.5725%2054.1318%2018.1545%2054.0558%2017.6945%2054.0558H15.6485V60.7698H17.6945C18.1545%2060.7698%2018.5725%2060.6938%2018.9485%2060.5418C19.3245%2060.3898%2019.6445%2060.1718%2019.9085%2059.8878C20.1725%2059.5998%2020.3765%2059.2478%2020.5205%2058.8318C20.6645%2058.4158%2020.7365%2057.9438%2020.7365%2057.4158Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M31.9997%2057.4158C31.9997%2058.0598%2031.8977%2058.6518%2031.6937%2059.1918C31.4897%2059.7278%2031.2017%2060.1898%2030.8297%2060.5778C30.4577%2060.9658%2030.0097%2061.2678%2029.4857%2061.4838C28.9657%2061.6958%2028.3897%2061.8018%2027.7577%2061.8018C27.1257%2061.8018%2026.5497%2061.6958%2026.0297%2061.4838C25.5097%2061.2678%2025.0637%2060.9658%2024.6917%2060.5778C24.3197%2060.1898%2024.0317%2059.7278%2023.8277%2059.1918C23.6237%2058.6518%2023.5217%2058.0598%2023.5217%2057.4158C23.5217%2056.7718%2023.6237%2056.1818%2023.8277%2055.6458C24.0317%2055.1058%2024.3197%2054.6418%2024.6917%2054.2538C25.0637%2053.8618%2025.5097%2053.5578%2026.0297%2053.3418C26.5497%2053.1258%2027.1257%2053.0178%2027.7577%2053.0178C28.3897%2053.0178%2028.9657%2053.1258%2029.4857%2053.3418C30.0097%2053.5578%2030.4577%2053.8618%2030.8297%2054.2538C31.2017%2054.6418%2031.4897%2055.1058%2031.6937%2055.6458C31.8977%2056.1818%2031.9997%2056.7718%2031.9997%2057.4158ZM30.8057%2057.4158C30.8057%2056.8878%2030.7337%2056.4138%2030.5897%2055.9938C30.4457%2055.5738%2030.2417%2055.2198%2029.9777%2054.9318C29.7137%2054.6398%2029.3937%2054.4158%2029.0177%2054.2598C28.6417%2054.1038%2028.2217%2054.0258%2027.7577%2054.0258C27.2977%2054.0258%2026.8797%2054.1038%2026.5037%2054.2598C26.1277%2054.4158%2025.8057%2054.6398%2025.5377%2054.9318C25.2737%2055.2198%2025.0697%2055.5738%2024.9257%2055.9938C24.7817%2056.4138%2024.7097%2056.8878%2024.7097%2057.4158C24.7097%2057.9438%2024.7817%2058.4178%2024.9257%2058.8378C25.0697%2059.2538%2025.2737%2059.6078%2025.5377%2059.8998C25.8057%2060.1878%2026.1277%2060.4098%2026.5037%2060.5658C26.8797%2060.7178%2027.2977%2060.7938%2027.7577%2060.7938C28.2217%2060.7938%2028.6417%2060.7178%2029.0177%2060.5658C29.3937%2060.4098%2029.7137%2060.1878%2029.9777%2059.8998C30.2417%2059.6078%2030.4457%2059.2538%2030.5897%2058.8378C30.7337%2058.4178%2030.8057%2057.9438%2030.8057%2057.4158Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M40.1479%2059.9358C40.2119%2059.9358%2040.2699%2059.9618%2040.3219%2060.0138L40.7779%2060.5118C40.4259%2060.9198%2039.9979%2061.2378%2039.4939%2061.4658C38.9939%2061.6938%2038.3899%2061.8078%2037.6819%2061.8078C37.0619%2061.8078%2036.4999%2061.7018%2035.9959%2061.4898C35.4919%2061.2738%2035.0619%2060.9738%2034.7059%2060.5898C34.3499%2060.2018%2034.0739%2059.7378%2033.8779%2059.1978C33.6819%2058.6578%2033.5839%2058.0638%2033.5839%2057.4158C33.5839%2056.7678%2033.6879%2056.1738%2033.8959%2055.6338C34.1079%2055.0938%2034.4039%2054.6298%2034.7839%2054.2418C35.1639%2053.8538%2035.6179%2053.5538%2036.1459%2053.3418C36.6779%2053.1258%2037.2639%2053.0178%2037.9039%2053.0178C38.5359%2053.0178%2039.0799%2053.1158%2039.5359%2053.3118C39.9959%2053.5078%2040.4039%2053.7738%2040.7599%2054.1098L40.3819%2054.6438C40.3539%2054.6838%2040.3219%2054.7178%2040.2859%2054.7458C40.2499%2054.7698%2040.1979%2054.7818%2040.1299%2054.7818C40.0779%2054.7818%2040.0219%2054.7638%2039.9619%2054.7278C39.9059%2054.6878%2039.8379%2054.6398%2039.7579%2054.5838C39.6779%2054.5278%2039.5839%2054.4678%2039.4759%2054.4038C39.3679%2054.3398%2039.2399%2054.2798%2039.0919%2054.2238C38.9439%2054.1678%2038.7719%2054.1218%2038.5759%2054.0858C38.3799%2054.0458%2038.1539%2054.0258%2037.8979%2054.0258C37.4379%2054.0258%2037.0159%2054.1058%2036.6319%2054.2658C36.2519%2054.4218%2035.9239%2054.6458%2035.6479%2054.9378C35.3719%2055.2298%2035.1559%2055.5858%2034.9999%2056.0058C34.8479%2056.4258%2034.7719%2056.8958%2034.7719%2057.4158C34.7719%2057.9518%2034.8479%2058.4298%2034.9999%2058.8498C35.1559%2059.2698%2035.3659%2059.6258%2035.6299%2059.9178C35.8979%2060.2058%2036.2139%2060.4258%2036.5779%2060.5778C36.9419%2060.7298%2037.3339%2060.8058%2037.7539%2060.8058C38.0099%2060.8058%2038.2399%2060.7918%2038.4439%2060.7638C38.6479%2060.7318%2038.8359%2060.6838%2039.0079%2060.6198C39.1839%2060.5558%2039.3459%2060.4758%2039.4939%2060.3798C39.6459%2060.2798%2039.7979%2060.1618%2039.9499%2060.0258C40.0179%2059.9658%2040.0839%2059.9358%2040.1479%2059.9358Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M17.4368%2014.2607V1.80786H19.4368V14.2607C19.4368%2016.1558%2018.7348%2017.9861%2017.4658%2019.3458C16.1946%2020.7078%2014.4551%2021.4871%2012.6255%2021.4871H1.00287V19.4871H12.6255C13.8784%2019.4871%2015.0952%2018.9545%2016.0037%2017.9811C16.9143%2017.0054%2017.4368%2015.6682%2017.4368%2014.2607Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3C%2Fsvg%3E";
8489
+ var trashErrorSvg = "data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2.5%205H4.16667H17.5%22%20stroke%3D%22%23E55454%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M6.66699%205.00002V3.33335C6.66699%202.89133%206.84259%202.4674%207.15515%202.15484C7.46771%201.84228%207.89163%201.66669%208.33366%201.66669H11.667C12.109%201.66669%2012.5329%201.84228%2012.8455%202.15484C13.1581%202.4674%2013.3337%202.89133%2013.3337%203.33335V5.00002M15.8337%205.00002V16.6667C15.8337%2017.1087%2015.6581%2017.5326%2015.3455%2017.8452C15.0329%2018.1578%2014.609%2018.3334%2014.167%2018.3334H5.83366C5.39163%2018.3334%204.96771%2018.1578%204.65515%2017.8452C4.34259%2017.5326%204.16699%2017.1087%204.16699%2016.6667V5.00002H15.8337Z%22%20stroke%3D%22%23E55454%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M8.33301%209.16669V14.1667%22%20stroke%3D%22%23E55454%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M11.667%209.16669V14.1667%22%20stroke%3D%22%23E55454%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E";
8434
8490
 
8435
- var docxCompleteSvg = "data:image/svg+xml,%3Csvg%20width%3D%2257%22%20height%3D%2269%22%20viewBox%3D%220%200%2057%2069%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.698%201.10374C18.8858%200.914378%2019.1414%200.807861%2019.4081%200.807861H49.1565C51.0024%200.807861%2052.771%201.54742%2054.0736%202.8611C55.376%204.17449%2056.1062%205.95405%2056.1062%207.80786V61.8079C56.1062%2063.6617%2055.376%2065.4412%2054.0736%2066.7546C52.771%2068.0683%2051.0024%2068.8079%2049.1565%2068.8079H7.50871C5.6628%2068.8079%203.89422%2068.0683%202.59157%2066.7546C1.28919%2065.4412%200.559021%2063.6617%200.559021%2061.8079V19.8079C0.559021%2019.5441%200.663225%2019.291%200.848943%2019.1037L18.698%201.10374ZM19.8248%202.80786L2.55902%2020.2196V61.8079C2.55902%2063.1367%203.08253%2064.4093%204.01172%2065.3464C4.94063%2066.2831%206.1987%2066.8079%207.50871%2066.8079H49.1565C50.4665%2066.8079%2051.7246%2066.2831%2052.6535%2065.3464C53.5827%2064.4093%2054.1062%2063.1366%2054.1062%2061.8079V7.80786C54.1062%206.47907%2053.5827%205.20639%2052.6535%204.26934C51.7246%203.33258%2050.4665%202.80786%2049.1565%202.80786H19.8248Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M18.3345%2057.4158C18.3345%2058.0598%2018.2325%2058.6458%2018.0285%2059.1738C17.8245%2059.7018%2017.5365%2060.1538%2017.1645%2060.5298C16.7925%2060.9058%2016.3465%2061.1978%2015.8265%2061.4058C15.3065%2061.6098%2014.7305%2061.7118%2014.0985%2061.7118H10.8825V53.1138H14.0985C14.7305%2053.1138%2015.3065%2053.2178%2015.8265%2053.4258C16.3465%2053.6298%2016.7925%2053.9218%2017.1645%2054.3018C17.5365%2054.6778%2017.8245%2055.1298%2018.0285%2055.6578C18.2325%2056.1858%2018.3345%2056.7718%2018.3345%2057.4158ZM17.1405%2057.4158C17.1405%2056.8878%2017.0685%2056.4158%2016.9245%2055.9998C16.7805%2055.5838%2016.5765%2055.2318%2016.3125%2054.9438C16.0485%2054.6558%2015.7285%2054.4358%2015.3525%2054.2838C14.9765%2054.1318%2014.5585%2054.0558%2014.0985%2054.0558H12.0525V60.7698H14.0985C14.5585%2060.7698%2014.9765%2060.6938%2015.3525%2060.5418C15.7285%2060.3898%2016.0485%2060.1718%2016.3125%2059.8878C16.5765%2059.5998%2016.7805%2059.2478%2016.9245%2058.8318C17.0685%2058.4158%2017.1405%2057.9438%2017.1405%2057.4158Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M28.4037%2057.4158C28.4037%2058.0598%2028.3017%2058.6518%2028.0977%2059.1918C27.8937%2059.7278%2027.6057%2060.1898%2027.2337%2060.5778C26.8617%2060.9658%2026.4137%2061.2678%2025.8897%2061.4838C25.3697%2061.6958%2024.7937%2061.8018%2024.1617%2061.8018C23.5297%2061.8018%2022.9537%2061.6958%2022.4337%2061.4838C21.9137%2061.2678%2021.4677%2060.9658%2021.0957%2060.5778C20.7237%2060.1898%2020.4357%2059.7278%2020.2317%2059.1918C20.0277%2058.6518%2019.9257%2058.0598%2019.9257%2057.4158C19.9257%2056.7718%2020.0277%2056.1818%2020.2317%2055.6458C20.4357%2055.1058%2020.7237%2054.6418%2021.0957%2054.2538C21.4677%2053.8618%2021.9137%2053.5578%2022.4337%2053.3418C22.9537%2053.1258%2023.5297%2053.0178%2024.1617%2053.0178C24.7937%2053.0178%2025.3697%2053.1258%2025.8897%2053.3418C26.4137%2053.5578%2026.8617%2053.8618%2027.2337%2054.2538C27.6057%2054.6418%2027.8937%2055.1058%2028.0977%2055.6458C28.3017%2056.1818%2028.4037%2056.7718%2028.4037%2057.4158ZM27.2097%2057.4158C27.2097%2056.8878%2027.1377%2056.4138%2026.9937%2055.9938C26.8497%2055.5738%2026.6457%2055.2198%2026.3817%2054.9318C26.1177%2054.6398%2025.7977%2054.4158%2025.4217%2054.2598C25.0457%2054.1038%2024.6257%2054.0258%2024.1617%2054.0258C23.7017%2054.0258%2023.2837%2054.1038%2022.9077%2054.2598C22.5317%2054.4158%2022.2097%2054.6398%2021.9417%2054.9318C21.6777%2055.2198%2021.4737%2055.5738%2021.3297%2055.9938C21.1857%2056.4138%2021.1137%2056.8878%2021.1137%2057.4158C21.1137%2057.9438%2021.1857%2058.4178%2021.3297%2058.8378C21.4737%2059.2538%2021.6777%2059.6078%2021.9417%2059.8998C22.2097%2060.1878%2022.5317%2060.4098%2022.9077%2060.5658C23.2837%2060.7178%2023.7017%2060.7938%2024.1617%2060.7938C24.6257%2060.7938%2025.0457%2060.7178%2025.4217%2060.5658C25.7977%2060.4098%2026.1177%2060.1878%2026.3817%2059.8998C26.6457%2059.6078%2026.8497%2059.2538%2026.9937%2058.8378C27.1377%2058.4178%2027.2097%2057.9438%2027.2097%2057.4158Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M36.5519%2059.9358C36.6159%2059.9358%2036.6739%2059.9618%2036.7259%2060.0138L37.1819%2060.5118C36.8299%2060.9198%2036.4019%2061.2378%2035.8979%2061.4658C35.3979%2061.6938%2034.7939%2061.8078%2034.0859%2061.8078C33.4659%2061.8078%2032.9039%2061.7018%2032.3999%2061.4898C31.8959%2061.2738%2031.4659%2060.9738%2031.1099%2060.5898C30.7539%2060.2018%2030.4779%2059.7378%2030.2819%2059.1978C30.0859%2058.6578%2029.9879%2058.0638%2029.9879%2057.4158C29.9879%2056.7678%2030.0919%2056.1738%2030.2999%2055.6338C30.5119%2055.0938%2030.8079%2054.6298%2031.1879%2054.2418C31.5679%2053.8538%2032.0219%2053.5538%2032.5499%2053.3418C33.0819%2053.1258%2033.6679%2053.0178%2034.3079%2053.0178C34.9399%2053.0178%2035.4839%2053.1158%2035.9399%2053.3118C36.3999%2053.5078%2036.8079%2053.7738%2037.1639%2054.1098L36.7859%2054.6438C36.7579%2054.6838%2036.7259%2054.7178%2036.6899%2054.7458C36.6539%2054.7698%2036.6019%2054.7818%2036.5339%2054.7818C36.4819%2054.7818%2036.4259%2054.7638%2036.3659%2054.7278C36.3099%2054.6878%2036.2419%2054.6398%2036.1619%2054.5838C36.0819%2054.5278%2035.9879%2054.4678%2035.8799%2054.4038C35.7719%2054.3398%2035.6439%2054.2798%2035.4959%2054.2238C35.3479%2054.1678%2035.1759%2054.1218%2034.9799%2054.0858C34.7839%2054.0458%2034.5579%2054.0258%2034.3019%2054.0258C33.8419%2054.0258%2033.4199%2054.1058%2033.0359%2054.2658C32.6559%2054.4218%2032.3279%2054.6458%2032.0519%2054.9378C31.7759%2055.2298%2031.5599%2055.5858%2031.4039%2056.0058C31.2519%2056.4258%2031.1759%2056.8958%2031.1759%2057.4158C31.1759%2057.9518%2031.2519%2058.4298%2031.4039%2058.8498C31.5599%2059.2698%2031.7699%2059.6258%2032.0339%2059.9178C32.3019%2060.2058%2032.6179%2060.4258%2032.9819%2060.5778C33.3459%2060.7298%2033.7379%2060.8058%2034.1579%2060.8058C34.4139%2060.8058%2034.6439%2060.7918%2034.8479%2060.7638C35.0519%2060.7318%2035.2399%2060.6838%2035.4119%2060.6198C35.5879%2060.5558%2035.7499%2060.4758%2035.8979%2060.3798C36.0499%2060.2798%2036.2019%2060.1618%2036.3539%2060.0258C36.4219%2059.9658%2036.4879%2059.9358%2036.5519%2059.9358Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M41.2047%2057.2958L38.3667%2053.1138H39.5247C39.6087%2053.1138%2039.6707%2053.1278%2039.7107%2053.1558C39.7507%2053.1838%2039.7867%2053.2238%2039.8187%2053.2758L42.0627%2056.7198C42.0907%2056.6358%2042.1327%2056.5438%2042.1887%2056.4438L44.3067%2053.2998C44.3427%2053.2438%2044.3807%2053.1998%2044.4207%2053.1678C44.4647%2053.1318%2044.5167%2053.1138%2044.5767%2053.1138H45.6867L42.8367%2057.2418L45.7827%2061.7118H44.6307C44.5427%2061.7118%2044.4727%2061.6898%2044.4207%2061.6458C44.3727%2061.5978%2044.3327%2061.5458%2044.3007%2061.4898L41.9967%2057.8838C41.9687%2057.9678%2041.9327%2058.0478%2041.8887%2058.1238L39.6447%2061.4898C39.6087%2061.5458%2039.5667%2061.5978%2039.5187%2061.6458C39.4747%2061.6898%2039.4107%2061.7118%2039.3267%2061.7118H38.2467L41.2047%2057.2958Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M16.058%2027.137C16.058%2026.5847%2016.5058%2026.137%2017.058%2026.137H39.3106C39.8629%2026.137%2040.3106%2026.5847%2040.3106%2027.137C40.3106%2027.6892%2039.8629%2028.137%2039.3106%2028.137H17.058C16.5058%2028.137%2016.058%2027.6892%2016.058%2027.137Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M16.058%2032.137C16.058%2031.5847%2016.5058%2031.137%2017.058%2031.137H30.3106C30.8629%2031.137%2031.3106%2031.5847%2031.3106%2032.137C31.3106%2032.6892%2030.8629%2033.137%2030.3106%2033.137H17.058C16.5058%2033.137%2016.058%2032.6892%2016.058%2032.137Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M16.058%2037.137C16.058%2036.5847%2016.5058%2036.137%2017.058%2036.137H39.3106C39.8629%2036.137%2040.3106%2036.5847%2040.3106%2037.137C40.3106%2037.6892%2039.8629%2038.137%2039.3106%2038.137H17.058C16.5058%2038.137%2016.058%2037.6892%2016.058%2037.137Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M16.058%2042.137C16.058%2041.5847%2016.5058%2041.137%2017.058%2041.137H30.3106C30.8629%2041.137%2031.3106%2041.5847%2031.3106%2042.137C31.3106%2042.6892%2030.8629%2043.137%2030.3106%2043.137H17.058C16.5058%2043.137%2016.058%2042.6892%2016.058%2042.137Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M17.993%2014.2607V1.80786H19.993V14.2607C19.993%2016.1558%2019.291%2017.9861%2018.0219%2019.3458C16.7507%2020.7078%2015.0113%2021.4871%2013.1817%2021.4871H1.55902V19.4871H13.1817C14.4346%2019.4871%2015.6514%2018.9545%2016.5598%2017.9811C17.4705%2017.0054%2017.993%2015.6682%2017.993%2014.2607Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3C%2Fsvg%3E";
8436
-
8437
- var heicCompleteSvg = "data:image/svg+xml,%3Csvg%20width%3D%2257%22%20height%3D%2269%22%20viewBox%3D%220%200%2057%2069%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M49.4951%2067.2263H7.84733C6.26937%2067.2263%204.75605%2066.5942%203.64027%2065.469C2.52448%2064.3437%201.89764%2062.8176%201.89764%2061.2263V19.2263L19.7467%201.22632H49.4951C51.0731%201.22632%2052.5864%201.85846%2053.7022%202.98368C54.818%204.1089%2055.4448%205.63502%2055.4448%207.22632V61.2263C55.4448%2062.8176%2054.818%2064.3437%2053.7022%2065.469C52.5864%2066.5942%2051.0731%2067.2263%2049.4951%2067.2263Z%22%20stroke%3D%22%2390DF9B%22%20strokeWidth%3D%222%22%20strokeLinejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M21.9685%2061.1303H20.7985V57.2183H16.1665V61.1303H14.9965V52.5323H16.1665V56.3663H20.7985V52.5323H21.9685V61.1303Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M29.8648%2052.5323V53.4803H25.7368V56.3363H29.0788V57.2483H25.7368V60.1823H29.8648V61.1303H24.5668V52.5323H29.8648Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M33.4194%2061.1303H32.2554V52.5323H33.4194V61.1303Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M42.2791%2059.3543C42.3431%2059.3543%2042.4011%2059.3803%2042.4531%2059.4323L42.9091%2059.9303C42.5571%2060.3383%2042.1291%2060.6563%2041.6251%2060.8843C41.1251%2061.1123%2040.5211%2061.2263%2039.8131%2061.2263C39.1931%2061.2263%2038.6311%2061.1203%2038.1271%2060.9083C37.6231%2060.6923%2037.1931%2060.3923%2036.8371%2060.0083C36.4811%2059.6203%2036.2051%2059.1563%2036.0091%2058.6163C35.8131%2058.0763%2035.7151%2057.4823%2035.7151%2056.8343C35.7151%2056.1863%2035.8191%2055.5923%2036.0271%2055.0523C36.2391%2054.5123%2036.5351%2054.0483%2036.9151%2053.6603C37.2951%2053.2723%2037.7491%2052.9723%2038.2771%2052.7603C38.8091%2052.5443%2039.3951%2052.4363%2040.0351%2052.4363C40.6671%2052.4363%2041.2111%2052.5343%2041.6671%2052.7303C42.1271%2052.9263%2042.5351%2053.1923%2042.8911%2053.5283L42.5131%2054.0623C42.4851%2054.1023%2042.4531%2054.1363%2042.4171%2054.1643C42.3811%2054.1883%2042.3291%2054.2003%2042.2611%2054.2003C42.2091%2054.2003%2042.1531%2054.1823%2042.0931%2054.1463C42.0371%2054.1063%2041.9691%2054.0583%2041.8891%2054.0023C41.8091%2053.9463%2041.7151%2053.8863%2041.6071%2053.8223C41.4991%2053.7583%2041.3711%2053.6983%2041.2231%2053.6423C41.0751%2053.5863%2040.9031%2053.5403%2040.7071%2053.5043C40.5111%2053.4643%2040.2851%2053.4443%2040.0291%2053.4443C39.5691%2053.4443%2039.1471%2053.5243%2038.7631%2053.6843C38.3831%2053.8403%2038.0551%2054.0643%2037.7791%2054.3563C37.5031%2054.6483%2037.2871%2055.0043%2037.1311%2055.4243C36.9791%2055.8443%2036.9031%2056.3143%2036.9031%2056.8343C36.9031%2057.3703%2036.9791%2057.8483%2037.1311%2058.2683C37.2871%2058.6883%2037.4971%2059.0443%2037.7611%2059.3363C38.0291%2059.6243%2038.3451%2059.8443%2038.7091%2059.9963C39.0731%2060.1483%2039.4651%2060.2243%2039.8851%2060.2243C40.1411%2060.2243%2040.3711%2060.2103%2040.5751%2060.1823C40.7791%2060.1503%2040.9671%2060.1023%2041.1391%2060.0383C41.3151%2059.9743%2041.4771%2059.8943%2041.6251%2059.7983C41.7771%2059.6983%2041.9291%2059.5803%2042.0811%2059.4443C42.1491%2059.3843%2042.2151%2059.3543%2042.2791%2059.3543Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Ccircle%20cx%3D%2241.7931%22%20cy%3D%2214.878%22%20r%3D%225.65169%22%20stroke%3D%22%2390DF9B%22%20strokeWidth%3D%222%22%20strokeLinecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M1.85809%2048.5122L15.9613%2034.409C19.0854%2031.2849%2024.1508%2031.2849%2027.275%2034.4091L29.6643%2036.7984%22%20stroke%3D%22%2390DF9B%22%20strokeWidth%3D%222%22%2F%3E%3Cpath%20d%3D%22M21.8917%2044.249L33.1486%2032.9923C36.2728%2029.8681%2041.3381%2029.8681%2044.4623%2032.9923L55.2811%2043.8111%22%20stroke%3D%22%2390DF9B%22%20strokeWidth%3D%222%22%20strokeLinecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M19.3316%201.22632V13.6791C19.3316%2015.3305%2018.7193%2016.9142%2017.6295%2018.0819C16.5397%2019.2496%2015.0615%2019.9056%2013.5203%2019.9056H1.89764%22%20stroke%3D%22%2390DF9B%22%20strokeWidth%3D%222%22%20strokeLinejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E";
8438
-
8439
- var jpegCompleteSvg = "data:image/svg+xml,%3Csvg%20width%3D%2257%22%20height%3D%2269%22%20viewBox%3D%220%200%2057%2069%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M19.0294%201.10374C19.2171%200.914378%2019.4728%200.807861%2019.7394%200.807861H49.4879C51.3338%200.807861%2053.1023%201.54742%2054.405%202.8611C55.7074%204.17449%2056.4375%205.95405%2056.4375%207.80786V61.8079C56.4375%2063.6617%2055.7074%2065.4412%2054.405%2066.7546C53.1023%2068.0683%2051.3338%2068.8079%2049.4879%2068.8079H7.84007C5.99416%2068.8079%204.22558%2068.0683%202.92293%2066.7546C1.62055%2065.4412%200.890381%2063.6617%200.890381%2061.8079V19.8079C0.890381%2019.5441%200.994585%2019.291%201.1803%2019.1037L19.0294%201.10374ZM20.1561%202.80786L2.89038%2020.2196V61.8079C2.89038%2063.1367%203.41389%2064.4093%204.34308%2065.3464C5.27199%2066.2831%206.53006%2066.8079%207.84007%2066.8079H49.4879C50.7979%2066.8079%2052.0559%2066.2831%2052.9848%2065.3464C53.914%2064.4093%2054.4375%2063.1366%2054.4375%2061.8079V7.80786C54.4375%206.47907%2053.914%205.20639%2052.9848%204.26934C52.0559%203.33258%2050.7979%202.80786%2049.4879%202.80786H20.1561Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M18.1596%2058.7418C18.1596%2059.2218%2018.0996%2059.6518%2017.9796%2060.0318C17.8636%2060.4118%2017.6896%2060.7338%2017.4576%2060.9978C17.2296%2061.2578%2016.9476%2061.4578%2016.6116%2061.5978C16.2756%2061.7378%2015.8896%2061.8078%2015.4536%2061.8078C15.0656%2061.8078%2014.6616%2061.7518%2014.2416%2061.6398C14.2496%2061.5238%2014.2596%2061.4098%2014.2716%2061.2978C14.2836%2061.1818%2014.2956%2061.0678%2014.3076%2060.9558C14.3156%2060.8878%2014.3396%2060.8338%2014.3796%2060.7938C14.4236%2060.7498%2014.4876%2060.7278%2014.5716%2060.7278C14.6436%2060.7278%2014.7396%2060.7458%2014.8596%2060.7818C14.9796%2060.8178%2015.1396%2060.8358%2015.3396%2060.8358C15.6036%2060.8358%2015.8376%2060.7958%2016.0416%2060.7158C16.2496%2060.6358%2016.4236%2060.5118%2016.5636%2060.3438C16.7076%2060.1758%2016.8156%2059.9618%2016.8876%2059.7018C16.9636%2059.4378%2017.0016%2059.1258%2017.0016%2058.7658V53.1138H18.1596V58.7418Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M22.0357%2058.4958V61.7118H20.8777V53.1138H23.4157C23.9597%2053.1138%2024.4317%2053.1778%2024.8317%2053.3058C25.2357%2053.4298%2025.5697%2053.6078%2025.8337%2053.8398C26.0977%2054.0718%2026.2937%2054.3518%2026.4217%2054.6798C26.5537%2055.0078%2026.6197%2055.3738%2026.6197%2055.7778C26.6197%2056.1778%2026.5497%2056.5438%2026.4097%2056.8758C26.2697%2057.2078%2026.0637%2057.4938%2025.7917%2057.7338C25.5237%2057.9738%2025.1897%2058.1618%2024.7897%2058.2978C24.3897%2058.4298%2023.9317%2058.4958%2023.4157%2058.4958H22.0357ZM22.0357%2057.5718H23.4157C23.7477%2057.5718%2024.0397%2057.5278%2024.2917%2057.4398C24.5477%2057.3518%2024.7617%2057.2298%2024.9337%2057.0738C25.1057%2056.9138%2025.2357%2056.7238%2025.3237%2056.5038C25.4117%2056.2838%2025.4557%2056.0418%2025.4557%2055.7778C25.4557%2055.2298%2025.2857%2054.8018%2024.9457%2054.4938C24.6097%2054.1858%2024.0997%2054.0318%2023.4157%2054.0318H22.0357V57.5718Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M33.8916%2053.1138V54.0618H29.7636V56.9178H33.1056V57.8298H29.7636V60.7638H33.8916V61.7118H28.5936V53.1138H33.8916Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M39.9003%2060.8658C40.1323%2060.8658%2040.3443%2060.8558%2040.5363%2060.8358C40.7323%2060.8118%2040.9163%2060.7778%2041.0883%2060.7338C41.2603%2060.6898%2041.4223%2060.6378%2041.5743%2060.5778C41.7263%2060.5138%2041.8783%2060.4418%2042.0303%2060.3618V58.4658H40.6983C40.6223%2058.4658%2040.5603%2058.4438%2040.5123%2058.3998C40.4683%2058.3558%2040.4463%2058.3018%2040.4463%2058.2378V57.5778H43.0863V60.8778C42.8703%2061.0338%2042.6443%2061.1698%2042.4083%2061.2858C42.1763%2061.4018%2041.9263%2061.4998%2041.6583%2061.5798C41.3943%2061.6558%2041.1103%2061.7118%2040.8063%2061.7478C40.5023%2061.7878%2040.1723%2061.8078%2039.8163%2061.8078C39.1923%2061.8078%2038.6203%2061.7018%2038.1003%2061.4898C37.5803%2061.2738%2037.1323%2060.9738%2036.7563%2060.5898C36.3803%2060.2018%2036.0863%2059.7378%2035.8743%2059.1978C35.6663%2058.6578%2035.5623%2058.0638%2035.5623%2057.4158C35.5623%2056.7598%2035.6643%2056.1618%2035.8683%2055.6218C36.0763%2055.0818%2036.3703%2054.6198%2036.7503%2054.2358C37.1343%2053.8478%2037.5963%2053.5478%2038.1363%2053.3358C38.6803%2053.1238%2039.2883%2053.0178%2039.9603%2053.0178C40.3003%2053.0178%2040.6163%2053.0438%2040.9083%2053.0958C41.2003%2053.1438%2041.4703%2053.2158%2041.7183%2053.3118C41.9703%2053.4038%2042.2023%2053.5178%2042.4143%2053.6538C42.6263%2053.7858%2042.8243%2053.9358%2043.0083%2054.1038L42.6783%2054.6318C42.6103%2054.7398%2042.5223%2054.7938%2042.4143%2054.7938C42.3503%2054.7938%2042.2803%2054.7718%2042.2043%2054.7278C42.1043%2054.6718%2041.9923%2054.6038%2041.8683%2054.5238C41.7443%2054.4438%2041.5923%2054.3678%2041.4123%2054.2958C41.2363%2054.2198%2041.0263%2054.1558%2040.7823%2054.1038C40.5423%2054.0518%2040.2563%2054.0258%2039.9243%2054.0258C39.4403%2054.0258%2039.0023%2054.1058%2038.6103%2054.2658C38.2183%2054.4218%2037.8843%2054.6478%2037.6083%2054.9438C37.3323%2055.2358%2037.1203%2055.5918%2036.9723%2056.0118C36.8243%2056.4278%2036.7503%2056.8958%2036.7503%2057.4158C36.7503%2057.9598%2036.8263%2058.4458%2036.9783%2058.8738C37.1343%2059.2978%2037.3523%2059.6578%2037.6323%2059.9538C37.9123%2060.2498%2038.2443%2060.4758%2038.6283%2060.6318C39.0123%2060.7878%2039.4363%2060.8658%2039.9003%2060.8658Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M26.5606%2035.6977C23.8269%2032.964%2019.3948%2032.964%2016.6611%2035.6977L2.55795%2049.8009L1.14374%2048.3867L15.2469%2034.2835C18.7616%2030.7688%2024.4601%2030.7688%2027.9748%2034.2835L30.3642%2036.6729L28.95%2038.0871L26.5606%2035.6977Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M43.7479%2034.281C41.0142%2031.5473%2036.5821%2031.5473%2033.8484%2034.2809L22.5916%2045.5377C22.201%2045.9282%2021.5679%2045.9282%2021.1774%2045.5377C20.7868%2045.1472%2020.7868%2044.514%2021.1774%2044.1235L32.4342%2032.8667C35.9489%2029.352%2041.6474%2029.352%2045.1621%2032.8668L55.9809%2043.6856C56.3714%2044.0761%2056.3714%2044.7092%2055.9809%2045.0998C55.5904%2045.4903%2054.9572%2045.4903%2054.5667%2045.0998L43.7479%2034.281Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.3243%2014.2607V1.80786H20.3243V14.2607C20.3243%2016.1558%2019.6223%2017.9861%2018.3533%2019.3458C17.0821%2020.7078%2015.3426%2021.4871%2013.513%2021.4871H1.89038V19.4871H13.513C14.7659%2019.4871%2015.9827%2018.9545%2016.8912%2017.9811C17.8018%2017.0054%2018.3243%2015.6682%2018.3243%2014.2607Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M41.7858%2010.8079C39.2168%2010.8079%2037.1342%2012.8905%2037.1342%2015.4596C37.1342%2018.0286%2039.2168%2020.1112%2041.7858%2020.1112C44.3549%2020.1112%2046.4375%2018.0286%2046.4375%2015.4596C46.4375%2012.8905%2044.3549%2010.8079%2041.7858%2010.8079ZM35.1342%2015.4596C35.1342%2011.7859%2038.1122%208.80786%2041.7858%208.80786C45.4595%208.80786%2048.4375%2011.7859%2048.4375%2015.4596C48.4375%2019.1332%2045.4595%2022.1112%2041.7858%2022.1112C38.1122%2022.1112%2035.1342%2019.1332%2035.1342%2015.4596Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3C%2Fsvg%3E";
8440
-
8441
- var jpgCompleteSvg = "data:image/svg+xml,%3Csvg%20width%3D%2257%22%20height%3D%2269%22%20viewBox%3D%220%200%2057%2069%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.9902%201.10374C19.178%200.914378%2019.4336%200.807861%2019.7003%200.807861H49.4487C51.2946%200.807861%2053.0632%201.54742%2054.3659%202.8611C55.6683%204.17449%2056.3984%205.95405%2056.3984%207.80786V61.8079C56.3984%2063.6617%2055.6683%2065.4412%2054.3659%2066.7546C53.0632%2068.0683%2051.2946%2068.8079%2049.4487%2068.8079H7.80094C5.95504%2068.8079%204.18646%2068.0683%202.8838%2066.7546C1.58143%2065.4412%200.851257%2063.6617%200.851257%2061.8079V19.8079C0.851257%2019.5441%200.955462%2019.291%201.14118%2019.1037L18.9902%201.10374ZM20.117%202.80786L2.85126%2020.2196V61.8079C2.85126%2063.1367%203.37477%2064.4093%204.30396%2065.3464C5.23286%2066.2831%206.49094%2066.8079%207.80094%2066.8079H49.4487C50.7588%2066.8079%2052.0168%2066.2831%2052.9457%2065.3464C53.8749%2064.4093%2054.3984%2063.1366%2054.3984%2061.8079V7.80786C54.3984%206.47907%2053.8749%205.20639%2052.9457%204.26934C52.0168%203.33258%2050.7588%202.80786%2049.4487%202.80786H20.117Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M21.8371%2058.7418C21.8371%2059.2218%2021.7771%2059.6518%2021.6571%2060.0318C21.5411%2060.4118%2021.3671%2060.7338%2021.1351%2060.9978C20.9071%2061.2578%2020.6251%2061.4578%2020.2891%2061.5978C19.9531%2061.7378%2019.5671%2061.8078%2019.1311%2061.8078C18.7431%2061.8078%2018.3391%2061.7518%2017.9191%2061.6398C17.9271%2061.5238%2017.9371%2061.4098%2017.9491%2061.2978C17.9611%2061.1818%2017.9731%2061.0678%2017.9851%2060.9558C17.9931%2060.8878%2018.0171%2060.8338%2018.0571%2060.7938C18.1011%2060.7498%2018.1651%2060.7278%2018.2491%2060.7278C18.3211%2060.7278%2018.4171%2060.7458%2018.5371%2060.7818C18.6571%2060.8178%2018.8171%2060.8358%2019.0171%2060.8358C19.2811%2060.8358%2019.5151%2060.7958%2019.7191%2060.7158C19.9271%2060.6358%2020.1011%2060.5118%2020.2411%2060.3438C20.3851%2060.1758%2020.4931%2059.9618%2020.5651%2059.7018C20.6411%2059.4378%2020.6791%2059.1258%2020.6791%2058.7658V53.1138H21.8371V58.7418Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M25.7131%2058.4958V61.7118H24.5551V53.1138H27.0931C27.6371%2053.1138%2028.1091%2053.1778%2028.5091%2053.3058C28.9131%2053.4298%2029.2471%2053.6078%2029.5111%2053.8398C29.7751%2054.0718%2029.9711%2054.3518%2030.0991%2054.6798C30.2311%2055.0078%2030.2971%2055.3738%2030.2971%2055.7778C30.2971%2056.1778%2030.2271%2056.5438%2030.0871%2056.8758C29.9471%2057.2078%2029.7411%2057.4938%2029.4691%2057.7338C29.2011%2057.9738%2028.8671%2058.1618%2028.4671%2058.2978C28.0671%2058.4298%2027.6091%2058.4958%2027.0931%2058.4958H25.7131ZM25.7131%2057.5718H27.0931C27.4251%2057.5718%2027.7171%2057.5278%2027.9691%2057.4398C28.2251%2057.3518%2028.4391%2057.2298%2028.6111%2057.0738C28.7831%2056.9138%2028.9131%2056.7238%2029.0011%2056.5038C29.0891%2056.2838%2029.1331%2056.0418%2029.1331%2055.7778C29.1331%2055.2298%2028.9631%2054.8018%2028.6231%2054.4938C28.2871%2054.1858%2027.7771%2054.0318%2027.0931%2054.0318H25.7131V57.5718Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M36.105%2060.8658C36.337%2060.8658%2036.549%2060.8558%2036.741%2060.8358C36.937%2060.8118%2037.121%2060.7778%2037.293%2060.7338C37.465%2060.6898%2037.627%2060.6378%2037.779%2060.5778C37.931%2060.5138%2038.083%2060.4418%2038.235%2060.3618V58.4658H36.903C36.827%2058.4658%2036.765%2058.4438%2036.717%2058.3998C36.673%2058.3558%2036.651%2058.3018%2036.651%2058.2378V57.5778H39.291V60.8778C39.075%2061.0338%2038.849%2061.1698%2038.613%2061.2858C38.381%2061.4018%2038.131%2061.4998%2037.863%2061.5798C37.599%2061.6558%2037.315%2061.7118%2037.011%2061.7478C36.707%2061.7878%2036.377%2061.8078%2036.021%2061.8078C35.397%2061.8078%2034.825%2061.7018%2034.305%2061.4898C33.785%2061.2738%2033.337%2060.9738%2032.961%2060.5898C32.585%2060.2018%2032.291%2059.7378%2032.079%2059.1978C31.871%2058.6578%2031.767%2058.0638%2031.767%2057.4158C31.767%2056.7598%2031.869%2056.1618%2032.073%2055.6218C32.281%2055.0818%2032.575%2054.6198%2032.955%2054.2358C33.339%2053.8478%2033.801%2053.5478%2034.341%2053.3358C34.885%2053.1238%2035.493%2053.0178%2036.165%2053.0178C36.505%2053.0178%2036.821%2053.0438%2037.113%2053.0958C37.405%2053.1438%2037.675%2053.2158%2037.923%2053.3118C38.175%2053.4038%2038.407%2053.5178%2038.619%2053.6538C38.831%2053.7858%2039.029%2053.9358%2039.213%2054.1038L38.883%2054.6318C38.815%2054.7398%2038.727%2054.7938%2038.619%2054.7938C38.555%2054.7938%2038.485%2054.7718%2038.409%2054.7278C38.309%2054.6718%2038.197%2054.6038%2038.073%2054.5238C37.949%2054.4438%2037.797%2054.3678%2037.617%2054.2958C37.441%2054.2198%2037.231%2054.1558%2036.987%2054.1038C36.747%2054.0518%2036.461%2054.0258%2036.129%2054.0258C35.645%2054.0258%2035.207%2054.1058%2034.815%2054.2658C34.423%2054.4218%2034.089%2054.6478%2033.813%2054.9438C33.537%2055.2358%2033.325%2055.5918%2033.177%2056.0118C33.029%2056.4278%2032.955%2056.8958%2032.955%2057.4158C32.955%2057.9598%2033.031%2058.4458%2033.183%2058.8738C33.339%2059.2978%2033.557%2059.6578%2033.837%2059.9538C34.117%2060.2498%2034.449%2060.4758%2034.833%2060.6318C35.217%2060.7878%2035.641%2060.8658%2036.105%2060.8658Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M26.5215%2035.6977C23.7878%2032.964%2019.3557%2032.964%2016.622%2035.6977L2.51883%2049.8009L1.10461%2048.3867L15.2078%2034.2835C18.7225%2030.7688%2024.421%2030.7688%2027.9357%2034.2835L30.3251%2036.6729L28.9109%2038.0871L26.5215%2035.6977Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M43.7088%2034.281C40.9751%2031.5473%2036.543%2031.5473%2033.8093%2034.2809L22.5524%2045.5377C22.1619%2045.9282%2021.5288%2045.9282%2021.1382%2045.5377C20.7477%2045.1472%2020.7477%2044.514%2021.1382%2044.1235L32.3951%2032.8667C35.9098%2029.352%2041.6083%2029.352%2045.123%2032.8668L55.9418%2043.6856C56.3323%2044.0761%2056.3323%2044.7092%2055.9418%2045.0998C55.5513%2045.4903%2054.9181%2045.4903%2054.5276%2045.0998L43.7088%2034.281Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.2852%2014.2607V1.80786H20.2852V14.2607C20.2852%2016.1558%2019.5832%2017.9861%2018.3142%2019.3458C17.043%2020.7078%2015.3035%2021.4871%2013.4739%2021.4871H1.85126V19.4871H13.4739C14.7268%2019.4871%2015.9436%2018.9545%2016.8521%2017.9811C17.7627%2017.0054%2018.2852%2015.6682%2018.2852%2014.2607Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M41.7467%2010.8079C39.1777%2010.8079%2037.095%2012.8905%2037.095%2015.4596C37.095%2018.0286%2039.1777%2020.1112%2041.7467%2020.1112C44.3158%2020.1112%2046.3984%2018.0286%2046.3984%2015.4596C46.3984%2012.8905%2044.3158%2010.8079%2041.7467%2010.8079ZM35.095%2015.4596C35.095%2011.7859%2038.0731%208.80786%2041.7467%208.80786C45.4204%208.80786%2048.3984%2011.7859%2048.3984%2015.4596C48.3984%2019.1332%2045.4204%2022.1112%2041.7467%2022.1112C38.0731%2022.1112%2035.095%2019.1332%2035.095%2015.4596Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3C%2Fsvg%3E";
8442
-
8443
- var pdfCompleteSvg = "data:image/svg+xml,%3Csvg%20width%3D%2256%22%20height%3D%2269%22%20viewBox%3D%220%200%2056%2069%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.5857%201.10374C18.7735%200.914378%2019.0291%200.807861%2019.2958%200.807861H49.0442C50.8901%200.807861%2052.6587%201.54742%2053.9613%202.8611C55.2637%204.17449%2055.9939%205.95405%2055.9939%207.80786V61.8079C55.9939%2063.6617%2055.2637%2065.4412%2053.9613%2066.7546C52.6587%2068.0683%2050.8901%2068.8079%2049.0442%2068.8079H7.3964C5.5505%2068.8079%203.78192%2068.0683%202.47926%2066.7546C1.17689%2065.4412%200.446716%2063.6617%200.446716%2061.8079V19.8079C0.446716%2019.5441%200.550921%2019.291%200.736639%2019.1037L18.5857%201.10374ZM19.7125%202.80786L2.44672%2020.2196V61.8079C2.44672%2063.1367%202.97023%2064.4093%203.89942%2065.3464C4.82832%2066.2831%206.08639%2066.8079%207.3964%2066.8079H49.0442C50.3542%2066.8079%2051.6123%2066.2831%2052.5412%2065.3464C53.4704%2064.4093%2053.9939%2063.1366%2053.9939%2061.8079V7.80786C53.9939%206.47907%2053.4704%205.20639%2052.5412%204.26934C51.6123%203.33258%2050.3542%202.80786%2049.0442%202.80786H19.7125Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M18.1037%2058.592V61.808H16.9457V53.21H19.4837C20.0277%2053.21%2020.4997%2053.274%2020.8997%2053.402C21.3037%2053.526%2021.6377%2053.704%2021.9017%2053.936C22.1657%2054.168%2022.3617%2054.448%2022.4897%2054.776C22.6217%2055.104%2022.6877%2055.47%2022.6877%2055.874C22.6877%2056.274%2022.6177%2056.64%2022.4777%2056.972C22.3377%2057.304%2022.1317%2057.59%2021.8597%2057.83C21.5917%2058.07%2021.2577%2058.258%2020.8577%2058.394C20.4577%2058.526%2019.9997%2058.592%2019.4837%2058.592H18.1037ZM18.1037%2057.668H19.4837C19.8157%2057.668%2020.1077%2057.624%2020.3597%2057.536C20.6157%2057.448%2020.8297%2057.326%2021.0017%2057.17C21.1737%2057.01%2021.3037%2056.82%2021.3917%2056.6C21.4797%2056.38%2021.5237%2056.138%2021.5237%2055.874C21.5237%2055.326%2021.3537%2054.898%2021.0137%2054.59C20.6777%2054.282%2020.1677%2054.128%2019.4837%2054.128H18.1037V57.668Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M32.1137%2057.512C32.1137%2058.156%2032.0117%2058.742%2031.8077%2059.27C31.6037%2059.798%2031.3157%2060.25%2030.9437%2060.626C30.5717%2061.002%2030.1257%2061.294%2029.6057%2061.502C29.0857%2061.706%2028.5097%2061.808%2027.8777%2061.808H24.6617V53.21H27.8777C28.5097%2053.21%2029.0857%2053.314%2029.6057%2053.522C30.1257%2053.726%2030.5717%2054.018%2030.9437%2054.398C31.3157%2054.774%2031.6037%2055.226%2031.8077%2055.754C32.0117%2056.282%2032.1137%2056.868%2032.1137%2057.512ZM30.9197%2057.512C30.9197%2056.984%2030.8477%2056.512%2030.7037%2056.096C30.5597%2055.68%2030.3557%2055.328%2030.0917%2055.04C29.8277%2054.752%2029.5077%2054.532%2029.1317%2054.38C28.7557%2054.228%2028.3377%2054.152%2027.8777%2054.152H25.8317V60.866H27.8777C28.3377%2060.866%2028.7557%2060.79%2029.1317%2060.638C29.5077%2060.486%2029.8277%2060.268%2030.0917%2059.984C30.3557%2059.696%2030.5597%2059.344%2030.7037%2058.928C30.8477%2058.512%2030.9197%2058.04%2030.9197%2057.512Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M39.4948%2053.21V54.158H35.3668V57.164H38.8948V58.112H35.3668V61.808H34.1968V53.21H39.4948Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M16.5119%2045.0107C15.3078%2045.0107%2014.5497%2044.1633%2014.2821%2043.5836C14.0145%2043.1376%2013.2563%2041.4875%2015.3524%2039.3469C16.2443%2038.4103%2017.939%2036.7156%2022.3095%2035.2439C22.8893%2034.0398%2023.5137%2032.7019%2024.1826%2031.3194C24.8962%2029.7585%2025.4759%2028.4206%2025.9219%2027.2165C24.138%2024.3623%2023.8258%2022.2662%2023.8704%2019.9026C23.915%2017.2267%2025.6989%2016.5132%2026.6354%2016.5132C26.68%2016.5132%2029.2221%2016.6024%2029.4005%2020.4823C29.4451%2021.9094%2029.2221%2023.5595%2027.9288%2026.9935C28.8207%2028.3314%2030.0694%2029.8477%2031.6303%2031.587C32.1655%2032.2113%2032.7006%2032.7465%2033.1466%2033.2371C33.5926%2033.2371%2034.0385%2033.1925%2034.4845%2033.1925C38.3199%2033.1925%2040.2375%2034.0398%2041.0403%2034.5304C42.735%2035.6007%2042.6458%2037.2954%2042.3336%2038.0089C42.1106%2038.5887%2041.2633%2039.659%2039.5686%2039.659C39.1672%2039.659%2038.7212%2039.6144%2038.2753%2039.4806C36.8482%2039.0793%2035.7778%2038.4995%2032.4777%2035.0655C30.9614%2035.1993%2029.2667%2035.4223%2027.4828%2035.7791C26.1003%2036.0467%2024.7624%2036.3589%2023.6029%2036.7156C19.9459%2043.8066%2018.2512%2044.5201%2017.716%2044.7431C17.3147%2044.9215%2016.9133%2045.0107%2016.5119%2045.0107ZM21.0608%2037.6076C18.4296%2038.7225%2017.2701%2039.882%2016.6011%2040.5956C15.3078%2041.9335%2015.7538%2042.647%2015.7538%2042.647L15.8876%2042.7808V42.8254C15.8876%2042.87%2016.1106%2043.2268%2016.5119%2043.2268C16.6457%2043.2268%2016.8241%2043.1822%2017.0025%2043.093C17.3593%2042.9592%2018.608%2042.1119%2021.0608%2037.6076ZM34.8413%2034.9763C37.0711%2037.2508%2037.8293%2037.5184%2038.7212%2037.7414C39.0334%2037.8306%2039.301%2037.8752%2039.5686%2037.8752C40.4159%2037.8752%2040.6389%2037.3846%2040.6389%2037.34C40.7281%2037.117%2040.8619%2036.4926%2040.1037%2036.0021C39.5686%2035.7345%2038.0969%2035.0209%2034.8413%2034.9763ZM24.7178%2034.4412L24.6732%2034.5304C25.4313%2034.352%2026.2787%2034.129%2027.126%2033.9952C28.4193%2033.7276%2029.7126%2033.5492%2030.9168%2033.4154L30.8722%2033.3709C30.6938%2033.1925%2030.5154%2033.0141%2030.337%2032.7911C29.0437%2031.4086%2028.018%2030.1153%2027.1706%2029.0003L27.126%2029.0449C26.7246%2029.9815%2026.3233%2030.9626%2025.8327%2032.0775C25.4313%2032.8803%2025.03%2033.683%2024.7178%2034.4412ZM26.5908%2018.2525C26.3233%2018.2971%2025.6989%2018.4755%2025.6543%2019.858C25.6097%2021.3297%2025.6989%2022.846%2026.7246%2024.942C27.572%2022.4%2027.6166%2021.3297%2027.6166%2020.4823C27.5274%2018.6092%2026.7246%2018.2971%2026.5908%2018.2525Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M17.8807%2014.2607V1.80786H19.8807V14.2607C19.8807%2016.1558%2019.1787%2017.9861%2017.9096%2019.3458C16.6384%2020.7078%2014.899%2021.4871%2013.0694%2021.4871H1.44672V19.4871H13.0694C14.3223%2019.4871%2015.5391%2018.9545%2016.4475%2017.9811C17.3582%2017.0054%2017.8807%2015.6682%2017.8807%2014.2607Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3C%2Fsvg%3E";
8444
-
8445
- var pngCompleteSvg = "data:image/svg+xml,%3Csvg%20width%3D%2257%22%20height%3D%2269%22%20viewBox%3D%220%200%2057%2069%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M19.01%201.10374C19.1977%200.914378%2019.4534%200.807861%2019.72%200.807861H49.4685C51.3144%200.807861%2053.0829%201.54742%2054.3856%202.8611C55.688%204.17449%2056.4181%205.95405%2056.4181%207.80786V61.8079C56.4181%2063.6617%2055.688%2065.4412%2054.3856%2066.7546C53.0829%2068.0683%2051.3144%2068.8079%2049.4685%2068.8079H7.82066C5.97476%2068.8079%204.20617%2068.0683%202.90352%2066.7546C1.60114%2065.4412%200.870972%2063.6617%200.870972%2061.8079V19.8079C0.870972%2019.5441%200.975176%2019.291%201.16089%2019.1037L19.01%201.10374ZM20.1367%202.80786L2.87097%2020.2196V61.8079C2.87097%2063.1367%203.39448%2064.4093%204.32367%2065.3464C5.25258%2066.2831%206.51065%2066.8079%207.82066%2066.8079H49.4685C50.7785%2066.8079%2052.0365%2066.2831%2052.9654%2065.3464C53.8946%2064.4093%2054.4181%2063.1366%2054.4181%2061.8079V7.80786C54.4181%206.47907%2053.8946%205.20639%2052.9654%204.26934C52.0365%203.33258%2050.7785%202.80786%2049.4685%202.80786H20.1367Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M41.7664%2010.8079C39.1974%2010.8079%2037.1147%2012.8905%2037.1147%2015.4596C37.1147%2018.0286%2039.1974%2020.1112%2041.7664%2020.1112C44.3355%2020.1112%2046.4181%2018.0286%2046.4181%2015.4596C46.4181%2012.8905%2044.3355%2010.8079%2041.7664%2010.8079ZM35.1147%2015.4596C35.1147%2011.7859%2038.0928%208.80786%2041.7664%208.80786C45.4401%208.80786%2048.4181%2011.7859%2048.4181%2015.4596C48.4181%2019.1332%2045.4401%2022.1112%2041.7664%2022.1112C38.0928%2022.1112%2035.1147%2019.1332%2035.1147%2015.4596Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M17.7522%2058.4958V61.7118H16.5942V53.1138H19.1322C19.6762%2053.1138%2020.1482%2053.1778%2020.5482%2053.3058C20.9522%2053.4298%2021.2862%2053.6078%2021.5502%2053.8398C21.8142%2054.0718%2022.0102%2054.3518%2022.1382%2054.6798C22.2702%2055.0078%2022.3362%2055.3738%2022.3362%2055.7778C22.3362%2056.1778%2022.2662%2056.5438%2022.1262%2056.8758C21.9862%2057.2078%2021.7802%2057.4938%2021.5082%2057.7338C21.2402%2057.9738%2020.9062%2058.1618%2020.5062%2058.2978C20.1062%2058.4298%2019.6482%2058.4958%2019.1322%2058.4958H17.7522ZM17.7522%2057.5718H19.1322C19.4642%2057.5718%2019.7562%2057.5278%2020.0082%2057.4398C20.2642%2057.3518%2020.4782%2057.2298%2020.6502%2057.0738C20.8222%2056.9138%2020.9522%2056.7238%2021.0402%2056.5038C21.1282%2056.2838%2021.1722%2056.0418%2021.1722%2055.7778C21.1722%2055.2298%2021.0022%2054.8018%2020.6622%2054.4938C20.3262%2054.1858%2019.8162%2054.0318%2019.1322%2054.0318H17.7522V57.5718Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M24.9101%2053.1138C25.0141%2053.1138%2025.0901%2053.1278%2025.1381%2053.1558C25.1901%2053.1798%2025.2481%2053.2318%2025.3121%2053.3118L30.2921%2059.7918C30.2801%2059.6878%2030.2721%2059.5878%2030.2681%2059.4918C30.2641%2059.3918%2030.2621%2059.2958%2030.2621%2059.2038V53.1138H31.2821V61.7118H30.6941C30.6021%2061.7118%2030.5241%2061.6958%2030.4601%2061.6638C30.4001%2061.6318%2030.3401%2061.5778%2030.2801%2061.5018L25.3061%2055.0278C25.3141%2055.1278%2025.3201%2055.2258%2025.3241%2055.3218C25.3281%2055.4178%2025.3301%2055.5058%2025.3301%2055.5858V61.7118H24.3101V53.1138H24.9101Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20d%3D%22M37.7144%2060.8658C37.9464%2060.8658%2038.1584%2060.8558%2038.3504%2060.8358C38.5464%2060.8118%2038.7304%2060.7778%2038.9024%2060.7338C39.0744%2060.6898%2039.2364%2060.6378%2039.3884%2060.5778C39.5404%2060.5138%2039.6924%2060.4418%2039.8444%2060.3618V58.4658H38.5124C38.4364%2058.4658%2038.3744%2058.4438%2038.3264%2058.3998C38.2824%2058.3558%2038.2604%2058.3018%2038.2604%2058.2378V57.5778H40.9004V60.8778C40.6844%2061.0338%2040.4584%2061.1698%2040.2224%2061.2858C39.9904%2061.4018%2039.7404%2061.4998%2039.4724%2061.5798C39.2084%2061.6558%2038.9244%2061.7118%2038.6204%2061.7478C38.3164%2061.7878%2037.9864%2061.8078%2037.6304%2061.8078C37.0064%2061.8078%2036.4344%2061.7018%2035.9144%2061.4898C35.3944%2061.2738%2034.9464%2060.9738%2034.5704%2060.5898C34.1944%2060.2018%2033.9004%2059.7378%2033.6884%2059.1978C33.4804%2058.6578%2033.3764%2058.0638%2033.3764%2057.4158C33.3764%2056.7598%2033.4784%2056.1618%2033.6824%2055.6218C33.8904%2055.0818%2034.1844%2054.6198%2034.5644%2054.2358C34.9484%2053.8478%2035.4104%2053.5478%2035.9504%2053.3358C36.4944%2053.1238%2037.1024%2053.0178%2037.7744%2053.0178C38.1144%2053.0178%2038.4304%2053.0438%2038.7224%2053.0958C39.0144%2053.1438%2039.2844%2053.2158%2039.5324%2053.3118C39.7844%2053.4038%2040.0164%2053.5178%2040.2284%2053.6538C40.4404%2053.7858%2040.6384%2053.9358%2040.8224%2054.1038L40.4924%2054.6318C40.4244%2054.7398%2040.3364%2054.7938%2040.2284%2054.7938C40.1644%2054.7938%2040.0944%2054.7718%2040.0184%2054.7278C39.9184%2054.6718%2039.8064%2054.6038%2039.6824%2054.5238C39.5584%2054.4438%2039.4064%2054.3678%2039.2264%2054.2958C39.0504%2054.2198%2038.8404%2054.1558%2038.5964%2054.1038C38.3564%2054.0518%2038.0704%2054.0258%2037.7384%2054.0258C37.2544%2054.0258%2036.8164%2054.1058%2036.4244%2054.2658C36.0324%2054.4218%2035.6984%2054.6478%2035.4224%2054.9438C35.1464%2055.2358%2034.9344%2055.5918%2034.7864%2056.0118C34.6384%2056.4278%2034.5644%2056.8958%2034.5644%2057.4158C34.5644%2057.9598%2034.6404%2058.4458%2034.7924%2058.8738C34.9484%2059.2978%2035.1664%2059.6578%2035.4464%2059.9538C35.7264%2060.2498%2036.0584%2060.4758%2036.4424%2060.6318C36.8264%2060.7878%2037.2504%2060.8658%2037.7144%2060.8658Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M26.5412%2035.6977C23.8075%2032.964%2019.3754%2032.964%2016.6417%2035.6977L2.53854%2049.8009L1.12433%2048.3867L15.2275%2034.2835C18.7422%2030.7688%2024.4407%2030.7688%2027.9554%2034.2835L30.3448%2036.6729L28.9306%2038.0871L26.5412%2035.6977Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M43.7285%2034.281C40.9948%2031.5473%2036.5627%2031.5473%2033.829%2034.2809L22.5722%2045.5377C22.1816%2045.9282%2021.5485%2045.9282%2021.1579%2045.5377C20.7674%2045.1472%2020.7674%2044.514%2021.1579%2044.1235L32.4148%2032.8667C35.9295%2029.352%2041.628%2029.352%2045.1427%2032.8668L55.9615%2043.6856C56.352%2044.0761%2056.352%2044.7092%2055.9615%2045.0998C55.571%2045.4903%2054.9378%2045.4903%2054.5473%2045.0998L43.7285%2034.281Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.3049%2014.2607V1.80786H20.3049V14.2607C20.3049%2016.1558%2019.6029%2017.9861%2018.3339%2019.3458C17.0627%2020.7078%2015.3232%2021.4871%2013.4936%2021.4871H1.87097V19.4871H13.4936C14.7465%2019.4871%2015.9633%2018.9545%2016.8718%2017.9811C17.7824%2017.0054%2018.3049%2015.6682%2018.3049%2014.2607Z%22%20fill%3D%22%2390DF9B%22%2F%3E%3C%2Fsvg%3E";
8446
-
8447
- var errorSvg = "data:image/svg+xml,%3Csvg%20width%3D%2257%22%20height%3D%2269%22%20viewBox%3D%220%200%2057%2069%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.8104%201.10374C18.9981%200.914378%2019.2538%200.807861%2019.5204%200.807861H49.2689C51.1148%200.807861%2052.8834%201.54742%2054.186%202.8611C55.4884%204.17449%2056.2186%205.95405%2056.2186%207.80786V61.8079C56.2186%2063.6617%2055.4884%2065.4412%2054.186%2066.7546C52.8834%2068.0683%2051.1148%2068.8079%2049.2689%2068.8079H7.62107C5.77517%2068.8079%204.00659%2068.0683%202.70393%2066.7546C1.40156%2065.4412%200.671387%2063.6617%200.671387%2061.8079V19.8079C0.671387%2019.5441%200.775591%2019.291%200.961309%2019.1037L18.8104%201.10374ZM19.9371%202.80786L2.67139%2020.2196V61.8079C2.67139%2063.1367%203.1949%2064.4093%204.12409%2065.3464C5.05299%2066.2831%206.31106%2066.8079%207.62107%2066.8079H49.2689C50.5789%2066.8079%2051.8369%2066.2831%2052.7659%2065.3464C53.695%2064.4093%2054.2186%2063.1366%2054.2186%2061.8079V7.80786C54.2186%206.47907%2053.695%205.20639%2052.7659%204.26934C51.8369%203.33258%2050.5789%202.80786%2049.2689%202.80786H19.9371Z%22%20fill%3D%22%23E55454%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M28.4449%2031.8079C23.4744%2031.8079%2019.4449%2035.8373%2019.4449%2040.8079C19.4449%2045.7784%2023.4744%2049.8079%2028.4449%2049.8079C33.4155%2049.8079%2037.4449%2045.7784%2037.4449%2040.8079C37.4449%2035.8373%2033.4155%2031.8079%2028.4449%2031.8079ZM17.4449%2040.8079C17.4449%2034.7327%2022.3698%2029.8079%2028.4449%2029.8079C34.5201%2029.8079%2039.4449%2034.7327%2039.4449%2040.8079C39.4449%2046.883%2034.5201%2051.8079%2028.4449%2051.8079C22.3698%2051.8079%2017.4449%2046.883%2017.4449%2040.8079Z%22%20fill%3D%22%23E55454%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M32.1521%2037.1008C32.5426%2037.4913%2032.5426%2038.1244%2032.1521%2038.515L26.1521%2044.515C25.7615%2044.9055%2025.1284%2044.9055%2024.7378%2044.515C24.3473%2044.1244%2024.3473%2043.4913%2024.7378%2043.1008L30.7378%2037.1008C31.1284%2036.7102%2031.7615%2036.7102%2032.1521%2037.1008Z%22%20fill%3D%22%23E55454%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M24.7378%2037.1008C25.1284%2036.7102%2025.7615%2036.7102%2026.1521%2037.1008L32.1521%2043.1008C32.5426%2043.4913%2032.5426%2044.1244%2032.1521%2044.515C31.7615%2044.9055%2031.1284%2044.9055%2030.7378%2044.515L24.7378%2038.515C24.3473%2038.1244%2024.3473%2037.4913%2024.7378%2037.1008Z%22%20fill%3D%22%23E55454%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.1053%2014.2607V1.80786H20.1053V14.2607C20.1053%2016.1558%2019.4033%2017.9861%2018.1343%2019.3458C16.8631%2020.7078%2015.1236%2021.4871%2013.294%2021.4871H1.67139V19.4871H13.294C14.5469%2019.4871%2015.7637%2018.9545%2016.6722%2017.9811C17.5828%2017.0054%2018.1053%2015.6682%2018.1053%2014.2607Z%22%20fill%3D%22%23E55454%22%2F%3E%3C%2Fsvg%3E";
8448
-
8449
- var eyeSvg = "data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1%2012C1%2012%205%204%2012%204C19%204%2023%2012%2023%2012C23%2012%2019%2020%2012%2020C5%2020%201%2012%201%2012Z%22%20stroke%3D%22%238E8CEE%22%20strokeWidth%3D%222%22%20strokeLinecap%3D%22round%22%20strokeLinejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M12%2015C13.6569%2015%2015%2013.6569%2015%2012C15%2010.3431%2013.6569%209%2012%209C10.3431%209%209%2010.3431%209%2012C9%2013.6569%2010.3431%2015%2012%2015Z%22%20stroke%3D%22%238E8CEE%22%20strokeWidth%3D%222%22%20strokeLinecap%3D%22round%22%20strokeLinejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E";
8491
+ var uploadSvg = "data:image/svg+xml,%3Csvg%20width%3D%2270%22%20height%3D%2270%22%20viewBox%3D%220%200%2070%2070%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M25.589%2052.324H16.6368C12.2734%2052.324%202.91699%2048.3383%202.91699%2038.0351C2.91699%2026.9493%2012.2734%2023.2325%2016.9623%2023.2325C17.6018%2017.8902%2021.1291%207.97805%2034.1238%207.29132C46.6242%207.29132%2052.2035%2018.5714%2051.2854%2026.9756C56.175%2026.6729%2067.0837%2028.8787%2067.0837%2039.8558C67.0837%2049.1926%2057.3044%2052.7417%2052.4147%2052.324H44.7121%22%20stroke%3D%22%238E8CEE%22%20stroke-width%3D%223.08333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M35%2063.2981V32.646%22%20stroke%3D%22%238E8CEE%22%20stroke-width%3D%223.08333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M27.3428%2040.3045L35.0013%2032.646L42.6599%2040.3045%22%20stroke%3D%22%238E8CEE%22%20stroke-width%3D%223.08333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E";
8450
8492
 
8451
- var trashSvg = "data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M3%206H5H21%22%20stroke%3D%22%23E55454%22%20strokeWidth%3D%222%22%20strokeLinecap%3D%22round%22%20strokeLinejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M8%206V4C8%203.46957%208.21071%202.96086%208.58579%202.58579C8.96086%202.21071%209.46957%202%2010%202H14C14.5304%202%2015.0391%202.21071%2015.4142%202.58579C15.7893%202.96086%2016%203.46957%2016%204V6M19%206V20C19%2020.5304%2018.7893%2021.0391%2018.4142%2021.4142C18.0391%2021.7893%2017.5304%2022%2017%2022H7C6.46957%2022%205.96086%2021.7893%205.58579%2021.4142C5.21071%2021.0391%205%2020.5304%205%2020V6H19Z%22%20stroke%3D%22%23E55454%22%20strokeWidth%3D%222%22%20strokeLinecap%3D%22round%22%20strokeLinejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M10%2011V17%22%20stroke%3D%22%23E55454%22%20strokeWidth%3D%222%22%20strokeLinecap%3D%22round%22%20strokeLinejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M14%2011V17%22%20stroke%3D%22%23E55454%22%20strokeWidth%3D%222%22%20strokeLinecap%3D%22round%22%20strokeLinejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E";
8493
+ var uploadSmallSvg = "data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20clip-path%3D%22url%28%23clip0_14605_3119%29%22%3E%3Cpath%20d%3D%22M7.31072%2014.9498H4.75296C3.50626%2014.9498%200.833008%2013.811%200.833008%2010.8673C0.833008%207.69987%203.50626%206.63794%204.84594%206.63794C5.02868%205.11158%206.03646%202.27952%209.74924%202.08331C13.3208%202.08331%2014.9149%205.30618%2014.6525%207.70738C16.0496%207.6209%2019.1663%208.25113%2019.1663%2011.3875C19.1663%2014.0551%2016.3723%2015.0691%2014.9752%2014.9498H12.7745%22%20stroke%3D%22%238E8CEE%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M10%2018.0851V9.32739%22%20stroke%3D%22%238E8CEE%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M7.8125%2011.5155L10.0007%209.32739L12.1888%2011.5155%22%20stroke%3D%22%238E8CEE%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip0_14605_3119%22%3E%3Crect%20width%3D%2220%22%20height%3D%2220%22%20fill%3D%22white%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E";
8452
8494
 
8453
8495
  var icons = {
8454
- uploadIcon: uploadSvg,
8455
- genericIcon: genericSvg,
8456
- bmpIcon: bmpSvg,
8457
- docIcon: docSvg,
8458
- docxIcon: docxSvg,
8459
- heicIcon: heicSvg,
8460
- jpegIcon: jpegSvg,
8461
- jpgIcon: jpgSvg,
8462
- pdfIcon: pdfSvg,
8463
- pngIcon: pngSvg,
8464
- genericCompleteIcon: genericCompleteSvg,
8465
- bmpCompleteIcon: bmpCompleteSvg,
8466
- docCompleteIcon: docCompleteSvg,
8467
- docxCompleteIcon: docxCompleteSvg,
8468
- heicCompleteIcon: heicCompleteSvg,
8469
- jpegCompleteIcon: jpegCompleteSvg,
8470
- jpgCompleteIcon: jpgCompleteSvg,
8471
- pdfCompleteIcon: pdfCompleteSvg,
8472
- pngCompleteIcon: pngCompleteSvg,
8473
- errorIcon: errorSvg,
8474
8496
  eyeIcon: eyeSvg,
8497
+ fileErrorIcon: fileErrorSvg,
8498
+ fileIcon: fileSvg,
8499
+ fileUploadIcon: fileUploadSvg,
8475
8500
  trashIcon: trashSvg,
8501
+ trashErrorIcon: trashErrorSvg,
8502
+ uploadIcon: uploadSvg,
8503
+ uploadSmallIcon: uploadSmallSvg,
8476
8504
  };
8477
8505
 
8478
- var css_248z$m = ".style-module_upload-file-cell__3nv5i {\n display: flex;\n align-items: center;\n justify-content: space-between;\n padding: 8px 16px;\n border: 1px solid #d2d2d8;\n border-radius: 8px;\n background-color: white;\n animation: style-module_appear-down__14rCV 0.6s;\n animation-fill-mode: both;\n animation-delay: 0s;\n}\n\n.style-module_upload-file-cell-error__3KcSe {\n border-color: #e55454;\n background-color: rgba(229, 84, 84, 0.2);\n}\n\n.style-module_cell-left-section__3Iv8c {\n display: flex;\n align-items: center;\n}\n\n.style-module_main-icon__335_Y {\n width: 32px;\n height: 40px;\n margin-right: 16px;\n}\n\n.style-module_upload-display-text__3Rd68 {\n overflow-wrap: anywhere;\n}\n\n.style-module_progress-bar-container__2JCBO {\n position: relative;\n}\n\n.style-module_progress-bar__1Rosf {\n background-color: #f5f5fa;\n border-radius: 10px;\n height: 4px;\n}\n\n.style-module_progress-bar-filler__131fA {\n background-color: #8e8cee;\n border-radius: 10px;\n height: 4px;\n position: absolute;\n bottom: 0;\n transition: 1s ease;\n}\n\n.style-module_cell-right-section__dVWqJ {\n display: flex;\n justify-content: flex-end;\n min-width: 32px;\n margin-left: 16px;\n}\n\n.style-module_cell-right-section-complete__c0rHc {\n min-width: 64px;\n}\n\n.style-module_view-icon__3UenG,\n.style-module_remove-icon__2FWBQ {\n cursor: pointer;\n}\n\n.style-module_remove-icon__2FWBQ {\n margin-left: 16px;\n}\n\n.style-module_disabled__s-DR1 {\n pointer-events: none;\n cursor: default;\n}\n\n.style-module_spinner__28Vab {\n color: #8e8cee;\n animation: style-module_appear-down__14rCV 0.6s;\n animation-fill-mode: both;\n animation-delay: 0.6s;\n}\n\n@keyframes style-module_appear-down__14rCV {\n from {\n transform: translateY(-10px);\n opacity: 0;\n }\n to {\n transform: translateY(0);\n opacity: 1;\n }\n}";
8479
- var styles$l = {"upload-file-cell":"style-module_upload-file-cell__3nv5i","appear-down":"style-module_appear-down__14rCV","upload-file-cell-error":"style-module_upload-file-cell-error__3KcSe","cell-left-section":"style-module_cell-left-section__3Iv8c","main-icon":"style-module_main-icon__335_Y","upload-display-text":"style-module_upload-display-text__3Rd68","progress-bar-container":"style-module_progress-bar-container__2JCBO","progress-bar":"style-module_progress-bar__1Rosf","progress-bar-filler":"style-module_progress-bar-filler__131fA","cell-right-section":"style-module_cell-right-section__dVWqJ","cell-right-section-complete":"style-module_cell-right-section-complete__c0rHc","view-icon":"style-module_view-icon__3UenG","remove-icon":"style-module_remove-icon__2FWBQ","disabled":"style-module_disabled__s-DR1","spinner":"style-module_spinner__28Vab"};
8506
+ var css_248z$m = ".style-module_upload-file-cell__3nv5i {\n display: flex;\n align-items: center;\n justify-content: space-between;\n height: 64px;\n padding: 8px 16px;\n border: 1px solid #d2d2d8;\n border-radius: 8px;\n background-color: white;\n animation: style-module_appear-down__14rCV 0.6s;\n animation-fill-mode: both;\n animation-delay: 0s;\n}\n\n.style-module_upload-file-cell-error__3KcSe {\n border-color: #e55454;\n background-color: rgba(229, 84, 84, 0.2);\n}\n\n.style-module_cell-left-section__3Iv8c {\n display: flex;\n align-items: center;\n}\n\n.style-module_main-icon__335_Y {\n width: 16px;\n height: 20px;\n margin-right: 16px;\n}\n\n.style-module_upload-display-text__3Rd68 {\n overflow-wrap: anywhere;\n}\n\n.style-module_progress-bar-container__2JCBO {\n position: relative;\n}\n\n.style-module_progress-bar__1Rosf {\n background-color: #f5f5fa;\n border-radius: 10px;\n height: 4px;\n}\n\n.style-module_progress-bar-filler__131fA {\n background-color: #8e8cee;\n border-radius: 10px;\n height: 4px;\n position: absolute;\n bottom: 0;\n transition: 1s ease;\n}\n\n.style-module_cell-right-section__dVWqJ {\n display: flex;\n justify-content: flex-end;\n min-width: 32px;\n margin-left: 16px;\n}\n\n.style-module_cell-right-section-complete__c0rHc {\n min-width: 64px;\n}\n\n.style-module_view-icon__3UenG,\n.style-module_remove-icon__2FWBQ {\n cursor: pointer;\n}\n\n.style-module_remove-icon__2FWBQ {\n margin-left: 16px;\n}\n\n.style-module_disabled__s-DR1 {\n pointer-events: none;\n cursor: default;\n}\n\n@keyframes style-module_appear-down__14rCV {\n from {\n transform: translateY(-10px);\n opacity: 0;\n }\n to {\n transform: translateY(0);\n opacity: 1;\n }\n}";
8507
+ var styles$l = {"upload-file-cell":"style-module_upload-file-cell__3nv5i","appear-down":"style-module_appear-down__14rCV","upload-file-cell-error":"style-module_upload-file-cell-error__3KcSe","cell-left-section":"style-module_cell-left-section__3Iv8c","main-icon":"style-module_main-icon__335_Y","upload-display-text":"style-module_upload-display-text__3Rd68","progress-bar-container":"style-module_progress-bar-container__2JCBO","progress-bar":"style-module_progress-bar__1Rosf","progress-bar-filler":"style-module_progress-bar-filler__131fA","cell-right-section":"style-module_cell-right-section__dVWqJ","cell-right-section-complete":"style-module_cell-right-section-complete__c0rHc","view-icon":"style-module_view-icon__3UenG","remove-icon":"style-module_remove-icon__2FWBQ","disabled":"style-module_disabled__s-DR1"};
8480
8508
  styleInject(css_248z$m);
8481
8509
 
8482
- var getUploadingIcon = function (type) {
8483
- switch (type) {
8484
- case 'heic':
8485
- return icons.heicIcon;
8486
- case 'bmp':
8487
- return icons.bmpIcon;
8488
- case 'doc':
8489
- return icons.docIcon;
8490
- case 'docx':
8491
- return icons.docxIcon;
8492
- case 'jpeg':
8493
- return icons.jpegIcon;
8494
- case 'jpg':
8495
- return icons.jpgIcon;
8496
- case 'pdf':
8497
- return icons.pdfIcon;
8498
- case 'png':
8499
- return icons.pngIcon;
8500
- default:
8501
- return icons.genericIcon;
8502
- }
8503
- };
8504
- var getCompleteIcon = function (type) {
8505
- switch (type) {
8506
- case 'heic':
8507
- return icons.heicCompleteIcon;
8508
- case 'bmp':
8509
- return icons.bmpCompleteIcon;
8510
- case 'doc':
8511
- return icons.docCompleteIcon;
8512
- case 'docx':
8513
- return icons.docxCompleteIcon;
8514
- case 'jpeg':
8515
- return icons.jpegCompleteIcon;
8516
- case 'jpg':
8517
- return icons.jpgCompleteIcon;
8518
- case 'pdf':
8519
- return icons.pdfCompleteIcon;
8520
- case 'png':
8521
- return icons.pngCompleteIcon;
8522
- default:
8523
- return icons.genericCompleteIcon;
8524
- }
8525
- };
8526
- var UploadFileCell = (function (_a) {
8510
+ var UploadFileCell = function (_a) {
8527
8511
  var _b, _c, _d;
8528
8512
  var uploadStatus = _a.uploadStatus, file = _a.file, onRemoveFile = _a.onRemoveFile, uploading = _a.uploading;
8529
- var id = file.id, error = file.error, type = file.type, name = file.name, progress = file.progress, previewUrl = file.previewUrl;
8513
+ var id = file.id, error = file.error, name = file.name, progress = file.progress, previewUrl = file.previewUrl, _e = file.showLoadingSpinner, showLoadingSpinner = _e === void 0 ? false : _e, _f = file.showProgressBar, showProgressBar = _f === void 0 ? true : _f;
8514
+ var isComplete = uploadStatus === 'COMPLETE';
8515
+ var isUploading = uploadStatus === 'UPLOADING';
8516
+ var hasError = uploadStatus === 'ERROR';
8530
8517
  var mapFileIcon = {
8531
- UPLOADING: getUploadingIcon(type),
8532
- COMPLETE: getCompleteIcon(type),
8533
- ERROR: icons.errorIcon,
8518
+ UPLOADING: icons.fileUploadIcon,
8519
+ COMPLETE: icons.fileIcon,
8520
+ ERROR: icons.fileErrorIcon,
8534
8521
  };
8535
8522
  var mapDisplayText = {
8536
8523
  UPLOADING: 'Uploading...',
@@ -8538,18 +8525,34 @@ var UploadFileCell = (function (_a) {
8538
8525
  ERROR: error !== null && error !== void 0 ? error : 'Something went wrong. Try uploading again.',
8539
8526
  };
8540
8527
  return (jsxRuntime.jsxs("div", __assign({ className: classNames("mt8 " + styles$l['upload-file-cell'], (_b = {},
8541
- _b[styles$l['upload-file-cell-error']] = uploadStatus === 'ERROR',
8528
+ _b[styles$l['upload-file-cell-error']] = hasError,
8542
8529
  _b)) }, { children: [jsxRuntime.jsxs("div", __assign({ className: "w100 " + styles$l['cell-left-section'] }, { children: [jsxRuntime.jsx("img", { className: styles$l['main-icon'], src: mapFileIcon[uploadStatus], alt: "" }, void 0),
8543
- jsxRuntime.jsxs("div", __assign({ className: "w100" }, { children: [jsxRuntime.jsx("div", __assign({ className: "p-p wmx5 " + styles$l['upload-display-text'] }, { children: mapDisplayText[uploadStatus] }), void 0),
8544
- uploadStatus === 'UPLOADING' && (jsxRuntime.jsxs("div", __assign({ className: "mt8 w100 " + styles$l['progress-bar-container'] }, { children: [jsxRuntime.jsx("div", { className: "" + styles$l['progress-bar'] }, void 0),
8545
- jsxRuntime.jsx("div", { className: "" + styles$l['progress-bar-filler'], style: { width: progress + "%" } }, void 0)] }), void 0))] }), void 0)] }), void 0),
8530
+ jsxRuntime.jsxs("div", __assign({ className: "w100" }, { children: [jsxRuntime.jsx("div", __assign({ className: "p-p " + styles$l['upload-display-text'] }, { children: mapDisplayText[uploadStatus] }), void 0),
8531
+ isUploading && showProgressBar && (jsxRuntime.jsxs("div", __assign({ className: "mt8 w100 " + styles$l['progress-bar-container'] }, { children: [jsxRuntime.jsx("div", { className: "" + styles$l['progress-bar'] }, void 0),
8532
+ jsxRuntime.jsx("div", { "data-testid": "ds-filecell-progressbar", className: "" + styles$l['progress-bar-filler'], style: { width: progress + "%" } }, void 0)] }), void 0))] }), void 0)] }), void 0),
8546
8533
  jsxRuntime.jsx("div", __assign({ className: classNames(styles$l['cell-right-section'], (_c = {},
8547
- _c[styles$l['cell-right-section-complete']] = uploadStatus === 'COMPLETE',
8548
- _c)) }, { children: uploadStatus === 'UPLOADING' ? (jsxRuntime.jsx("div", { className: "p-spinner p-spinner__m " + styles$l.spinner }, void 0)) : (jsxRuntime.jsxs("div", { children: [uploadStatus === 'COMPLETE' && (jsxRuntime.jsx("a", __assign({ className: styles$l['view-icon'], href: previewUrl, target: "_blank", rel: "noopener noreferrer" }, { children: jsxRuntime.jsx("img", { src: icons.eyeIcon, alt: "preview" }, void 0) }), void 0)),
8534
+ _c[styles$l['cell-right-section-complete']] = isComplete,
8535
+ _c)) }, { children: isUploading ? (jsxRuntime.jsx("div", __assign({ className: styles$l.spinner }, { children: showLoadingSpinner && (jsxRuntime.jsx("div", { className: 'ds-spinner ds-spinner__m', "data-testid": "ds-filecell-spinner" }, void 0)) }), void 0)) : (jsxRuntime.jsxs("div", { children: [isComplete && (jsxRuntime.jsx("a", __assign({ className: styles$l['view-icon'], href: previewUrl, target: "_blank", rel: "noopener noreferrer" }, { children: jsxRuntime.jsx("img", { src: icons.eyeIcon, alt: "preview" }, void 0) }), void 0)),
8549
8536
  jsxRuntime.jsx("img", { className: classNames(styles$l['remove-icon'], (_d = {},
8550
8537
  _d[styles$l.disabled] = uploading,
8551
- _d)), src: icons.trashIcon, onClick: function () { return onRemoveFile(id); }, alt: "remove" }, void 0)] }, void 0)) }), void 0)] }), void 0));
8552
- });
8538
+ _d)), src: hasError ? icons.trashErrorIcon : icons.trashIcon, onClick: function () { return onRemoveFile(id); }, alt: "remove" }, void 0)] }, void 0)) }), void 0)] }), void 0));
8539
+ };
8540
+
8541
+ var k$2 = 1024;
8542
+ var sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];
8543
+ function formatBytes(bytes, decimals) {
8544
+ if (decimals === void 0) { decimals = 0; }
8545
+ if (!+bytes) {
8546
+ return '0 Bytes';
8547
+ }
8548
+ var dm = decimals < 0 ? 0 : decimals;
8549
+ var i = Math.floor(Math.log(bytes) / Math.log(k$2));
8550
+ return parseFloat((bytes / Math.pow(k$2, i)).toFixed(dm)) + " " + sizes[i];
8551
+ }
8552
+
8553
+ var DOCUMENT_FILES = ['doc', 'docx', 'pdf'];
8554
+ var IMAGE_FILES = ['heic', 'bmp', 'jpeg', 'jpg', 'png'];
8555
+ __spreadArray$1(__spreadArray$1([], DOCUMENT_FILES), IMAGE_FILES);
8553
8556
 
8554
8557
  var getUploadStatus = function (progress, error) {
8555
8558
  if (error) {
@@ -8560,34 +8563,96 @@ var getUploadStatus = function (progress, error) {
8560
8563
  }
8561
8564
  return 'COMPLETE';
8562
8565
  };
8563
- var index$7 = (function (_a) {
8566
+ var formatMimeType = function (type, values) {
8567
+ var formatedValues = {};
8568
+ values.forEach(function (value) {
8569
+ formatedValues[type + "/" + value] = ["." + value];
8570
+ });
8571
+ return formatedValues;
8572
+ };
8573
+ var DOCUMENT_FILES_ACCEPT = formatMimeType("application", DOCUMENT_FILES);
8574
+ var IMAGE_FILES_ACCEPT = formatMimeType("image", IMAGE_FILES);
8575
+ var getFormattedAcceptObject = function (accept) {
8576
+ if (accept === void 0) { accept = {}; }
8577
+ if (accept === "document") {
8578
+ return DOCUMENT_FILES_ACCEPT;
8579
+ }
8580
+ if (accept === "image") {
8581
+ return IMAGE_FILES_ACCEPT;
8582
+ }
8583
+ return accept;
8584
+ };
8585
+ var formatAcceptFileList = function (accept) { return (Object.values(accept)
8586
+ .reduce(function (acc, value) { return __spreadArray$1(__spreadArray$1([], acc), value); }, [])
8587
+ .join(", ")
8588
+ .replace(/\./g, '')
8589
+ .toUpperCase()); };
8590
+ var getErrorMessage = function (_a, _b, textOverrides) {
8591
+ var code = _a.code, message = _a.message;
8592
+ var _c = _b.fileList, fileList = _c === void 0 ? "" : _c, maxSize = _b.maxSize;
8593
+ switch (code) {
8594
+ case ErrorCode.FileInvalidType:
8595
+ return ((textOverrides === null || textOverrides === void 0 ? void 0 : textOverrides.fileTypeError) || "File type must be one of") + " " + fileList;
8596
+ case ErrorCode.FileTooLarge:
8597
+ return ((textOverrides === null || textOverrides === void 0 ? void 0 : textOverrides.fileTooLargeError) || "File is too large. It must be less than") + " " + formatBytes(maxSize || 0) + ".";
8598
+ default:
8599
+ return message;
8600
+ }
8601
+ };
8602
+
8603
+ var MultiDropZone = function (_a) {
8564
8604
  var _b;
8565
- var uploadedFiles = _a.uploadedFiles, onFileSelect = _a.onFileSelect, uploading = _a.uploading, onRemoveFile = _a.onRemoveFile, _c = _a.isCondensed, isCondensed = _c === void 0 ? false : _c, _d = _a.maxFiles, maxFiles = _d === void 0 ? 0 : _d, textOverrides = _a.textOverrides;
8566
- var _e = require$$0.useState(''), error = _e[0], setError = _e[1];
8605
+ var accept = _a.accept, uploadedFiles = _a.uploadedFiles, onFileSelect = _a.onFileSelect, uploading = _a.uploading, onRemoveFile = _a.onRemoveFile, _c = _a.isCondensed, isCondensed = _c === void 0 ? false : _c, _d = _a.maxFiles, maxFiles = _d === void 0 ? 0 : _d, maxSize = _a.maxSize, textOverrides = _a.textOverrides;
8606
+ var _e = require$$0.useState([]), errors = _e[0], setErrors = _e[1];
8607
+ var formattedAccept = getFormattedAcceptObject(accept);
8608
+ var fileList = formatAcceptFileList(formattedAccept);
8609
+ var maxSizePlaceholder = maxSize && maxSize > 0
8610
+ ? ((textOverrides === null || textOverrides === void 0 ? void 0 : textOverrides.sizeUpToText) || "up to") + " " + formatBytes(maxSize)
8611
+ : "";
8612
+ var placeholder = ((textOverrides === null || textOverrides === void 0 ? void 0 : textOverrides.supportsTextShort) || "Supports") + " " + (fileList || "JPEG, PNG, PDF") + " " + maxSizePlaceholder;
8613
+ var isOverMaxFiles = maxFiles > 0 && uploadedFiles.length > maxFiles;
8614
+ var removeError = function (removeId) { return (setErrors(errors.filter(function (_a) {
8615
+ var id = _a.id;
8616
+ return id !== removeId;
8617
+ }))); };
8567
8618
  var onDrop = require$$0.useCallback(function (acceptedFiles, filesRejected) {
8568
- setError('');
8569
- if (filesRejected.length > 0) {
8570
- setError(filesRejected[0].errors[0].message);
8571
- return;
8572
- }
8573
8619
  onFileSelect(acceptedFiles);
8574
- }, [onFileSelect]);
8575
- var _f = useDropzone({ onDrop: onDrop, maxFiles: maxFiles }), getRootProps = _f.getRootProps, getInputProps = _f.getInputProps;
8620
+ setErrors(function (previousErrors) { return (__spreadArray$1(__spreadArray$1([], previousErrors), filesRejected.map(function (_a) {
8621
+ var errors = _a.errors;
8622
+ return ({
8623
+ id: v4(),
8624
+ message: getErrorMessage(errors[0], { fileList: fileList, maxSize: maxSize }, textOverrides),
8625
+ });
8626
+ }))); });
8627
+ }, [fileList, maxSize, onFileSelect, textOverrides]);
8628
+ var _f = useDropzone({
8629
+ accept: formattedAccept,
8630
+ disabled: uploading,
8631
+ maxSize: maxSize,
8632
+ onDrop: onDrop,
8633
+ }), getRootProps = _f.getRootProps, getInputProps = _f.getInputProps;
8576
8634
  return (jsxRuntime.jsxs("div", __assign({ className: styles$m.container }, { children: [jsxRuntime.jsxs("div", __assign({ className: classNames("w100 ta-center br8 c-pointer " + styles$m.dropzoneContainer, (_b = {},
8577
8635
  _b[styles$m['dropzoneContainerDisabled']] = uploading,
8578
- _b)) }, getRootProps(), { children: [jsxRuntime.jsx("input", __assign({}, getInputProps()), void 0),
8579
- jsxRuntime.jsx("img", { className: isCondensed ? styles$m.img : '', src: icons.uploadIcon, alt: "purple cloud with an arrow" }, void 0),
8636
+ _b)) }, getRootProps(), { children: [jsxRuntime.jsx("input", __assign({ "data-testid": "ds-drop-input" }, getInputProps()), void 0),
8637
+ jsxRuntime.jsx("img", { className: isCondensed ? styles$m.img : '', src: isCondensed ? icons.uploadSmallIcon : icons.uploadIcon, alt: "purple cloud with an arrow" }, void 0),
8580
8638
  jsxRuntime.jsx("div", __assign({ className: "p-h4 mt8 " + (isCondensed ? styles$m.textInline : '') }, { children: uploading
8581
8639
  ? (textOverrides === null || textOverrides === void 0 ? void 0 : textOverrides.currentlyUploadingText) ||
8582
8640
  'Please wait while uploading file...'
8583
8641
  : (textOverrides === null || textOverrides === void 0 ? void 0 : textOverrides.instructionsText) || 'Choose file or drag & drop' }), void 0),
8584
- jsxRuntime.jsx("div", __assign({ className: "p-p--small tc-grey-500" }, { children: (textOverrides === null || textOverrides === void 0 ? void 0 : textOverrides.supportsText) || 'Supports JPEG, PNG, PDF' }), void 0)] }), void 0),
8585
- jsxRuntime.jsx(AnimateHeight, __assign({ duration: 300, height: error ? 'auto' : 0 }, { children: jsxRuntime.jsx("p", __assign({ className: "tc-red-500 p-p--small" }, { children: error }), void 0) }), void 0),
8586
- uploadedFiles.length > 0 && (jsxRuntime.jsx("div", __assign({ className: "w100 mt16" }, { children: uploadedFiles.map(function (file) {
8587
- var uploadStatus = getUploadStatus(file.progress, file.error);
8588
- return (jsxRuntime.jsx(UploadFileCell, { uploadStatus: uploadStatus, file: file, onRemoveFile: onRemoveFile, uploading: uploading }, file.id));
8589
- }) }), void 0))] }), void 0));
8590
- });
8642
+ jsxRuntime.jsx("div", __assign({ className: "p-p--small tc-grey-500" }, { children: (textOverrides === null || textOverrides === void 0 ? void 0 : textOverrides.supportsText) || placeholder }), void 0)] }), void 0),
8643
+ errors.map(function (_a) {
8644
+ var id = _a.id, message = _a.message;
8645
+ return message && (jsxRuntime.jsx(UploadFileCell, { uploadStatus: "ERROR", file: {
8646
+ error: message,
8647
+ id: id,
8648
+ name: message,
8649
+ progress: 0,
8650
+ type: "",
8651
+ }, onRemoveFile: function () { return removeError(id); }, uploading: false }, id));
8652
+ }),
8653
+ uploadedFiles.length > 0 && (jsxRuntime.jsx("div", __assign({ className: "w100 mt16" }, { children: uploadedFiles.map(function (file) { return (jsxRuntime.jsx(UploadFileCell, { uploadStatus: getUploadStatus(file.progress, file.error), file: file, onRemoveFile: onRemoveFile, uploading: uploading }, file.id)); }) }), void 0)),
8654
+ jsxRuntime.jsx(AnimateHeight, __assign({ duration: 300, height: isOverMaxFiles ? 'auto' : 0 }, { children: jsxRuntime.jsx("p", __assign({ className: "tc-red-500 p-p--small" }, { children: (textOverrides === null || textOverrides === void 0 ? void 0 : textOverrides.tooManyFilesError) || "Too many files." }), void 0) }), void 0)] }), void 0));
8655
+ };
8591
8656
 
8592
8657
  var css_248z$l = ".styles-module_content-container__4wuQ0 {\n display: flex;\n justify-content: center;\n align-items: center;\n}";
8593
8658
  var styles$k = {"content-container":"styles-module_content-container__4wuQ0"};
@@ -8758,8 +8823,8 @@ var BottomModal = (function (_a) {
8758
8823
  jsxRuntime.jsx("div", __assign({ className: styles$i.content }, { children: children }), void 0)] }), void 0) }), void 0));
8759
8824
  });
8760
8825
 
8761
- var css_248z$i = "@keyframes style-module_fade-in__nLzzO {\n 0% {\n background-color: rgba(0, 0, 0, 0);\n visibility: hidden;\n }\n 100% {\n background-color: rgba(0, 0, 0, 0.3);\n visibility: visible;\n }\n}\n@keyframes style-module_fade-out__IuSV7 {\n from {\n background-color: rgba(0, 0, 0, 0.3);\n visibility: visible;\n }\n to {\n background-color: rgba(0, 0, 0, 0);\n visibility: hidden;\n }\n}\n@keyframes style-module_appear-in__2ZMqz {\n 0% {\n transform: translateY(24px) translateX(-50%);\n opacity: 0;\n visibility: hidden;\n }\n 100% {\n transform: translateY(0) translateX(-50%);\n opacity: 1;\n visibility: visible;\n }\n}\n@keyframes style-module_disappear-out__38TSV {\n 0% {\n transform: translateY(0) translateX(-50%);\n opacity: 1;\n visibility: visible;\n }\n 100% {\n transform: translateY(24px) translateX(-50%);\n opacity: 0;\n visibility: hidden;\n }\n}\n.style-module_overlay__1Zbce, .style-module_overlay--close__2dytn {\n position: fixed;\n z-index: 100;\n overflow: auto;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n animation: style-module_fade-in__nLzzO 0.3s both;\n}\n.style-module_overlay--close__2dytn {\n animation-delay: 0.1s;\n animation: style-module_fade-out__IuSV7 0.3s both;\n}\n\n.style-module_container__1XZj_, .style-module_container--close__3UYsJ {\n position: relative;\n background-color: white;\n border-radius: 8px;\n max-width: 592px;\n width: fit-content;\n width: -moz-fit-content;\n animation-name: style-module_appear-in__2ZMqz;\n animation-duration: 0.4s;\n animation-fill-mode: both;\n animation-timing-function: ease-out;\n top: calc(100vh / 2 - 50% / 2);\n left: 50%;\n transform: translateX(-50%);\n margin-bottom: 80px;\n}\n.style-module_container--close__3UYsJ {\n animation-name: style-module_disappear-out__38TSV;\n animation-duration: 0.4s;\n animation-delay: 0s;\n animation-fill-mode: both;\n animation-timing-function: ease-out;\n}\n\n.style-module_header__2oEKp {\n display: flex;\n justify-content: space-between;\n align-items: center;\n padding: 24px 24px 0 24px;\n}\n\n.style-module_close__p3Axi {\n border: none;\n background-color: transparent;\n cursor: pointer;\n}";
8762
- var styles$h = {"overlay":"style-module_overlay__1Zbce","overlay--close":"style-module_overlay--close__2dytn","fade-in":"style-module_fade-in__nLzzO","fade-out":"style-module_fade-out__IuSV7","container":"style-module_container__1XZj_","container--close":"style-module_container--close__3UYsJ","appear-in":"style-module_appear-in__2ZMqz","disappear-out":"style-module_disappear-out__38TSV","header":"style-module_header__2oEKp","close":"style-module_close__p3Axi"};
8826
+ var css_248z$i = "@keyframes style-module_fade-in__nLzzO {\n 0% {\n background-color: rgba(0, 0, 0, 0);\n visibility: hidden;\n }\n 100% {\n background-color: rgba(0, 0, 0, 0.3);\n visibility: visible;\n }\n}\n@keyframes style-module_fade-out__IuSV7 {\n from {\n background-color: rgba(0, 0, 0, 0.3);\n visibility: visible;\n }\n to {\n background-color: rgba(0, 0, 0, 0);\n visibility: hidden;\n }\n}\n@keyframes style-module_appear-in__2ZMqz {\n 0% {\n transform: translateY(24px);\n opacity: 0;\n visibility: hidden;\n }\n 100% {\n transform: translateY(0);\n opacity: 1;\n visibility: visible;\n }\n}\n@keyframes style-module_disappear-out__38TSV {\n 0% {\n transform: translateY(0);\n opacity: 1;\n visibility: visible;\n }\n 100% {\n transform: translateY(24px);\n opacity: 0;\n visibility: hidden;\n }\n}\n.style-module_overlay__1Zbce, .style-module_overlay--close__2dytn {\n position: fixed;\n z-index: 100;\n overflow: auto;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n animation: style-module_fade-in__nLzzO 0.3s both;\n}\n.style-module_overlay--close__2dytn {\n animation-delay: 0.1s;\n animation: style-module_fade-out__IuSV7 0.3s both;\n}\n\n.style-module_container__1XZj_, .style-module_container--close__3UYsJ {\n position: relative;\n display: flex;\n align-items: center;\n max-width: 592px;\n width: 100%;\n min-height: 100%;\n margin: 0 auto;\n animation-name: style-module_appear-in__2ZMqz;\n animation-duration: 0.4s;\n animation-fill-mode: both;\n animation-timing-function: ease-out;\n}\n.style-module_container--close__3UYsJ {\n animation-name: style-module_disappear-out__38TSV;\n animation-duration: 0.4s;\n animation-delay: 0s;\n animation-fill-mode: both;\n animation-timing-function: ease-out;\n}\n\n.style-module_body__lbUih {\n background-color: white;\n border-radius: 8px;\n margin: 32px auto;\n}\n\n.style-module_header__2oEKp {\n display: flex;\n justify-content: space-between;\n align-items: center;\n padding: 24px 24px 0 24px;\n}\n\n.style-module_close__p3Axi {\n border: none;\n background-color: transparent;\n cursor: pointer;\n}";
8827
+ var styles$h = {"overlay":"style-module_overlay__1Zbce","overlay--close":"style-module_overlay--close__2dytn","fade-in":"style-module_fade-in__nLzzO","fade-out":"style-module_fade-out__IuSV7","container":"style-module_container__1XZj_","container--close":"style-module_container--close__3UYsJ","appear-in":"style-module_appear-in__2ZMqz","disappear-out":"style-module_disappear-out__38TSV","body":"style-module_body__lbUih","header":"style-module_header__2oEKp","close":"style-module_close__p3Axi"};
8763
8828
  styleInject(css_248z$i);
8764
8829
 
8765
8830
  var imageClose = "data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M18%206L6%2018%22%20stroke%3D%22%2326262E%22%20strokeWidth%3D%222%22%20strokeLinecap%3D%22round%22%20strokeLinejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M6%206L18%2018%22%20stroke%3D%22%2326262E%22%20strokeWidth%3D%222%22%20strokeLinecap%3D%22round%22%20strokeLinejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E";
@@ -8770,8 +8835,8 @@ var RegularModal = (function (_a) {
8770
8835
  if (!isOpen) {
8771
8836
  return jsxRuntime.jsx(jsxRuntime.Fragment, {}, void 0);
8772
8837
  }
8773
- return (jsxRuntime.jsx("div", __assign({ className: isClosing ? styles$h['overlay--close'] : styles$h.overlay, onClick: handleOnClose }, { children: jsxRuntime.jsxs("div", __assign({ className: (isClosing ? styles$h['container--close'] : styles$h.container) + " " + className, onClick: handleContainerClick }, { children: [jsxRuntime.jsxs("div", __assign({ className: styles$h.header }, { children: [jsxRuntime.jsx("div", __assign({ className: "p-h2 " + styles$h.title }, { children: title }), void 0),
8774
- dismissible && (jsxRuntime.jsx("button", __assign({ type: "button", className: styles$h.close, onClick: handleOnClose }, { children: jsxRuntime.jsx("img", { src: imageClose, alt: "Close" }, void 0) }), void 0))] }), void 0), children] }), void 0) }), void 0));
8838
+ return (jsxRuntime.jsx("div", __assign({ className: isClosing ? styles$h['overlay--close'] : styles$h.overlay, onClick: handleOnClose }, { children: jsxRuntime.jsx("div", __assign({ className: (isClosing ? styles$h['container--close'] : styles$h.container) + " " + className, onClick: handleContainerClick }, { children: jsxRuntime.jsxs("div", __assign({ className: styles$h.body }, { children: [jsxRuntime.jsxs("div", __assign({ className: styles$h.header }, { children: [jsxRuntime.jsx("div", __assign({ className: "p-h2 " + styles$h.title }, { children: title }), void 0),
8839
+ dismissible && (jsxRuntime.jsx("button", __assign({ type: "button", className: styles$h.close, onClick: handleOnClose }, { children: jsxRuntime.jsx("img", { src: imageClose, alt: "Close" }, void 0) }), void 0))] }), void 0), children] }), void 0) }), void 0) }), void 0));
8775
8840
  });
8776
8841
 
8777
8842
  var css_248z$h = "@media (min-width: 34rem) {\n .style-module_mobile__3k175 {\n display: none;\n }\n}\n@media (max-width: 34rem) {\n .style-module_mobile__3k175 {\n display: block !important;\n }\n}\n\n@media (max-width: 34rem) {\n .style-module_desktop__2lclr {\n display: none;\n }\n}";
@@ -36047,7 +36112,7 @@ exports.IbanInput = IbanInput;
36047
36112
  exports.InfoCard = index$2;
36048
36113
  exports.Input = Input;
36049
36114
  exports.Markdown = Markdown;
36050
- exports.MultiDropzone = index$7;
36115
+ exports.MultiDropzone = MultiDropZone;
36051
36116
  exports.RegularModal = RegularModal;
36052
36117
  exports.SegmentedControl = SegmentedControl;
36053
36118
  exports.SignaturePad = Signature;