watermark-js-plus 1.6.0 → 1.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/node_modules/tslib/tslib.es6.js +86 -0
- package/dist/es/src/core/blind.js +82 -0
- package/dist/es/src/core/canvas.js +292 -0
- package/dist/es/src/core/image.js +63 -0
- package/dist/es/src/core/layout/grid.js +36 -0
- package/dist/es/src/core/layout/index.js +25 -0
- package/dist/es/src/core/watermark.js +248 -0
- package/dist/es/src/index.js +3 -0
- package/dist/es/src/utils/index.js +199 -0
- package/dist/es/src/utils/initialization.js +284 -0
- package/dist/es/src/utils/protection.js +13 -0
- package/dist/es/style.css +1 -0
- package/dist/ie/es/_virtual/_commonjsHelpers.js +3 -0
- package/dist/ie/es/_virtual/es.array.fill.js +3 -0
- package/dist/ie/es/_virtual/es.array.fill2.js +3 -0
- package/dist/ie/es/_virtual/es.array.from.js +3 -0
- package/dist/ie/es/_virtual/es.array.from2.js +3 -0
- package/dist/ie/es/_virtual/es.array.includes.js +3 -0
- package/dist/ie/es/_virtual/es.array.includes2.js +3 -0
- package/dist/ie/es/_virtual/es.promise.all.js +3 -0
- package/dist/ie/es/_virtual/es.promise.catch.js +3 -0
- package/dist/ie/es/_virtual/es.promise.constructor.js +3 -0
- package/dist/ie/es/_virtual/es.promise.js +3 -0
- package/dist/ie/es/_virtual/es.promise.race.js +3 -0
- package/dist/ie/es/_virtual/es.promise.reject.js +3 -0
- package/dist/ie/es/_virtual/es.promise.resolve.js +3 -0
- package/dist/ie/es/_virtual/es.promise2.js +3 -0
- package/dist/ie/es/_virtual/make-built-in.js +3 -0
- package/dist/ie/es/_virtual/new-promise-capability.js +3 -0
- package/dist/ie/es/_virtual/object-define-properties.js +3 -0
- package/dist/ie/es/_virtual/object-define-property.js +3 -0
- package/dist/ie/es/_virtual/object-get-own-property-descriptor.js +3 -0
- package/dist/ie/es/_virtual/object-get-own-property-names.js +3 -0
- package/dist/ie/es/_virtual/object-get-own-property-symbols.js +3 -0
- package/dist/ie/es/_virtual/object-property-is-enumerable.js +3 -0
- package/dist/ie/es/_virtual/shared-store.js +3 -0
- package/dist/ie/es/node_modules/core-js/internals/a-callable.js +23 -0
- package/dist/ie/es/node_modules/core-js/internals/a-constructor.js +23 -0
- package/dist/ie/es/node_modules/core-js/internals/a-possible-prototype.js +21 -0
- package/dist/ie/es/node_modules/core-js/internals/add-to-unscopables.js +34 -0
- package/dist/ie/es/node_modules/core-js/internals/an-instance.js +20 -0
- package/dist/ie/es/node_modules/core-js/internals/an-object.js +22 -0
- package/dist/ie/es/node_modules/core-js/internals/array-fill.js +30 -0
- package/dist/ie/es/node_modules/core-js/internals/array-from.js +66 -0
- package/dist/ie/es/node_modules/core-js/internals/array-includes.js +47 -0
- package/dist/ie/es/node_modules/core-js/internals/array-slice.js +15 -0
- package/dist/ie/es/node_modules/core-js/internals/call-with-safe-iteration-closing.js +24 -0
- package/dist/ie/es/node_modules/core-js/internals/check-correctness-of-iteration.js +52 -0
- package/dist/ie/es/node_modules/core-js/internals/classof-raw.js +20 -0
- package/dist/ie/es/node_modules/core-js/internals/classof.js +44 -0
- package/dist/ie/es/node_modules/core-js/internals/copy-constructor-properties.js +31 -0
- package/dist/ie/es/node_modules/core-js/internals/create-non-enumerable-property.js +24 -0
- package/dist/ie/es/node_modules/core-js/internals/create-property-descriptor.js +18 -0
- package/dist/ie/es/node_modules/core-js/internals/create-property.js +22 -0
- package/dist/ie/es/node_modules/core-js/internals/define-built-in-accessor.js +21 -0
- package/dist/ie/es/node_modules/core-js/internals/define-built-in.js +42 -0
- package/dist/ie/es/node_modules/core-js/internals/define-global-property.js +24 -0
- package/dist/ie/es/node_modules/core-js/internals/descriptors.js +19 -0
- package/dist/ie/es/node_modules/core-js/internals/document-create-element.js +23 -0
- package/dist/ie/es/node_modules/core-js/internals/enum-bug-keys.js +20 -0
- package/dist/ie/es/node_modules/core-js/internals/environment-is-ios-pebble.js +15 -0
- package/dist/ie/es/node_modules/core-js/internals/environment-is-ios.js +16 -0
- package/dist/ie/es/node_modules/core-js/internals/environment-is-node.js +15 -0
- package/dist/ie/es/node_modules/core-js/internals/environment-is-webos-webkit.js +15 -0
- package/dist/ie/es/node_modules/core-js/internals/environment-user-agent.js +18 -0
- package/dist/ie/es/node_modules/core-js/internals/environment-v8-version.js +40 -0
- package/dist/ie/es/node_modules/core-js/internals/environment.js +34 -0
- package/dist/ie/es/node_modules/core-js/internals/export.js +72 -0
- package/dist/ie/es/node_modules/core-js/internals/fails.js +17 -0
- package/dist/ie/es/node_modules/core-js/internals/function-apply.js +22 -0
- package/dist/ie/es/node_modules/core-js/internals/function-bind-context.js +27 -0
- package/dist/ie/es/node_modules/core-js/internals/function-bind-native.js +20 -0
- package/dist/ie/es/node_modules/core-js/internals/function-call.js +19 -0
- package/dist/ie/es/node_modules/core-js/internals/function-name.js +30 -0
- package/dist/ie/es/node_modules/core-js/internals/function-uncurry-this-accessor.js +22 -0
- package/dist/ie/es/node_modules/core-js/internals/function-uncurry-this-clause.js +22 -0
- package/dist/ie/es/node_modules/core-js/internals/function-uncurry-this.js +24 -0
- package/dist/ie/es/node_modules/core-js/internals/get-built-in.js +23 -0
- package/dist/ie/es/node_modules/core-js/internals/get-iterator-method.js +29 -0
- package/dist/ie/es/node_modules/core-js/internals/get-iterator.js +29 -0
- package/dist/ie/es/node_modules/core-js/internals/get-method.js +22 -0
- package/dist/ie/es/node_modules/core-js/internals/global-this.js +27 -0
- package/dist/ie/es/node_modules/core-js/internals/has-own-property.js +24 -0
- package/dist/ie/es/node_modules/core-js/internals/hidden-keys.js +11 -0
- package/dist/ie/es/node_modules/core-js/internals/host-report-errors.js +16 -0
- package/dist/ie/es/node_modules/core-js/internals/html.js +15 -0
- package/dist/ie/es/node_modules/core-js/internals/ie8-dom-define.js +25 -0
- package/dist/ie/es/node_modules/core-js/internals/indexed-object.js +29 -0
- package/dist/ie/es/node_modules/core-js/internals/inspect-source.js +28 -0
- package/dist/ie/es/node_modules/core-js/internals/internal-state.js +89 -0
- package/dist/ie/es/node_modules/core-js/internals/is-array-iterator-method.js +23 -0
- package/dist/ie/es/node_modules/core-js/internals/is-callable.js +21 -0
- package/dist/ie/es/node_modules/core-js/internals/is-constructor.js +68 -0
- package/dist/ie/es/node_modules/core-js/internals/is-forced.js +35 -0
- package/dist/ie/es/node_modules/core-js/internals/is-null-or-undefined.js +15 -0
- package/dist/ie/es/node_modules/core-js/internals/is-object.js +17 -0
- package/dist/ie/es/node_modules/core-js/internals/is-possible-prototype.js +17 -0
- package/dist/ie/es/node_modules/core-js/internals/is-pure.js +11 -0
- package/dist/ie/es/node_modules/core-js/internals/is-symbol.js +28 -0
- package/dist/ie/es/node_modules/core-js/internals/iterate.js +89 -0
- package/dist/ie/es/node_modules/core-js/internals/iterator-close.js +37 -0
- package/dist/ie/es/node_modules/core-js/internals/iterators.js +11 -0
- package/dist/ie/es/node_modules/core-js/internals/length-of-array-like.js +19 -0
- package/dist/ie/es/node_modules/core-js/internals/make-built-in.js +73 -0
- package/dist/ie/es/node_modules/core-js/internals/math-trunc.js +20 -0
- package/dist/ie/es/node_modules/core-js/internals/microtask.js +98 -0
- package/dist/ie/es/node_modules/core-js/internals/new-promise-capability.js +32 -0
- package/dist/ie/es/node_modules/core-js/internals/object-create.js +102 -0
- package/dist/ie/es/node_modules/core-js/internals/object-define-properties.js +37 -0
- package/dist/ie/es/node_modules/core-js/internals/object-define-property.js +59 -0
- package/dist/ie/es/node_modules/core-js/internals/object-get-own-property-descriptor.js +41 -0
- package/dist/ie/es/node_modules/core-js/internals/object-get-own-property-names.js +24 -0
- package/dist/ie/es/node_modules/core-js/internals/object-get-own-property-symbols.js +13 -0
- package/dist/ie/es/node_modules/core-js/internals/object-is-prototype-of.js +15 -0
- package/dist/ie/es/node_modules/core-js/internals/object-keys-internal.js +36 -0
- package/dist/ie/es/node_modules/core-js/internals/object-keys.js +22 -0
- package/dist/ie/es/node_modules/core-js/internals/object-property-is-enumerable.js +24 -0
- package/dist/ie/es/node_modules/core-js/internals/object-set-prototype-of.js +43 -0
- package/dist/ie/es/node_modules/core-js/internals/ordinary-to-primitive.js +29 -0
- package/dist/ie/es/node_modules/core-js/internals/own-keys.js +30 -0
- package/dist/ie/es/node_modules/core-js/internals/perform.js +17 -0
- package/dist/ie/es/node_modules/core-js/internals/promise-constructor-detection.js +66 -0
- package/dist/ie/es/node_modules/core-js/internals/promise-native-constructor.js +15 -0
- package/dist/ie/es/node_modules/core-js/internals/promise-resolve.js +26 -0
- package/dist/ie/es/node_modules/core-js/internals/promise-statics-incorrect-iteration.js +21 -0
- package/dist/ie/es/node_modules/core-js/internals/queue.js +34 -0
- package/dist/ie/es/node_modules/core-js/internals/require-object-coercible.js +22 -0
- package/dist/ie/es/node_modules/core-js/internals/safe-get-built-in.js +25 -0
- package/dist/ie/es/node_modules/core-js/internals/set-species.js +32 -0
- package/dist/ie/es/node_modules/core-js/internals/set-to-string-tag.js +26 -0
- package/dist/ie/es/node_modules/core-js/internals/shared-key.js +21 -0
- package/dist/ie/es/node_modules/core-js/internals/shared-store.js +28 -0
- package/dist/ie/es/node_modules/core-js/internals/shared.js +17 -0
- package/dist/ie/es/node_modules/core-js/internals/species-constructor.js +29 -0
- package/dist/ie/es/node_modules/core-js/internals/symbol-constructor-detection.js +32 -0
- package/dist/ie/es/node_modules/core-js/internals/task.js +139 -0
- package/dist/ie/es/node_modules/core-js/internals/to-absolute-index.js +24 -0
- package/dist/ie/es/node_modules/core-js/internals/to-indexed-object.js +20 -0
- package/dist/ie/es/node_modules/core-js/internals/to-integer-or-infinity.js +21 -0
- package/dist/ie/es/node_modules/core-js/internals/to-length.js +22 -0
- package/dist/ie/es/node_modules/core-js/internals/to-object.js +21 -0
- package/dist/ie/es/node_modules/core-js/internals/to-primitive.js +42 -0
- package/dist/ie/es/node_modules/core-js/internals/to-property-key.js +22 -0
- package/dist/ie/es/node_modules/core-js/internals/to-string-tag-support.js +20 -0
- package/dist/ie/es/node_modules/core-js/internals/try-to-string.js +19 -0
- package/dist/ie/es/node_modules/core-js/internals/uid.js +21 -0
- package/dist/ie/es/node_modules/core-js/internals/use-symbol-as-uid.js +18 -0
- package/dist/ie/es/node_modules/core-js/internals/v8-prototype-define-bug.js +25 -0
- package/dist/ie/es/node_modules/core-js/internals/validate-arguments-length.js +16 -0
- package/dist/ie/es/node_modules/core-js/internals/weak-map-basic-detection.js +19 -0
- package/dist/ie/es/node_modules/core-js/internals/well-known-symbol.js +35 -0
- package/dist/ie/es/node_modules/core-js/modules/es.array.fill.js +26 -0
- package/dist/ie/es/node_modules/core-js/modules/es.array.from.js +28 -0
- package/dist/ie/es/node_modules/core-js/modules/es.array.includes.js +36 -0
- package/dist/ie/es/node_modules/core-js/modules/es.promise.all.js +56 -0
- package/dist/ie/es/node_modules/core-js/modules/es.promise.catch.js +43 -0
- package/dist/ie/es/node_modules/core-js/modules/es.promise.constructor.js +323 -0
- package/dist/ie/es/node_modules/core-js/modules/es.promise.js +24 -0
- package/dist/ie/es/node_modules/core-js/modules/es.promise.race.js +43 -0
- package/dist/ie/es/node_modules/core-js/modules/es.promise.reject.js +28 -0
- package/dist/ie/es/node_modules/core-js/modules/es.promise.resolve.js +34 -0
- package/dist/ie/es/node_modules/tslib/tslib.es6.js +86 -0
- package/dist/ie/es/node_modules/whatwg-fetch/fetch.js +643 -0
- package/dist/ie/es/src/core/blind.js +82 -0
- package/dist/ie/es/src/core/canvas.js +292 -0
- package/dist/ie/es/src/core/image.js +63 -0
- package/dist/ie/es/src/core/layout/grid.js +36 -0
- package/dist/ie/es/src/core/layout/index.js +25 -0
- package/dist/ie/es/src/core/watermark.js +248 -0
- package/dist/ie/es/src/index.ie.js +9 -0
- package/dist/ie/es/src/utils/index.js +199 -0
- package/dist/ie/es/src/utils/initialization.js +284 -0
- package/dist/ie/es/src/utils/polyfill.js +5 -0
- package/dist/ie/es/src/utils/protection.js +13 -0
- package/dist/ie/es/style.css +1 -0
- package/dist/ie/index.cjs.js +3 -37
- package/dist/ie/index.cjs.js.map +1 -1
- package/dist/ie/index.cjs.min.js +1 -1
- package/dist/ie/index.esm.js +3 -37
- package/dist/ie/index.esm.js.map +1 -1
- package/dist/ie/index.esm.min.js +1 -1
- package/dist/ie/index.iife.js +3 -37
- package/dist/ie/index.iife.js.map +1 -1
- package/dist/ie/index.iife.min.js +1 -1
- package/dist/ie/index.umd.js +3 -37
- package/dist/ie/index.umd.js.map +1 -1
- package/dist/ie/index.umd.min.js +1 -1
- package/dist/index.cjs.js +1 -35
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.cjs.min.js +1 -1
- package/dist/index.esm.js +1 -35
- package/dist/index.esm.js.map +1 -1
- package/dist/index.esm.min.js +1 -1
- package/dist/index.iife.js +1 -35
- package/dist/index.iife.js.map +1 -1
- package/dist/index.iife.min.js +1 -1
- package/dist/index.umd.js +1 -35
- package/dist/index.umd.js.map +1 -1
- package/dist/index.umd.min.js +1 -1
- package/dist/types/core/watermark.d.ts +0 -4
- package/dist/types/style/index.d.ts +1 -1
- package/package.json +41 -22
package/dist/ie/index.cjs.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";var t,e,n="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},r={};function i(){if(e)return t;e=1;var r=function(t){return t&&t.Math===Math&&t};return t=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof n&&n)||r("object"==typeof t&&t)||function(){return this}()||Function("return this")()}var o,a,s,u,c,l,d,f,h={};function p(){return a?o:(a=1,o=function(t){try{return!!t()}catch(t){return!0}})}function v(){if(u)return s;u=1;var t=p();return s=!t((function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]}))}function y(){if(l)return c;l=1;var t=p();return c=!t((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")}))}function m(){if(f)return d;f=1;var t=y(),e=Function.prototype.call;return d=t?e.bind(e):function(){return e.apply(e,arguments)},d}var g,w,b,x,S,O,P,E,k,T,C,A,j,R,_,L,D,I,B,H,N,W,U,F,M,z,G,q,V,X,Y,$,K,J,Z,Q,tt,et,nt,rt,it,ot={};function at(){return b?w:(b=1,w=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}})}function st(){if(S)return x;S=1;var t=y(),e=Function.prototype,n=e.call,r=t&&e.bind.bind(n,n);return x=t?r:function(t){return function(){return n.apply(t,arguments)}},x}function ut(){if(P)return O;P=1;var t=st(),e=t({}.toString),n=t("".slice);return O=function(t){return n(e(t),8,-1)}}function ct(){return C?T:(C=1,T=function(t){return null==t})}function lt(){if(j)return A;j=1;var t=ct(),e=TypeError;return A=function(n){if(t(n))throw new e("Can't call method on "+n);return n}}function dt(){if(_)return R;_=1;var t=function(){if(k)return E;k=1;var t=st(),e=p(),n=ut(),r=Object,i=t("".split);return E=e((function(){return!r("z").propertyIsEnumerable(0)}))?function(t){return"String"===n(t)?i(t,""):r(t)}:r}(),e=lt();return R=function(n){return t(e(n))}}function ft(){if(D)return L;D=1;var t="object"==typeof document&&document.all;return L=void 0===t&&void 0!==t?function(e){return"function"==typeof e||e===t}:function(t){return"function"==typeof t}}function ht(){if(B)return I;B=1;var t=ft();return I=function(e){return"object"==typeof e?null!==e:t(e)}}function pt(){if(N)return H;N=1;var t=i(),e=ft();return H=function(n,r){return arguments.length<2?(i=t[n],e(i)?i:void 0):t[n]&&t[n][r];var i},H}function vt(){if(U)return W;U=1;var t=st();return W=t({}.isPrototypeOf)}function yt(){if(M)return F;M=1;var t=i().navigator,e=t&&t.userAgent;return F=e?String(e):""}function mt(){if(G)return z;G=1;var t,e,n=i(),r=yt(),o=n.process,a=n.Deno,s=o&&o.versions||a&&a.version,u=s&&s.v8;return u&&(e=(t=u.split("."))[0]>0&&t[0]<4?1:+(t[0]+t[1])),!e&&r&&(!(t=r.match(/Edge\/(\d+)/))||t[1]>=74)&&(t=r.match(/Chrome\/(\d+)/))&&(e=+t[1]),z=e}function gt(){if(V)return q;V=1;var t=mt(),e=p(),n=i().String;return q=!!Object.getOwnPropertySymbols&&!e((function(){var e=Symbol("symbol detection");return!n(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&t&&t<41}))}function wt(){if(Y)return X;Y=1;var t=gt();return X=t&&!Symbol.sham&&"symbol"==typeof Symbol.iterator}function bt(){if(K)return $;K=1;var t=pt(),e=ft(),n=vt(),r=wt(),i=Object;return $=r?function(t){return"symbol"==typeof t}:function(r){var o=t("Symbol");return e(o)&&n(o.prototype,i(r))}}function xt(){if(Z)return J;Z=1;var t=String;return J=function(e){try{return t(e)}catch(t){return"Object"}}}function St(){if(tt)return Q;tt=1;var t=ft(),e=xt(),n=TypeError;return Q=function(r){if(t(r))return r;throw new n(e(r)+" is not a function")}}function Ot(){if(nt)return et;nt=1;var t=St(),e=ct();return et=function(n,r){var i=n[r];return e(i)?void 0:t(i)}}function Pt(){if(it)return rt;it=1;var t=m(),e=ft(),n=ht(),r=TypeError;return rt=function(i,o){var a,s;if("string"===o&&e(a=i.toString)&&!n(s=t(a,i)))return s;if(e(a=i.valueOf)&&!n(s=t(a,i)))return s;if("string"!==o&&e(a=i.toString)&&!n(s=t(a,i)))return s;throw new r("Can't convert object to primitive value")}}var Et,kt,Tt,Ct,At,jt,Rt,_t,Lt,Dt,It,Bt,Ht,Nt,Wt,Ut,Ft,Mt,zt,Gt,qt,Vt,Xt,Yt,$t={exports:{}};function Kt(){return kt?Et:(kt=1,Et=!1)}function Jt(){if(Ct)return Tt;Ct=1;var t=i(),e=Object.defineProperty;return Tt=function(n,r){try{e(t,n,{value:r,configurable:!0,writable:!0})}catch(e){t[n]=r}return r}}function Zt(){if(At)return $t.exports;At=1;var t=Kt(),e=i(),n=Jt(),r="__core-js_shared__",o=$t.exports=e[r]||n(r,{});return(o.versions||(o.versions=[])).push({version:"3.41.0",mode:t?"pure":"global",copyright:"© 2014-2025 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.41.0/LICENSE",source:"https://github.com/zloirock/core-js"}),$t.exports}function Qt(){if(Rt)return jt;Rt=1;var t=Zt();return jt=function(e,n){return t[e]||(t[e]=n||{})}}function te(){if(Lt)return _t;Lt=1;var t=lt(),e=Object;return _t=function(n){return e(t(n))}}function ee(){if(It)return Dt;It=1;var t=st(),e=te(),n=t({}.hasOwnProperty);return Dt=Object.hasOwn||function(t,r){return n(e(t),r)}}function ne(){if(Ht)return Bt;Ht=1;var t=st(),e=0,n=Math.random(),r=t(1..toString);return Bt=function(t){return"Symbol("+(void 0===t?"":t)+")_"+r(++e+n,36)}}function re(){if(Wt)return Nt;Wt=1;var t=i(),e=Qt(),n=ee(),r=ne(),o=gt(),a=wt(),s=t.Symbol,u=e("wks"),c=a?s.for||s:s&&s.withoutSetter||r;return Nt=function(t){return n(u,t)||(u[t]=o&&n(s,t)?s[t]:c("Symbol."+t)),u[t]}}function ie(){if(Ft)return Ut;Ft=1;var t=m(),e=ht(),n=bt(),r=Ot(),i=Pt(),o=re(),a=TypeError,s=o("toPrimitive");return Ut=function(o,u){if(!e(o)||n(o))return o;var c,l=r(o,s);if(l){if(void 0===u&&(u="default"),c=t(l,o,u),!e(c)||n(c))return c;throw new a("Can't convert object to primitive value")}return void 0===u&&(u="number"),i(o,u)}}function oe(){if(zt)return Mt;zt=1;var t=ie(),e=bt();return Mt=function(n){var r=t(n,"string");return e(r)?r:r+""}}function ae(){if(qt)return Gt;qt=1;var t=i(),e=ht(),n=t.document,r=e(n)&&e(n.createElement);return Gt=function(t){return r?n.createElement(t):{}}}function se(){if(Xt)return Vt;Xt=1;var t=v(),e=p(),n=ae();return Vt=!t&&!e((function(){return 7!==Object.defineProperty(n("div"),"a",{get:function(){return 7}}).a}))}function ue(){if(Yt)return h;Yt=1;var t=v(),e=m(),n=function(){if(g)return ot;g=1;var t={}.propertyIsEnumerable,e=Object.getOwnPropertyDescriptor,n=e&&!t.call({1:2},1);return ot.f=n?function(t){var n=e(this,t);return!!n&&n.enumerable}:t,ot}(),r=at(),i=dt(),o=oe(),a=ee(),s=se(),u=Object.getOwnPropertyDescriptor;return h.f=t?u:function(t,c){if(t=i(t),c=o(c),s)try{return u(t,c)}catch(t){}if(a(t,c))return r(!e(n.f,t,c),t[c])},h}var ce,le,de,fe,he,pe,ve,ye={};function me(){if(le)return ce;le=1;var t=v(),e=p();return ce=t&&e((function(){return 42!==Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype}))}function ge(){if(fe)return de;fe=1;var t=ht(),e=String,n=TypeError;return de=function(r){if(t(r))return r;throw new n(e(r)+" is not an object")}}function we(){if(he)return ye;he=1;var t=v(),e=se(),n=me(),r=ge(),i=oe(),o=TypeError,a=Object.defineProperty,s=Object.getOwnPropertyDescriptor,u="enumerable",c="configurable",l="writable";return ye.f=t?n?function(t,e,n){if(r(t),e=i(e),r(n),"function"==typeof t&&"prototype"===e&&"value"in n&&l in n&&!n[l]){var o=s(t,e);o&&o[l]&&(t[e]=n.value,n={configurable:c in n?n[c]:o[c],enumerable:u in n?n[u]:o[u],writable:!1})}return a(t,e,n)}:a:function(t,n,s){if(r(t),n=i(n),r(s),e)try{return a(t,n,s)}catch(t){}if("get"in s||"set"in s)throw new o("Accessors not supported");return"value"in s&&(t[n]=s.value),t},ye}function be(){if(ve)return pe;ve=1;var t=v(),e=we(),n=at();return pe=t?function(t,r,i){return e.f(t,r,n(1,i))}:function(t,e,n){return t[e]=n,t}}var xe,Se,Oe,Pe,Ee,ke,Te,Ce,Ae,je,Re,_e,Le,De,Ie,Be={exports:{}};function He(){if(Pe)return Oe;Pe=1;var t=st(),e=ft(),n=Zt(),r=t(Function.toString);return e(n.inspectSource)||(n.inspectSource=function(t){return r(t)}),Oe=n.inspectSource}function Ne(){if(Ce)return Te;Ce=1;var t=Qt(),e=ne(),n=t("keys");return Te=function(t){return n[t]||(n[t]=e(t))}}function We(){return je?Ae:(je=1,Ae={})}function Ue(){if(_e)return Re;_e=1;var t,e,n,r=function(){if(ke)return Ee;ke=1;var t=i(),e=ft(),n=t.WeakMap;return Ee=e(n)&&/native code/.test(String(n))}(),o=i(),a=ht(),s=be(),u=ee(),c=Zt(),l=Ne(),d=We(),f="Object already initialized",h=o.TypeError,p=o.WeakMap;if(r||c.state){var v=c.state||(c.state=new p);v.get=v.get,v.has=v.has,v.set=v.set,t=function(t,e){if(v.has(t))throw new h(f);return e.facade=t,v.set(t,e),e},e=function(t){return v.get(t)||{}},n=function(t){return v.has(t)}}else{var y=l("state");d[y]=!0,t=function(t,e){if(u(t,y))throw new h(f);return e.facade=t,s(t,y,e),e},e=function(t){return u(t,y)?t[y]:{}},n=function(t){return u(t,y)}}return Re={set:t,get:e,has:n,enforce:function(r){return n(r)?e(r):t(r,{})},getterFor:function(t){return function(n){var r;if(!a(n)||(r=e(n)).type!==t)throw new h("Incompatible receiver, "+t+" required");return r}}}}function Fe(){if(Le)return Be.exports;Le=1;var t=st(),e=p(),n=ft(),r=ee(),i=v(),o=function(){if(Se)return xe;Se=1;var t=v(),e=ee(),n=Function.prototype,r=t&&Object.getOwnPropertyDescriptor,i=e(n,"name"),o=i&&"something"===function(){}.name,a=i&&(!t||t&&r(n,"name").configurable);return xe={EXISTS:i,PROPER:o,CONFIGURABLE:a}}().CONFIGURABLE,a=He(),s=Ue(),u=s.enforce,c=s.get,l=String,d=Object.defineProperty,f=t("".slice),h=t("".replace),y=t([].join),m=i&&!e((function(){return 8!==d((function(){}),"length",{value:8}).length})),g=String(String).split("String"),w=Be.exports=function(t,e,n){"Symbol("===f(l(e),0,7)&&(e="["+h(l(e),/^Symbol\(([^)]*)\).*$/,"$1")+"]"),n&&n.getter&&(e="get "+e),n&&n.setter&&(e="set "+e),(!r(t,"name")||o&&t.name!==e)&&(i?d(t,"name",{value:e,configurable:!0}):t.name=e),m&&n&&r(n,"arity")&&t.length!==n.arity&&d(t,"length",{value:n.arity});try{n&&r(n,"constructor")&&n.constructor?i&&d(t,"prototype",{writable:!1}):t.prototype&&(t.prototype=void 0)}catch(t){}var a=u(t);return r(a,"source")||(a.source=y(g,"string"==typeof e?e:"")),t};return Function.prototype.toString=w((function(){return n(this)&&c(this).source||a(this)}),"toString"),Be.exports}function Me(){if(Ie)return De;Ie=1;var t=ft(),e=we(),n=Fe(),r=Jt();return De=function(i,o,a,s){s||(s={});var u=s.enumerable,c=void 0!==s.name?s.name:o;if(t(a)&&n(a,c,s),s.global)u?i[o]=a:r(o,a);else{try{s.unsafe?i[o]&&(u=!0):delete i[o]}catch(t){}u?i[o]=a:e.f(i,o,{value:a,enumerable:!1,configurable:!s.nonConfigurable,writable:!s.nonWritable})}return i}}var ze,Ge,qe,Ve,Xe,Ye,$e,Ke,Je,Ze,Qe,tn,en,nn,rn,on,an,sn={};function un(){if(Ve)return qe;Ve=1;var t=function(){if(Ge)return ze;Ge=1;var t=Math.ceil,e=Math.floor;return ze=Math.trunc||function(n){var r=+n;return(r>0?e:t)(r)}}();return qe=function(e){var n=+e;return n!=n||0===n?0:t(n)}}function cn(){if(Ye)return Xe;Ye=1;var t=un(),e=Math.max,n=Math.min;return Xe=function(r,i){var o=t(r);return o<0?e(o+i,0):n(o,i)}}function ln(){if(Ke)return $e;Ke=1;var t=un(),e=Math.min;return $e=function(n){var r=t(n);return r>0?e(r,9007199254740991):0}}function dn(){if(Ze)return Je;Ze=1;var t=ln();return Je=function(e){return t(e.length)}}function fn(){if(tn)return Qe;tn=1;var t=dt(),e=cn(),n=dn(),r=function(r){return function(i,o,a){var s=t(i),u=n(s);if(0===u)return!r&&-1;var c,l=e(a,u);if(r&&o!=o){for(;u>l;)if((c=s[l++])!=c)return!0}else for(;u>l;l++)if((r||l in s)&&s[l]===o)return r||l||0;return!r&&-1}};return Qe={includes:r(!0),indexOf:r(!1)}}function hn(){if(nn)return en;nn=1;var t=st(),e=ee(),n=dt(),r=fn().indexOf,i=We(),o=t([].push);return en=function(t,a){var s,u=n(t),c=0,l=[];for(s in u)!e(i,s)&&e(u,s)&&o(l,s);for(;a.length>c;)e(u,s=a[c++])&&(~r(l,s)||o(l,s));return l}}function pn(){return on?rn:(on=1,rn=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"])}var vn,yn,mn,gn,wn,bn,xn,Sn,On,Pn,En,kn,Tn,Cn,An,jn,Rn,_n,Ln,Dn,In,Bn,Hn,Nn,Wn,Un,Fn,Mn,zn,Gn,qn,Vn,Xn,Yn,$n,Kn,Jn,Zn,Qn={};function tr(){if(mn)return yn;mn=1;var t=pt(),e=st(),n=function(){if(an)return sn;an=1;var t=hn(),e=pn().concat("length","prototype");return sn.f=Object.getOwnPropertyNames||function(n){return t(n,e)},sn}(),r=(vn||(vn=1,Qn.f=Object.getOwnPropertySymbols),Qn),i=ge(),o=e([].concat);return yn=t("Reflect","ownKeys")||function(t){var e=n.f(i(t)),a=r.f;return a?o(e,a(t)):e}}function er(){if(wn)return gn;wn=1;var t=ee(),e=tr(),n=ue(),r=we();return gn=function(i,o,a){for(var s=e(o),u=r.f,c=n.f,l=0;l<s.length;l++){var d=s[l];t(i,d)||a&&t(a,d)||u(i,d,c(o,d))}}}function nr(){if(xn)return bn;xn=1;var t=p(),e=ft(),n=/#|\.prototype\./,r=function(n,r){var u=o[i(n)];return u===s||u!==a&&(e(r)?t(r):!!r)},i=r.normalize=function(t){return String(t).replace(n,".").toLowerCase()},o=r.data={},a=r.NATIVE="N",s=r.POLYFILL="P";return bn=r}function rr(){if(On)return Sn;On=1;var t=i(),e=ue().f,n=be(),r=Me(),o=Jt(),a=er(),s=nr();return Sn=function(i,u){var c,l,d,f,h,p=i.target,v=i.global,y=i.stat;if(c=v?t:y?t[p]||o(p,{}):t[p]&&t[p].prototype)for(l in u){if(f=u[l],d=i.dontCallGetSet?(h=e(c,l))&&h.value:c[l],!s(v?l:p+(y?".":"#")+l,i.forced)&&void 0!==d){if(typeof f==typeof d)continue;a(f,d)}(i.sham||d&&d.sham)&&n(f,"sham",!0),r(c,l,f,i)}}}function ir(){if(Tn)return kn;Tn=1;var t=function(){if(En)return Pn;En=1;var t=ut(),e=st();return Pn=function(n){if("Function"===t(n))return e(n)}}(),e=St(),n=y(),r=t(t.bind);return kn=function(t,i){return e(t),void 0===i?t:n?r(t,i):function(){return t.apply(i,arguments)}},kn}function or(){if(An)return Cn;An=1;var t=m(),e=ge(),n=Ot();return Cn=function(r,i,o){var a,s;e(r);try{if(!(a=n(r,"return"))){if("throw"===i)throw o;return o}a=t(a,r)}catch(t){s=!0,a=t}if("throw"===i)throw o;if(s)throw a;return e(a),o}}function ar(){if(Rn)return jn;Rn=1;var t=ge(),e=or();return jn=function(n,r,i,o){try{return o?r(t(i)[0],i[1]):r(i)}catch(t){e(n,"throw",t)}}}function sr(){return Ln?_n:(Ln=1,_n={})}function ur(){if(In)return Dn;In=1;var t=re(),e=sr(),n=t("iterator"),r=Array.prototype;return Dn=function(t){return void 0!==t&&(e.Array===t||r[n]===t)}}function cr(){if(Wn)return Nn;Wn=1;var t=function(){if(Hn)return Bn;Hn=1;var t={};return t[re()("toStringTag")]="z",Bn="[object z]"===String(t)}(),e=ft(),n=ut(),r=re()("toStringTag"),i=Object,o="Arguments"===n(function(){return arguments}());return Nn=t?n:function(t){var a,s,u;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(s=function(t,e){try{return t[e]}catch(t){}}(a=i(t),r))?s:o?n(a):"Object"===(u=n(a))&&e(a.callee)?"Arguments":u}}function lr(){if(Fn)return Un;Fn=1;var t=st(),e=p(),n=ft(),r=cr(),i=pt(),o=He(),a=function(){},s=i("Reflect","construct"),u=/^\s*(?:class|function)\b/,c=t(u.exec),l=!u.test(a),d=function(t){if(!n(t))return!1;try{return s(a,[],t),!0}catch(t){return!1}},f=function(t){if(!n(t))return!1;switch(r(t)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return l||!!c(u,o(t))}catch(t){return!0}};return f.sham=!0,Un=!s||e((function(){var t;return d(d.call)||!d(Object)||!d((function(){t=!0}))||t}))?f:d}function dr(){if(zn)return Mn;zn=1;var t=v(),e=we(),n=at();return Mn=function(r,i,o){t?e.f(r,i,n(0,o)):r[i]=o}}function fr(){if(qn)return Gn;qn=1;var t=cr(),e=Ot(),n=ct(),r=sr(),i=re()("iterator");return Gn=function(o){if(!n(o))return e(o,i)||e(o,"@@iterator")||r[t(o)]}}function hr(){if(Xn)return Vn;Xn=1;var t=m(),e=St(),n=ge(),r=xt(),i=fr(),o=TypeError;return Vn=function(a,s){var u=arguments.length<2?i(a):s;if(e(u))return n(t(u,a));throw new o(r(a)+" is not iterable")},Vn}function pr(){if(Jn)return Kn;Jn=1;var t=re()("iterator"),e=!1;try{var n=0,r={next:function(){return{done:!!n++}},return:function(){e=!0}};r[t]=function(){return this},Array.from(r,(function(){throw 2}))}catch(t){}return Kn=function(n,r){try{if(!r&&!e)return!1}catch(t){return!1}var i=!1;try{var o={};o[t]=function(){return{next:function(){return{done:i=!0}}}},n(o)}catch(t){}return i}}!function(){if(Zn)return r;Zn=1;var t=rr(),e=function(){if($n)return Yn;$n=1;var t=ir(),e=m(),n=te(),r=ar(),i=ur(),o=lr(),a=dn(),s=dr(),u=hr(),c=fr(),l=Array;return Yn=function(d){var f=n(d),h=o(this),p=arguments.length,v=p>1?arguments[1]:void 0,y=void 0!==v;y&&(v=t(v,p>2?arguments[2]:void 0));var m,g,w,b,x,S,O=c(f),P=0;if(!O||this===l&&i(O))for(m=a(f),g=h?new this(m):l(m);m>P;P++)S=y?v(f[P],P):f[P],s(g,P,S);else for(g=h?new this:[],x=(b=u(f,O)).next;!(w=e(x,b)).done;P++)S=y?r(b,v,[w.value,P],!0):w.value,s(g,P,S);return g.length=P,g},Yn}();t({target:"Array",stat:!0,forced:!pr()((function(t){Array.from(t)}))},{from:e})}();var vr,yr,mr,gr,wr,br,xr,Sr,Or,Pr,Er,kr,Tr,Cr,Ar,jr,Rr,_r,Lr,Dr,Ir,Br,Hr,Nr,Wr,Ur,Fr,Mr,zr,Gr,qr,Vr,Xr,Yr,$r,Kr,Jr,Zr,Qr,ti,ei,ni,ri,ii,oi,ai,si,ui,ci,li,di,fi,hi,pi,vi={};function yi(){if(yr)return vr;yr=1;var t=i(),e=yt(),n=ut(),r=function(t){return e.slice(0,t.length)===t};return vr=r("Bun/")?"BUN":r("Cloudflare-Workers")?"CLOUDFLARE":r("Deno/")?"DENO":r("Node.js/")?"NODE":t.Bun&&"string"==typeof Bun.version?"BUN":t.Deno&&"object"==typeof Deno.version?"DENO":"process"===n(t.process)?"NODE":t.window&&t.document?"BROWSER":"REST"}function mi(){if(gr)return mr;gr=1;var t=yi();return mr="NODE"===t}function gi(){if(Sr)return xr;Sr=1;var t=ht();return xr=function(e){return t(e)||null===e}}function wi(){if(Pr)return Or;Pr=1;var t=gi(),e=String,n=TypeError;return Or=function(r){if(t(r))return r;throw new n("Can't set "+e(r)+" as a prototype")}}function bi(){if(kr)return Er;kr=1;var t=function(){if(br)return wr;br=1;var t=st(),e=St();return wr=function(n,r,i){try{return t(e(Object.getOwnPropertyDescriptor(n,r)[i]))}catch(t){}}}(),e=ht(),n=lt(),r=wi();return Er=Object.setPrototypeOf||("__proto__"in{}?function(){var i,o=!1,a={};try{(i=t(Object.prototype,"__proto__","set"))(a,[]),o=a instanceof Array}catch(t){}return function(t,a){return n(t),r(a),e(t)?(o?i(t,a):t.__proto__=a,t):t}}():void 0)}function xi(){if(Cr)return Tr;Cr=1;var t=we().f,e=ee(),n=re()("toStringTag");return Tr=function(r,i,o){r&&!o&&(r=r.prototype),r&&!e(r,n)&&t(r,n,{configurable:!0,value:i})}}function Si(){if(jr)return Ar;jr=1;var t=Fe(),e=we();return Ar=function(n,r,i){return i.get&&t(i.get,r,{getter:!0}),i.set&&t(i.set,r,{setter:!0}),e.f(n,r,i)}}function Oi(){if(_r)return Rr;_r=1;var t=pt(),e=Si(),n=re(),r=v(),i=n("species");return Rr=function(n){var o=t(n);r&&o&&!o[i]&&e(o,i,{configurable:!0,get:function(){return this}})}}function Pi(){if(Dr)return Lr;Dr=1;var t=vt(),e=TypeError;return Lr=function(n,r){if(t(r,n))return n;throw new e("Incorrect invocation")}}function Ei(){if(Br)return Ir;Br=1;var t=lr(),e=xt(),n=TypeError;return Ir=function(r){if(t(r))return r;throw new n(e(r)+" is not a constructor")}}function ki(){if(Nr)return Hr;Nr=1;var t=ge(),e=Ei(),n=ct(),r=re()("species");return Hr=function(i,o){var a,s=t(i).constructor;return void 0===s||n(a=t(s)[r])?o:e(a)}}function Ti(){if(Ur)return Wr;Ur=1;var t=y(),e=Function.prototype,n=e.apply,r=e.call;return Wr="object"==typeof Reflect&&Reflect.apply||(t?r.bind(n):function(){return r.apply(n,arguments)}),Wr}function Ci(){if(Mr)return Fr;Mr=1;var t=pt();return Fr=t("document","documentElement")}function Ai(){if(Gr)return zr;Gr=1;var t=st();return zr=t([].slice)}function ji(){if(Vr)return qr;Vr=1;var t=TypeError;return qr=function(e,n){if(e<n)throw new t("Not enough arguments");return e}}function Ri(){if(Yr)return Xr;Yr=1;var t=yt();return Xr=/(?:ipad|iphone|ipod).*applewebkit/i.test(t)}function _i(){if(Kr)return $r;Kr=1;var t,e,n,r,o=i(),a=Ti(),s=ir(),u=ft(),c=ee(),l=p(),d=Ci(),f=Ai(),h=ae(),v=ji(),y=Ri(),m=mi(),g=o.setImmediate,w=o.clearImmediate,b=o.process,x=o.Dispatch,S=o.Function,O=o.MessageChannel,P=o.String,E=0,k={},T="onreadystatechange";l((function(){t=o.location}));var C=function(t){if(c(k,t)){var e=k[t];delete k[t],e()}},A=function(t){return function(){C(t)}},j=function(t){C(t.data)},R=function(e){o.postMessage(P(e),t.protocol+"//"+t.host)};return g&&w||(g=function(t){v(arguments.length,1);var n=u(t)?t:S(t),r=f(arguments,1);return k[++E]=function(){a(n,void 0,r)},e(E),E},w=function(t){delete k[t]},m?e=function(t){b.nextTick(A(t))}:x&&x.now?e=function(t){x.now(A(t))}:O&&!y?(r=(n=new O).port2,n.port1.onmessage=j,e=s(r.postMessage,r)):o.addEventListener&&u(o.postMessage)&&!o.importScripts&&t&&"file:"!==t.protocol&&!l(R)?(e=R,o.addEventListener("message",j,!1)):e=T in h("script")?function(t){d.appendChild(h("script"))[T]=function(){d.removeChild(this),C(t)}}:function(t){setTimeout(A(t),0)}),$r={set:g,clear:w}}function Li(){if(Zr)return Jr;Zr=1;var t=i(),e=v(),n=Object.getOwnPropertyDescriptor;return Jr=function(r){if(!e)return t[r];var i=n(t,r);return i&&i.value}}function Di(){if(ti)return Qr;ti=1;var t=function(){this.head=null,this.tail=null};return t.prototype={add:function(t){var e={item:t,next:null},n=this.tail;n?n.next=e:this.head=e,this.tail=e},get:function(){var t=this.head;if(t)return null===(this.head=t.next)&&(this.tail=null),t.item}},Qr=t}function Ii(){if(ai)return oi;ai=1;var t,e,n,r,o,a=i(),s=Li(),u=ir(),c=_i().set,l=Di(),d=Ri(),f=function(){if(ni)return ei;ni=1;var t=yt();return ei=/ipad|iphone|ipod/i.test(t)&&"undefined"!=typeof Pebble}(),h=function(){if(ii)return ri;ii=1;var t=yt();return ri=/web0s(?!.*chrome)/i.test(t)}(),p=mi(),v=a.MutationObserver||a.WebKitMutationObserver,y=a.document,m=a.process,g=a.Promise,w=s("queueMicrotask");if(!w){var b=new l,x=function(){var e,n;for(p&&(e=m.domain)&&e.exit();n=b.get();)try{n()}catch(e){throw b.head&&t(),e}e&&e.enter()};d||p||h||!v||!y?!f&&g&&g.resolve?((r=g.resolve(void 0)).constructor=g,o=u(r.then,r),t=function(){o(x)}):p?t=function(){m.nextTick(x)}:(c=u(c,a),t=function(){c(x)}):(e=!0,n=y.createTextNode(""),new v(x).observe(n,{characterData:!0}),t=function(){n.data=e=!e}),w=function(e){b.head||t(),b.add(e)}}return oi=w}function Bi(){return ui?si:(ui=1,si=function(t,e){})}function Hi(){return li?ci:(li=1,ci=function(t){try{return{error:!1,value:t()}}catch(t){return{error:!0,value:t}}})}function Ni(){if(fi)return di;fi=1;var t=i();return di=t.Promise}function Wi(){if(pi)return hi;pi=1;var t=i(),e=Ni(),n=ft(),r=nr(),o=He(),a=re(),s=yi(),u=Kt(),c=mt(),l=e&&e.prototype,d=a("species"),f=!1,h=n(t.PromiseRejectionEvent),p=r("Promise",(function(){var t=o(e),n=t!==String(e);if(!n&&66===c)return!0;if(u&&(!l.catch||!l.finally))return!0;if(!c||c<51||!/native code/.test(t)){var r=new e((function(t){t(1)})),i=function(t){t((function(){}),(function(){}))};if((r.constructor={})[d]=i,!(f=r.then((function(){}))instanceof i))return!0}return!(n||"BROWSER"!==s&&"DENO"!==s||h)}));return hi={CONSTRUCTOR:p,REJECTION_EVENT:h,SUBCLASSING:f}}var Ui,Fi,Mi={};function zi(){if(Ui)return Mi;Ui=1;var t=St(),e=TypeError,n=function(n){var r,i;this.promise=new n((function(t,n){if(void 0!==r||void 0!==i)throw new e("Bad Promise constructor");r=t,i=n})),this.resolve=t(r),this.reject=t(i)};return Mi.f=function(t){return new n(t)},Mi}var Gi,qi,Vi,Xi,Yi,$i={};function Ki(){if(qi)return Gi;qi=1;var t=ir(),e=m(),n=ge(),r=xt(),i=ur(),o=dn(),a=vt(),s=hr(),u=fr(),c=or(),l=TypeError,d=function(t,e){this.stopped=t,this.result=e},f=d.prototype;return Gi=function(h,p,v){var y,m,g,w,b,x,S,O=v&&v.that,P=!(!v||!v.AS_ENTRIES),E=!(!v||!v.IS_RECORD),k=!(!v||!v.IS_ITERATOR),T=!(!v||!v.INTERRUPTED),C=t(p,O),A=function(t){return y&&c(y,"normal",t),new d(!0,t)},j=function(t){return P?(n(t),T?C(t[0],t[1],A):C(t[0],t[1])):T?C(t,A):C(t)};if(E)y=h.iterator;else if(k)y=h;else{if(!(m=u(h)))throw new l(r(h)+" is not iterable");if(i(m)){for(g=0,w=o(h);w>g;g++)if((b=j(h[g]))&&a(f,b))return b;return new d(!1)}y=s(h,m)}for(x=E?h.next:y.next;!(S=e(x,y)).done;){try{b=j(S.value)}catch(t){c(y,"throw",t)}if("object"==typeof b&&b&&a(f,b))return b}return new d(!1)}}function Ji(){if(Xi)return Vi;Xi=1;var t=Ni(),e=pr(),n=Wi().CONSTRUCTOR;return Vi=n||!e((function(e){t.all(e).then(void 0,(function(){}))}))}var Zi,Qi={};var to,eo={};var no,ro={};var io,oo,ao,so,uo={};function co(){if(oo)return io;oo=1;var t=ge(),e=ht(),n=zi();return io=function(r,i){if(t(r),e(i)&&i.constructor===r)return i;var o=n.f(r);return(0,o.resolve)(i),o.promise}}so||(so=1,function(){if(Fi)return vi;Fi=1;var t,e,n,r=rr(),o=Kt(),a=mi(),s=i(),u=m(),c=Me(),l=bi(),d=xi(),f=Oi(),h=St(),p=ft(),v=ht(),y=Pi(),g=ki(),w=_i().set,b=Ii(),x=Bi(),S=Hi(),O=Di(),P=Ue(),E=Ni(),k=Wi(),T=zi(),C="Promise",A=k.CONSTRUCTOR,j=k.REJECTION_EVENT,R=k.SUBCLASSING,_=P.getterFor(C),L=P.set,D=E&&E.prototype,I=E,B=D,H=s.TypeError,N=s.document,W=s.process,U=T.f,F=U,M=!!(N&&N.createEvent&&s.dispatchEvent),z="unhandledrejection",G=function(t){var e;return!(!v(t)||!p(e=t.then))&&e},q=function(t,e){var n,r,i,o=e.value,a=1===e.state,s=a?t.ok:t.fail,c=t.resolve,l=t.reject,d=t.domain;try{s?(a||(2===e.rejection&&K(e),e.rejection=1),!0===s?n=o:(d&&d.enter(),n=s(o),d&&(d.exit(),i=!0)),n===t.promise?l(new H("Promise-chain cycle")):(r=G(n))?u(r,n,c,l):c(n)):l(o)}catch(t){d&&!i&&d.exit(),l(t)}},V=function(t,e){t.notified||(t.notified=!0,b((function(){for(var n,r=t.reactions;n=r.get();)q(n,t);t.notified=!1,e&&!t.rejection&&Y(t)})))},X=function(t,e,n){var r,i;M?((r=N.createEvent("Event")).promise=e,r.reason=n,r.initEvent(t,!1,!0),s.dispatchEvent(r)):r={promise:e,reason:n},!j&&(i=s["on"+t])?i(r):t===z&&x("Unhandled promise rejection",n)},Y=function(t){u(w,s,(function(){var e,n=t.facade,r=t.value;if($(t)&&(e=S((function(){a?W.emit("unhandledRejection",r,n):X(z,n,r)})),t.rejection=a||$(t)?2:1,e.error))throw e.value}))},$=function(t){return 1!==t.rejection&&!t.parent},K=function(t){u(w,s,(function(){var e=t.facade;a?W.emit("rejectionHandled",e):X("rejectionhandled",e,t.value)}))},J=function(t,e,n){return function(r){t(e,r,n)}},Z=function(t,e,n){t.done||(t.done=!0,n&&(t=n),t.value=e,t.state=2,V(t,!0))},Q=function(t,e,n){if(!t.done){t.done=!0,n&&(t=n);try{if(t.facade===e)throw new H("Promise can't be resolved itself");var r=G(e);r?b((function(){var n={done:!1};try{u(r,e,J(Q,n,t),J(Z,n,t))}catch(e){Z(n,e,t)}})):(t.value=e,t.state=1,V(t,!1))}catch(e){Z({done:!1},e,t)}}};if(A&&(B=(I=function(e){y(this,B),h(e),u(t,this);var n=_(this);try{e(J(Q,n),J(Z,n))}catch(t){Z(n,t)}}).prototype,(t=function(t){L(this,{type:C,done:!1,notified:!1,parent:!1,reactions:new O,rejection:!1,state:0,value:null})}).prototype=c(B,"then",(function(t,e){var n=_(this),r=U(g(this,I));return n.parent=!0,r.ok=!p(t)||t,r.fail=p(e)&&e,r.domain=a?W.domain:void 0,0===n.state?n.reactions.add(r):b((function(){q(r,n)})),r.promise})),e=function(){var e=new t,n=_(e);this.promise=e,this.resolve=J(Q,n),this.reject=J(Z,n)},T.f=U=function(t){return t===I||void 0===t?new e(t):F(t)},!o&&p(E)&&D!==Object.prototype)){n=D.then,R||c(D,"then",(function(t,e){var r=this;return new I((function(t,e){u(n,r,t,e)})).then(t,e)}),{unsafe:!0});try{delete D.constructor}catch(t){}l&&l(D,B)}r({global:!0,constructor:!0,wrap:!0,forced:A},{Promise:I}),d(I,C,!1,!0),f(C)}(),function(){if(Yi)return $i;Yi=1;var t=rr(),e=m(),n=St(),r=zi(),i=Hi(),o=Ki();t({target:"Promise",stat:!0,forced:Ji()},{all:function(t){var a=this,s=r.f(a),u=s.resolve,c=s.reject,l=i((function(){var r=n(a.resolve),i=[],s=0,l=1;o(t,(function(t){var n=s++,o=!1;l++,e(r,a,t).then((function(t){o||(o=!0,i[n]=t,--l||u(i))}),c)})),--l||u(i)}));return l.error&&c(l.value),s.promise}})}(),function(){if(Zi)return Qi;Zi=1;var t=rr(),e=Kt(),n=Wi().CONSTRUCTOR,r=Ni(),i=pt(),o=ft(),a=Me(),s=r&&r.prototype;if(t({target:"Promise",proto:!0,forced:n,real:!0},{catch:function(t){return this.then(void 0,t)}}),!e&&o(r)){var u=i("Promise").prototype.catch;s.catch!==u&&a(s,"catch",u,{unsafe:!0})}}(),function(){if(to)return eo;to=1;var t=rr(),e=m(),n=St(),r=zi(),i=Hi(),o=Ki();t({target:"Promise",stat:!0,forced:Ji()},{race:function(t){var a=this,s=r.f(a),u=s.reject,c=i((function(){var r=n(a.resolve);o(t,(function(t){e(r,a,t).then(s.resolve,u)}))}));return c.error&&u(c.value),s.promise}})}(),function(){if(no)return ro;no=1;var t=rr(),e=zi();t({target:"Promise",stat:!0,forced:Wi().CONSTRUCTOR},{reject:function(t){var n=e.f(this);return(0,n.reject)(t),n.promise}})}(),function(){if(ao)return uo;ao=1;var t=rr(),e=pt(),n=Kt(),r=Ni(),i=Wi().CONSTRUCTOR,o=co(),a=e("Promise"),s=n&&!i;t({target:"Promise",stat:!0,forced:n||i},{resolve:function(t){return o(s&&this===a?r:this,t)}})}());var lo,fo,ho,po,vo,yo,mo,go,wo={},bo={};function xo(){if(fo)return lo;fo=1;var t=hn(),e=pn();return lo=Object.keys||function(n){return t(n,e)}}function So(){if(vo)return po;vo=1;var t,e=ge(),n=function(){if(ho)return bo;ho=1;var t=v(),e=me(),n=we(),r=ge(),i=dt(),o=xo();return bo.f=t&&!e?Object.defineProperties:function(t,e){r(t);for(var a,s=i(e),u=o(e),c=u.length,l=0;c>l;)n.f(t,a=u[l++],s[a]);return t},bo}(),r=pn(),i=We(),o=Ci(),a=ae(),s=Ne(),u="prototype",c="script",l=s("IE_PROTO"),d=function(){},f=function(t){return"<"+c+">"+t+"</"+c+">"},h=function(t){t.write(f("")),t.close();var e=t.parentWindow.Object;return t=null,e},p=function(){try{t=new ActiveXObject("htmlfile")}catch(t){}var e,n,i;p="undefined"!=typeof document?document.domain&&t?h(t):(n=a("iframe"),i="java"+c+":",n.style.display="none",o.appendChild(n),n.src=String(i),(e=n.contentWindow.document).open(),e.write(f("document.F=Object")),e.close(),e.F):h(t);for(var s=r.length;s--;)delete p[u][r[s]];return p()};return i[l]=!0,po=Object.create||function(t,r){var i;return null!==t?(d[u]=e(t),i=new d,d[u]=null,i[l]=t):i=p(),void 0===r?i:n.f(i,r)}}function Oo(){if(mo)return yo;mo=1;var t=re(),e=So(),n=we().f,r=t("unscopables"),i=Array.prototype;return void 0===i[r]&&n(i,r,{configurable:!0,value:e(null)}),yo=function(t){i[r][t]=!0}}!function(){if(go)return wo;go=1;var t=rr(),e=fn().includes,n=p(),r=Oo();t({target:"Array",proto:!0,forced:n((function(){return!Array(1).includes()}))},{includes:function(t){return e(this,t,arguments.length>1?arguments[1]:void 0)}}),r("includes")}();var Po,Eo,ko,To={};!function(){if(ko)return To;ko=1;var t=rr(),e=function(){if(Eo)return Po;Eo=1;var t=te(),e=cn(),n=dn();return Po=function(r){for(var i=t(this),o=n(i),a=arguments.length,s=e(a>1?arguments[1]:void 0,o),u=a>2?arguments[2]:void 0,c=void 0===u?o:e(u,o);c>s;)i[s++]=r;return i},Po}(),n=Oo();t({target:"Array",proto:!0},{fill:e}),n("fill")}();var Co="undefined"!=typeof globalThis&&globalThis||"undefined"!=typeof self&&self||"undefined"!=typeof global&&global||{},Ao="URLSearchParams"in Co,jo="Symbol"in Co&&"iterator"in Symbol,Ro="FileReader"in Co&&"Blob"in Co&&function(){try{return new Blob,!0}catch(t){return!1}}(),_o="FormData"in Co,Lo="ArrayBuffer"in Co;if(Lo)var Do=["[object Int8Array]","[object Uint8Array]","[object Uint8ClampedArray]","[object Int16Array]","[object Uint16Array]","[object Int32Array]","[object Uint32Array]","[object Float32Array]","[object Float64Array]"],Io=ArrayBuffer.isView||function(t){return t&&Do.indexOf(Object.prototype.toString.call(t))>-1};function Bo(t){if("string"!=typeof t&&(t=String(t)),/[^a-z0-9\-#$%&'*+.^_`|~!]/i.test(t)||""===t)throw new TypeError('Invalid character in header field name: "'+t+'"');return t.toLowerCase()}function Ho(t){return"string"!=typeof t&&(t=String(t)),t}function No(t){var e={next:function(){var e=t.shift();return{done:void 0===e,value:e}}};return jo&&(e[Symbol.iterator]=function(){return e}),e}function Wo(t){this.map={},t instanceof Wo?t.forEach((function(t,e){this.append(e,t)}),this):Array.isArray(t)?t.forEach((function(t){if(2!=t.length)throw new TypeError("Headers constructor: expected name/value pair to be length 2, found"+t.length);this.append(t[0],t[1])}),this):t&&Object.getOwnPropertyNames(t).forEach((function(e){this.append(e,t[e])}),this)}function Uo(t){if(!t._noBody)return t.bodyUsed?Promise.reject(new TypeError("Already read")):void(t.bodyUsed=!0)}function Fo(t){return new Promise((function(e,n){t.onload=function(){e(t.result)},t.onerror=function(){n(t.error)}}))}function Mo(t){var e=new FileReader,n=Fo(e);return e.readAsArrayBuffer(t),n}function zo(t){if(t.slice)return t.slice(0);var e=new Uint8Array(t.byteLength);return e.set(new Uint8Array(t)),e.buffer}function Go(){return this.bodyUsed=!1,this._initBody=function(t){var e;this.bodyUsed=this.bodyUsed,this._bodyInit=t,t?"string"==typeof t?this._bodyText=t:Ro&&Blob.prototype.isPrototypeOf(t)?this._bodyBlob=t:_o&&FormData.prototype.isPrototypeOf(t)?this._bodyFormData=t:Ao&&URLSearchParams.prototype.isPrototypeOf(t)?this._bodyText=t.toString():Lo&&Ro&&((e=t)&&DataView.prototype.isPrototypeOf(e))?(this._bodyArrayBuffer=zo(t.buffer),this._bodyInit=new Blob([this._bodyArrayBuffer])):Lo&&(ArrayBuffer.prototype.isPrototypeOf(t)||Io(t))?this._bodyArrayBuffer=zo(t):this._bodyText=t=Object.prototype.toString.call(t):(this._noBody=!0,this._bodyText=""),this.headers.get("content-type")||("string"==typeof t?this.headers.set("content-type","text/plain;charset=UTF-8"):this._bodyBlob&&this._bodyBlob.type?this.headers.set("content-type",this._bodyBlob.type):Ao&&URLSearchParams.prototype.isPrototypeOf(t)&&this.headers.set("content-type","application/x-www-form-urlencoded;charset=UTF-8"))},Ro&&(this.blob=function(){var t=Uo(this);if(t)return t;if(this._bodyBlob)return Promise.resolve(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(new Blob([this._bodyArrayBuffer]));if(this._bodyFormData)throw new Error("could not read FormData body as blob");return Promise.resolve(new Blob([this._bodyText]))}),this.arrayBuffer=function(){if(this._bodyArrayBuffer){var t=Uo(this);return t||(ArrayBuffer.isView(this._bodyArrayBuffer)?Promise.resolve(this._bodyArrayBuffer.buffer.slice(this._bodyArrayBuffer.byteOffset,this._bodyArrayBuffer.byteOffset+this._bodyArrayBuffer.byteLength)):Promise.resolve(this._bodyArrayBuffer))}if(Ro)return this.blob().then(Mo);throw new Error("could not read as ArrayBuffer")},this.text=function(){var t,e,n,r,i,o=Uo(this);if(o)return o;if(this._bodyBlob)return t=this._bodyBlob,e=new FileReader,n=Fo(e),r=/charset=([A-Za-z0-9_-]+)/.exec(t.type),i=r?r[1]:"utf-8",e.readAsText(t,i),n;if(this._bodyArrayBuffer)return Promise.resolve(function(t){for(var e=new Uint8Array(t),n=new Array(e.length),r=0;r<e.length;r++)n[r]=String.fromCharCode(e[r]);return n.join("")}(this._bodyArrayBuffer));if(this._bodyFormData)throw new Error("could not read FormData body as text");return Promise.resolve(this._bodyText)},_o&&(this.formData=function(){return this.text().then(Xo)}),this.json=function(){return this.text().then(JSON.parse)},this}Wo.prototype.append=function(t,e){t=Bo(t),e=Ho(e);var n=this.map[t];this.map[t]=n?n+", "+e:e},Wo.prototype.delete=function(t){delete this.map[Bo(t)]},Wo.prototype.get=function(t){return t=Bo(t),this.has(t)?this.map[t]:null},Wo.prototype.has=function(t){return this.map.hasOwnProperty(Bo(t))},Wo.prototype.set=function(t,e){this.map[Bo(t)]=Ho(e)},Wo.prototype.forEach=function(t,e){for(var n in this.map)this.map.hasOwnProperty(n)&&t.call(e,this.map[n],n,this)},Wo.prototype.keys=function(){var t=[];return this.forEach((function(e,n){t.push(n)})),No(t)},Wo.prototype.values=function(){var t=[];return this.forEach((function(e){t.push(e)})),No(t)},Wo.prototype.entries=function(){var t=[];return this.forEach((function(e,n){t.push([n,e])})),No(t)},jo&&(Wo.prototype[Symbol.iterator]=Wo.prototype.entries);var qo=["CONNECT","DELETE","GET","HEAD","OPTIONS","PATCH","POST","PUT","TRACE"];function Vo(t,e){if(!(this instanceof Vo))throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.');var n,r,i=(e=e||{}).body;if(t instanceof Vo){if(t.bodyUsed)throw new TypeError("Already read");this.url=t.url,this.credentials=t.credentials,e.headers||(this.headers=new Wo(t.headers)),this.method=t.method,this.mode=t.mode,this.signal=t.signal,i||null==t._bodyInit||(i=t._bodyInit,t.bodyUsed=!0)}else this.url=String(t);if(this.credentials=e.credentials||this.credentials||"same-origin",!e.headers&&this.headers||(this.headers=new Wo(e.headers)),this.method=(n=e.method||this.method||"GET",r=n.toUpperCase(),qo.indexOf(r)>-1?r:n),this.mode=e.mode||this.mode||null,this.signal=e.signal||this.signal||function(){if("AbortController"in Co)return(new AbortController).signal}(),this.referrer=null,("GET"===this.method||"HEAD"===this.method)&&i)throw new TypeError("Body not allowed for GET or HEAD requests");if(this._initBody(i),!("GET"!==this.method&&"HEAD"!==this.method||"no-store"!==e.cache&&"no-cache"!==e.cache)){var o=/([?&])_=[^&]*/;if(o.test(this.url))this.url=this.url.replace(o,"$1_="+(new Date).getTime());else{this.url+=(/\?/.test(this.url)?"&":"?")+"_="+(new Date).getTime()}}}function Xo(t){var e=new FormData;return t.trim().split("&").forEach((function(t){if(t){var n=t.split("="),r=n.shift().replace(/\+/g," "),i=n.join("=").replace(/\+/g," ");e.append(decodeURIComponent(r),decodeURIComponent(i))}})),e}function Yo(t,e){if(!(this instanceof Yo))throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.');if(e||(e={}),this.type="default",this.status=void 0===e.status?200:e.status,this.status<200||this.status>599)throw new RangeError("Failed to construct 'Response': The status provided (0) is outside the range [200, 599].");this.ok=this.status>=200&&this.status<300,this.statusText=void 0===e.statusText?"":""+e.statusText,this.headers=new Wo(e.headers),this.url=e.url||"",this._initBody(t)}Vo.prototype.clone=function(){return new Vo(this,{body:this._bodyInit})},Go.call(Vo.prototype),Go.call(Yo.prototype),Yo.prototype.clone=function(){return new Yo(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new Wo(this.headers),url:this.url})},Yo.error=function(){var t=new Yo(null,{status:200,statusText:""});return t.ok=!1,t.status=0,t.type="error",t};var $o=[301,302,303,307,308];Yo.redirect=function(t,e){if(-1===$o.indexOf(e))throw new RangeError("Invalid status code");return new Yo(null,{status:e,headers:{location:t}})};var Ko=Co.DOMException;try{new Ko}catch(t){(Ko=function(t,e){this.message=t,this.name=e;var n=Error(t);this.stack=n.stack}).prototype=Object.create(Error.prototype),Ko.prototype.constructor=Ko}function Jo(t,e){return new Promise((function(n,r){var i=new Vo(t,e);if(i.signal&&i.signal.aborted)return r(new Ko("Aborted","AbortError"));var o=new XMLHttpRequest;function a(){o.abort()}if(o.onload=function(){var t,e,r={statusText:o.statusText,headers:(t=o.getAllResponseHeaders()||"",e=new Wo,t.replace(/\r?\n[\t ]+/g," ").split("\r").map((function(t){return 0===t.indexOf("\n")?t.substr(1,t.length):t})).forEach((function(t){var n=t.split(":"),r=n.shift().trim();if(r){var i=n.join(":").trim();try{e.append(r,i)}catch(t){}}})),e)};0===i.url.indexOf("file://")&&(o.status<200||o.status>599)?r.status=200:r.status=o.status,r.url="responseURL"in o?o.responseURL:r.headers.get("X-Request-URL");var a="response"in o?o.response:o.responseText;setTimeout((function(){n(new Yo(a,r))}),0)},o.onerror=function(){setTimeout((function(){r(new TypeError("Network request failed"))}),0)},o.ontimeout=function(){setTimeout((function(){r(new TypeError("Network request timed out"))}),0)},o.onabort=function(){setTimeout((function(){r(new Ko("Aborted","AbortError"))}),0)},o.open(i.method,function(t){try{return""===t&&Co.location.href?Co.location.href:t}catch(e){return t}}(i.url),!0),"include"===i.credentials?o.withCredentials=!0:"omit"===i.credentials&&(o.withCredentials=!1),"responseType"in o&&(Ro?o.responseType="blob":Lo&&(o.responseType="arraybuffer")),e&&"object"==typeof e.headers&&!(e.headers instanceof Wo||Co.Headers&&e.headers instanceof Co.Headers)){var s=[];Object.getOwnPropertyNames(e.headers).forEach((function(t){s.push(Bo(t)),o.setRequestHeader(t,Ho(e.headers[t]))})),i.headers.forEach((function(t,e){-1===s.indexOf(e)&&o.setRequestHeader(e,t)}))}else i.headers.forEach((function(t,e){o.setRequestHeader(e,t)}));i.signal&&(i.signal.addEventListener("abort",a),o.onreadystatechange=function(){4===o.readyState&&i.signal.removeEventListener("abort",a)}),o.send(void 0===i._bodyInit?null:i._bodyInit)}))}Jo.polyfill=!0,Co.fetch||(Co.fetch=Jo,Co.Headers=Wo,Co.Request=Vo,Co.Response=Yo),"undefined"==typeof CanvasRenderingContext2D||CanvasRenderingContext2D.prototype.resetTransform||(CanvasRenderingContext2D.prototype.resetTransform=function(){this.setTransform(1,0,0,1,0,0)});!function(t,e){void 0===e&&(e={});var n=e.insertAt;if("undefined"!=typeof document){var r=document.head||document.getElementsByTagName("head")[0],i=document.createElement("style");i.type="text/css","top"===n&&r.firstChild?r.insertBefore(i,r.firstChild):r.appendChild(i),i.styleSheet?i.styleSheet.cssText=t:i.appendChild(document.createTextNode(t))}}("@keyframes watermark{0%{background-position:0 0}25%{background-position:100% 100%}50%{background-position:100% 0}75%{background-position:0 100%}to{background-position:0 0}}@keyframes watermark-horizontal{0%{background-position-x:0}to{background-position-x:100%}}@keyframes watermark-vertical{0%{background-position-y:0}to{background-position-y:100%}}");var Zo=function(t,e){return Zo=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},Zo(t,e)};var Qo=function(){return Qo=Object.assign||function(t){for(var e,n=1,r=arguments.length;n<r;n++)for(var i in e=arguments[n])Object.prototype.hasOwnProperty.call(e,i)&&(t[i]=e[i]);return t},Qo.apply(this,arguments)};function ta(t,e,n,r){return new(n||(n=Promise))((function(i,o){function a(t){try{u(r.next(t))}catch(t){o(t)}}function s(t){try{u(r.throw(t))}catch(t){o(t)}}function u(t){var e;t.done?i(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(a,s)}u((r=r.apply(t,e||[])).next())}))}function ea(t,e){var n,r,i,o={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]},a=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return a.next=s(0),a.throw=s(1),a.return=s(2),"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function s(s){return function(u){return function(s){if(n)throw new TypeError("Generator is already executing.");for(;a&&(a=0,s[0]&&(o=0)),o;)try{if(n=1,r&&(i=2&s[0]?r.return:s[0]?r.throw||((i=r.return)&&i.call(r),0):r.next)&&!(i=i.call(r,s[1])).done)return i;switch(r=0,i&&(s=[2&s[0],i.value]),s[0]){case 0:case 1:i=s;break;case 4:return o.label++,{value:s[1],done:!1};case 5:o.label++,r=s[1],s=[0];continue;case 7:s=o.ops.pop(),o.trys.pop();continue;default:if(!(i=o.trys,(i=i.length>0&&i[i.length-1])||6!==s[0]&&2!==s[0])){o=0;continue}if(3===s[0]&&(!i||s[1]>i[0]&&s[1]<i[3])){o.label=s[1];break}if(6===s[0]&&o.label<i[1]){o.label=i[1],i=s;break}if(i&&o.label<i[2]){o.label=i[2],o.ops.push(s);break}i[2]&&o.ops.pop(),o.trys.pop();continue}s=e.call(t,o)}catch(t){s=[6,t],r=0}finally{n=i=0}if(5&s[0])throw s[1];return{value:s[0]?s[1]:void 0,done:!0}}([s,u])}}}"function"==typeof SuppressedError&&SuppressedError;var na=function(t){return t.toDataURL("image/png",1)},ra=function(t){return"function"==typeof t},ia=function(t){return void 0===t},oa=function(t,e,n){void 0===e&&(e={}),void 0===n&&(n="http://www.w3.org/2000/svg");var r=document.createElementNS(n,t);for(var i in e)r.setAttribute(i,e[i]);return r},aa=function(t,e){return ta(void 0,void 0,void 0,(function(){var n,r,i,o,a,s,u,c,l;return ea(this,(function(d){switch(d.label){case 0:return n=oa("svg",{xmlns:"http://www.w3.org/2000/svg"}),(r=document.createElement("div")).setAttribute("xmlns","http://www.w3.org/1999/xhtml"),r.style.cssText="\n text-align: center;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 100%;\n height: 100%;\n font: ".concat(t.font,";\n color: ").concat(e.fontColor,";\n"),r.innerHTML="<div class='rich-text-content'>".concat(e.content,"</div>"),document.body.appendChild(r),[4,sa(r)];case 1:return d.sent(),i=null===(l=r.querySelector(".rich-text-content"))||void 0===l?void 0:l.getBoundingClientRect(),o=null==i?void 0:i.width,a=null==i?void 0:i.height,document.body.removeChild(r),s=e.richTextWidth||o||e.width,u=e.richTextHeight||a||e.height,n.setAttribute("width",s.toString()),n.setAttribute("height",u.toString()),(c=oa("foreignObject",{width:s.toString(),height:u.toString()})).appendChild(r),n.appendChild(c),[2,{element:n,width:s,height:u}]}}))}))};function sa(t){return ta(this,void 0,void 0,(function(){var e,n,r,i,o;return ea(this,(function(a){switch(a.label){case 0:e=t.querySelectorAll("img"),n=function(t){var e,n,r,i;return ea(this,(function(o){switch(o.label){case 0:if(!(e=t.getAttribute("src")))return[3,6];o.label=1;case 1:return o.trys.push([1,5,,6]),[4,fetch(e)];case 2:return[4,o.sent().blob()];case 3:return n=o.sent(),[4,new Promise((function(t,e){var r=new FileReader;r.onloadend=function(){return t(r.result)},r.onerror=e,r.readAsDataURL(n)}))];case 4:return r=o.sent(),"string"==typeof r&&t.setAttribute("src",r),[3,6];case 5:return i=o.sent(),console.error("Error converting ".concat(e," to base64:"),i),[3,6];case 6:return[2]}}))},r=0,i=Array.from(e),a.label=1;case 1:return r<i.length?(o=i[r],[5,n(o)]):[3,4];case 2:a.sent(),a.label=3;case 3:return r++,[3,1];case 4:return[2]}}))}))}var ua=function(t,e){return ia(t)?e:t},ca=function(t,e,n){void 0===e&&(e=void 0),void 0===n&&(n=void 0);var r=new Image;return r.setAttribute("crossOrigin","anonymous"),!ia(e)&&(r.width=e),!ia(n)&&(r.height=n),r.src=t,new Promise((function(t){r.onload=function(){t(r)}}))},la={width:300,height:300,rotate:45,layout:"default",auxiliaryLine:!1,translatePlacement:"middle",contentType:"text",content:"hello watermark-js-plus",textType:"fill",imageWidth:0,imageHeight:0,lineHeight:30,zIndex:2147483647,backgroundPosition:"0 0",backgroundRepeat:"repeat",fontSize:"20px",fontFamily:"sans-serif",fontStyle:"",fontVariant:"",fontColor:"#000",fontWeight:"normal",filter:"none",letterSpacing:"0px",wordSpacing:"0px",globalAlpha:.5,mode:"default",mutationObserve:!0,monitorProtection:!1,movable:!1,parent:"body",onSuccess:function(){},onBeforeDestroy:function(){},onDestroyed:function(){},onObserveError:function(){}},da=function(t){"undefined"!=typeof window&&t&&(Object.defineProperty(window,"MutationObserver",{writable:!1,configurable:!1}),Object.defineProperty(window,"requestAnimationFrame",{writable:!1,configurable:!1}))},fa=function(){function t(e,n){this.props=e,this.options=n,this.canvas=t.createCanvas(this.options.width,this.options.height),this.recommendOptions=function(t,e,n){var r=t.getContext("2d");if(null===r)throw new Error("get context error");r.font="".concat(e.fontStyle," ").concat(e.fontVariant," ").concat(e.fontWeight," ").concat(e.fontSize," ").concat(e.fontFamily),r.filter=e.filter,r.letterSpacing=e.letterSpacing,r.wordSpacing=e.wordSpacing,(null==e?void 0:e.rotate)&&(e.rotate=(360-e.rotate%360)*(Math.PI/180)),ia(n.textRowMaxWidth)&&(e.textRowMaxWidth=e.width);var i={image:{rect:{width:e.imageWidth,height:e.imageHeight},position:{x:0,y:0}},textLine:{data:[],yOffsetValue:0},advancedStyleParams:{linear:{x0:0,x1:0},radial:{x0:0,y0:0,r0:0,x1:0,y1:0,r1:0},conic:{x:0,y:0,startAngle:0},pattern:{}}};switch(e.contentType){case"text":i.textLine.data=[e.content];break;case"multi-line-text":i.textLine.data=function(t,e,n){for(var r=[],i="",o="",a=0,s=e.length;a<s;a++)"\n"!==(o=e.charAt(a))?(i+=o,t.measureText(i).width>n&&(r.push(i.substring(0,i.length-1)),i="",a--)):(r.push(i),i="");return r.push(i),r}(r,e.content,e.textRowMaxWidth)}var o=e.width/2,a=e.height/2,s="middle",u="center";switch(ia(null==n?void 0:n.translateX)||ia(null==n?void 0:n.translateY)?(i.advancedStyleParams.linear.x0=-e.width/2,i.advancedStyleParams.linear.x1=e.width/2,i.advancedStyleParams.radial.r0=0,i.advancedStyleParams.radial.r1=e.width/2):(o=null==n?void 0:n.translateX,a=null==n?void 0:n.translateY,s="top",u="left"),n.translatePlacement){case"top":o=e.width/2,a=0,s="top",i.advancedStyleParams.linear.x0=-e.width/2,i.advancedStyleParams.linear.x1=e.width/2,i.advancedStyleParams.radial.y0=i.textLine.data.length*e.lineHeight/2,i.advancedStyleParams.radial.y1=i.textLine.data.length*e.lineHeight/2,i.advancedStyleParams.conic.y=i.textLine.data.length*e.lineHeight/2;break;case"top-start":o=0,a=0,s="top",u="start",i.advancedStyleParams.linear.x0=0,i.advancedStyleParams.linear.x1=e.width,i.advancedStyleParams.radial.x0=e.width/2,i.advancedStyleParams.radial.y0=i.textLine.data.length*e.lineHeight/2,i.advancedStyleParams.radial.x1=e.width/2,i.advancedStyleParams.radial.y1=i.textLine.data.length*e.lineHeight/2,i.advancedStyleParams.conic.x=e.width/2,i.advancedStyleParams.conic.y=i.textLine.data.length*e.lineHeight/2;break;case"top-end":o=e.width,a=0,s="top",u="end",i.advancedStyleParams.linear.x0=0,i.advancedStyleParams.linear.x1=-e.width,i.advancedStyleParams.radial.x0=-e.width/2,i.advancedStyleParams.radial.y0=i.textLine.data.length*e.lineHeight/2,i.advancedStyleParams.radial.x1=-e.width/2,i.advancedStyleParams.radial.y1=i.textLine.data.length*e.lineHeight/2,i.advancedStyleParams.conic.x=-e.width/2,i.advancedStyleParams.conic.y=i.textLine.data.length*e.lineHeight/2;break;case"bottom":o=e.width/2,a=e.height,s="bottom",i.advancedStyleParams.linear.x0=-e.width/2,i.advancedStyleParams.linear.x1=e.width/2,i.advancedStyleParams.radial.y0=-i.textLine.data.length*e.lineHeight/2,i.advancedStyleParams.radial.y1=-i.textLine.data.length*e.lineHeight/2,i.advancedStyleParams.conic.x=0,i.advancedStyleParams.conic.y=-i.textLine.data.length*e.lineHeight/2;break;case"bottom-start":o=0,a=e.height,s="bottom",u="start",i.advancedStyleParams.linear.x0=0,i.advancedStyleParams.linear.x1=e.width,i.advancedStyleParams.radial.x0=e.width/2,i.advancedStyleParams.radial.y0=-i.textLine.data.length*e.lineHeight/2,i.advancedStyleParams.radial.x1=e.width/2,i.advancedStyleParams.radial.y1=-i.textLine.data.length*e.lineHeight/2,i.advancedStyleParams.conic.x=e.width/2,i.advancedStyleParams.conic.y=-i.textLine.data.length*e.lineHeight/2;break;case"bottom-end":o=e.width,a=e.height,s="bottom",u="end",i.advancedStyleParams.linear.x0=0,i.advancedStyleParams.linear.x1=-e.width,i.advancedStyleParams.radial.x0=-e.width/2,i.advancedStyleParams.radial.y0=-i.textLine.data.length*e.lineHeight/2,i.advancedStyleParams.radial.x1=-e.width/2,i.advancedStyleParams.radial.y1=-i.textLine.data.length*e.lineHeight/2,i.advancedStyleParams.conic.x=-e.width/2,i.advancedStyleParams.conic.y=-i.textLine.data.length*e.lineHeight/2;break;case"left":o=0,a=e.height/2,u="start",i.advancedStyleParams.linear.x0=0,i.advancedStyleParams.linear.x1=e.width,i.advancedStyleParams.radial.x0=e.width/2,i.advancedStyleParams.radial.x1=e.width/2,i.advancedStyleParams.conic.x=e.width/2,i.advancedStyleParams.conic.y=0;break;case"right":o=e.width,a=e.height/2,u="end",i.advancedStyleParams.linear.x0=0,i.advancedStyleParams.linear.x1=-e.width,i.advancedStyleParams.radial.x0=-e.width/2,i.advancedStyleParams.radial.x1=-e.width/2,i.advancedStyleParams.conic.x=-e.width/2,i.advancedStyleParams.conic.y=0}if(e.translateX=o,e.translateY=a,ia(null==n?void 0:n.textBaseline)&&(e.textBaseline=s),ia(null==n?void 0:n.textAlign)&&(e.textAlign=u),["text","multi-line-text"].includes(e.contentType))switch(e.textBaseline){case"middle":i.textLine.yOffsetValue=(i.textLine.data.length-1)*e.lineHeight/2;break;case"bottom":case"alphabetic":case"ideographic":i.textLine.yOffsetValue=(i.textLine.data.length-1)*e.lineHeight+(e.lineHeight-parseInt(e.fontSize))/2;break;case"top":case"hanging":i.textLine.yOffsetValue=-e.lineHeight/2+parseInt(e.fontSize)/2}return i}(this.canvas,this.options,this.props)}return t.createCanvas=function(t,e){var n,r=window.devicePixelRatio||1,i=document.createElement("canvas");return i.width=t*r,i.height=e*r,i.style.width="".concat(t,"px"),i.style.height="".concat(e,"px"),null===(n=i.getContext("2d"))||void 0===n||n.setTransform(r,0,0,r,0,0),i},t.clearCanvas=function(t){var e=t.getContext("2d");if(null===e)throw new Error("get context error");e.restore(),e.resetTransform(),e.clearRect(0,0,t.width,t.height);var n=window.devicePixelRatio||1;e.setTransform(n,0,0,n,0,0)},t.prototype.getCanvas=function(){return this.canvas},t.prototype.clear=function(){t.clearCanvas(this.canvas)},t.prototype.draw=function(){var t=this,e=this.canvas.getContext("2d");if(null===e)throw new Error("get context error");return this.options.auxiliaryLine&&(e.beginPath(),e.rect(0,0,this.options.width,this.options.height),e.lineWidth=1,e.strokeStyle="#000",e.stroke(),e.closePath(),e.beginPath(),e.rect(this.options.translateX,this.options.translateY,1,1),e.lineWidth=1,e.strokeStyle="#f00",e.stroke(),e.closePath()),this.setStyle(e),e.save(),e.translate(this.options.translateX,this.options.translateY),e.rotate(this.options.rotate),new Promise((function(n){switch(t.options.contentType){case"text":t.drawText(e,n);break;case"image":t.drawImage(e,n);break;case"multi-line-text":t.drawMultiLineText(e,n);break;case"rich-text":t.drawRichText(e,n)}}))},t.prototype.setStyle=function(t){var e,n="fillStyle";"stroke"===this.options.textType&&(n="strokeStyle");var r=this.options.fontColor;if(null===(e=this.options)||void 0===e?void 0:e.advancedStyle)switch(this.options.advancedStyle.type){case"linear":r=this.createLinearGradient(t);break;case"radial":r=this.createRadialGradient(t);break;case"conic":r=this.createConicGradient(t);break;case"pattern":r=this.createPattern(t)}t[n]&&r&&(t[n]=r),this.options.textAlign&&(t.textAlign=this.options.textAlign),this.options.textBaseline&&(t.textBaseline=this.options.textBaseline),t.globalAlpha=this.options.globalAlpha,this.options.shadowStyle&&(t.shadowBlur=ua(this.options.shadowStyle.shadowBlur,0),t.shadowColor=ua(this.options.shadowStyle.shadowColor,"#00000000"),t.shadowOffsetX=ua(this.options.shadowStyle.shadowOffsetX,0),t.shadowOffsetY=ua(this.options.shadowStyle.shadowOffsetY,0)),ra(this.options.extraDrawFunc)&&this.options.extraDrawFunc(t)},t.prototype.createLinearGradient=function(t){var e,n,r,i,o,a,s,u,c,l,d,f,h,p,v,y=t.createLinearGradient(ua(null===(r=null===(n=null===(e=this.options.advancedStyle)||void 0===e?void 0:e.params)||void 0===n?void 0:n.linear)||void 0===r?void 0:r.x0,this.recommendOptions.advancedStyleParams.linear.x0),ua(null===(a=null===(o=null===(i=this.options.advancedStyle)||void 0===i?void 0:i.params)||void 0===o?void 0:o.linear)||void 0===a?void 0:a.y0,0),ua(null===(c=null===(u=null===(s=this.options.advancedStyle)||void 0===s?void 0:s.params)||void 0===u?void 0:u.linear)||void 0===c?void 0:c.x1,this.recommendOptions.advancedStyleParams.linear.x1),ua(null===(f=null===(d=null===(l=this.options.advancedStyle)||void 0===l?void 0:l.params)||void 0===d?void 0:d.linear)||void 0===f?void 0:f.y1,0));return null===(v=null===(p=null===(h=this.options)||void 0===h?void 0:h.advancedStyle)||void 0===p?void 0:p.colorStops)||void 0===v||v.forEach((function(t){y.addColorStop(t.offset,t.color)})),y},t.prototype.createConicGradient=function(t){var e,n,r,i,o,a,s,u,c,l,d,f,h,p,v,y=t.createConicGradient(ua(null===(i=null===(r=null===(n=null===(e=this.options)||void 0===e?void 0:e.advancedStyle)||void 0===n?void 0:n.params)||void 0===r?void 0:r.conic)||void 0===i?void 0:i.startAngle,0),ua(null===(u=null===(s=null===(a=null===(o=this.options)||void 0===o?void 0:o.advancedStyle)||void 0===a?void 0:a.params)||void 0===s?void 0:s.conic)||void 0===u?void 0:u.x,this.recommendOptions.advancedStyleParams.conic.x),ua(null===(f=null===(d=null===(l=null===(c=this.options)||void 0===c?void 0:c.advancedStyle)||void 0===l?void 0:l.params)||void 0===d?void 0:d.conic)||void 0===f?void 0:f.y,this.recommendOptions.advancedStyleParams.conic.y));return null===(v=null===(p=null===(h=this.options)||void 0===h?void 0:h.advancedStyle)||void 0===p?void 0:p.colorStops)||void 0===v||v.forEach((function(t){y.addColorStop(t.offset,t.color)})),y},t.prototype.createRadialGradient=function(t){var e,n,r,i,o,a,s,u,c,l,d,f,h,p,v,y,m,g,w,b,x,S,O,P,E,k,T,C=t.createRadialGradient(ua(null===(i=null===(r=null===(n=null===(e=this.options)||void 0===e?void 0:e.advancedStyle)||void 0===n?void 0:n.params)||void 0===r?void 0:r.radial)||void 0===i?void 0:i.x0,this.recommendOptions.advancedStyleParams.radial.x0),ua(null===(u=null===(s=null===(a=null===(o=this.options)||void 0===o?void 0:o.advancedStyle)||void 0===a?void 0:a.params)||void 0===s?void 0:s.radial)||void 0===u?void 0:u.y0,this.recommendOptions.advancedStyleParams.radial.y0),ua(null===(f=null===(d=null===(l=null===(c=this.options)||void 0===c?void 0:c.advancedStyle)||void 0===l?void 0:l.params)||void 0===d?void 0:d.radial)||void 0===f?void 0:f.r0,this.recommendOptions.advancedStyleParams.radial.r0),ua(null===(y=null===(v=null===(p=null===(h=this.options)||void 0===h?void 0:h.advancedStyle)||void 0===p?void 0:p.params)||void 0===v?void 0:v.radial)||void 0===y?void 0:y.x1,this.recommendOptions.advancedStyleParams.radial.x1),ua(null===(b=null===(w=null===(g=null===(m=this.options)||void 0===m?void 0:m.advancedStyle)||void 0===g?void 0:g.params)||void 0===w?void 0:w.radial)||void 0===b?void 0:b.y1,this.recommendOptions.advancedStyleParams.radial.y1),ua(null===(P=null===(O=null===(S=null===(x=this.options)||void 0===x?void 0:x.advancedStyle)||void 0===S?void 0:S.params)||void 0===O?void 0:O.radial)||void 0===P?void 0:P.r1,this.recommendOptions.advancedStyleParams.radial.r1));return null===(T=null===(k=null===(E=this.options)||void 0===E?void 0:E.advancedStyle)||void 0===k?void 0:k.colorStops)||void 0===T||T.forEach((function(t){C.addColorStop(t.offset,t.color)})),C},t.prototype.createPattern=function(t){var e,n,r,i,o,a,s,u;return t.createPattern(null===(i=null===(r=null===(n=null===(e=this.options)||void 0===e?void 0:e.advancedStyle)||void 0===n?void 0:n.params)||void 0===r?void 0:r.pattern)||void 0===i?void 0:i.image,(null===(u=null===(s=null===(a=null===(o=this.options)||void 0===o?void 0:o.advancedStyle)||void 0===a?void 0:a.params)||void 0===s?void 0:s.pattern)||void 0===u?void 0:u.repetition)||"")},t.prototype.setText=function(t,e){var n="fillText";"stroke"===this.options.textType&&(n="strokeText"),t[n]&&t[n](e.text,e.x,e.y,e.maxWidth)},t.prototype.drawText=function(t,e){this.setText(t,{text:this.options.content,x:0,y:0-this.recommendOptions.textLine.yOffsetValue,maxWidth:this.options.textRowMaxWidth||this.options.width}),e(t.canvas)},t.prototype.drawImage=function(t,e){var n=this;ca(this.options.image).then((function(r){var i=n.getImageRect(r),o=i.width,a=i.height,s=n.getDrawImagePosition(o,a);t.drawImage(r,s.x,s.y,o,a),e(t.canvas)}))},t.prototype.drawMultiLineText=function(t,e){var n=this,r=this.recommendOptions.textLine.data,i=this.recommendOptions.textLine.yOffsetValue;r.forEach((function(e,r){n.setText(t,{text:e,x:0,y:n.options.lineHeight*r-i,maxWidth:n.options.textRowMaxWidth||n.options.width})})),e(t.canvas)},t.prototype.drawRichText=function(t,e){return ta(this,void 0,void 0,(function(){var n,r=this;return ea(this,(function(i){switch(i.label){case 0:return[4,aa(t,this.options)];case 1:return n=i.sent(),ca((o=n.element,a=o.outerHTML.replace(/<(img|br|input|hr|embed)(.*?)>/g,"<$1$2/>").replace(/\n/g,"").replace(/\t/g,"").replace(/#/g,"%23"),"data:image/svg+xml;charset=utf-8,".concat(a)),n.width,n.height).then((function(n){var i=r.getDrawImagePosition(n.width,n.height);t.drawImage(n,i.x,i.y,n.width,n.height),e(t.canvas)})),[2]}var o,a}))}))},t.prototype.getImageRect=function(t){var e={width:this.options.imageWidth||0,height:this.options.imageHeight||0};switch(!0){case 0!==e.width&&0===e.height:e.height=e.width*t.height/t.width;break;case 0===e.width&&0!==e.height:e.width=e.height*t.width/t.height;break;case 0===e.width&&0===e.height:e.width=t.width,e.height=t.height}return e},t.prototype.getDrawImagePosition=function(t,e){var n,r,i={x:-t/2,y:-e/2};switch(this.options.translatePlacement){case"top":i.x=-t/2,i.y=0;break;case"top-start":i.x=0,i.y=0;break;case"top-end":i.x=-t,i.y=0;break;case"bottom":i.x=-t/2,i.y=-e;break;case"bottom-start":i.x=0,i.y=-e;break;case"bottom-end":i.x=-t,i.y=-e;break;case"left":i.x=0,i.y=-e/2;break;case"right":i.x=-t,i.y=-e/2}return!ia(null===(n=this.props)||void 0===n?void 0:n.translateX)&&(i.x=0),!ia(null===(r=this.props)||void 0===r?void 0:r.translateY)&&(i.y=0),i},t}(),ha=function(){function t(t,e){var n,r,i,o,a,s,u;this.options=t,this.partialWidth=this.options.width,this.partialHeight=this.options.height,this.rows=(null===(n=this.options.gridLayoutOptions)||void 0===n?void 0:n.rows)||1,this.cols=(null===(r=this.options.gridLayoutOptions)||void 0===r?void 0:r.cols)||1,this.matrix=(null===(i=this.options.gridLayoutOptions)||void 0===i?void 0:i.matrix)||(a=this.rows,s=this.cols,u=1,Array.from({length:a},(function(){return new Array(s).fill(u)}))),this.gap=(null===(o=this.options.gridLayoutOptions)||void 0===o?void 0:o.gap)||[0,0],this.partialCanvas=e}return t.prototype.draw=function(){var t,e,n,r,i,o,a,s,u=fa.createCanvas((null===(t=this.options.gridLayoutOptions)||void 0===t?void 0:t.width)||this.partialWidth*this.cols+this.gap[0]*this.cols,(null===(e=this.options.gridLayoutOptions)||void 0===e?void 0:e.height)||this.partialHeight*this.rows+this.gap[1]*this.rows),c=u.getContext("2d");(null===(n=this.options.gridLayoutOptions)||void 0===n?void 0:n.backgroundImage)&&(null==c||c.drawImage(null===(r=this.options.gridLayoutOptions)||void 0===r?void 0:r.backgroundImage,0,0,null===(i=this.options.gridLayoutOptions)||void 0===i?void 0:i.width,null===(o=this.options.gridLayoutOptions)||void 0===o?void 0:o.height));for(var l=0;l<this.rows;l++)for(var d=0;d<this.cols;d++)(null===(s=null===(a=this.matrix)||void 0===a?void 0:a[l])||void 0===s?void 0:s[d])&&(null==c||c.drawImage(this.partialCanvas,this.partialWidth*d+this.gap[0]*d,this.partialHeight*l+this.gap[1]*l,this.partialWidth,this.partialHeight));return u},t}(),pa=function(t,e){return"grid"===t.layout?new ha(t,e).draw():e},va=function(){function t(t){void 0===t&&(t={}),this.parentElement=document.body,this.isCreating=!1,this.props=t,this.options=Qo(Qo({},la),t),this.changeParentElement(this.options.parent),this.watermarkCanvas=new fa(this.props,this.options),da(this.options.monitorProtection)}return t.prototype.changeOptions=function(){return ta(this,arguments,void 0,(function(t,e,n){return void 0===t&&(t={}),void 0===e&&(e="overwrite"),void 0===n&&(n=!0),ea(this,(function(r){switch(r.label){case 0:return this.initConfigData(t,e),da(this.options.monitorProtection),n?(this.remove(),[4,this.create()]):[3,2];case 1:r.sent(),r.label=2;case 2:return[2]}}))}))},t.prototype.create=function(){return ta(this,void 0,void 0,(function(){var t,e,n,r,i,o,a,s,u,c,l,d;return ea(this,(function(f){switch(f.label){case 0:return this.isCreating?[2]:(this.isCreating=!0,this.validateUnique()&&this.validateContent()?(t=ia(this.watermarkDom),[4,null===(o=this.watermarkCanvas)||void 0===o?void 0:o.draw()]):(this.isCreating=!1,[2]));case 1:if(f.sent(),this.layoutCanvas=pa(this.options,null===(a=this.watermarkCanvas)||void 0===a?void 0:a.getCanvas()),e=na(this.layoutCanvas),null===(s=this.watermarkCanvas)||void 0===s||s.clear(),this.watermarkDom=document.createElement("div"),n=document.createElement("div"),this.watermarkDom.__WATERMARK__="watermark",this.watermarkDom.__WATERMARK__INSTANCE__=this,r=this.checkParentElementType(),this.watermarkDom.style.cssText="\n z-index:".concat(this.options.zIndex,"!important;display:block!important;visibility:visible!important;transform:none!important;scale:none!important;\n ").concat("custom"===r?"top:0!important;bottom:0!important;left:0!important;right:0!important;height:100%!important;pointer-events:none!important;position:absolute!important;":"position:relative!important;","\n "),i=function(t){var e,n,r;if("grid"===t.layout){var i=(null===(e=t.gridLayoutOptions)||void 0===e?void 0:e.cols)||1,o=(null===(n=t.gridLayoutOptions)||void 0===n?void 0:n.rows)||1,a=(null===(r=t.gridLayoutOptions)||void 0===r?void 0:r.gap)||[0,0];return[t.width*i+a[0]*i,t.height*o+a[1]*o]}return[t.width,t.height]}(this.options),n.style.cssText="\n display:block!important;visibility:visible!important;pointer-events:none;top:0;bottom:0;left:0;right:0;transform:none!important;scale:none!important;\n position:".concat("root"===r?"fixed":"absolute","!important;-webkit-print-color-adjust:exact!important;width:100%!important;height:100%!important;\n z-index:").concat(this.options.zIndex,"!important;background-image:url(").concat(e,")!important;background-repeat:").concat(this.options.backgroundRepeat,"!important;\n background-size:").concat(i[0],"px ").concat(i[1],"px!important;background-position:").concat(this.options.backgroundPosition,";\n ").concat(function(t,e){if(!t)return"";var n=6*Math.random()+2,r=2*Math.random()+2;switch(e){case"repeat":return"animation: 200s linear 0s infinite alternate watermark !important;";case"repeat-x":return"animation: ".concat(n,"s ease-in 0s infinite alternate watermark-vertical !important;'");case"repeat-y":return"animation: ".concat(r,"s ease-out 0s infinite alternate watermark-horizontal !important;'");case"no-repeat":return"animation: ".concat(n,"s ease-in 0s infinite alternate watermark-horizontal, ").concat(r,"s ease-out 0s infinite alternate watermark-vertical !important;");default:return""}}(this.options.movable,this.options.backgroundRepeat),"\n "),this.watermarkDom.appendChild(n),this.parentElement.appendChild(this.watermarkDom),this.options.mutationObserve)try{this.bindMutationObserve()}catch(t){null===(c=(u=this.options).onObserveError)||void 0===c||c.call(u)}return t&&(null===(d=(l=this.options).onSuccess)||void 0===d||d.call(l)),this.isCreating=!1,[2]}}))}))},t.prototype.destroy=function(){this.remove(),this.watermarkDom=void 0},t.prototype.check=function(){return ta(this,void 0,void 0,(function(){return ea(this,(function(t){return[2,this.parentElement.contains(this.watermarkDom)]}))}))},t.prototype.remove=function(){var t,e,n,r,i,o,a,s;null===(e=(t=this.options).onBeforeDestroy)||void 0===e||e.call(t),null===(n=this.observer)||void 0===n||n.disconnect(),null===(r=this.parentObserve)||void 0===r||r.disconnect(),this.unbindCheckWatermarkElementEvent(),null===(o=null===(i=this.watermarkDom)||void 0===i?void 0:i.parentNode)||void 0===o||o.removeChild(this.watermarkDom),null===(s=(a=this.options).onDestroyed)||void 0===s||s.call(a)},t.prototype.initConfigData=function(t,e){var n=this;void 0===e&&(e="overwrite"),"append"===e?Object.keys(t).forEach((function(e){n.props&&(n.props[e]=t[e])})):this.props=t,this.options=Qo(Qo({},la),this.props),this.changeParentElement(this.options.parent),this.watermarkCanvas=new fa(this.props,this.options)},t.prototype.changeParentElement=function(t){if("string"==typeof t){var e=document.querySelector(t);e&&(this.parentElement=e)}else this.parentElement=t;this.parentElement||console.error("[WatermarkJsPlus]: please pass a valid parent element.")},t.prototype.validateUnique=function(){var t=!0;return Array.from(this.parentElement.childNodes).forEach((function(e){t&&Object.hasOwnProperty.call(e,"__WATERMARK__")&&(t=!1)})),t},t.prototype.validateContent=function(){switch(this.options.contentType){case"image":return Object.hasOwnProperty.call(this.options,"image");case"multi-line-text":case"rich-text":case"text":return this.options.content.length>0}},t.prototype.checkParentElementType=function(){return["html","body"].includes(this.parentElement.tagName.toLocaleLowerCase())?"root":"custom"},t.prototype.checkWatermarkElement=function(){return ta(this,void 0,void 0,(function(){return ea(this,(function(t){switch(t.label){case 0:return this.parentElement.contains(this.watermarkDom)?[3,2]:(this.remove(),[4,this.create()]);case 1:t.sent(),t.label=2;case 2:return this.bindCheckWatermarkElementEvent(),[2]}}))}))},t.prototype.bindMutationObserve=function(){var t=this;this.watermarkDom&&(this.bindCheckWatermarkElementEvent(),this.observer=new MutationObserver((function(e){return ta(t,void 0,void 0,(function(){return ea(this,(function(t){switch(t.label){case 0:return e.length>0?(this.remove(),[4,this.create()]):[3,2];case 1:t.sent(),t.label=2;case 2:return[2]}}))}))})),this.observer.observe(this.watermarkDom,{attributes:!0,childList:!0,subtree:!0,characterData:!0}),this.parentObserve=new MutationObserver((function(e){return ta(t,void 0,void 0,(function(){var t,n,r,i;return ea(this,(function(o){switch(o.label){case 0:t=0,n=e,o.label=1;case 1:return t<n.length?(null==(r=n[t])?void 0:r.target)===this.watermarkDom||(null===(i=null==r?void 0:r.removedNodes)||void 0===i?void 0:i[0])===this.watermarkDom||"childList"===r.type&&r.target===this.parentElement&&r.target.lastChild!==this.watermarkDom?(this.remove(),[4,this.create()]):[3,3]:[3,4];case 2:o.sent(),o.label=3;case 3:return t++,[3,1];case 4:return[2]}}))}))})),this.parentObserve.observe(this.parentElement,{attributes:!0,childList:!0,subtree:!0,characterData:!0}))},t.prototype.bindCheckWatermarkElementEvent=function(){this.unbindCheckWatermarkElementEvent(),this.checkWatermarkElementRequestID=requestAnimationFrame(this.checkWatermarkElement.bind(this))},t.prototype.unbindCheckWatermarkElementEvent=function(){ia(this.checkWatermarkElementRequestID)||cancelAnimationFrame(this.checkWatermarkElementRequestID)},t}(),ya=function(t){function e(e){void 0===e&&(e={});return t.call(this,Qo(Qo({},e),{globalAlpha:.005,mode:"blind"}))||this}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}Zo(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}(e,t),e.prototype.changeOptions=function(){return ta(this,arguments,void 0,(function(t,e,n){return void 0===t&&(t={}),void 0===e&&(e="overwrite"),void 0===n&&(n=!0),ea(this,(function(r){switch(r.label){case 0:return t.globalAlpha=.005,t.mode="blind",this.initConfigData(t,e),da(this.options.monitorProtection),n?(this.remove(),[4,this.create()]):[3,2];case 1:r.sent(),r.label=2;case 2:return[2]}}))}))},e.decode=function(t){var e=t.url,n=void 0===e?"":e,r=t.fillColor,i=void 0===r?"#000":r,o=t.compositeOperation,a=void 0===o?"color-burn":o,s=t.mode,u=void 0===s?"canvas":s,c=t.compositeTimes,l=void 0===c?3:c,d=t.onSuccess;if(n&&"canvas"===u){var f=new Image;f.src=n,f.addEventListener("load",(function(){var t=f.width,e=f.height,n=fa.createCanvas(t,e),r=n.getContext("2d");if(!r)throw new Error("get context error");r.drawImage(f,0,0,t,e),r.globalCompositeOperation=a,r.fillStyle=i;for(var o=0;o<l;o++)r.fillRect(0,0,t,e);var s=na(n);ra(d)&&(null==d||d(s))}))}},e}(va),ma=function(){function t(t){var e,n;void 0===t&&(t={}),this.drew=!1,this.props=t,this.options=Qo(Qo({},la),t),this.props.crossOrigin&&(null===(e=this.props.dom)||void 0===e||e.setAttribute("crossOrigin","anonymous")),this.watermarkCanvas=new fa(this.props,this.options),this.originalSrc=null===(n=this.props.dom)||void 0===n?void 0:n.src,this.backgroundImage=this.getBackgroundImage()}return t.prototype.create=function(){return ta(this,void 0,void 0,(function(){var t,e,n,r,i;return ea(this,(function(o){switch(o.label){case 0:return this.drew?[2]:[4,null===(t=this.watermarkCanvas)||void 0===t?void 0:t.draw()];case 1:return o.sent(),this.options.layout="grid",this.options.gridLayoutOptions=Qo(Qo({},this.options.gridLayoutOptions),{width:null===(e=this.backgroundImage)||void 0===e?void 0:e.width,height:null===(n=this.backgroundImage)||void 0===n?void 0:n.height,backgroundImage:this.backgroundImage}),this.layoutCanvas=pa(this.options,null===(r=this.watermarkCanvas)||void 0===r?void 0:r.getCanvas()),this.options.dom.src=na(this.layoutCanvas),null===(i=this.watermarkCanvas)||void 0===i||i.clear(),this.drew=!0,[2]}}))}))},t.prototype.destroy=function(){this.options.dom.src=this.originalSrc,this.drew=!1},t.prototype.getBackgroundImage=function(){if(this.options.dom)return this.options.dom},t}();exports.BlindWatermark=ya,exports.ImageWatermark=ma,exports.Watermark=va;
|
|
1
|
+
"use strict";var t,e,n="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},r={};function i(){if(e)return t;e=1;var r=function(t){return t&&t.Math===Math&&t};return t=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof n&&n)||r("object"==typeof t&&t)||function(){return this}()||Function("return this")()}var o,a,s,u,c,l,d,f,h={};function p(){return a?o:(a=1,o=function(t){try{return!!t()}catch(t){return!0}})}function v(){if(u)return s;u=1;var t=p();return s=!t((function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]}))}function y(){if(l)return c;l=1;var t=p();return c=!t((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")}))}function m(){if(f)return d;f=1;var t=y(),e=Function.prototype.call;return d=t?e.bind(e):function(){return e.apply(e,arguments)},d}var g,w,b,x,S,O,P,E,T,k,C,A,j,_,R,L,D,I,B,H,N,U,M,F,W,z,G,q,V,X,Y,$,K,J,Z,Q,tt,et,nt,rt,it,ot={};function at(){return b?w:(b=1,w=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}})}function st(){if(S)return x;S=1;var t=y(),e=Function.prototype,n=e.call,r=t&&e.bind.bind(n,n);return x=t?r:function(t){return function(){return n.apply(t,arguments)}},x}function ut(){if(P)return O;P=1;var t=st(),e=t({}.toString),n=t("".slice);return O=function(t){return n(e(t),8,-1)}}function ct(){return C?k:(C=1,k=function(t){return null==t})}function lt(){if(j)return A;j=1;var t=ct(),e=TypeError;return A=function(n){if(t(n))throw new e("Can't call method on "+n);return n}}function dt(){if(R)return _;R=1;var t=function(){if(T)return E;T=1;var t=st(),e=p(),n=ut(),r=Object,i=t("".split);return E=e((function(){return!r("z").propertyIsEnumerable(0)}))?function(t){return"String"===n(t)?i(t,""):r(t)}:r}(),e=lt();return _=function(n){return t(e(n))}}function ft(){if(D)return L;D=1;var t="object"==typeof document&&document.all;return L=void 0===t&&void 0!==t?function(e){return"function"==typeof e||e===t}:function(t){return"function"==typeof t}}function ht(){if(B)return I;B=1;var t=ft();return I=function(e){return"object"==typeof e?null!==e:t(e)}}function pt(){if(N)return H;N=1;var t=i(),e=ft();return H=function(n,r){return arguments.length<2?(i=t[n],e(i)?i:void 0):t[n]&&t[n][r];var i},H}function vt(){if(M)return U;M=1;var t=st();return U=t({}.isPrototypeOf)}function yt(){if(W)return F;W=1;var t=i().navigator,e=t&&t.userAgent;return F=e?String(e):""}function mt(){if(G)return z;G=1;var t,e,n=i(),r=yt(),o=n.process,a=n.Deno,s=o&&o.versions||a&&a.version,u=s&&s.v8;return u&&(e=(t=u.split("."))[0]>0&&t[0]<4?1:+(t[0]+t[1])),!e&&r&&(!(t=r.match(/Edge\/(\d+)/))||t[1]>=74)&&(t=r.match(/Chrome\/(\d+)/))&&(e=+t[1]),z=e}function gt(){if(V)return q;V=1;var t=mt(),e=p(),n=i().String;return q=!!Object.getOwnPropertySymbols&&!e((function(){var e=Symbol("symbol detection");return!n(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&t&&t<41}))}function wt(){if(Y)return X;Y=1;var t=gt();return X=t&&!Symbol.sham&&"symbol"==typeof Symbol.iterator}function bt(){if(K)return $;K=1;var t=pt(),e=ft(),n=vt(),r=wt(),i=Object;return $=r?function(t){return"symbol"==typeof t}:function(r){var o=t("Symbol");return e(o)&&n(o.prototype,i(r))}}function xt(){if(Z)return J;Z=1;var t=String;return J=function(e){try{return t(e)}catch(t){return"Object"}}}function St(){if(tt)return Q;tt=1;var t=ft(),e=xt(),n=TypeError;return Q=function(r){if(t(r))return r;throw new n(e(r)+" is not a function")}}function Ot(){if(nt)return et;nt=1;var t=St(),e=ct();return et=function(n,r){var i=n[r];return e(i)?void 0:t(i)}}function Pt(){if(it)return rt;it=1;var t=m(),e=ft(),n=ht(),r=TypeError;return rt=function(i,o){var a,s;if("string"===o&&e(a=i.toString)&&!n(s=t(a,i)))return s;if(e(a=i.valueOf)&&!n(s=t(a,i)))return s;if("string"!==o&&e(a=i.toString)&&!n(s=t(a,i)))return s;throw new r("Can't convert object to primitive value")}}var Et,Tt,kt,Ct,At,jt,_t,Rt,Lt,Dt,It,Bt,Ht,Nt,Ut,Mt,Ft,Wt,zt,Gt,qt,Vt,Xt,Yt,$t={exports:{}};function Kt(){return Tt?Et:(Tt=1,Et=!1)}function Jt(){if(Ct)return kt;Ct=1;var t=i(),e=Object.defineProperty;return kt=function(n,r){try{e(t,n,{value:r,configurable:!0,writable:!0})}catch(e){t[n]=r}return r}}function Zt(){if(At)return $t.exports;At=1;var t=Kt(),e=i(),n=Jt(),r="__core-js_shared__",o=$t.exports=e[r]||n(r,{});return(o.versions||(o.versions=[])).push({version:"3.42.0",mode:t?"pure":"global",copyright:"© 2014-2025 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.42.0/LICENSE",source:"https://github.com/zloirock/core-js"}),$t.exports}function Qt(){if(_t)return jt;_t=1;var t=Zt();return jt=function(e,n){return t[e]||(t[e]=n||{})}}function te(){if(Lt)return Rt;Lt=1;var t=lt(),e=Object;return Rt=function(n){return e(t(n))}}function ee(){if(It)return Dt;It=1;var t=st(),e=te(),n=t({}.hasOwnProperty);return Dt=Object.hasOwn||function(t,r){return n(e(t),r)}}function ne(){if(Ht)return Bt;Ht=1;var t=st(),e=0,n=Math.random(),r=t(1..toString);return Bt=function(t){return"Symbol("+(void 0===t?"":t)+")_"+r(++e+n,36)}}function re(){if(Ut)return Nt;Ut=1;var t=i(),e=Qt(),n=ee(),r=ne(),o=gt(),a=wt(),s=t.Symbol,u=e("wks"),c=a?s.for||s:s&&s.withoutSetter||r;return Nt=function(t){return n(u,t)||(u[t]=o&&n(s,t)?s[t]:c("Symbol."+t)),u[t]}}function ie(){if(Ft)return Mt;Ft=1;var t=m(),e=ht(),n=bt(),r=Ot(),i=Pt(),o=re(),a=TypeError,s=o("toPrimitive");return Mt=function(o,u){if(!e(o)||n(o))return o;var c,l=r(o,s);if(l){if(void 0===u&&(u="default"),c=t(l,o,u),!e(c)||n(c))return c;throw new a("Can't convert object to primitive value")}return void 0===u&&(u="number"),i(o,u)}}function oe(){if(zt)return Wt;zt=1;var t=ie(),e=bt();return Wt=function(n){var r=t(n,"string");return e(r)?r:r+""}}function ae(){if(qt)return Gt;qt=1;var t=i(),e=ht(),n=t.document,r=e(n)&&e(n.createElement);return Gt=function(t){return r?n.createElement(t):{}}}function se(){if(Xt)return Vt;Xt=1;var t=v(),e=p(),n=ae();return Vt=!t&&!e((function(){return 7!==Object.defineProperty(n("div"),"a",{get:function(){return 7}}).a}))}function ue(){if(Yt)return h;Yt=1;var t=v(),e=m(),n=function(){if(g)return ot;g=1;var t={}.propertyIsEnumerable,e=Object.getOwnPropertyDescriptor,n=e&&!t.call({1:2},1);return ot.f=n?function(t){var n=e(this,t);return!!n&&n.enumerable}:t,ot}(),r=at(),i=dt(),o=oe(),a=ee(),s=se(),u=Object.getOwnPropertyDescriptor;return h.f=t?u:function(t,c){if(t=i(t),c=o(c),s)try{return u(t,c)}catch(t){}if(a(t,c))return r(!e(n.f,t,c),t[c])},h}var ce,le,de,fe,he,pe,ve,ye={};function me(){if(le)return ce;le=1;var t=v(),e=p();return ce=t&&e((function(){return 42!==Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype}))}function ge(){if(fe)return de;fe=1;var t=ht(),e=String,n=TypeError;return de=function(r){if(t(r))return r;throw new n(e(r)+" is not an object")}}function we(){if(he)return ye;he=1;var t=v(),e=se(),n=me(),r=ge(),i=oe(),o=TypeError,a=Object.defineProperty,s=Object.getOwnPropertyDescriptor,u="enumerable",c="configurable",l="writable";return ye.f=t?n?function(t,e,n){if(r(t),e=i(e),r(n),"function"==typeof t&&"prototype"===e&&"value"in n&&l in n&&!n[l]){var o=s(t,e);o&&o[l]&&(t[e]=n.value,n={configurable:c in n?n[c]:o[c],enumerable:u in n?n[u]:o[u],writable:!1})}return a(t,e,n)}:a:function(t,n,s){if(r(t),n=i(n),r(s),e)try{return a(t,n,s)}catch(t){}if("get"in s||"set"in s)throw new o("Accessors not supported");return"value"in s&&(t[n]=s.value),t},ye}function be(){if(ve)return pe;ve=1;var t=v(),e=we(),n=at();return pe=t?function(t,r,i){return e.f(t,r,n(1,i))}:function(t,e,n){return t[e]=n,t}}var xe,Se,Oe,Pe,Ee,Te,ke,Ce,Ae,je,_e,Re,Le,De,Ie,Be={exports:{}};function He(){if(Pe)return Oe;Pe=1;var t=st(),e=ft(),n=Zt(),r=t(Function.toString);return e(n.inspectSource)||(n.inspectSource=function(t){return r(t)}),Oe=n.inspectSource}function Ne(){if(Ce)return ke;Ce=1;var t=Qt(),e=ne(),n=t("keys");return ke=function(t){return n[t]||(n[t]=e(t))}}function Ue(){return je?Ae:(je=1,Ae={})}function Me(){if(Re)return _e;Re=1;var t,e,n,r=function(){if(Te)return Ee;Te=1;var t=i(),e=ft(),n=t.WeakMap;return Ee=e(n)&&/native code/.test(String(n))}(),o=i(),a=ht(),s=be(),u=ee(),c=Zt(),l=Ne(),d=Ue(),f="Object already initialized",h=o.TypeError,p=o.WeakMap;if(r||c.state){var v=c.state||(c.state=new p);v.get=v.get,v.has=v.has,v.set=v.set,t=function(t,e){if(v.has(t))throw new h(f);return e.facade=t,v.set(t,e),e},e=function(t){return v.get(t)||{}},n=function(t){return v.has(t)}}else{var y=l("state");d[y]=!0,t=function(t,e){if(u(t,y))throw new h(f);return e.facade=t,s(t,y,e),e},e=function(t){return u(t,y)?t[y]:{}},n=function(t){return u(t,y)}}return _e={set:t,get:e,has:n,enforce:function(r){return n(r)?e(r):t(r,{})},getterFor:function(t){return function(n){var r;if(!a(n)||(r=e(n)).type!==t)throw new h("Incompatible receiver, "+t+" required");return r}}}}function Fe(){if(Le)return Be.exports;Le=1;var t=st(),e=p(),n=ft(),r=ee(),i=v(),o=function(){if(Se)return xe;Se=1;var t=v(),e=ee(),n=Function.prototype,r=t&&Object.getOwnPropertyDescriptor,i=e(n,"name"),o=i&&"something"===function(){}.name,a=i&&(!t||t&&r(n,"name").configurable);return xe={EXISTS:i,PROPER:o,CONFIGURABLE:a}}().CONFIGURABLE,a=He(),s=Me(),u=s.enforce,c=s.get,l=String,d=Object.defineProperty,f=t("".slice),h=t("".replace),y=t([].join),m=i&&!e((function(){return 8!==d((function(){}),"length",{value:8}).length})),g=String(String).split("String"),w=Be.exports=function(t,e,n){"Symbol("===f(l(e),0,7)&&(e="["+h(l(e),/^Symbol\(([^)]*)\).*$/,"$1")+"]"),n&&n.getter&&(e="get "+e),n&&n.setter&&(e="set "+e),(!r(t,"name")||o&&t.name!==e)&&(i?d(t,"name",{value:e,configurable:!0}):t.name=e),m&&n&&r(n,"arity")&&t.length!==n.arity&&d(t,"length",{value:n.arity});try{n&&r(n,"constructor")&&n.constructor?i&&d(t,"prototype",{writable:!1}):t.prototype&&(t.prototype=void 0)}catch(t){}var a=u(t);return r(a,"source")||(a.source=y(g,"string"==typeof e?e:"")),t};return Function.prototype.toString=w((function(){return n(this)&&c(this).source||a(this)}),"toString"),Be.exports}function We(){if(Ie)return De;Ie=1;var t=ft(),e=we(),n=Fe(),r=Jt();return De=function(i,o,a,s){s||(s={});var u=s.enumerable,c=void 0!==s.name?s.name:o;if(t(a)&&n(a,c,s),s.global)u?i[o]=a:r(o,a);else{try{s.unsafe?i[o]&&(u=!0):delete i[o]}catch(t){}u?i[o]=a:e.f(i,o,{value:a,enumerable:!1,configurable:!s.nonConfigurable,writable:!s.nonWritable})}return i}}var ze,Ge,qe,Ve,Xe,Ye,$e,Ke,Je,Ze,Qe,tn,en,nn,rn,on,an,sn={};function un(){if(Ve)return qe;Ve=1;var t=function(){if(Ge)return ze;Ge=1;var t=Math.ceil,e=Math.floor;return ze=Math.trunc||function(n){var r=+n;return(r>0?e:t)(r)}}();return qe=function(e){var n=+e;return n!=n||0===n?0:t(n)}}function cn(){if(Ye)return Xe;Ye=1;var t=un(),e=Math.max,n=Math.min;return Xe=function(r,i){var o=t(r);return o<0?e(o+i,0):n(o,i)}}function ln(){if(Ke)return $e;Ke=1;var t=un(),e=Math.min;return $e=function(n){var r=t(n);return r>0?e(r,9007199254740991):0}}function dn(){if(Ze)return Je;Ze=1;var t=ln();return Je=function(e){return t(e.length)}}function fn(){if(tn)return Qe;tn=1;var t=dt(),e=cn(),n=dn(),r=function(r){return function(i,o,a){var s=t(i),u=n(s);if(0===u)return!r&&-1;var c,l=e(a,u);if(r&&o!=o){for(;u>l;)if((c=s[l++])!=c)return!0}else for(;u>l;l++)if((r||l in s)&&s[l]===o)return r||l||0;return!r&&-1}};return Qe={includes:r(!0),indexOf:r(!1)}}function hn(){if(nn)return en;nn=1;var t=st(),e=ee(),n=dt(),r=fn().indexOf,i=Ue(),o=t([].push);return en=function(t,a){var s,u=n(t),c=0,l=[];for(s in u)!e(i,s)&&e(u,s)&&o(l,s);for(;a.length>c;)e(u,s=a[c++])&&(~r(l,s)||o(l,s));return l}}function pn(){return on?rn:(on=1,rn=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"])}var vn,yn,mn,gn,wn,bn,xn,Sn,On,Pn,En,Tn,kn,Cn,An,jn,_n,Rn,Ln,Dn,In,Bn,Hn,Nn,Un,Mn,Fn,Wn,zn,Gn,qn,Vn,Xn,Yn,$n,Kn,Jn,Zn,Qn={};function tr(){if(mn)return yn;mn=1;var t=pt(),e=st(),n=function(){if(an)return sn;an=1;var t=hn(),e=pn().concat("length","prototype");return sn.f=Object.getOwnPropertyNames||function(n){return t(n,e)},sn}(),r=(vn||(vn=1,Qn.f=Object.getOwnPropertySymbols),Qn),i=ge(),o=e([].concat);return yn=t("Reflect","ownKeys")||function(t){var e=n.f(i(t)),a=r.f;return a?o(e,a(t)):e}}function er(){if(wn)return gn;wn=1;var t=ee(),e=tr(),n=ue(),r=we();return gn=function(i,o,a){for(var s=e(o),u=r.f,c=n.f,l=0;l<s.length;l++){var d=s[l];t(i,d)||a&&t(a,d)||u(i,d,c(o,d))}}}function nr(){if(xn)return bn;xn=1;var t=p(),e=ft(),n=/#|\.prototype\./,r=function(n,r){var u=o[i(n)];return u===s||u!==a&&(e(r)?t(r):!!r)},i=r.normalize=function(t){return String(t).replace(n,".").toLowerCase()},o=r.data={},a=r.NATIVE="N",s=r.POLYFILL="P";return bn=r}function rr(){if(On)return Sn;On=1;var t=i(),e=ue().f,n=be(),r=We(),o=Jt(),a=er(),s=nr();return Sn=function(i,u){var c,l,d,f,h,p=i.target,v=i.global,y=i.stat;if(c=v?t:y?t[p]||o(p,{}):t[p]&&t[p].prototype)for(l in u){if(f=u[l],d=i.dontCallGetSet?(h=e(c,l))&&h.value:c[l],!s(v?l:p+(y?".":"#")+l,i.forced)&&void 0!==d){if(typeof f==typeof d)continue;a(f,d)}(i.sham||d&&d.sham)&&n(f,"sham",!0),r(c,l,f,i)}}}function ir(){if(kn)return Tn;kn=1;var t=function(){if(En)return Pn;En=1;var t=ut(),e=st();return Pn=function(n){if("Function"===t(n))return e(n)}}(),e=St(),n=y(),r=t(t.bind);return Tn=function(t,i){return e(t),void 0===i?t:n?r(t,i):function(){return t.apply(i,arguments)}},Tn}function or(){if(An)return Cn;An=1;var t=m(),e=ge(),n=Ot();return Cn=function(r,i,o){var a,s;e(r);try{if(!(a=n(r,"return"))){if("throw"===i)throw o;return o}a=t(a,r)}catch(t){s=!0,a=t}if("throw"===i)throw o;if(s)throw a;return e(a),o}}function ar(){if(_n)return jn;_n=1;var t=ge(),e=or();return jn=function(n,r,i,o){try{return o?r(t(i)[0],i[1]):r(i)}catch(t){e(n,"throw",t)}}}function sr(){return Ln?Rn:(Ln=1,Rn={})}function ur(){if(In)return Dn;In=1;var t=re(),e=sr(),n=t("iterator"),r=Array.prototype;return Dn=function(t){return void 0!==t&&(e.Array===t||r[n]===t)}}function cr(){if(Un)return Nn;Un=1;var t=function(){if(Hn)return Bn;Hn=1;var t={};return t[re()("toStringTag")]="z",Bn="[object z]"===String(t)}(),e=ft(),n=ut(),r=re()("toStringTag"),i=Object,o="Arguments"===n(function(){return arguments}());return Nn=t?n:function(t){var a,s,u;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(s=function(t,e){try{return t[e]}catch(t){}}(a=i(t),r))?s:o?n(a):"Object"===(u=n(a))&&e(a.callee)?"Arguments":u}}function lr(){if(Fn)return Mn;Fn=1;var t=st(),e=p(),n=ft(),r=cr(),i=pt(),o=He(),a=function(){},s=i("Reflect","construct"),u=/^\s*(?:class|function)\b/,c=t(u.exec),l=!u.test(a),d=function(t){if(!n(t))return!1;try{return s(a,[],t),!0}catch(t){return!1}},f=function(t){if(!n(t))return!1;switch(r(t)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return l||!!c(u,o(t))}catch(t){return!0}};return f.sham=!0,Mn=!s||e((function(){var t;return d(d.call)||!d(Object)||!d((function(){t=!0}))||t}))?f:d}function dr(){if(zn)return Wn;zn=1;var t=v(),e=we(),n=at();return Wn=function(r,i,o){t?e.f(r,i,n(0,o)):r[i]=o}}function fr(){if(qn)return Gn;qn=1;var t=cr(),e=Ot(),n=ct(),r=sr(),i=re()("iterator");return Gn=function(o){if(!n(o))return e(o,i)||e(o,"@@iterator")||r[t(o)]}}function hr(){if(Xn)return Vn;Xn=1;var t=m(),e=St(),n=ge(),r=xt(),i=fr(),o=TypeError;return Vn=function(a,s){var u=arguments.length<2?i(a):s;if(e(u))return n(t(u,a));throw new o(r(a)+" is not iterable")},Vn}function pr(){if(Jn)return Kn;Jn=1;var t=re()("iterator"),e=!1;try{var n=0,r={next:function(){return{done:!!n++}},return:function(){e=!0}};r[t]=function(){return this},Array.from(r,(function(){throw 2}))}catch(t){}return Kn=function(n,r){try{if(!r&&!e)return!1}catch(t){return!1}var i=!1;try{var o={};o[t]=function(){return{next:function(){return{done:i=!0}}}},n(o)}catch(t){}return i}}!function(){if(Zn)return r;Zn=1;var t=rr(),e=function(){if($n)return Yn;$n=1;var t=ir(),e=m(),n=te(),r=ar(),i=ur(),o=lr(),a=dn(),s=dr(),u=hr(),c=fr(),l=Array;return Yn=function(d){var f=n(d),h=o(this),p=arguments.length,v=p>1?arguments[1]:void 0,y=void 0!==v;y&&(v=t(v,p>2?arguments[2]:void 0));var m,g,w,b,x,S,O=c(f),P=0;if(!O||this===l&&i(O))for(m=a(f),g=h?new this(m):l(m);m>P;P++)S=y?v(f[P],P):f[P],s(g,P,S);else for(g=h?new this:[],x=(b=u(f,O)).next;!(w=e(x,b)).done;P++)S=y?r(b,v,[w.value,P],!0):w.value,s(g,P,S);return g.length=P,g},Yn}();t({target:"Array",stat:!0,forced:!pr()((function(t){Array.from(t)}))},{from:e})}();var vr,yr,mr,gr,wr,br,xr,Sr,Or,Pr,Er,Tr,kr,Cr,Ar,jr,_r,Rr,Lr,Dr,Ir,Br,Hr,Nr,Ur,Mr,Fr,Wr,zr,Gr,qr,Vr,Xr,Yr,$r,Kr,Jr,Zr,Qr,ti,ei,ni,ri,ii,oi,ai,si,ui,ci,li,di,fi,hi,pi,vi={};function yi(){if(yr)return vr;yr=1;var t=i(),e=yt(),n=ut(),r=function(t){return e.slice(0,t.length)===t};return vr=r("Bun/")?"BUN":r("Cloudflare-Workers")?"CLOUDFLARE":r("Deno/")?"DENO":r("Node.js/")?"NODE":t.Bun&&"string"==typeof Bun.version?"BUN":t.Deno&&"object"==typeof Deno.version?"DENO":"process"===n(t.process)?"NODE":t.window&&t.document?"BROWSER":"REST"}function mi(){if(gr)return mr;gr=1;var t=yi();return mr="NODE"===t}function gi(){if(Sr)return xr;Sr=1;var t=ht();return xr=function(e){return t(e)||null===e}}function wi(){if(Pr)return Or;Pr=1;var t=gi(),e=String,n=TypeError;return Or=function(r){if(t(r))return r;throw new n("Can't set "+e(r)+" as a prototype")}}function bi(){if(Tr)return Er;Tr=1;var t=function(){if(br)return wr;br=1;var t=st(),e=St();return wr=function(n,r,i){try{return t(e(Object.getOwnPropertyDescriptor(n,r)[i]))}catch(t){}}}(),e=ht(),n=lt(),r=wi();return Er=Object.setPrototypeOf||("__proto__"in{}?function(){var i,o=!1,a={};try{(i=t(Object.prototype,"__proto__","set"))(a,[]),o=a instanceof Array}catch(t){}return function(t,a){return n(t),r(a),e(t)?(o?i(t,a):t.__proto__=a,t):t}}():void 0)}function xi(){if(Cr)return kr;Cr=1;var t=we().f,e=ee(),n=re()("toStringTag");return kr=function(r,i,o){r&&!o&&(r=r.prototype),r&&!e(r,n)&&t(r,n,{configurable:!0,value:i})}}function Si(){if(jr)return Ar;jr=1;var t=Fe(),e=we();return Ar=function(n,r,i){return i.get&&t(i.get,r,{getter:!0}),i.set&&t(i.set,r,{setter:!0}),e.f(n,r,i)}}function Oi(){if(Rr)return _r;Rr=1;var t=pt(),e=Si(),n=re(),r=v(),i=n("species");return _r=function(n){var o=t(n);r&&o&&!o[i]&&e(o,i,{configurable:!0,get:function(){return this}})}}function Pi(){if(Dr)return Lr;Dr=1;var t=vt(),e=TypeError;return Lr=function(n,r){if(t(r,n))return n;throw new e("Incorrect invocation")}}function Ei(){if(Br)return Ir;Br=1;var t=lr(),e=xt(),n=TypeError;return Ir=function(r){if(t(r))return r;throw new n(e(r)+" is not a constructor")}}function Ti(){if(Nr)return Hr;Nr=1;var t=ge(),e=Ei(),n=ct(),r=re()("species");return Hr=function(i,o){var a,s=t(i).constructor;return void 0===s||n(a=t(s)[r])?o:e(a)}}function ki(){if(Mr)return Ur;Mr=1;var t=y(),e=Function.prototype,n=e.apply,r=e.call;return Ur="object"==typeof Reflect&&Reflect.apply||(t?r.bind(n):function(){return r.apply(n,arguments)}),Ur}function Ci(){if(Wr)return Fr;Wr=1;var t=pt();return Fr=t("document","documentElement")}function Ai(){if(Gr)return zr;Gr=1;var t=st();return zr=t([].slice)}function ji(){if(Vr)return qr;Vr=1;var t=TypeError;return qr=function(e,n){if(e<n)throw new t("Not enough arguments");return e}}function _i(){if(Yr)return Xr;Yr=1;var t=yt();return Xr=/(?:ipad|iphone|ipod).*applewebkit/i.test(t)}function Ri(){if(Kr)return $r;Kr=1;var t,e,n,r,o=i(),a=ki(),s=ir(),u=ft(),c=ee(),l=p(),d=Ci(),f=Ai(),h=ae(),v=ji(),y=_i(),m=mi(),g=o.setImmediate,w=o.clearImmediate,b=o.process,x=o.Dispatch,S=o.Function,O=o.MessageChannel,P=o.String,E=0,T={},k="onreadystatechange";l((function(){t=o.location}));var C=function(t){if(c(T,t)){var e=T[t];delete T[t],e()}},A=function(t){return function(){C(t)}},j=function(t){C(t.data)},_=function(e){o.postMessage(P(e),t.protocol+"//"+t.host)};return g&&w||(g=function(t){v(arguments.length,1);var n=u(t)?t:S(t),r=f(arguments,1);return T[++E]=function(){a(n,void 0,r)},e(E),E},w=function(t){delete T[t]},m?e=function(t){b.nextTick(A(t))}:x&&x.now?e=function(t){x.now(A(t))}:O&&!y?(r=(n=new O).port2,n.port1.onmessage=j,e=s(r.postMessage,r)):o.addEventListener&&u(o.postMessage)&&!o.importScripts&&t&&"file:"!==t.protocol&&!l(_)?(e=_,o.addEventListener("message",j,!1)):e=k in h("script")?function(t){d.appendChild(h("script"))[k]=function(){d.removeChild(this),C(t)}}:function(t){setTimeout(A(t),0)}),$r={set:g,clear:w}}function Li(){if(Zr)return Jr;Zr=1;var t=i(),e=v(),n=Object.getOwnPropertyDescriptor;return Jr=function(r){if(!e)return t[r];var i=n(t,r);return i&&i.value}}function Di(){if(ti)return Qr;ti=1;var t=function(){this.head=null,this.tail=null};return t.prototype={add:function(t){var e={item:t,next:null},n=this.tail;n?n.next=e:this.head=e,this.tail=e},get:function(){var t=this.head;if(t)return null===(this.head=t.next)&&(this.tail=null),t.item}},Qr=t}function Ii(){if(ai)return oi;ai=1;var t,e,n,r,o,a=i(),s=Li(),u=ir(),c=Ri().set,l=Di(),d=_i(),f=function(){if(ni)return ei;ni=1;var t=yt();return ei=/ipad|iphone|ipod/i.test(t)&&"undefined"!=typeof Pebble}(),h=function(){if(ii)return ri;ii=1;var t=yt();return ri=/web0s(?!.*chrome)/i.test(t)}(),p=mi(),v=a.MutationObserver||a.WebKitMutationObserver,y=a.document,m=a.process,g=a.Promise,w=s("queueMicrotask");if(!w){var b=new l,x=function(){var e,n;for(p&&(e=m.domain)&&e.exit();n=b.get();)try{n()}catch(e){throw b.head&&t(),e}e&&e.enter()};d||p||h||!v||!y?!f&&g&&g.resolve?((r=g.resolve(void 0)).constructor=g,o=u(r.then,r),t=function(){o(x)}):p?t=function(){m.nextTick(x)}:(c=u(c,a),t=function(){c(x)}):(e=!0,n=y.createTextNode(""),new v(x).observe(n,{characterData:!0}),t=function(){n.data=e=!e}),w=function(e){b.head||t(),b.add(e)}}return oi=w}function Bi(){return ui?si:(ui=1,si=function(t,e){})}function Hi(){return li?ci:(li=1,ci=function(t){try{return{error:!1,value:t()}}catch(t){return{error:!0,value:t}}})}function Ni(){if(fi)return di;fi=1;var t=i();return di=t.Promise}function Ui(){if(pi)return hi;pi=1;var t=i(),e=Ni(),n=ft(),r=nr(),o=He(),a=re(),s=yi(),u=Kt(),c=mt(),l=e&&e.prototype,d=a("species"),f=!1,h=n(t.PromiseRejectionEvent),p=r("Promise",(function(){var t=o(e),n=t!==String(e);if(!n&&66===c)return!0;if(u&&(!l.catch||!l.finally))return!0;if(!c||c<51||!/native code/.test(t)){var r=new e((function(t){t(1)})),i=function(t){t((function(){}),(function(){}))};if((r.constructor={})[d]=i,!(f=r.then((function(){}))instanceof i))return!0}return!(n||"BROWSER"!==s&&"DENO"!==s||h)}));return hi={CONSTRUCTOR:p,REJECTION_EVENT:h,SUBCLASSING:f}}var Mi,Fi,Wi={};function zi(){if(Mi)return Wi;Mi=1;var t=St(),e=TypeError,n=function(n){var r,i;this.promise=new n((function(t,n){if(void 0!==r||void 0!==i)throw new e("Bad Promise constructor");r=t,i=n})),this.resolve=t(r),this.reject=t(i)};return Wi.f=function(t){return new n(t)},Wi}var Gi,qi,Vi,Xi,Yi,$i={};function Ki(){if(qi)return Gi;qi=1;var t=ir(),e=m(),n=ge(),r=xt(),i=ur(),o=dn(),a=vt(),s=hr(),u=fr(),c=or(),l=TypeError,d=function(t,e){this.stopped=t,this.result=e},f=d.prototype;return Gi=function(h,p,v){var y,m,g,w,b,x,S,O=v&&v.that,P=!(!v||!v.AS_ENTRIES),E=!(!v||!v.IS_RECORD),T=!(!v||!v.IS_ITERATOR),k=!(!v||!v.INTERRUPTED),C=t(p,O),A=function(t){return y&&c(y,"normal",t),new d(!0,t)},j=function(t){return P?(n(t),k?C(t[0],t[1],A):C(t[0],t[1])):k?C(t,A):C(t)};if(E)y=h.iterator;else if(T)y=h;else{if(!(m=u(h)))throw new l(r(h)+" is not iterable");if(i(m)){for(g=0,w=o(h);w>g;g++)if((b=j(h[g]))&&a(f,b))return b;return new d(!1)}y=s(h,m)}for(x=E?h.next:y.next;!(S=e(x,y)).done;){try{b=j(S.value)}catch(t){c(y,"throw",t)}if("object"==typeof b&&b&&a(f,b))return b}return new d(!1)}}function Ji(){if(Xi)return Vi;Xi=1;var t=Ni(),e=pr(),n=Ui().CONSTRUCTOR;return Vi=n||!e((function(e){t.all(e).then(void 0,(function(){}))}))}var Zi,Qi={};var to,eo={};var no,ro={};var io,oo,ao,so,uo={};function co(){if(oo)return io;oo=1;var t=ge(),e=ht(),n=zi();return io=function(r,i){if(t(r),e(i)&&i.constructor===r)return i;var o=n.f(r);return(0,o.resolve)(i),o.promise}}so||(so=1,function(){if(Fi)return vi;Fi=1;var t,e,n,r=rr(),o=Kt(),a=mi(),s=i(),u=m(),c=We(),l=bi(),d=xi(),f=Oi(),h=St(),p=ft(),v=ht(),y=Pi(),g=Ti(),w=Ri().set,b=Ii(),x=Bi(),S=Hi(),O=Di(),P=Me(),E=Ni(),T=Ui(),k=zi(),C="Promise",A=T.CONSTRUCTOR,j=T.REJECTION_EVENT,_=T.SUBCLASSING,R=P.getterFor(C),L=P.set,D=E&&E.prototype,I=E,B=D,H=s.TypeError,N=s.document,U=s.process,M=k.f,F=M,W=!!(N&&N.createEvent&&s.dispatchEvent),z="unhandledrejection",G=function(t){var e;return!(!v(t)||!p(e=t.then))&&e},q=function(t,e){var n,r,i,o=e.value,a=1===e.state,s=a?t.ok:t.fail,c=t.resolve,l=t.reject,d=t.domain;try{s?(a||(2===e.rejection&&K(e),e.rejection=1),!0===s?n=o:(d&&d.enter(),n=s(o),d&&(d.exit(),i=!0)),n===t.promise?l(new H("Promise-chain cycle")):(r=G(n))?u(r,n,c,l):c(n)):l(o)}catch(t){d&&!i&&d.exit(),l(t)}},V=function(t,e){t.notified||(t.notified=!0,b((function(){for(var n,r=t.reactions;n=r.get();)q(n,t);t.notified=!1,e&&!t.rejection&&Y(t)})))},X=function(t,e,n){var r,i;W?((r=N.createEvent("Event")).promise=e,r.reason=n,r.initEvent(t,!1,!0),s.dispatchEvent(r)):r={promise:e,reason:n},!j&&(i=s["on"+t])?i(r):t===z&&x("Unhandled promise rejection",n)},Y=function(t){u(w,s,(function(){var e,n=t.facade,r=t.value;if($(t)&&(e=S((function(){a?U.emit("unhandledRejection",r,n):X(z,n,r)})),t.rejection=a||$(t)?2:1,e.error))throw e.value}))},$=function(t){return 1!==t.rejection&&!t.parent},K=function(t){u(w,s,(function(){var e=t.facade;a?U.emit("rejectionHandled",e):X("rejectionhandled",e,t.value)}))},J=function(t,e,n){return function(r){t(e,r,n)}},Z=function(t,e,n){t.done||(t.done=!0,n&&(t=n),t.value=e,t.state=2,V(t,!0))},Q=function(t,e,n){if(!t.done){t.done=!0,n&&(t=n);try{if(t.facade===e)throw new H("Promise can't be resolved itself");var r=G(e);r?b((function(){var n={done:!1};try{u(r,e,J(Q,n,t),J(Z,n,t))}catch(e){Z(n,e,t)}})):(t.value=e,t.state=1,V(t,!1))}catch(e){Z({done:!1},e,t)}}};if(A&&(B=(I=function(e){y(this,B),h(e),u(t,this);var n=R(this);try{e(J(Q,n),J(Z,n))}catch(t){Z(n,t)}}).prototype,(t=function(t){L(this,{type:C,done:!1,notified:!1,parent:!1,reactions:new O,rejection:!1,state:0,value:null})}).prototype=c(B,"then",(function(t,e){var n=R(this),r=M(g(this,I));return n.parent=!0,r.ok=!p(t)||t,r.fail=p(e)&&e,r.domain=a?U.domain:void 0,0===n.state?n.reactions.add(r):b((function(){q(r,n)})),r.promise})),e=function(){var e=new t,n=R(e);this.promise=e,this.resolve=J(Q,n),this.reject=J(Z,n)},k.f=M=function(t){return t===I||void 0===t?new e(t):F(t)},!o&&p(E)&&D!==Object.prototype)){n=D.then,_||c(D,"then",(function(t,e){var r=this;return new I((function(t,e){u(n,r,t,e)})).then(t,e)}),{unsafe:!0});try{delete D.constructor}catch(t){}l&&l(D,B)}r({global:!0,constructor:!0,wrap:!0,forced:A},{Promise:I}),d(I,C,!1,!0),f(C)}(),function(){if(Yi)return $i;Yi=1;var t=rr(),e=m(),n=St(),r=zi(),i=Hi(),o=Ki();t({target:"Promise",stat:!0,forced:Ji()},{all:function(t){var a=this,s=r.f(a),u=s.resolve,c=s.reject,l=i((function(){var r=n(a.resolve),i=[],s=0,l=1;o(t,(function(t){var n=s++,o=!1;l++,e(r,a,t).then((function(t){o||(o=!0,i[n]=t,--l||u(i))}),c)})),--l||u(i)}));return l.error&&c(l.value),s.promise}})}(),function(){if(Zi)return Qi;Zi=1;var t=rr(),e=Kt(),n=Ui().CONSTRUCTOR,r=Ni(),i=pt(),o=ft(),a=We(),s=r&&r.prototype;if(t({target:"Promise",proto:!0,forced:n,real:!0},{catch:function(t){return this.then(void 0,t)}}),!e&&o(r)){var u=i("Promise").prototype.catch;s.catch!==u&&a(s,"catch",u,{unsafe:!0})}}(),function(){if(to)return eo;to=1;var t=rr(),e=m(),n=St(),r=zi(),i=Hi(),o=Ki();t({target:"Promise",stat:!0,forced:Ji()},{race:function(t){var a=this,s=r.f(a),u=s.reject,c=i((function(){var r=n(a.resolve);o(t,(function(t){e(r,a,t).then(s.resolve,u)}))}));return c.error&&u(c.value),s.promise}})}(),function(){if(no)return ro;no=1;var t=rr(),e=zi();t({target:"Promise",stat:!0,forced:Ui().CONSTRUCTOR},{reject:function(t){var n=e.f(this);return(0,n.reject)(t),n.promise}})}(),function(){if(ao)return uo;ao=1;var t=rr(),e=pt(),n=Kt(),r=Ni(),i=Ui().CONSTRUCTOR,o=co(),a=e("Promise"),s=n&&!i;t({target:"Promise",stat:!0,forced:n||i},{resolve:function(t){return o(s&&this===a?r:this,t)}})}());var lo,fo,ho,po,vo,yo,mo,go,wo={},bo={};function xo(){if(fo)return lo;fo=1;var t=hn(),e=pn();return lo=Object.keys||function(n){return t(n,e)}}function So(){if(vo)return po;vo=1;var t,e=ge(),n=function(){if(ho)return bo;ho=1;var t=v(),e=me(),n=we(),r=ge(),i=dt(),o=xo();return bo.f=t&&!e?Object.defineProperties:function(t,e){r(t);for(var a,s=i(e),u=o(e),c=u.length,l=0;c>l;)n.f(t,a=u[l++],s[a]);return t},bo}(),r=pn(),i=Ue(),o=Ci(),a=ae(),s=Ne(),u="prototype",c="script",l=s("IE_PROTO"),d=function(){},f=function(t){return"<"+c+">"+t+"</"+c+">"},h=function(t){t.write(f("")),t.close();var e=t.parentWindow.Object;return t=null,e},p=function(){try{t=new ActiveXObject("htmlfile")}catch(t){}var e,n,i;p="undefined"!=typeof document?document.domain&&t?h(t):(n=a("iframe"),i="java"+c+":",n.style.display="none",o.appendChild(n),n.src=String(i),(e=n.contentWindow.document).open(),e.write(f("document.F=Object")),e.close(),e.F):h(t);for(var s=r.length;s--;)delete p[u][r[s]];return p()};return i[l]=!0,po=Object.create||function(t,r){var i;return null!==t?(d[u]=e(t),i=new d,d[u]=null,i[l]=t):i=p(),void 0===r?i:n.f(i,r)}}function Oo(){if(mo)return yo;mo=1;var t=re(),e=So(),n=we().f,r=t("unscopables"),i=Array.prototype;return void 0===i[r]&&n(i,r,{configurable:!0,value:e(null)}),yo=function(t){i[r][t]=!0}}!function(){if(go)return wo;go=1;var t=rr(),e=fn().includes,n=p(),r=Oo();t({target:"Array",proto:!0,forced:n((function(){return!Array(1).includes()}))},{includes:function(t){return e(this,t,arguments.length>1?arguments[1]:void 0)}}),r("includes")}();var Po,Eo,To,ko={};!function(){if(To)return ko;To=1;var t=rr(),e=function(){if(Eo)return Po;Eo=1;var t=te(),e=cn(),n=dn();return Po=function(r){for(var i=t(this),o=n(i),a=arguments.length,s=e(a>1?arguments[1]:void 0,o),u=a>2?arguments[2]:void 0,c=void 0===u?o:e(u,o);c>s;)i[s++]=r;return i},Po}(),n=Oo();t({target:"Array",proto:!0},{fill:e}),n("fill")}();var Co="undefined"!=typeof globalThis&&globalThis||"undefined"!=typeof self&&self||"undefined"!=typeof global&&global||{},Ao="URLSearchParams"in Co,jo="Symbol"in Co&&"iterator"in Symbol,_o="FileReader"in Co&&"Blob"in Co&&function(){try{return new Blob,!0}catch(t){return!1}}(),Ro="FormData"in Co,Lo="ArrayBuffer"in Co;if(Lo)var Do=["[object Int8Array]","[object Uint8Array]","[object Uint8ClampedArray]","[object Int16Array]","[object Uint16Array]","[object Int32Array]","[object Uint32Array]","[object Float32Array]","[object Float64Array]"],Io=ArrayBuffer.isView||function(t){return t&&Do.indexOf(Object.prototype.toString.call(t))>-1};function Bo(t){if("string"!=typeof t&&(t=String(t)),/[^a-z0-9\-#$%&'*+.^_`|~!]/i.test(t)||""===t)throw new TypeError('Invalid character in header field name: "'+t+'"');return t.toLowerCase()}function Ho(t){return"string"!=typeof t&&(t=String(t)),t}function No(t){var e={next:function(){var e=t.shift();return{done:void 0===e,value:e}}};return jo&&(e[Symbol.iterator]=function(){return e}),e}function Uo(t){this.map={},t instanceof Uo?t.forEach((function(t,e){this.append(e,t)}),this):Array.isArray(t)?t.forEach((function(t){if(2!=t.length)throw new TypeError("Headers constructor: expected name/value pair to be length 2, found"+t.length);this.append(t[0],t[1])}),this):t&&Object.getOwnPropertyNames(t).forEach((function(e){this.append(e,t[e])}),this)}function Mo(t){if(!t._noBody)return t.bodyUsed?Promise.reject(new TypeError("Already read")):void(t.bodyUsed=!0)}function Fo(t){return new Promise((function(e,n){t.onload=function(){e(t.result)},t.onerror=function(){n(t.error)}}))}function Wo(t){var e=new FileReader,n=Fo(e);return e.readAsArrayBuffer(t),n}function zo(t){if(t.slice)return t.slice(0);var e=new Uint8Array(t.byteLength);return e.set(new Uint8Array(t)),e.buffer}function Go(){return this.bodyUsed=!1,this._initBody=function(t){var e;this.bodyUsed=this.bodyUsed,this._bodyInit=t,t?"string"==typeof t?this._bodyText=t:_o&&Blob.prototype.isPrototypeOf(t)?this._bodyBlob=t:Ro&&FormData.prototype.isPrototypeOf(t)?this._bodyFormData=t:Ao&&URLSearchParams.prototype.isPrototypeOf(t)?this._bodyText=t.toString():Lo&&_o&&((e=t)&&DataView.prototype.isPrototypeOf(e))?(this._bodyArrayBuffer=zo(t.buffer),this._bodyInit=new Blob([this._bodyArrayBuffer])):Lo&&(ArrayBuffer.prototype.isPrototypeOf(t)||Io(t))?this._bodyArrayBuffer=zo(t):this._bodyText=t=Object.prototype.toString.call(t):(this._noBody=!0,this._bodyText=""),this.headers.get("content-type")||("string"==typeof t?this.headers.set("content-type","text/plain;charset=UTF-8"):this._bodyBlob&&this._bodyBlob.type?this.headers.set("content-type",this._bodyBlob.type):Ao&&URLSearchParams.prototype.isPrototypeOf(t)&&this.headers.set("content-type","application/x-www-form-urlencoded;charset=UTF-8"))},_o&&(this.blob=function(){var t=Mo(this);if(t)return t;if(this._bodyBlob)return Promise.resolve(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(new Blob([this._bodyArrayBuffer]));if(this._bodyFormData)throw new Error("could not read FormData body as blob");return Promise.resolve(new Blob([this._bodyText]))}),this.arrayBuffer=function(){if(this._bodyArrayBuffer){var t=Mo(this);return t||(ArrayBuffer.isView(this._bodyArrayBuffer)?Promise.resolve(this._bodyArrayBuffer.buffer.slice(this._bodyArrayBuffer.byteOffset,this._bodyArrayBuffer.byteOffset+this._bodyArrayBuffer.byteLength)):Promise.resolve(this._bodyArrayBuffer))}if(_o)return this.blob().then(Wo);throw new Error("could not read as ArrayBuffer")},this.text=function(){var t,e,n,r,i,o=Mo(this);if(o)return o;if(this._bodyBlob)return t=this._bodyBlob,e=new FileReader,n=Fo(e),r=/charset=([A-Za-z0-9_-]+)/.exec(t.type),i=r?r[1]:"utf-8",e.readAsText(t,i),n;if(this._bodyArrayBuffer)return Promise.resolve(function(t){for(var e=new Uint8Array(t),n=new Array(e.length),r=0;r<e.length;r++)n[r]=String.fromCharCode(e[r]);return n.join("")}(this._bodyArrayBuffer));if(this._bodyFormData)throw new Error("could not read FormData body as text");return Promise.resolve(this._bodyText)},Ro&&(this.formData=function(){return this.text().then(Xo)}),this.json=function(){return this.text().then(JSON.parse)},this}Uo.prototype.append=function(t,e){t=Bo(t),e=Ho(e);var n=this.map[t];this.map[t]=n?n+", "+e:e},Uo.prototype.delete=function(t){delete this.map[Bo(t)]},Uo.prototype.get=function(t){return t=Bo(t),this.has(t)?this.map[t]:null},Uo.prototype.has=function(t){return this.map.hasOwnProperty(Bo(t))},Uo.prototype.set=function(t,e){this.map[Bo(t)]=Ho(e)},Uo.prototype.forEach=function(t,e){for(var n in this.map)this.map.hasOwnProperty(n)&&t.call(e,this.map[n],n,this)},Uo.prototype.keys=function(){var t=[];return this.forEach((function(e,n){t.push(n)})),No(t)},Uo.prototype.values=function(){var t=[];return this.forEach((function(e){t.push(e)})),No(t)},Uo.prototype.entries=function(){var t=[];return this.forEach((function(e,n){t.push([n,e])})),No(t)},jo&&(Uo.prototype[Symbol.iterator]=Uo.prototype.entries);var qo=["CONNECT","DELETE","GET","HEAD","OPTIONS","PATCH","POST","PUT","TRACE"];function Vo(t,e){if(!(this instanceof Vo))throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.');var n,r,i=(e=e||{}).body;if(t instanceof Vo){if(t.bodyUsed)throw new TypeError("Already read");this.url=t.url,this.credentials=t.credentials,e.headers||(this.headers=new Uo(t.headers)),this.method=t.method,this.mode=t.mode,this.signal=t.signal,i||null==t._bodyInit||(i=t._bodyInit,t.bodyUsed=!0)}else this.url=String(t);if(this.credentials=e.credentials||this.credentials||"same-origin",!e.headers&&this.headers||(this.headers=new Uo(e.headers)),this.method=(n=e.method||this.method||"GET",r=n.toUpperCase(),qo.indexOf(r)>-1?r:n),this.mode=e.mode||this.mode||null,this.signal=e.signal||this.signal||function(){if("AbortController"in Co)return(new AbortController).signal}(),this.referrer=null,("GET"===this.method||"HEAD"===this.method)&&i)throw new TypeError("Body not allowed for GET or HEAD requests");if(this._initBody(i),!("GET"!==this.method&&"HEAD"!==this.method||"no-store"!==e.cache&&"no-cache"!==e.cache)){var o=/([?&])_=[^&]*/;if(o.test(this.url))this.url=this.url.replace(o,"$1_="+(new Date).getTime());else{this.url+=(/\?/.test(this.url)?"&":"?")+"_="+(new Date).getTime()}}}function Xo(t){var e=new FormData;return t.trim().split("&").forEach((function(t){if(t){var n=t.split("="),r=n.shift().replace(/\+/g," "),i=n.join("=").replace(/\+/g," ");e.append(decodeURIComponent(r),decodeURIComponent(i))}})),e}function Yo(t,e){if(!(this instanceof Yo))throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.');if(e||(e={}),this.type="default",this.status=void 0===e.status?200:e.status,this.status<200||this.status>599)throw new RangeError("Failed to construct 'Response': The status provided (0) is outside the range [200, 599].");this.ok=this.status>=200&&this.status<300,this.statusText=void 0===e.statusText?"":""+e.statusText,this.headers=new Uo(e.headers),this.url=e.url||"",this._initBody(t)}Vo.prototype.clone=function(){return new Vo(this,{body:this._bodyInit})},Go.call(Vo.prototype),Go.call(Yo.prototype),Yo.prototype.clone=function(){return new Yo(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new Uo(this.headers),url:this.url})},Yo.error=function(){var t=new Yo(null,{status:200,statusText:""});return t.ok=!1,t.status=0,t.type="error",t};var $o=[301,302,303,307,308];Yo.redirect=function(t,e){if(-1===$o.indexOf(e))throw new RangeError("Invalid status code");return new Yo(null,{status:e,headers:{location:t}})};var Ko=Co.DOMException;try{new Ko}catch(t){(Ko=function(t,e){this.message=t,this.name=e;var n=Error(t);this.stack=n.stack}).prototype=Object.create(Error.prototype),Ko.prototype.constructor=Ko}function Jo(t,e){return new Promise((function(n,r){var i=new Vo(t,e);if(i.signal&&i.signal.aborted)return r(new Ko("Aborted","AbortError"));var o=new XMLHttpRequest;function a(){o.abort()}if(o.onload=function(){var t,e,r={statusText:o.statusText,headers:(t=o.getAllResponseHeaders()||"",e=new Uo,t.replace(/\r?\n[\t ]+/g," ").split("\r").map((function(t){return 0===t.indexOf("\n")?t.substr(1,t.length):t})).forEach((function(t){var n=t.split(":"),r=n.shift().trim();if(r){var i=n.join(":").trim();try{e.append(r,i)}catch(t){}}})),e)};0===i.url.indexOf("file://")&&(o.status<200||o.status>599)?r.status=200:r.status=o.status,r.url="responseURL"in o?o.responseURL:r.headers.get("X-Request-URL");var a="response"in o?o.response:o.responseText;setTimeout((function(){n(new Yo(a,r))}),0)},o.onerror=function(){setTimeout((function(){r(new TypeError("Network request failed"))}),0)},o.ontimeout=function(){setTimeout((function(){r(new TypeError("Network request timed out"))}),0)},o.onabort=function(){setTimeout((function(){r(new Ko("Aborted","AbortError"))}),0)},o.open(i.method,function(t){try{return""===t&&Co.location.href?Co.location.href:t}catch(e){return t}}(i.url),!0),"include"===i.credentials?o.withCredentials=!0:"omit"===i.credentials&&(o.withCredentials=!1),"responseType"in o&&(_o?o.responseType="blob":Lo&&(o.responseType="arraybuffer")),e&&"object"==typeof e.headers&&!(e.headers instanceof Uo||Co.Headers&&e.headers instanceof Co.Headers)){var s=[];Object.getOwnPropertyNames(e.headers).forEach((function(t){s.push(Bo(t)),o.setRequestHeader(t,Ho(e.headers[t]))})),i.headers.forEach((function(t,e){-1===s.indexOf(e)&&o.setRequestHeader(e,t)}))}else i.headers.forEach((function(t,e){o.setRequestHeader(e,t)}));i.signal&&(i.signal.addEventListener("abort",a),o.onreadystatechange=function(){4===o.readyState&&i.signal.removeEventListener("abort",a)}),o.send(void 0===i._bodyInit?null:i._bodyInit)}))}Jo.polyfill=!0,Co.fetch||(Co.fetch=Jo,Co.Headers=Uo,Co.Request=Vo,Co.Response=Yo),"undefined"==typeof CanvasRenderingContext2D||CanvasRenderingContext2D.prototype.resetTransform||(CanvasRenderingContext2D.prototype.resetTransform=function(){this.setTransform(1,0,0,1,0,0)});!function(t,e){void 0===e&&(e={});var n=e.insertAt;if("undefined"!=typeof document){var r=document.head||document.getElementsByTagName("head")[0],i=document.createElement("style");i.type="text/css","top"===n&&r.firstChild?r.insertBefore(i,r.firstChild):r.appendChild(i),i.styleSheet?i.styleSheet.cssText=t:i.appendChild(document.createTextNode(t))}}("@keyframes watermark{0%{background-position:0 0}25%{background-position:100% 100%}50%{background-position:100% 0}75%{background-position:0 100%}to{background-position:0 0}}@keyframes watermark-horizontal{0%{background-position-x:0}to{background-position-x:100%}}@keyframes watermark-vertical{0%{background-position-y:0}to{background-position-y:100%}}");var Zo=function(t,e){return Zo=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},Zo(t,e)};var Qo=function(){return Qo=Object.assign||function(t){for(var e,n=1,r=arguments.length;n<r;n++)for(var i in e=arguments[n])Object.prototype.hasOwnProperty.call(e,i)&&(t[i]=e[i]);return t},Qo.apply(this,arguments)};function ta(t,e,n,r){return new(n||(n=Promise))((function(i,o){function a(t){try{u(r.next(t))}catch(t){o(t)}}function s(t){try{u(r.throw(t))}catch(t){o(t)}}function u(t){var e;t.done?i(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(a,s)}u((r=r.apply(t,e||[])).next())}))}function ea(t,e){var n,r,i,o={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]},a=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return a.next=s(0),a.throw=s(1),a.return=s(2),"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function s(s){return function(u){return function(s){if(n)throw new TypeError("Generator is already executing.");for(;a&&(a=0,s[0]&&(o=0)),o;)try{if(n=1,r&&(i=2&s[0]?r.return:s[0]?r.throw||((i=r.return)&&i.call(r),0):r.next)&&!(i=i.call(r,s[1])).done)return i;switch(r=0,i&&(s=[2&s[0],i.value]),s[0]){case 0:case 1:i=s;break;case 4:return o.label++,{value:s[1],done:!1};case 5:o.label++,r=s[1],s=[0];continue;case 7:s=o.ops.pop(),o.trys.pop();continue;default:if(!(i=o.trys,(i=i.length>0&&i[i.length-1])||6!==s[0]&&2!==s[0])){o=0;continue}if(3===s[0]&&(!i||s[1]>i[0]&&s[1]<i[3])){o.label=s[1];break}if(6===s[0]&&o.label<i[1]){o.label=i[1],i=s;break}if(i&&o.label<i[2]){o.label=i[2],o.ops.push(s);break}i[2]&&o.ops.pop(),o.trys.pop();continue}s=e.call(t,o)}catch(t){s=[6,t],r=0}finally{n=i=0}if(5&s[0])throw s[1];return{value:s[0]?s[1]:void 0,done:!0}}([s,u])}}}"function"==typeof SuppressedError&&SuppressedError;var na=function(t){return t.toDataURL("image/png",1)},ra=function(t){return"function"==typeof t},ia=function(t){return void 0===t},oa=function(t,e,n){void 0===e&&(e={}),void 0===n&&(n="http://www.w3.org/2000/svg");var r=document.createElementNS(n,t);for(var i in e)r.setAttribute(i,e[i]);return r},aa=function(t,e){return ta(void 0,void 0,void 0,(function(){var n,r,i,o,a,s,u,c,l;return ea(this,(function(d){switch(d.label){case 0:return n=oa("svg",{xmlns:"http://www.w3.org/2000/svg"}),(r=document.createElement("div")).setAttribute("xmlns","http://www.w3.org/1999/xhtml"),r.style.cssText="\n text-align: center;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 100%;\n height: 100%;\n font: ".concat(t.font,";\n color: ").concat(e.fontColor,";\n"),r.innerHTML="<div class='rich-text-content'>".concat(e.content,"</div>"),document.body.appendChild(r),[4,sa(r)];case 1:return d.sent(),i=null===(l=r.querySelector(".rich-text-content"))||void 0===l?void 0:l.getBoundingClientRect(),o=null==i?void 0:i.width,a=null==i?void 0:i.height,document.body.removeChild(r),s=e.richTextWidth||o||e.width,u=e.richTextHeight||a||e.height,n.setAttribute("width",s.toString()),n.setAttribute("height",u.toString()),(c=oa("foreignObject",{width:s.toString(),height:u.toString()})).appendChild(r),n.appendChild(c),[2,{element:n,width:s,height:u}]}}))}))};function sa(t){return ta(this,void 0,void 0,(function(){var e,n,r,i,o;return ea(this,(function(a){switch(a.label){case 0:e=t.querySelectorAll("img"),n=function(t){var e,n,r,i;return ea(this,(function(o){switch(o.label){case 0:if(!(e=t.getAttribute("src")))return[3,6];o.label=1;case 1:return o.trys.push([1,5,,6]),[4,fetch(e)];case 2:return[4,o.sent().blob()];case 3:return n=o.sent(),[4,new Promise((function(t,e){var r=new FileReader;r.onloadend=function(){return t(r.result)},r.onerror=e,r.readAsDataURL(n)}))];case 4:return r=o.sent(),"string"==typeof r&&t.setAttribute("src",r),[3,6];case 5:return i=o.sent(),console.error("Error converting ".concat(e," to base64:"),i),[3,6];case 6:return[2]}}))},r=0,i=Array.from(e),a.label=1;case 1:return r<i.length?(o=i[r],[5,n(o)]):[3,4];case 2:a.sent(),a.label=3;case 3:return r++,[3,1];case 4:return[2]}}))}))}var ua=function(t,e){return ia(t)?e:t},ca=function(t,e,n){void 0===e&&(e=void 0),void 0===n&&(n=void 0);var r=new Image;return r.setAttribute("crossOrigin","anonymous"),!ia(e)&&(r.width=e),!ia(n)&&(r.height=n),r.src=t,new Promise((function(t){r.onload=function(){t(r)}}))},la={width:300,height:300,rotate:45,layout:"default",auxiliaryLine:!1,translatePlacement:"middle",contentType:"text",content:"hello watermark-js-plus",textType:"fill",imageWidth:0,imageHeight:0,lineHeight:30,zIndex:2147483647,backgroundPosition:"0 0",backgroundRepeat:"repeat",fontSize:"20px",fontFamily:"sans-serif",fontStyle:"",fontVariant:"",fontColor:"#000",fontWeight:"normal",filter:"none",letterSpacing:"0px",wordSpacing:"0px",globalAlpha:.5,mode:"default",mutationObserve:!0,monitorProtection:!1,movable:!1,parent:"body",onSuccess:function(){},onBeforeDestroy:function(){},onDestroyed:function(){},onObserveError:function(){}},da=function(t){"undefined"!=typeof window&&t&&Object.defineProperty(window,"MutationObserver",{writable:!1,configurable:!1})},fa=function(){function t(e,n){this.props=e,this.options=n,this.canvas=t.createCanvas(this.options.width,this.options.height),this.recommendOptions=function(t,e,n){var r=t.getContext("2d");if(null===r)throw new Error("get context error");r.font="".concat(e.fontStyle," ").concat(e.fontVariant," ").concat(e.fontWeight," ").concat(e.fontSize," ").concat(e.fontFamily),r.filter=e.filter,r.letterSpacing=e.letterSpacing,r.wordSpacing=e.wordSpacing,(null==e?void 0:e.rotate)&&(e.rotate=(360-e.rotate%360)*(Math.PI/180)),ia(n.textRowMaxWidth)&&(e.textRowMaxWidth=e.width);var i={image:{rect:{width:e.imageWidth,height:e.imageHeight},position:{x:0,y:0}},textLine:{data:[],yOffsetValue:0},advancedStyleParams:{linear:{x0:0,x1:0},radial:{x0:0,y0:0,r0:0,x1:0,y1:0,r1:0},conic:{x:0,y:0,startAngle:0},pattern:{}}};switch(e.contentType){case"text":i.textLine.data=[e.content];break;case"multi-line-text":i.textLine.data=function(t,e,n){for(var r=[],i="",o="",a=0,s=e.length;a<s;a++)"\n"!==(o=e.charAt(a))?(i+=o,t.measureText(i).width>n&&(r.push(i.substring(0,i.length-1)),i="",a--)):(r.push(i),i="");return r.push(i),r}(r,e.content,e.textRowMaxWidth)}var o=e.width/2,a=e.height/2,s="middle",u="center";switch(ia(null==n?void 0:n.translateX)||ia(null==n?void 0:n.translateY)?(i.advancedStyleParams.linear.x0=-e.width/2,i.advancedStyleParams.linear.x1=e.width/2,i.advancedStyleParams.radial.r0=0,i.advancedStyleParams.radial.r1=e.width/2):(o=null==n?void 0:n.translateX,a=null==n?void 0:n.translateY,s="top",u="left"),n.translatePlacement){case"top":o=e.width/2,a=0,s="top",i.advancedStyleParams.linear.x0=-e.width/2,i.advancedStyleParams.linear.x1=e.width/2,i.advancedStyleParams.radial.y0=i.textLine.data.length*e.lineHeight/2,i.advancedStyleParams.radial.y1=i.textLine.data.length*e.lineHeight/2,i.advancedStyleParams.conic.y=i.textLine.data.length*e.lineHeight/2;break;case"top-start":o=0,a=0,s="top",u="start",i.advancedStyleParams.linear.x0=0,i.advancedStyleParams.linear.x1=e.width,i.advancedStyleParams.radial.x0=e.width/2,i.advancedStyleParams.radial.y0=i.textLine.data.length*e.lineHeight/2,i.advancedStyleParams.radial.x1=e.width/2,i.advancedStyleParams.radial.y1=i.textLine.data.length*e.lineHeight/2,i.advancedStyleParams.conic.x=e.width/2,i.advancedStyleParams.conic.y=i.textLine.data.length*e.lineHeight/2;break;case"top-end":o=e.width,a=0,s="top",u="end",i.advancedStyleParams.linear.x0=0,i.advancedStyleParams.linear.x1=-e.width,i.advancedStyleParams.radial.x0=-e.width/2,i.advancedStyleParams.radial.y0=i.textLine.data.length*e.lineHeight/2,i.advancedStyleParams.radial.x1=-e.width/2,i.advancedStyleParams.radial.y1=i.textLine.data.length*e.lineHeight/2,i.advancedStyleParams.conic.x=-e.width/2,i.advancedStyleParams.conic.y=i.textLine.data.length*e.lineHeight/2;break;case"bottom":o=e.width/2,a=e.height,s="bottom",i.advancedStyleParams.linear.x0=-e.width/2,i.advancedStyleParams.linear.x1=e.width/2,i.advancedStyleParams.radial.y0=-i.textLine.data.length*e.lineHeight/2,i.advancedStyleParams.radial.y1=-i.textLine.data.length*e.lineHeight/2,i.advancedStyleParams.conic.x=0,i.advancedStyleParams.conic.y=-i.textLine.data.length*e.lineHeight/2;break;case"bottom-start":o=0,a=e.height,s="bottom",u="start",i.advancedStyleParams.linear.x0=0,i.advancedStyleParams.linear.x1=e.width,i.advancedStyleParams.radial.x0=e.width/2,i.advancedStyleParams.radial.y0=-i.textLine.data.length*e.lineHeight/2,i.advancedStyleParams.radial.x1=e.width/2,i.advancedStyleParams.radial.y1=-i.textLine.data.length*e.lineHeight/2,i.advancedStyleParams.conic.x=e.width/2,i.advancedStyleParams.conic.y=-i.textLine.data.length*e.lineHeight/2;break;case"bottom-end":o=e.width,a=e.height,s="bottom",u="end",i.advancedStyleParams.linear.x0=0,i.advancedStyleParams.linear.x1=-e.width,i.advancedStyleParams.radial.x0=-e.width/2,i.advancedStyleParams.radial.y0=-i.textLine.data.length*e.lineHeight/2,i.advancedStyleParams.radial.x1=-e.width/2,i.advancedStyleParams.radial.y1=-i.textLine.data.length*e.lineHeight/2,i.advancedStyleParams.conic.x=-e.width/2,i.advancedStyleParams.conic.y=-i.textLine.data.length*e.lineHeight/2;break;case"left":o=0,a=e.height/2,u="start",i.advancedStyleParams.linear.x0=0,i.advancedStyleParams.linear.x1=e.width,i.advancedStyleParams.radial.x0=e.width/2,i.advancedStyleParams.radial.x1=e.width/2,i.advancedStyleParams.conic.x=e.width/2,i.advancedStyleParams.conic.y=0;break;case"right":o=e.width,a=e.height/2,u="end",i.advancedStyleParams.linear.x0=0,i.advancedStyleParams.linear.x1=-e.width,i.advancedStyleParams.radial.x0=-e.width/2,i.advancedStyleParams.radial.x1=-e.width/2,i.advancedStyleParams.conic.x=-e.width/2,i.advancedStyleParams.conic.y=0}if(e.translateX=o,e.translateY=a,ia(null==n?void 0:n.textBaseline)&&(e.textBaseline=s),ia(null==n?void 0:n.textAlign)&&(e.textAlign=u),["text","multi-line-text"].includes(e.contentType))switch(e.textBaseline){case"middle":i.textLine.yOffsetValue=(i.textLine.data.length-1)*e.lineHeight/2;break;case"bottom":case"alphabetic":case"ideographic":i.textLine.yOffsetValue=(i.textLine.data.length-1)*e.lineHeight+(e.lineHeight-parseInt(e.fontSize))/2;break;case"top":case"hanging":i.textLine.yOffsetValue=-e.lineHeight/2+parseInt(e.fontSize)/2}return i}(this.canvas,this.options,this.props)}return t.createCanvas=function(t,e){var n,r=window.devicePixelRatio||1,i=document.createElement("canvas");return i.width=t*r,i.height=e*r,i.style.width="".concat(t,"px"),i.style.height="".concat(e,"px"),null===(n=i.getContext("2d"))||void 0===n||n.setTransform(r,0,0,r,0,0),i},t.clearCanvas=function(t){var e=t.getContext("2d");if(null===e)throw new Error("get context error");e.restore(),e.resetTransform(),e.clearRect(0,0,t.width,t.height);var n=window.devicePixelRatio||1;e.setTransform(n,0,0,n,0,0)},t.prototype.getCanvas=function(){return this.canvas},t.prototype.clear=function(){t.clearCanvas(this.canvas)},t.prototype.draw=function(){var t=this,e=this.canvas.getContext("2d");if(null===e)throw new Error("get context error");return this.options.auxiliaryLine&&(e.beginPath(),e.rect(0,0,this.options.width,this.options.height),e.lineWidth=1,e.strokeStyle="#000",e.stroke(),e.closePath(),e.beginPath(),e.rect(this.options.translateX,this.options.translateY,1,1),e.lineWidth=1,e.strokeStyle="#f00",e.stroke(),e.closePath()),this.setStyle(e),e.save(),e.translate(this.options.translateX,this.options.translateY),e.rotate(this.options.rotate),new Promise((function(n){switch(t.options.contentType){case"text":t.drawText(e,n);break;case"image":t.drawImage(e,n);break;case"multi-line-text":t.drawMultiLineText(e,n);break;case"rich-text":t.drawRichText(e,n)}}))},t.prototype.setStyle=function(t){var e,n="fillStyle";"stroke"===this.options.textType&&(n="strokeStyle");var r=this.options.fontColor;if(null===(e=this.options)||void 0===e?void 0:e.advancedStyle)switch(this.options.advancedStyle.type){case"linear":r=this.createLinearGradient(t);break;case"radial":r=this.createRadialGradient(t);break;case"conic":r=this.createConicGradient(t);break;case"pattern":r=this.createPattern(t)}t[n]&&r&&(t[n]=r),this.options.textAlign&&(t.textAlign=this.options.textAlign),this.options.textBaseline&&(t.textBaseline=this.options.textBaseline),t.globalAlpha=this.options.globalAlpha,this.options.shadowStyle&&(t.shadowBlur=ua(this.options.shadowStyle.shadowBlur,0),t.shadowColor=ua(this.options.shadowStyle.shadowColor,"#00000000"),t.shadowOffsetX=ua(this.options.shadowStyle.shadowOffsetX,0),t.shadowOffsetY=ua(this.options.shadowStyle.shadowOffsetY,0)),ra(this.options.extraDrawFunc)&&this.options.extraDrawFunc(t)},t.prototype.createLinearGradient=function(t){var e,n,r,i,o,a,s,u,c,l,d,f,h,p,v,y=t.createLinearGradient(ua(null===(r=null===(n=null===(e=this.options.advancedStyle)||void 0===e?void 0:e.params)||void 0===n?void 0:n.linear)||void 0===r?void 0:r.x0,this.recommendOptions.advancedStyleParams.linear.x0),ua(null===(a=null===(o=null===(i=this.options.advancedStyle)||void 0===i?void 0:i.params)||void 0===o?void 0:o.linear)||void 0===a?void 0:a.y0,0),ua(null===(c=null===(u=null===(s=this.options.advancedStyle)||void 0===s?void 0:s.params)||void 0===u?void 0:u.linear)||void 0===c?void 0:c.x1,this.recommendOptions.advancedStyleParams.linear.x1),ua(null===(f=null===(d=null===(l=this.options.advancedStyle)||void 0===l?void 0:l.params)||void 0===d?void 0:d.linear)||void 0===f?void 0:f.y1,0));return null===(v=null===(p=null===(h=this.options)||void 0===h?void 0:h.advancedStyle)||void 0===p?void 0:p.colorStops)||void 0===v||v.forEach((function(t){y.addColorStop(t.offset,t.color)})),y},t.prototype.createConicGradient=function(t){var e,n,r,i,o,a,s,u,c,l,d,f,h,p,v,y=t.createConicGradient(ua(null===(i=null===(r=null===(n=null===(e=this.options)||void 0===e?void 0:e.advancedStyle)||void 0===n?void 0:n.params)||void 0===r?void 0:r.conic)||void 0===i?void 0:i.startAngle,0),ua(null===(u=null===(s=null===(a=null===(o=this.options)||void 0===o?void 0:o.advancedStyle)||void 0===a?void 0:a.params)||void 0===s?void 0:s.conic)||void 0===u?void 0:u.x,this.recommendOptions.advancedStyleParams.conic.x),ua(null===(f=null===(d=null===(l=null===(c=this.options)||void 0===c?void 0:c.advancedStyle)||void 0===l?void 0:l.params)||void 0===d?void 0:d.conic)||void 0===f?void 0:f.y,this.recommendOptions.advancedStyleParams.conic.y));return null===(v=null===(p=null===(h=this.options)||void 0===h?void 0:h.advancedStyle)||void 0===p?void 0:p.colorStops)||void 0===v||v.forEach((function(t){y.addColorStop(t.offset,t.color)})),y},t.prototype.createRadialGradient=function(t){var e,n,r,i,o,a,s,u,c,l,d,f,h,p,v,y,m,g,w,b,x,S,O,P,E,T,k,C=t.createRadialGradient(ua(null===(i=null===(r=null===(n=null===(e=this.options)||void 0===e?void 0:e.advancedStyle)||void 0===n?void 0:n.params)||void 0===r?void 0:r.radial)||void 0===i?void 0:i.x0,this.recommendOptions.advancedStyleParams.radial.x0),ua(null===(u=null===(s=null===(a=null===(o=this.options)||void 0===o?void 0:o.advancedStyle)||void 0===a?void 0:a.params)||void 0===s?void 0:s.radial)||void 0===u?void 0:u.y0,this.recommendOptions.advancedStyleParams.radial.y0),ua(null===(f=null===(d=null===(l=null===(c=this.options)||void 0===c?void 0:c.advancedStyle)||void 0===l?void 0:l.params)||void 0===d?void 0:d.radial)||void 0===f?void 0:f.r0,this.recommendOptions.advancedStyleParams.radial.r0),ua(null===(y=null===(v=null===(p=null===(h=this.options)||void 0===h?void 0:h.advancedStyle)||void 0===p?void 0:p.params)||void 0===v?void 0:v.radial)||void 0===y?void 0:y.x1,this.recommendOptions.advancedStyleParams.radial.x1),ua(null===(b=null===(w=null===(g=null===(m=this.options)||void 0===m?void 0:m.advancedStyle)||void 0===g?void 0:g.params)||void 0===w?void 0:w.radial)||void 0===b?void 0:b.y1,this.recommendOptions.advancedStyleParams.radial.y1),ua(null===(P=null===(O=null===(S=null===(x=this.options)||void 0===x?void 0:x.advancedStyle)||void 0===S?void 0:S.params)||void 0===O?void 0:O.radial)||void 0===P?void 0:P.r1,this.recommendOptions.advancedStyleParams.radial.r1));return null===(k=null===(T=null===(E=this.options)||void 0===E?void 0:E.advancedStyle)||void 0===T?void 0:T.colorStops)||void 0===k||k.forEach((function(t){C.addColorStop(t.offset,t.color)})),C},t.prototype.createPattern=function(t){var e,n,r,i,o,a,s,u;return t.createPattern(null===(i=null===(r=null===(n=null===(e=this.options)||void 0===e?void 0:e.advancedStyle)||void 0===n?void 0:n.params)||void 0===r?void 0:r.pattern)||void 0===i?void 0:i.image,(null===(u=null===(s=null===(a=null===(o=this.options)||void 0===o?void 0:o.advancedStyle)||void 0===a?void 0:a.params)||void 0===s?void 0:s.pattern)||void 0===u?void 0:u.repetition)||"")},t.prototype.setText=function(t,e){var n="fillText";"stroke"===this.options.textType&&(n="strokeText"),t[n]&&t[n](e.text,e.x,e.y,e.maxWidth)},t.prototype.drawText=function(t,e){this.setText(t,{text:this.options.content,x:0,y:0-this.recommendOptions.textLine.yOffsetValue,maxWidth:this.options.textRowMaxWidth||this.options.width}),e(t.canvas)},t.prototype.drawImage=function(t,e){var n=this;ca(this.options.image).then((function(r){var i=n.getImageRect(r),o=i.width,a=i.height,s=n.getDrawImagePosition(o,a);t.drawImage(r,s.x,s.y,o,a),e(t.canvas)}))},t.prototype.drawMultiLineText=function(t,e){var n=this,r=this.recommendOptions.textLine.data,i=this.recommendOptions.textLine.yOffsetValue;r.forEach((function(e,r){n.setText(t,{text:e,x:0,y:n.options.lineHeight*r-i,maxWidth:n.options.textRowMaxWidth||n.options.width})})),e(t.canvas)},t.prototype.drawRichText=function(t,e){return ta(this,void 0,void 0,(function(){var n,r=this;return ea(this,(function(i){switch(i.label){case 0:return[4,aa(t,this.options)];case 1:return n=i.sent(),ca((o=n.element,a=o.outerHTML.replace(/<(img|br|input|hr|embed)(.*?)>/g,"<$1$2/>").replace(/\n/g,"").replace(/\t/g,"").replace(/#/g,"%23"),"data:image/svg+xml;charset=utf-8,".concat(a)),n.width,n.height).then((function(n){var i=r.getDrawImagePosition(n.width,n.height);t.drawImage(n,i.x,i.y,n.width,n.height),e(t.canvas)})),[2]}var o,a}))}))},t.prototype.getImageRect=function(t){var e={width:this.options.imageWidth||0,height:this.options.imageHeight||0};switch(!0){case 0!==e.width&&0===e.height:e.height=e.width*t.height/t.width;break;case 0===e.width&&0!==e.height:e.width=e.height*t.width/t.height;break;case 0===e.width&&0===e.height:e.width=t.width,e.height=t.height}return e},t.prototype.getDrawImagePosition=function(t,e){var n,r,i={x:-t/2,y:-e/2};switch(this.options.translatePlacement){case"top":i.x=-t/2,i.y=0;break;case"top-start":i.x=0,i.y=0;break;case"top-end":i.x=-t,i.y=0;break;case"bottom":i.x=-t/2,i.y=-e;break;case"bottom-start":i.x=0,i.y=-e;break;case"bottom-end":i.x=-t,i.y=-e;break;case"left":i.x=0,i.y=-e/2;break;case"right":i.x=-t,i.y=-e/2}return!ia(null===(n=this.props)||void 0===n?void 0:n.translateX)&&(i.x=0),!ia(null===(r=this.props)||void 0===r?void 0:r.translateY)&&(i.y=0),i},t}(),ha=function(){function t(t,e){var n,r,i,o,a,s,u;this.options=t,this.partialWidth=this.options.width,this.partialHeight=this.options.height,this.rows=(null===(n=this.options.gridLayoutOptions)||void 0===n?void 0:n.rows)||1,this.cols=(null===(r=this.options.gridLayoutOptions)||void 0===r?void 0:r.cols)||1,this.matrix=(null===(i=this.options.gridLayoutOptions)||void 0===i?void 0:i.matrix)||(a=this.rows,s=this.cols,u=1,Array.from({length:a},(function(){return new Array(s).fill(u)}))),this.gap=(null===(o=this.options.gridLayoutOptions)||void 0===o?void 0:o.gap)||[0,0],this.partialCanvas=e}return t.prototype.draw=function(){var t,e,n,r,i,o,a,s,u=fa.createCanvas((null===(t=this.options.gridLayoutOptions)||void 0===t?void 0:t.width)||this.partialWidth*this.cols+this.gap[0]*this.cols,(null===(e=this.options.gridLayoutOptions)||void 0===e?void 0:e.height)||this.partialHeight*this.rows+this.gap[1]*this.rows),c=u.getContext("2d");(null===(n=this.options.gridLayoutOptions)||void 0===n?void 0:n.backgroundImage)&&(null==c||c.drawImage(null===(r=this.options.gridLayoutOptions)||void 0===r?void 0:r.backgroundImage,0,0,null===(i=this.options.gridLayoutOptions)||void 0===i?void 0:i.width,null===(o=this.options.gridLayoutOptions)||void 0===o?void 0:o.height));for(var l=0;l<this.rows;l++)for(var d=0;d<this.cols;d++)(null===(s=null===(a=this.matrix)||void 0===a?void 0:a[l])||void 0===s?void 0:s[d])&&(null==c||c.drawImage(this.partialCanvas,this.partialWidth*d+this.gap[0]*d,this.partialHeight*l+this.gap[1]*l,this.partialWidth,this.partialHeight));return u},t}(),pa=function(t,e){return"grid"===t.layout?new ha(t,e).draw():e},va=function(){function t(t){void 0===t&&(t={}),this.parentElement=document.body,this.isCreating=!1,this.props=t,this.options=Qo(Qo({},la),t),this.changeParentElement(this.options.parent),this.watermarkCanvas=new fa(this.props,this.options),da(this.options.monitorProtection)}return t.prototype.changeOptions=function(){return ta(this,arguments,void 0,(function(t,e,n){return void 0===t&&(t={}),void 0===e&&(e="overwrite"),void 0===n&&(n=!0),ea(this,(function(r){switch(r.label){case 0:return this.initConfigData(t,e),da(this.options.monitorProtection),n?(this.remove(),[4,this.create()]):[3,2];case 1:r.sent(),r.label=2;case 2:return[2]}}))}))},t.prototype.create=function(){return ta(this,void 0,void 0,(function(){var t,e,n,r,i,o,a,s,u,c,l,d;return ea(this,(function(f){switch(f.label){case 0:return this.isCreating?[2]:(this.isCreating=!0,this.validateUnique()&&this.validateContent()?(t=ia(this.watermarkDom),[4,null===(o=this.watermarkCanvas)||void 0===o?void 0:o.draw()]):(this.isCreating=!1,[2]));case 1:if(f.sent(),this.layoutCanvas=pa(this.options,null===(a=this.watermarkCanvas)||void 0===a?void 0:a.getCanvas()),e=na(this.layoutCanvas),null===(s=this.watermarkCanvas)||void 0===s||s.clear(),this.watermarkDom=document.createElement("div"),n=document.createElement("div"),this.watermarkDom.__WATERMARK__="watermark",this.watermarkDom.__WATERMARK__INSTANCE__=this,r=this.checkParentElementType(),this.watermarkDom.style.cssText="\n z-index:".concat(this.options.zIndex,"!important;display:block!important;visibility:visible!important;transform:none!important;scale:none!important;\n ").concat("custom"===r?"top:0!important;bottom:0!important;left:0!important;right:0!important;height:100%!important;pointer-events:none!important;position:absolute!important;":"position:relative!important;","\n "),i=function(t){var e,n,r;if("grid"===t.layout){var i=(null===(e=t.gridLayoutOptions)||void 0===e?void 0:e.cols)||1,o=(null===(n=t.gridLayoutOptions)||void 0===n?void 0:n.rows)||1,a=(null===(r=t.gridLayoutOptions)||void 0===r?void 0:r.gap)||[0,0];return[t.width*i+a[0]*i,t.height*o+a[1]*o]}return[t.width,t.height]}(this.options),n.style.cssText="\n display:block!important;visibility:visible!important;pointer-events:none;top:0;bottom:0;left:0;right:0;transform:none!important;scale:none!important;\n position:".concat("root"===r?"fixed":"absolute","!important;-webkit-print-color-adjust:exact!important;width:100%!important;height:100%!important;\n z-index:").concat(this.options.zIndex,"!important;background-image:url(").concat(e,")!important;background-repeat:").concat(this.options.backgroundRepeat,"!important;\n background-size:").concat(i[0],"px ").concat(i[1],"px!important;background-position:").concat(this.options.backgroundPosition,";\n ").concat(function(t,e){if(!t)return"";var n=6*Math.random()+2,r=2*Math.random()+2;switch(e){case"repeat":return"animation: 200s linear 0s infinite alternate watermark !important;";case"repeat-x":return"animation: ".concat(n,"s ease-in 0s infinite alternate watermark-vertical !important;'");case"repeat-y":return"animation: ".concat(r,"s ease-out 0s infinite alternate watermark-horizontal !important;'");case"no-repeat":return"animation: ".concat(n,"s ease-in 0s infinite alternate watermark-horizontal, ").concat(r,"s ease-out 0s infinite alternate watermark-vertical !important;");default:return""}}(this.options.movable,this.options.backgroundRepeat),"\n "),this.watermarkDom.appendChild(n),this.parentElement.appendChild(this.watermarkDom),this.options.mutationObserve)try{this.bindMutationObserve()}catch(t){null===(c=(u=this.options).onObserveError)||void 0===c||c.call(u)}return t&&(null===(d=(l=this.options).onSuccess)||void 0===d||d.call(l)),this.isCreating=!1,[2]}}))}))},t.prototype.destroy=function(){this.remove(),this.watermarkDom=void 0},t.prototype.check=function(){return ta(this,void 0,void 0,(function(){return ea(this,(function(t){return[2,this.parentElement.contains(this.watermarkDom)]}))}))},t.prototype.remove=function(){var t,e,n,r,i,o,a,s;null===(e=(t=this.options).onBeforeDestroy)||void 0===e||e.call(t),null===(n=this.observer)||void 0===n||n.disconnect(),null===(r=this.parentObserve)||void 0===r||r.disconnect(),null===(o=null===(i=this.watermarkDom)||void 0===i?void 0:i.parentNode)||void 0===o||o.removeChild(this.watermarkDom),null===(s=(a=this.options).onDestroyed)||void 0===s||s.call(a)},t.prototype.initConfigData=function(t,e){var n=this;void 0===e&&(e="overwrite"),"append"===e?Object.keys(t).forEach((function(e){n.props&&(n.props[e]=t[e])})):this.props=t,this.options=Qo(Qo({},la),this.props),this.changeParentElement(this.options.parent),this.watermarkCanvas=new fa(this.props,this.options)},t.prototype.changeParentElement=function(t){if("string"==typeof t){var e=document.querySelector(t);e&&(this.parentElement=e)}else this.parentElement=t;this.parentElement||console.error("[WatermarkJsPlus]: please pass a valid parent element.")},t.prototype.validateUnique=function(){var t=!0;return Array.from(this.parentElement.childNodes).forEach((function(e){t&&Object.hasOwnProperty.call(e,"__WATERMARK__")&&(t=!1)})),t},t.prototype.validateContent=function(){switch(this.options.contentType){case"image":return Object.hasOwnProperty.call(this.options,"image");case"multi-line-text":case"rich-text":case"text":return this.options.content.length>0}},t.prototype.checkParentElementType=function(){return["html","body"].includes(this.parentElement.tagName.toLocaleLowerCase())?"root":"custom"},t.prototype.bindMutationObserve=function(){var t=this;this.watermarkDom&&(this.observer=new MutationObserver((function(e){return ta(t,void 0,void 0,(function(){return ea(this,(function(t){switch(t.label){case 0:return e.length>0?(this.remove(),[4,this.create()]):[3,2];case 1:t.sent(),t.label=2;case 2:return[2]}}))}))})),this.observer.observe(this.watermarkDom,{attributes:!0,childList:!0,subtree:!0,characterData:!0}),this.parentObserve=new MutationObserver((function(e){return ta(t,void 0,void 0,(function(){var t,n,r,i;return ea(this,(function(o){switch(o.label){case 0:t=0,n=e,o.label=1;case 1:return t<n.length?(null==(r=n[t])?void 0:r.target)===this.watermarkDom||(null===(i=null==r?void 0:r.removedNodes)||void 0===i?void 0:i[0])===this.watermarkDom||"childList"===r.type&&r.target===this.parentElement&&r.target.lastChild!==this.watermarkDom?(this.remove(),[4,this.create()]):[3,3]:[3,4];case 2:o.sent(),o.label=3;case 3:return t++,[3,1];case 4:return[2]}}))}))})),this.parentObserve.observe(this.parentElement,{attributes:!0,childList:!0,subtree:!0,characterData:!0}))},t}(),ya=function(t){function e(e){void 0===e&&(e={});return t.call(this,Qo(Qo({},e),{globalAlpha:.005,mode:"blind"}))||this}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}Zo(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}(e,t),e.prototype.changeOptions=function(){return ta(this,arguments,void 0,(function(t,e,n){return void 0===t&&(t={}),void 0===e&&(e="overwrite"),void 0===n&&(n=!0),ea(this,(function(r){switch(r.label){case 0:return t.globalAlpha=.005,t.mode="blind",this.initConfigData(t,e),da(this.options.monitorProtection),n?(this.remove(),[4,this.create()]):[3,2];case 1:r.sent(),r.label=2;case 2:return[2]}}))}))},e.decode=function(t){var e=t.url,n=void 0===e?"":e,r=t.fillColor,i=void 0===r?"#000":r,o=t.compositeOperation,a=void 0===o?"color-burn":o,s=t.mode,u=void 0===s?"canvas":s,c=t.compositeTimes,l=void 0===c?3:c,d=t.onSuccess;if(n&&"canvas"===u){var f=new Image;f.src=n,f.addEventListener("load",(function(){var t=f.width,e=f.height,n=fa.createCanvas(t,e),r=n.getContext("2d");if(!r)throw new Error("get context error");r.drawImage(f,0,0,t,e),r.globalCompositeOperation=a,r.fillStyle=i;for(var o=0;o<l;o++)r.fillRect(0,0,t,e);var s=na(n);ra(d)&&(null==d||d(s))}))}},e}(va),ma=function(){function t(t){var e,n;void 0===t&&(t={}),this.drew=!1,this.props=t,this.options=Qo(Qo({},la),t),this.props.crossOrigin&&(null===(e=this.props.dom)||void 0===e||e.setAttribute("crossOrigin","anonymous")),this.watermarkCanvas=new fa(this.props,this.options),this.originalSrc=null===(n=this.props.dom)||void 0===n?void 0:n.src,this.backgroundImage=this.getBackgroundImage()}return t.prototype.create=function(){return ta(this,void 0,void 0,(function(){var t,e,n,r,i;return ea(this,(function(o){switch(o.label){case 0:return this.drew?[2]:[4,null===(t=this.watermarkCanvas)||void 0===t?void 0:t.draw()];case 1:return o.sent(),this.options.layout="grid",this.options.gridLayoutOptions=Qo(Qo({},this.options.gridLayoutOptions),{width:null===(e=this.backgroundImage)||void 0===e?void 0:e.width,height:null===(n=this.backgroundImage)||void 0===n?void 0:n.height,backgroundImage:this.backgroundImage}),this.layoutCanvas=pa(this.options,null===(r=this.watermarkCanvas)||void 0===r?void 0:r.getCanvas()),this.options.dom.src=na(this.layoutCanvas),null===(i=this.watermarkCanvas)||void 0===i||i.clear(),this.drew=!0,[2]}}))}))},t.prototype.destroy=function(){this.options.dom.src=this.originalSrc,this.drew=!1},t.prototype.getBackgroundImage=function(){if(this.options.dom)return this.options.dom},t}();exports.BlindWatermark=ya,exports.ImageWatermark=ma,exports.Watermark=va;
|
package/dist/ie/index.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* watermark-js-plus v1.6.
|
|
2
|
+
* watermark-js-plus v1.6.2
|
|
3
3
|
* (c) 2022-2024 Michael Sun
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -554,10 +554,10 @@ function requireSharedStore () {
|
|
|
554
554
|
var store = sharedStore.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
|
|
555
555
|
|
|
556
556
|
(store.versions || (store.versions = [])).push({
|
|
557
|
-
version: '3.
|
|
557
|
+
version: '3.42.0',
|
|
558
558
|
mode: IS_PURE ? 'pure' : 'global',
|
|
559
559
|
copyright: '© 2014-2025 Denis Pushkarev (zloirock.ru)',
|
|
560
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.
|
|
560
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.42.0/LICENSE',
|
|
561
561
|
source: 'https://github.com/zloirock/core-js'
|
|
562
562
|
});
|
|
563
563
|
return sharedStore.exports;
|
|
@@ -4540,7 +4540,6 @@ var generateRecommendOptions = function (canvas, options, args) {
|
|
|
4540
4540
|
}
|
|
4541
4541
|
ctx.font = "".concat(options.fontStyle, " ").concat(options.fontVariant, " ").concat(options.fontWeight, " ").concat(options.fontSize, " ").concat(options.fontFamily);
|
|
4542
4542
|
ctx.filter = options.filter;
|
|
4543
|
-
// @ts-ignore
|
|
4544
4543
|
ctx.letterSpacing = options.letterSpacing;
|
|
4545
4544
|
ctx.wordSpacing = options.wordSpacing;
|
|
4546
4545
|
if (options === null || options === void 0 ? void 0 : options.rotate) {
|
|
@@ -4788,10 +4787,6 @@ var protection = (function (need) {
|
|
|
4788
4787
|
writable: false,
|
|
4789
4788
|
configurable: false,
|
|
4790
4789
|
});
|
|
4791
|
-
Object.defineProperty(window, 'requestAnimationFrame', {
|
|
4792
|
-
writable: false,
|
|
4793
|
-
configurable: false,
|
|
4794
|
-
});
|
|
4795
4790
|
}
|
|
4796
4791
|
});
|
|
4797
4792
|
|
|
@@ -5254,7 +5249,6 @@ var Watermark = /** @class */ (function () {
|
|
|
5254
5249
|
(_b = (_a = this.options).onBeforeDestroy) === null || _b === void 0 ? void 0 : _b.call(_a);
|
|
5255
5250
|
(_c = this.observer) === null || _c === void 0 ? void 0 : _c.disconnect();
|
|
5256
5251
|
(_d = this.parentObserve) === null || _d === void 0 ? void 0 : _d.disconnect();
|
|
5257
|
-
this.unbindCheckWatermarkElementEvent();
|
|
5258
5252
|
(_f = (_e = this.watermarkDom) === null || _e === void 0 ? void 0 : _e.parentNode) === null || _f === void 0 ? void 0 : _f.removeChild(this.watermarkDom);
|
|
5259
5253
|
(_h = (_g = this.options).onDestroyed) === null || _h === void 0 ? void 0 : _h.call(_g);
|
|
5260
5254
|
};
|
|
@@ -5314,30 +5308,11 @@ var Watermark = /** @class */ (function () {
|
|
|
5314
5308
|
}
|
|
5315
5309
|
return 'custom';
|
|
5316
5310
|
};
|
|
5317
|
-
Watermark.prototype.checkWatermarkElement = function () {
|
|
5318
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
5319
|
-
return __generator(this, function (_a) {
|
|
5320
|
-
switch (_a.label) {
|
|
5321
|
-
case 0:
|
|
5322
|
-
if (!!this.parentElement.contains(this.watermarkDom)) return [3 /*break*/, 2];
|
|
5323
|
-
this.remove();
|
|
5324
|
-
return [4 /*yield*/, this.create()];
|
|
5325
|
-
case 1:
|
|
5326
|
-
_a.sent();
|
|
5327
|
-
_a.label = 2;
|
|
5328
|
-
case 2:
|
|
5329
|
-
this.bindCheckWatermarkElementEvent();
|
|
5330
|
-
return [2 /*return*/];
|
|
5331
|
-
}
|
|
5332
|
-
});
|
|
5333
|
-
});
|
|
5334
|
-
};
|
|
5335
5311
|
Watermark.prototype.bindMutationObserve = function () {
|
|
5336
5312
|
var _this = this;
|
|
5337
5313
|
if (!this.watermarkDom) {
|
|
5338
5314
|
return;
|
|
5339
5315
|
}
|
|
5340
|
-
this.bindCheckWatermarkElementEvent();
|
|
5341
5316
|
this.observer = new MutationObserver(function (mutationsList) { return __awaiter(_this, void 0, void 0, function () {
|
|
5342
5317
|
return __generator(this, function (_a) {
|
|
5343
5318
|
switch (_a.label) {
|
|
@@ -5393,15 +5368,6 @@ var Watermark = /** @class */ (function () {
|
|
|
5393
5368
|
characterData: true, // 节点内容或节点文本的变动。
|
|
5394
5369
|
});
|
|
5395
5370
|
};
|
|
5396
|
-
Watermark.prototype.bindCheckWatermarkElementEvent = function () {
|
|
5397
|
-
this.unbindCheckWatermarkElementEvent();
|
|
5398
|
-
this.checkWatermarkElementRequestID = requestAnimationFrame(this.checkWatermarkElement.bind(this));
|
|
5399
|
-
};
|
|
5400
|
-
Watermark.prototype.unbindCheckWatermarkElementEvent = function () {
|
|
5401
|
-
if (!isUndefined(this.checkWatermarkElementRequestID)) {
|
|
5402
|
-
cancelAnimationFrame(this.checkWatermarkElementRequestID);
|
|
5403
|
-
}
|
|
5404
|
-
};
|
|
5405
5371
|
return Watermark;
|
|
5406
5372
|
}());
|
|
5407
5373
|
|