@qr-platform/qr-code.js 0.9.0 → 0.9.1
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/lib/chunks/scan-validator-node-BGUxkBJt.js +1 -0
- package/lib/chunks/scan-validator-zxing-node-CV9K2v4n.js +1 -0
- package/lib/core/qr-code-js.d.ts +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.js +1 -1
- package/lib/node/core/qr-code-js.d.ts +61 -0
- package/lib/node/core/qr-constant.d.ts +9 -0
- package/lib/node/core/qr-options-validation.d.ts +13 -0
- package/lib/node/core/qr-styles.d.ts +4 -0
- package/lib/node/core/qr-svg.d.ts +76 -0
- package/lib/node/core/qr-templates.d.ts +10 -0
- package/lib/node/figures/corner-dot.d.ts +24 -0
- package/lib/node/figures/corner-square.d.ts +24 -0
- package/lib/node/figures/dot.d.ts +31 -0
- package/lib/node/index.d.ts +101 -0
- package/lib/node/lib/image/GIFImage.d.ts +19 -0
- package/lib/node/lib/io/Base64.d.ts +10 -0
- package/lib/node/lib/io/Base64DecodeInputStream.d.ts +15 -0
- package/lib/node/lib/io/Base64EncodeOutputStream.d.ts +17 -0
- package/lib/node/lib/io/ByteArrayInputStream.d.ts +12 -0
- package/lib/node/lib/io/ByteArrayOutputStream.d.ts +12 -0
- package/lib/node/lib/io/InputStream.d.ts +10 -0
- package/lib/node/lib/io/OutputStream.d.ts +12 -0
- package/lib/node/lib/qr-code.d.ts +5 -0
- package/lib/node/lib/qrcode/BitBuffer.d.ts +11 -0
- package/lib/node/lib/qrcode/ErrorCorrectLevel.d.ts +23 -0
- package/lib/node/lib/qrcode/MaskPattern.d.ts +39 -0
- package/lib/node/lib/qrcode/Mode.d.ts +23 -0
- package/lib/node/lib/qrcode/Polynomial.d.ts +15 -0
- package/lib/node/lib/qrcode/QR8BitByte.d.ts +13 -0
- package/lib/node/lib/qrcode/QRAlphaNum.d.ts +13 -0
- package/lib/node/lib/qrcode/QRCode.d.ts +22 -0
- package/lib/node/lib/qrcode/QRCodeMinimal.d.ts +58 -0
- package/lib/node/lib/qrcode/QRData.d.ts +17 -0
- package/lib/node/lib/qrcode/QRKanji.d.ts +13 -0
- package/lib/node/lib/qrcode/QRMath.d.ts +13 -0
- package/lib/node/lib/qrcode/QRNumber.d.ts +14 -0
- package/lib/node/lib/qrcode/QRUtil.d.ts +25 -0
- package/lib/node/lib/qrcode/RSBlock.d.ts +16 -0
- package/lib/node/lib/text/createStringToBytes.d.ts +9 -0
- package/lib/node/lib/text/stringToBytes_SJIS.d.ts +8 -0
- package/lib/node/lib/text/stringToBytes_UTF8.d.ts +7 -0
- package/lib/node/lib/zbar-wasm/index.d.ts +1 -0
- package/lib/node/lib/zxing-js/src/browser/BrowserCodeReader.d.ts +150 -0
- package/lib/node/lib/zxing-js/src/browser/BrowserQRCodeReader.d.ts +29 -0
- package/lib/node/lib/zxing-js/src/browser/HTMLCanvasElementLuminanceSource.d.ts +27 -0
- package/lib/node/lib/zxing-js/src/browser/HTMLVisualMediaElement.d.ts +4 -0
- package/lib/node/lib/zxing-js/src/browser.d.ts +3 -0
- package/lib/node/lib/zxing-js/src/core/ArgumentException.d.ts +7 -0
- package/lib/node/lib/zxing-js/src/core/ArithmeticException.d.ts +7 -0
- package/lib/node/lib/zxing-js/src/core/ArrayIndexOutOfBoundsException.d.ts +10 -0
- package/lib/node/lib/zxing-js/src/core/BarcodeFormat.d.ts +42 -0
- package/lib/node/lib/zxing-js/src/core/Binarizer.d.ts +53 -0
- package/lib/node/lib/zxing-js/src/core/BinaryBitmap.d.ts +78 -0
- package/lib/node/lib/zxing-js/src/core/ChecksumException.d.ts +8 -0
- package/lib/node/lib/zxing-js/src/core/DecodeHintType.d.ts +91 -0
- package/lib/node/lib/zxing-js/src/core/Exception.d.ts +17 -0
- package/lib/node/lib/zxing-js/src/core/FormatException.d.ts +8 -0
- package/lib/node/lib/zxing-js/src/core/HighContrastLuminanceSource.d.ts +27 -0
- package/lib/node/lib/zxing-js/src/core/IllegalArgumentException.d.ts +7 -0
- package/lib/node/lib/zxing-js/src/core/IllegalStateException.d.ts +7 -0
- package/lib/node/lib/zxing-js/src/core/IndexOutOfBoundsException.d.ts +7 -0
- package/lib/node/lib/zxing-js/src/core/InvertedLuminanceSource.d.ts +22 -0
- package/lib/node/lib/zxing-js/src/core/LuminanceSource.d.ts +84 -0
- package/lib/node/lib/zxing-js/src/core/NodeLuminanceSource.d.ts +33 -0
- package/lib/node/lib/zxing-js/src/core/NotFoundException.d.ts +8 -0
- package/lib/node/lib/zxing-js/src/core/NullPointerException.d.ts +7 -0
- package/lib/node/lib/zxing-js/src/core/OutOfMemoryError.d.ts +6 -0
- package/lib/node/lib/zxing-js/src/core/Reader.d.ts +49 -0
- package/lib/node/lib/zxing-js/src/core/ReaderException.d.ts +7 -0
- package/lib/node/lib/zxing-js/src/core/ReedSolomonException.d.ts +7 -0
- package/lib/node/lib/zxing-js/src/core/Result.d.ts +52 -0
- package/lib/node/lib/zxing-js/src/core/ResultMetadataType.d.ts +68 -0
- package/lib/node/lib/zxing-js/src/core/ResultPoint.d.ts +34 -0
- package/lib/node/lib/zxing-js/src/core/ResultPointCallback.d.ts +11 -0
- package/lib/node/lib/zxing-js/src/core/UniversalLuminanceSource.d.ts +46 -0
- package/lib/node/lib/zxing-js/src/core/UnsupportedOperationException.d.ts +7 -0
- package/lib/node/lib/zxing-js/src/core/common/BitArray.d.ts +111 -0
- package/lib/node/lib/zxing-js/src/core/common/BitMatrix.d.ts +98 -0
- package/lib/node/lib/zxing-js/src/core/common/BitSource.d.ts +38 -0
- package/lib/node/lib/zxing-js/src/core/common/CharacterSetECI.d.ts +89 -0
- package/lib/node/lib/zxing-js/src/core/common/DecoderResult.d.ts +64 -0
- package/lib/node/lib/zxing-js/src/core/common/DefaultGridSampler.d.ts +10 -0
- package/lib/node/lib/zxing-js/src/core/common/DetectorResult.d.ts +16 -0
- package/lib/node/lib/zxing-js/src/core/common/GlobalHistogramBinarizer.d.ts +29 -0
- package/lib/node/lib/zxing-js/src/core/common/GridSampler.d.ts +36 -0
- package/lib/node/lib/zxing-js/src/core/common/GridSamplerInstance.d.ts +18 -0
- package/lib/node/lib/zxing-js/src/core/common/HybridBinarizer.d.ts +54 -0
- package/lib/node/lib/zxing-js/src/core/common/PerspectiveTransform.d.ts +26 -0
- package/lib/node/lib/zxing-js/src/core/common/StringUtils.d.ts +48 -0
- package/lib/node/lib/zxing-js/src/core/common/detector/MathUtils.d.ts +36 -0
- package/lib/node/lib/zxing-js/src/core/common/reedsolomon/AbstractGenericGF.d.ts +34 -0
- package/lib/node/lib/zxing-js/src/core/common/reedsolomon/GenericGF.d.ts +58 -0
- package/lib/node/lib/zxing-js/src/core/common/reedsolomon/GenericGFPoly.d.ts +47 -0
- package/lib/node/lib/zxing-js/src/core/common/reedsolomon/ReedSolomonDecoder.d.ts +40 -0
- package/lib/node/lib/zxing-js/src/core/qrcode/QRCodeReader.d.ts +35 -0
- package/lib/node/lib/zxing-js/src/core/qrcode/decoder/BitMatrixParser.d.ts +58 -0
- package/lib/node/lib/zxing-js/src/core/qrcode/decoder/DataBlock.d.ts +28 -0
- package/lib/node/lib/zxing-js/src/core/qrcode/decoder/DataMask.d.ts +36 -0
- package/lib/node/lib/zxing-js/src/core/qrcode/decoder/DecodedBitStreamParser.d.ts +30 -0
- package/lib/node/lib/zxing-js/src/core/qrcode/decoder/Decoder.d.ts +44 -0
- package/lib/node/lib/zxing-js/src/core/qrcode/decoder/ECB.d.ts +12 -0
- package/lib/node/lib/zxing-js/src/core/qrcode/decoder/ECBlocks.d.ts +16 -0
- package/lib/node/lib/zxing-js/src/core/qrcode/decoder/ErrorCorrectionLevel.d.ts +38 -0
- package/lib/node/lib/zxing-js/src/core/qrcode/decoder/FormatInformation.d.ts +33 -0
- package/lib/node/lib/zxing-js/src/core/qrcode/decoder/Mode.d.ts +56 -0
- package/lib/node/lib/zxing-js/src/core/qrcode/decoder/QRCodeDecoderMetaData.d.ts +21 -0
- package/lib/node/lib/zxing-js/src/core/qrcode/decoder/Version.d.ts +44 -0
- package/lib/node/lib/zxing-js/src/core/qrcode/detector/AlignmentPattern.d.ts +21 -0
- package/lib/node/lib/zxing-js/src/core/qrcode/detector/AlignmentPatternFinder.d.ts +82 -0
- package/lib/node/lib/zxing-js/src/core/qrcode/detector/Detector.d.ts +87 -0
- package/lib/node/lib/zxing-js/src/core/qrcode/detector/FinderPattern.d.ts +26 -0
- package/lib/node/lib/zxing-js/src/core/qrcode/detector/FinderPatternFinder.d.ts +114 -0
- package/lib/node/lib/zxing-js/src/core/qrcode/detector/FinderPatternInfo.d.ts +16 -0
- package/lib/node/lib/zxing-js/src/core/util/Arrays.d.ts +45 -0
- package/lib/node/lib/zxing-js/src/core/util/Charset.d.ts +7 -0
- package/lib/node/lib/zxing-js/src/core/util/Float.d.ts +14 -0
- package/lib/node/lib/zxing-js/src/core/util/Integer.d.ts +19 -0
- package/lib/node/lib/zxing-js/src/core/util/StringBuilder.d.ts +21 -0
- package/lib/node/lib/zxing-js/src/core/util/StringEncoding.d.ts +51 -0
- package/lib/node/lib/zxing-js/src/core/util/System.d.ts +10 -0
- package/lib/node/lib/zxing-js/src/customTypings.d.ts +16 -0
- package/lib/node/lib/zxing-js/src/index.d.ts +5 -0
- package/lib/node/lib/zxing-js/src/node.d.ts +1 -0
- package/lib/node/license/LicenseManager.d.ts +69 -0
- package/lib/node/license/LicenseManagerNode.d.ts +64 -0
- package/lib/node/node.d.ts +88 -0
- package/lib/node/options-demo.d.ts +239 -0
- package/lib/node/plugins/QRBorderHelpers.d.ts +32 -0
- package/lib/node/plugins/QRBorderPlugin.d.ts +35 -0
- package/lib/node/plugins/QRValidatorZbar.d.ts +38 -0
- package/lib/node/plugins/QRValidatorZbarNode.d.ts +60 -0
- package/lib/node/plugins/QRValidatorZbarNodeSharp.d.ts +83 -0
- package/lib/node/templates/borders-inner-outter.d.ts +129 -0
- package/lib/node/templates/borders-inner-scale-offset.d.ts +497 -0
- package/lib/node/templates/borders-inner.d.ts +129 -0
- package/lib/node/templates/borders-no-license.d.ts +129 -0
- package/lib/node/templates/borders-outter.d.ts +129 -0
- package/lib/node/templates/borders-text-auto-curved.d.ts +129 -0
- package/lib/node/templates/borders-text-full-curved.d.ts +133 -0
- package/lib/node/templates/borders.d.ts +129 -0
- package/lib/node/templates/scales.d.ts +130 -0
- package/lib/node/templates/scan-validators/index.d.ts +1 -0
- package/lib/node/templates/scan-validators/tests/cases/basic-inverted.d.ts +9 -0
- package/lib/node/templates/scan-validators/tests/cases/basic-no-license.d.ts +3 -0
- package/lib/node/templates/scan-validators/tests/cases/basic.d.ts +3 -0
- package/lib/node/templates/scan-validators/tests/cases/colors-inverted.d.ts +2 -0
- package/lib/node/templates/scan-validators/tests/cases/colors.d.ts +58 -0
- package/lib/node/templates/scan-validators/tests/cases/out-of-borders-inverted.d.ts +9 -0
- package/lib/node/templates/scan-validators/tests/cases/out-of-borders.d.ts +9 -0
- package/lib/node/templates/scan-validators/tests/cases/position-inverted.d.ts +9 -0
- package/lib/node/templates/scan-validators/tests/cases/position.d.ts +3 -0
- package/lib/node/templates/scan-validators/tests/index.d.ts +27 -0
- package/lib/node/tools/browser-image-tools.d.ts +7 -0
- package/lib/node/tools/browser-utils.d.ts +18 -0
- package/lib/node/types/helper.d.ts +23 -0
- package/lib/node/types/style-options.d.ts +37 -0
- package/lib/node/utils/canvas-options.d.ts +7 -0
- package/lib/node/utils/color.d.ts +4 -0
- package/lib/node/utils/gradient.d.ts +26 -0
- package/lib/node/utils/image.d.ts +16 -0
- package/lib/node/utils/merge.d.ts +5 -0
- package/lib/node/utils/options.d.ts +220 -0
- package/lib/node/utils/qrcode.d.ts +8 -0
- package/lib/node/utils/scan-validator-node.d.ts +15 -0
- package/lib/node/utils/scan-validator-zxing-node.d.ts +18 -0
- package/lib/node/utils/scan-validators/abstract-scan-validator.d.ts +43 -0
- package/lib/node/utils/scan-validators/zbar-scan-validator.d.ts +8 -0
- package/lib/node/utils/scan-validators/zxing-canvas-scan-validator.d.ts +10 -0
- package/lib/node/utils/scan-validators/zxing-scan-validator.d.ts +8 -0
- package/lib/node/utils/style-mapper.d.ts +13 -0
- package/lib/node/utils/svg.d.ts +2 -0
- package/lib/node/utils/token-validator.d.ts +19 -0
- package/lib/node.d.ts +4 -1
- package/lib/node.js +1 -1
- package/package.json +1 -1
package/lib/node.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
import{DOMImplementation as t,XMLSerializer as e,DOMParser as n}from"@xmldom/xmldom";import{fileTypeFromBuffer as r}from"file-type";import s from"image-size";import{importSPKI as i,jwtVerify as o,errors as a}from"jose";import{Resvg as c}from"@resvg/resvg-js";import{scanImageData as h}from"@undecaf/zbar-wasm";import{Jimp as u}from"jimp";import{CustomError as l}from"ts-custom-error";function p(){const t=["11VRmZYb","min","height","4DaTtfn","668776Kxvivy","59ahnTMY","width","11751770XgDmJZ","7oWYTJx","margin","868920pGsDLT","8787792rNGWFZ","117JFMaTt","7516ZoNTSs","84276EjKOdd","566595ScuIeh"];return(p=function(){return t})()}!function(){const t=d,e=p();for(;;)try{if(708409===parseInt(t(179))/1*(-parseInt(t(187))/2)+-parseInt(t(188))/3*(-parseInt(t(177))/4)+parseInt(t(173))/5+parseInt(t(184))/6*(parseInt(t(182))/7)+parseInt(t(178))/8*(parseInt(t(186))/9)+-parseInt(t(181))/10*(parseInt(t(174))/11)+parseInt(t(185))/12)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const f={width:300,height:300,margin:0};function d(t,e){const n=p();return(d=function(t,e){return n[t-=173]})(t,e)}const I=m;function m(t,e){const n=w();return(m=function(t,e){return n[t-=158]})(t,e)}!function(){const t=m,e=w();for(;;)try{if(162465===-parseInt(t(172))/1+parseInt(t(170))/2+parseInt(t(165))/3+-parseInt(t(164))/4*(-parseInt(t(169))/5)+parseInt(t(158))/6+parseInt(t(173))/7*(parseInt(t(174))/8)+parseInt(t(166))/9*(-parseInt(t(161))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class g{constructor(){const t=m;this[t(176)]=[],this[t(160)]=0}[I(168)](){return this.buffer}[I(162)](){return this[I(160)]}[I(171)](){const t=I;let e="";for(let n=0;n<this[t(162)]();n+=1)e+=this.getBit(n)?"1":"0";return e}[I(159)](t){return 1==(this[I(176)][~~(t/8)]>>>7-t%8&1)}[I(167)](t,e){const n=I;for(let r=0;r<e;r+=1)this[n(175)](1==(t>>>e-r-1&1))}[I(175)](t){const e=I;this.length==8*this[e(176)][e(160)]&&this[e(176)][e(163)](0),t&&(this[e(176)][~~(this[e(160)]/8)]|=128>>>this[e(160)]%8),this[e(160)]+=1}}function w(){const t=["349106VHJAqf","toString","185733deHHPb","7ZZUyPB","1864312abfCXQ","putBit","buffer","1178460wPjFiy","getBit","length","4622140NDAxAY","getLengthInBits","push","7852JFHPsT","218778GMAcOB","9AMTvKX","put","getBuffer","340gybwTD"];return(w=function(){return t})()}var y,b;function k(t,e){var n=A();return(k=function(t,e){return n[t-=488]})(t,e)}function A(){var t=["976OlbJMn","1755192nlIWyF","1879759EAJWrH","60NndjRF","9lsqEsB","10WfuDrv","1543QeyxZv","1543179VqrHsA","2505312HvxVJy","13396690YyKuGO","3878160GTdRMl","56HBsosj"];return(A=function(){return t})()}!function(){for(var t=k,e=A();;)try{if(995667===-parseInt(t(496))/1*(-parseInt(t(490))/2)+parseInt(t(488))/3+-parseInt(t(498))/4+-parseInt(t(495))/5*(parseInt(t(491))/6)+-parseInt(t(492))/7*(parseInt(t(489))/8)+parseInt(t(494))/9*(parseInt(t(499))/10)+parseInt(t(497))/11*(parseInt(t(493))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),(b=y||(y={}))[b.L=1]="L",b[b.M=0]="M",b[b.Q=3]="Q",b[b.H=2]="H";const S=O;!function(){const t=O,e=Z();for(;;)try{if(674195===-parseInt(t(465))/1+parseInt(t(467))/2+-parseInt(t(455))/3*(parseInt(t(469))/4)+-parseInt(t(466))/5*(-parseInt(t(463))/6)+-parseInt(t(470))/7+-parseInt(t(458))/8+parseInt(t(462))/9*(parseInt(t(460))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class C{constructor(){throw new Error(O(459))}static[S(456)](t){const e=S;if(t<1)throw new Error(e(461)+t+")");return C[e(464)][t]}static gexp(t){const e=S;for(;t<0;)t+=255;for(;t>=256;)t-=255;return C[e(468)][t]}}function O(t,e){const n=Z();return(O=function(t,e){return n[t-=455]})(t,e)}function Z(){const t=["2001718yQWhLr","EXP_TABLE","320176tpGozQ","7717710ndHDPS","21MnDxOA","glog","push","4475512DghDFL","error","230ezlBso","log(","556758uHwEjr","12ISrNSz","LOG_TABLE","866035QGcqoN","3347055cTZiMQ"];return(Z=function(){return t})()}C.initialize=(()=>{const t=S;C.EXP_TABLE=[],C[t(464)]=[];for(let e=0;e<256;e+=1)C[t(468)][t(457)](e<8?1<<e:C[t(468)][e-4]^C[t(468)][e-5]^C.EXP_TABLE[e-6]^C.EXP_TABLE[e-8]),C[t(464)].push(0);for(let e=0;e<255;e+=1)C[t(464)][C[t(468)][e]]=e})();const v=M;function M(t,e){const n=T();return(M=function(t,e){return n[t-=451]})(t,e)}function T(){const t=["mod","push","303400OjeFRp","toLogString","5374512SsRCVI","399403uDQunc","getAt","multiply","1279720IbHYep","1525380tZKsqN","getLength","4XAarIa","2FkrCsW","toString","33ouCEsX","glog","30tQgeXO","286489rHcxKe","gexp","num","length","263667AZgfQb"];return(T=function(){return t})()}!function(){const t=M,e=T();for(;;)try{if(412406===-parseInt(t(472))/1*(-parseInt(t(457))/2)+-parseInt(t(466))/3*(-parseInt(t(456))/4)+parseInt(t(454))/5+parseInt(t(461))/6*(-parseInt(t(462))/7)+parseInt(t(469))/8+-parseInt(t(471))/9+-parseInt(t(453))/10*(-parseInt(t(459))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class E{constructor(t,e=0){const n=M;let r=0;for(;r<t[n(465)]&&0==t[r];)r+=1;this[n(464)]=[];const s=t[n(465)]-r;for(let e=0;e<s;e+=1)this[n(464)][n(468)](t[r+e]);for(let t=0;t<e;t+=1)this[n(464)][n(468)](0)}[v(451)](t){return this.num[t]}[v(455)](){const t=v;return this[t(464)][t(465)]}toString(){const t=v;let e="";for(let n=0;n<this.getLength();n+=1)n>0&&(e+=","),e+=this[t(451)](n);return e[t(458)]()}[v(470)](){const t=v;let e="";for(let n=0;n<this[t(455)]();n+=1)n>0&&(e+=","),e+=C.glog(this[t(451)](n));return e[t(458)]()}[v(452)](t){const e=v,n=[],r=this[e(455)]()+t[e(455)]()-1;for(let t=0;t<r;t+=1)n[e(468)](0);for(let r=0;r<this.getLength();r+=1)for(let s=0;s<t[e(455)]();s+=1)n[r+s]^=C.gexp(C[e(460)](this[e(451)](r))+C.glog(t.getAt(s)));return new E(n)}[v(467)](t){const e=v;if(this[e(455)]()-t[e(455)]()<0)return this;const n=C[e(460)](this[e(451)](0))-C[e(460)](t[e(451)](0)),r=[];for(let t=0;t<this[e(455)]();t+=1)r.push(this[e(451)](t));for(let s=0;s<t.getLength();s+=1)r[s]^=C[e(463)](C[e(460)](t[e(451)](s))+n);return new E(r)[e(467)](t)}}var W,R,j;function B(t,e){var n=V();return(B=function(t,e){return n[t-=288]})(t,e)}function V(){var t=["82888HcyocA","892686FtjFCS","MODE_KANJI","5482008UptEhg","13178680cbbhox","4325648CSVmkR","1106235VVRovA","2011058XiISSM","14wskFAg","MODE_8BIT_BYTE","MODE_ALPHA_NUM","36QcAsOp","MODE_NUMBER"];return(V=function(){return t})()}function N(t,e){var n=J();return(N=function(t,e){return n[t-=338]})(t,e)}function J(){var t=["getData","getLengthInBits","MODE_KANJI","data","mode","mode:","148345SCbTQi","getMode","typeNumber:","829484PfEOTa","3xXlNBT","138bFbnDo","158571aKrlSn","1574520UbukCI","MODE_NUMBER","6705590HgBmIw","MODE_8BIT_BYTE","16pImymK","3699144fAwFcv","28BmvHkd","6140684gTUGRB","MODE_ALPHA_NUM"];return(J=function(){return t})()}!function(){for(var t=B,e=V();;)try{if(845305===parseInt(t(294))/1*(-parseInt(t(289))/2)+-parseInt(t(295))/3+parseInt(t(299))/4+-parseInt(t(300))/5*(parseInt(t(292))/6)+-parseInt(t(288))/7+parseInt(t(298))/8+parseInt(t(297))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),(R=W||(W={}))[R[(j=B)(293)]=1]=j(293),R[R[j(291)]=2]=j(291),R[R[j(290)]=4]="MODE_8BIT_BYTE",R[R[j(296)]=8]=j(296);var Y=N;!function(){for(var t=N,e=J();;)try{if(960180===parseInt(t(355))/1*(-parseInt(t(354))/2)+-parseInt(t(357))/3*(-parseInt(t(340))/4)+parseInt(t(351))/5*(parseInt(t(356))/6)+-parseInt(t(342))/7*(-parseInt(t(358))/8)+parseInt(t(341))/9+parseInt(t(338))/10+-parseInt(t(343))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class x{constructor(t,e){this.mode=t,this.data=e}[Y(352)](){return this[Y(349)]}[Y(345)](){return this[Y(348)]}[Y(346)](t){var e=Y;if(1<=t&&t<10)switch(this[e(349)]){case W[e(359)]:return 10;case W[e(344)]:return 9;case W[e(339)]:case W[e(347)]:return 8;default:throw new Error(e(350)+this.mode)}else if(t<27)switch(this.mode){case W.MODE_NUMBER:return 12;case W[e(344)]:return 11;case W.MODE_8BIT_BYTE:return 16;case W.MODE_KANJI:return 10;default:throw new Error(e(350)+this[e(349)])}else{if(!(t<41))throw new Error(e(353)+t);switch(this[e(349)]){case W[e(359)]:return 14;case W[e(344)]:return 13;case W[e(339)]:return 16;case W[e(347)]:return 12;default:throw new Error("mode:"+this[e(349)])}}}}const D=X;function X(t,e){const n=U();return(X=function(t,e){return n[t-=173]})(t,e)}!function(){const t=X,e=U();for(;;)try{if(859606===-parseInt(t(173))/1*(parseInt(t(187))/2)+-parseInt(t(181))/3+parseInt(t(177))/4*(parseInt(t(176))/5)+parseInt(t(174))/6+parseInt(t(179))/7*(-parseInt(t(185))/8)+-parseInt(t(183))/9+parseInt(t(175))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class P extends x{constructor(t,e){super(W.MODE_8BIT_BYTE,t),this.stringToBytes=e}write(t){const e=X;this[e(178)](this[e(186)]()).forEach((n=>t[e(184)](n,8)))}[D(180)](){const t=D;return this[t(178)](this[t(186)]())[t(182)]}}function U(){const t=["7411398naerpG","12796920RCEDsl","110yQnSYp","168788yXEIbj","stringToBytes","3500161SUmCuT","getLength","2396379JUfIIT","length","5978772QkdXgQ","put","8uVuJqL","getData","13638DuLfbo","91frjVVa"];return(U=function(){return t})()}function G(t,e){const n=F();return(G=function(t,e){return n[t-=143]})(t,e)}function F(){const t=["22fIeSlo","put","illegal char :","602290gRMdue","getCode","charAt","28vwcHRO","80IKTRGo","12XOgrZl","14mZfNsc","425zZuiqI","4469440gjGSwC","36172929PJfspM","908010QhxSon","getData","3975822PZYeub","length","138603hWBsBZ","MODE_ALPHA_NUM","31532pQwkBv","charCodeAt"];return(F=function(){return t})()}!function(){const t=G,e=F();for(;;)try{if(946740===-parseInt(t(160))/1+-parseInt(t(163))/2*(-parseInt(t(153))/3)+parseInt(t(155))/4*(-parseInt(t(146))/5)+parseInt(t(151))/6*(-parseInt(t(145))/7)+parseInt(t(143))/8*(parseInt(t(149))/9)+parseInt(t(147))/10*(-parseInt(t(157))/11)+parseInt(t(144))/12*(parseInt(t(148))/13))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class L extends x{constructor(t){super(W[G(154)],t)}write(t){const e=G,n=this[e(150)]();let r=0;for(;r+1<n[e(152)];)t[e(158)](45*L[e(161)](n.charAt(r))+L[e(161)](n[e(162)](r+1)),11),r+=2;r<n.length&&t[e(158)](L[e(161)](n.charAt(r)),6)}getLength(){const t=G;return this[t(150)]()[t(152)]}static getCode(t){const e=G;if("0"<=t&&t<="9")return t[e(156)](0)-"0"[e(156)](0);if("A"<=t&&t<="Z")return t[e(156)](0)-"A".charCodeAt(0)+10;switch(t){case" ":return 36;case"$":return 37;case"%":return 38;case"*":return 39;case"+":return 40;case"-":return 41;case".":return 42;case"/":return 43;case":":return 44;default:throw new Error(e(159)+t)}}}const q=H;function z(){const t=["getLength","1896908xCazMY","illegal char at ","MODE_KANJI","1345920dVsFpI","43317NOuaEk","652602ZYHTst","25UQNdHZ","getData","stringToBytes","18766uNUbnw","put","350jWLYic","write","4358830OFQtNI","652iBXuwX","1454YOiTAv","length","10056DCjiKS","3aDCscl"];return(z=function(){return t})()}function H(t,e){const n=z();return(H=function(t,e){return n[t-=199]})(t,e)}!function(){const t=H,e=z();for(;;)try{if(599575===parseInt(t(210))/1*(parseInt(t(211))/2)+parseInt(t(214))/3*(-parseInt(t(216))/4)+parseInt(t(202))/5*(-parseInt(t(201))/6)+-parseInt(t(209))/7+parseInt(t(199))/8+-parseInt(t(200))/9*(-parseInt(t(207))/10)+parseInt(t(205))/11*(parseInt(t(213))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class K extends x{constructor(t,e){const n=H;super(W[n(218)],t),this[n(204)]=e}[q(208)](t){const e=q,n=this[e(204)](this[e(203)]());let r=0;for(;r+1<n[e(212)];){let s=(255&n[r])<<8|255&n[r+1];if(33088<=s&&s<=40956)s-=33088;else{if(!(57408<=s&&s<=60351))throw new Error(e(217)+(r+1)+"/"+s);s-=49472}s=192*(s>>>8&255)+(255&s),t[e(206)](s,13),r+=2}if(r<n.length)throw new Error(e(217)+(r+1))}[q(215)](){const t=q;return this[t(204)](this.getData())[t(212)]/2}}const Q=$;function _(){const t=["12ELTlTb","getLength","substring","2859448RbrQzz","8VOwSdl","191391TSGEpf","getData","138717ALlCyO","997110evpwoj","516FuzSVJ","put","write","6365997EADyjl","strToNum","charCodeAt","17787mfUHUA","chatToNum","1150509HIPczc","charAt","2lrMkeZ","illegal char :","380VeBHAK","length"];return(_=function(){return t})()}function $(t,e){const n=_();return($=function(t,e){return n[t-=432]})(t,e)}!function(){const t=$,e=_();for(;;)try{if(722894===-parseInt(t(447))/1*(parseInt(t(438))/2)+parseInt(t(436))/3+parseInt(t(446))/4*(parseInt(t(450))/5)+-parseInt(t(451))/6*(parseInt(t(434))/7)+parseInt(t(445))/8+parseInt(t(449))/9*(-parseInt(t(440))/10)+-parseInt(t(454))/11*(-parseInt(t(442))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class tt extends x{constructor(t){super(W.MODE_NUMBER,t)}[Q(453)](t){const e=Q,n=this.getData();let r=0;for(;r+2<n[e(441)];)t[e(452)](tt[e(432)](n.substring(r,r+3)),10),r+=3;r<n.length&&(n[e(441)]-r==1?t[e(452)](tt.strToNum(n[e(444)](r,r+1)),4):n[e(441)]-r==2&&t[e(452)](tt.strToNum(n.substring(r,r+2)),7))}[Q(443)](){return this[Q(448)]().length}static strToNum(t){const e=Q;let n=0;for(let r=0;r<t[e(441)];r+=1)n=10*n+tt.chatToNum(t[e(437)](r));return n}static[Q(435)](t){const e=Q;if("0"<=t&&t<="9")return t[e(433)](0)-"0"[e(433)](0);throw new Error(e(439)+t)}}var et,nt,rt;function st(){var t=["8540DSTAJy","4419XqZhEa","PATTERN000","7494464baJoJf","8fKktKX","PATTERN011","5Ezlrnc","PATTERN010","1060796HJahDE","PATTERN001","781JiBMWX","PATTERN100","PATTERN111","4457868yOaqIW","1958691TxgIWv","647967HRxwqo","PATTERN110"];return(st=function(){return t})()}function it(t,e){var n=st();return(it=function(t,e){return n[t-=259]})(t,e)}!function(){for(var t=it,e=st();;)try{if(689351===-parseInt(t(268))/1+-parseInt(t(262))/2*(parseInt(t(273))/3)+-parseInt(t(266))/4+-parseInt(t(264))/5*(-parseInt(t(271))/6)+-parseInt(t(272))/7+parseInt(t(261))/8+parseInt(t(259))/9*(parseInt(t(275))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),(nt=et||(et={}))[nt[(rt=it)(260)]=0]="PATTERN000",nt[nt[rt(267)]=1]=rt(267),nt[nt.PATTERN010=2]=rt(265),nt[nt[rt(263)]=3]=rt(263),nt[nt[rt(269)]=4]=rt(269),nt[nt.PATTERN101=5]="PATTERN101",nt[nt[rt(274)]=6]=rt(274),nt[nt[rt(270)]=7]=rt(270);const ot=at;function at(t,e){const n=ht();return(at=function(t,e){return n[t-=129]})(t,e)}!function(){const t=at,e=ht();for(;;)try{if(548396===parseInt(t(152))/1*(parseInt(t(147))/2)+-parseInt(t(138))/3+parseInt(t(157))/4+-parseInt(t(140))/5+parseInt(t(131))/6+parseInt(t(139))/7+-parseInt(t(143))/8)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class ct{constructor(){throw new Error("error")}static[ot(144)](t){return ct.PATTERN_POSITION_TABLE[t-1]}static getMaxLength(t,e,n){const r=ot,s=t-1;let i=0,o=0;switch(n){case y.L:i=0;break;case y.M:i=1;break;case y.Q:i=2;break;case y.H:i=3;break;default:throw new Error("e:"+n)}switch(e){case W.MODE_NUMBER:o=0;break;case W[r(154)]:o=1;break;case W[r(148)]:o=2;break;case W[r(155)]:o=3;break;default:throw new Error("m:"+e)}return ct[r(137)][s][i][o]}static[ot(159)](t){const e=ot;let n=new E([1]);for(let r=0;r<t;r+=1)n=n[e(161)](new E([1,C[e(145)](r)]));return n}static[ot(141)](t){const e=ot;switch(t){case et[e(146)]:return(t,e)=>(t+e)%2==0;case et[e(133)]:return(t,e)=>t%2==0;case et.PATTERN010:return(t,e)=>e%3==0;case et[e(136)]:return(t,e)=>(t+e)%3==0;case et.PATTERN100:return(t,e)=>(~~(t/2)+~~(e/3))%2==0;case et[e(156)]:return(t,e)=>t*e%2+t*e%3==0;case et[e(153)]:return(t,e)=>(t*e%2+t*e%3)%2==0;case et[e(150)]:return(t,e)=>(t*e%3+(t+e)%2)%2==0;default:throw new Error(e(158)+t)}}static getLostPoint(t){const e=ot,n=t[e(130)]();let r=0;for(let s=0;s<n;s+=1)for(let i=0;i<n;i+=1){let o=0;const a=t.isDark(s,i);for(let r=-1;r<=1;r+=1)if(!(s+r<0||n<=s+r))for(let c=-1;c<=1;c+=1)i+c<0||n<=i+c||0==r&&0==c||a==t[e(134)](s+r,i+c)&&(o+=1);o>5&&(r+=3+o-5)}for(let s=0;s<n-1;s+=1)for(let i=0;i<n-1;i+=1){let n=0;t[e(134)](s,i)&&(n+=1),t[e(134)](s+1,i)&&(n+=1),t[e(134)](s,i+1)&&(n+=1),t.isDark(s+1,i+1)&&(n+=1),(0==n||4==n)&&(r+=3)}for(let s=0;s<n;s+=1)for(let i=0;i<n-6;i+=1)t.isDark(s,i)&&!t[e(134)](s,i+1)&&t[e(134)](s,i+2)&&t[e(134)](s,i+3)&&t[e(134)](s,i+4)&&!t[e(134)](s,i+5)&&t[e(134)](s,i+6)&&(r+=40);for(let s=0;s<n;s+=1)for(let i=0;i<n-6;i+=1)t[e(134)](i,s)&&!t[e(134)](i+1,s)&&t[e(134)](i+2,s)&&t.isDark(i+3,s)&&t[e(134)](i+4,s)&&!t[e(134)](i+5,s)&&t[e(134)](i+6,s)&&(r+=40);let s=0;for(let r=0;r<n;r+=1)for(let i=0;i<n;i+=1)t[e(134)](i,r)&&(s+=1);return r+=10*(Math[e(142)](100*s/n/n-50)/5),r}static[ot(129)](t){const e=ot;let n=t<<10;for(;ct[e(135)](n)-ct.getBCHDigit(ct.G15)>=0;)n^=ct.G15<<ct[e(135)](n)-ct[e(135)](ct.G15);return(t<<10|n)^ct[e(160)]}static[ot(151)](t){const e=ot;let n=t<<12;for(;ct[e(135)](n)-ct[e(135)](ct.G18)>=0;)n^=ct[e(149)]<<ct[e(135)](n)-ct.getBCHDigit(ct[e(149)]);return t<<12|n}static[ot(135)](t){let e=0;for(;0!=t;)e+=1,t>>>=1;return e}}function ht(){const t=["545080bWjnne","MODE_8BIT_BYTE","G18","PATTERN111","getBCHTypeNumber","4aILsMI","PATTERN110","MODE_ALPHA_NUM","MODE_KANJI","PATTERN101","13208GLdRQx","mask:","getErrorCorrectPolynomial","G15_MASK","multiply","getBCHTypeInfo","getModuleCount","5929008kRpHeG","G15","PATTERN001","isDark","getBCHDigit","PATTERN011","MAX_LENGTH","243939PgzVwE","2501786iBtHwU","569575jCmnrk","getMaskFunc","abs","13563232jMhHpj","getPatternPosition","gexp","PATTERN000"];return(ht=function(){return t})()}ct.PATTERN_POSITION_TABLE=[[],[6,18],[6,22],[6,26],[6,30],[6,34],[6,22,38],[6,24,42],[6,26,46],[6,28,50],[6,30,54],[6,32,58],[6,34,62],[6,26,46,66],[6,26,48,70],[6,26,50,74],[6,30,54,78],[6,30,56,82],[6,30,58,86],[6,34,62,90],[6,28,50,72,94],[6,26,50,74,98],[6,30,54,78,102],[6,28,54,80,106],[6,32,58,84,110],[6,30,58,86,114],[6,34,62,90,118],[6,26,50,74,98,122],[6,30,54,78,102,126],[6,26,52,78,104,130],[6,30,56,82,108,134],[6,34,60,86,112,138],[6,30,58,86,114,142],[6,34,62,90,118,146],[6,30,54,78,102,126,150],[6,24,50,76,102,128,154],[6,28,54,80,106,132,158],[6,32,58,84,110,136,162],[6,26,54,82,110,138,166],[6,30,58,86,114,142,170]],ct.MAX_LENGTH=[[[41,25,17,10],[34,20,14,8],[27,16,11,7],[17,10,7,4]],[[77,47,32,20],[63,38,26,16],[48,29,20,12],[34,20,14,8]],[[127,77,53,32],[101,61,42,26],[77,47,32,20],[58,35,24,15]],[[187,114,78,48],[149,90,62,38],[111,67,46,28],[82,50,34,21]],[[255,154,106,65],[202,122,84,52],[144,87,60,37],[106,64,44,27]],[[322,195,134,82],[255,154,106,65],[178,108,74,45],[139,84,58,36]],[[370,224,154,95],[293,178,122,75],[207,125,86,53],[154,93,64,39]],[[461,279,192,118],[365,221,152,93],[259,157,108,66],[202,122,84,52]],[[552,335,230,141],[432,262,180,111],[312,189,130,80],[235,143,98,60]],[[652,395,271,167],[513,311,213,131],[364,221,151,93],[288,174,119,74]]],ct[ot(132)]=1335,ct[ot(149)]=7973,ct.G15_MASK=21522;const ut=lt;function lt(t,e){const n=pt();return(lt=function(t,e){return n[t-=459]})(t,e)}function pt(){const t=["totalCount","101497OWZzcl","9MoInTM","870471eTRHRT","getRsBlockTable","972jzNivf","getDataCount","7675549RiInAZ","4656336mWIzAB","2khOGMt","/ecl:","dataCount","length","84XNNxVH","RS_BLOCK_TABLE","push","8258370xzDeTI","1075093oOZXSg","16LypsGV","358885prClfW"];return(pt=function(){return t})()}!function(){const t=lt,e=pt();for(;;)try{if(637928===-parseInt(t(460))/1*(-parseInt(t(472))/2)+-parseInt(t(466))/3*(-parseInt(t(461))/4)+parseInt(t(462))/5*(-parseInt(t(476))/6)+-parseInt(t(470))/7+parseInt(t(471))/8+parseInt(t(465))/9*(-parseInt(t(459))/10)+-parseInt(t(464))/11*(-parseInt(t(468))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class ft{constructor(t,e){this[lt(463)]=t,this.dataCount=e}[ut(469)](){return this[ut(474)]}getTotalCount(){return this[ut(463)]}static getRSBlocks(t,e){const n=ut,r=ft[n(467)](t,e),s=r[n(475)]/3,i=[];for(let t=0;t<s;t+=1){const e=r[3*t+0],s=r[3*t+1],o=r[3*t+2];for(let t=0;t<e;t+=1)i[n(478)](new ft(s,o))}return i}static[ut(467)](t,e){const n=ut;switch(e){case y.L:return ft[n(477)][4*(t-1)+0];case y.M:return ft[n(477)][4*(t-1)+1];case y.Q:return ft.RS_BLOCK_TABLE[4*(t-1)+2];case y.H:return ft[n(477)][4*(t-1)+3]}throw new Error("tn:"+t+n(473)+e)}}ft[ut(477)]=[[1,26,19],[1,26,16],[1,26,13],[1,26,9],[1,44,34],[1,44,28],[1,44,22],[1,44,16],[1,70,55],[1,70,44],[2,35,17],[2,35,13],[1,100,80],[2,50,32],[2,50,24],[4,25,9],[1,134,108],[2,67,43],[2,33,15,2,34,16],[2,33,11,2,34,12],[2,86,68],[4,43,27],[4,43,19],[4,43,15],[2,98,78],[4,49,31],[2,32,14,4,33,15],[4,39,13,1,40,14],[2,121,97],[2,60,38,2,61,39],[4,40,18,2,41,19],[4,40,14,2,41,15],[2,146,116],[3,58,36,2,59,37],[4,36,16,4,37,17],[4,36,12,4,37,13],[2,86,68,2,87,69],[4,69,43,1,70,44],[6,43,19,2,44,20],[6,43,15,2,44,16],[4,101,81],[1,80,50,4,81,51],[4,50,22,4,51,23],[3,36,12,8,37,13],[2,116,92,2,117,93],[6,58,36,2,59,37],[4,46,20,6,47,21],[7,42,14,4,43,15],[4,133,107],[8,59,37,1,60,38],[8,44,20,4,45,21],[12,33,11,4,34,12],[3,145,115,1,146,116],[4,64,40,5,65,41],[11,36,16,5,37,17],[11,36,12,5,37,13],[5,109,87,1,110,88],[5,65,41,5,66,42],[5,54,24,7,55,25],[11,36,12,7,37,13],[5,122,98,1,123,99],[7,73,45,3,74,46],[15,43,19,2,44,20],[3,45,15,13,46,16],[1,135,107,5,136,108],[10,74,46,1,75,47],[1,50,22,15,51,23],[2,42,14,17,43,15],[5,150,120,1,151,121],[9,69,43,4,70,44],[17,50,22,1,51,23],[2,42,14,19,43,15],[3,141,113,4,142,114],[3,70,44,11,71,45],[17,47,21,4,48,22],[9,39,13,16,40,14],[3,135,107,5,136,108],[3,67,41,13,68,42],[15,54,24,5,55,25],[15,43,15,10,44,16],[4,144,116,4,145,117],[17,68,42],[17,50,22,6,51,23],[19,46,16,6,47,17],[2,139,111,7,140,112],[17,74,46],[7,54,24,16,55,25],[34,37,13],[4,151,121,5,152,122],[4,75,47,14,76,48],[11,54,24,14,55,25],[16,45,15,14,46,16],[6,147,117,4,148,118],[6,73,45,14,74,46],[11,54,24,16,55,25],[30,46,16,2,47,17],[8,132,106,4,133,107],[8,75,47,13,76,48],[7,54,24,22,55,25],[22,45,15,13,46,16],[10,142,114,2,143,115],[19,74,46,4,75,47],[28,50,22,6,51,23],[33,46,16,4,47,17],[8,152,122,4,153,123],[22,73,45,3,74,46],[8,53,23,26,54,24],[12,45,15,28,46,16],[3,147,117,10,148,118],[3,73,45,23,74,46],[4,54,24,31,55,25],[11,45,15,31,46,16],[7,146,116,7,147,117],[21,73,45,7,74,46],[1,53,23,37,54,24],[19,45,15,26,46,16],[5,145,115,10,146,116],[19,75,47,10,76,48],[15,54,24,25,55,25],[23,45,15,25,46,16],[13,145,115,3,146,116],[2,74,46,29,75,47],[42,54,24,1,55,25],[23,45,15,28,46,16],[17,145,115],[10,74,46,23,75,47],[10,54,24,35,55,25],[19,45,15,35,46,16],[17,145,115,1,146,116],[14,74,46,21,75,47],[29,54,24,19,55,25],[11,45,15,46,46,16],[13,145,115,6,146,116],[14,74,46,23,75,47],[44,54,24,7,55,25],[59,46,16,1,47,17],[12,151,121,7,152,122],[12,75,47,26,76,48],[39,54,24,14,55,25],[22,45,15,41,46,16],[6,151,121,14,152,122],[6,75,47,34,76,48],[46,54,24,10,55,25],[2,45,15,64,46,16],[17,152,122,4,153,123],[29,74,46,14,75,47],[49,54,24,10,55,25],[24,45,15,46,46,16],[4,152,122,18,153,123],[13,74,46,32,75,47],[48,54,24,14,55,25],[42,45,15,32,46,16],[20,147,117,4,148,118],[40,75,47,7,76,48],[43,54,24,22,55,25],[10,45,15,67,46,16],[19,148,118,6,149,119],[18,75,47,31,76,48],[34,54,24,34,55,25],[20,45,15,61,46,16]];const dt=kt;function It(){const t=["1139966NNPBTN","32dhVRQA","setupPositionProbePattern","1062hYOAmn","UTF8","4029105lgUcIl","getDataCount","setupTypeNumber","push","modules","numeric","getModuleCount","getLostPoint","typeNumber","getPatternPosition","errorCorrectLevel","getLength","forEach","getBestMaskPattern","isDark","default","write","PAD0","addData","mod","createBytes","makeImpl","createData","map","6mknCUU","put","mapData","alphanumeric","fill","setErrorCorrectLevel","string","getBCHTypeNumber","qrDataList","getTotalCount","setupTypeInfo","charCodeAt","mode:","9404mVCeHk","getTypeNumber","1TRrAId","clearData","setupPositionAdjustPattern","11468268JGoPeH","getBCHTypeInfo","kanji","byte","putBit","getAt","1541639vAgyeS","stringToBytesFuncs","getRSBlocks","8590XrKgNC","258GXiKXE","moduleCount","getLengthInBits","668234qmpdlj","max","PAD1","getMode","unicode","reduce","length","make"];return(It=function(){return t})()}!function(){const t=kt,e=It();for(;;)try{if(405430===-parseInt(t(184))/1*(parseInt(t(140))/2)+-parseInt(t(129))/3*(-parseInt(t(182))/4)+-parseInt(t(145))/5*(parseInt(t(169))/6)+parseInt(t(132))/7*(parseInt(t(141))/8)+-parseInt(t(143))/9*(-parseInt(t(128))/10)+parseInt(t(125))/11+parseInt(t(187))/12)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const mt=Array(41)[dt(173)](0)[dt(168)](((t,e)=>e));var gt,wt,yt;(wt=gt||(gt={})).L="L",wt.M="M",wt.Q="Q",wt.H="H",function(t){const e=dt;t[e(150)]=e(150),t.alphanumeric=e(172),t[e(122)]=e(122),t[e(189)]=e(189),t[e(136)]=e(136)}(yt||(yt={}));class bt{constructor(t=0,e=gt.L){const n=dt;this.modules=[],this[n(130)]=0,this.typeNumber=t,this.errorCorrectLevel=y[e],this[n(177)]=[]}[dt(183)](){return this[dt(153)]}setTypeNumber(t){this[dt(153)]=t}getErrorCorrectLevel(){return this[dt(155)]}[dt(174)](t){this[dt(155)]=t}[dt(185)](){this[dt(177)]=[]}[dt(163)](t,e=yt[dt(122)]){const n=dt;if(t instanceof x)this[n(177)].push(t);else{if(typeof t!==n(175))throw new Error(typeof t);switch(e){case yt.numeric:this[n(177)][n(148)](new tt(t));break;case yt.alphanumeric:this[n(177)][n(148)](new L(t));break;case yt.byte:this[n(177)].push(new P(t,bt.stringToBytesFuncs[n(160)]));break;case yt.unicode:this.qrDataList[n(148)](new P(t,bt[n(126)][n(144)]));break;case yt[n(189)]:this[n(177)][n(148)](new K(t,bt[n(126)].SJIS));break;default:throw new Error(n(181)+e)}}}[dt(159)](t,e){return!(!this[dt(149)][t]||null==this.modules[t][e])&&this.modules[t][e]}[dt(151)](){return this.moduleCount}[dt(139)](){const t=dt;if(this[t(153)]<1){let e=1;for(;e<40;e++){const n=ft.getRSBlocks(e,this.errorCorrectLevel),r=new g;this.qrDataList[t(157)]((n=>{const s=t;r[s(170)](n[s(135)](),4),r[s(170)](n.getLength(),n[s(131)](e)),n.write(r)}));const s=n.reduce(((e,n)=>e+n[t(146)]()),0);if(r[t(131)]()<=8*s)break}this[t(153)]=e}this.makeImpl(!1,this[t(158)]())}[dt(158)](){const t=dt;let e=0,n=0;for(let r=0;r<8;r+=1){this[t(166)](!0,r);const s=ct[t(152)](this);(0==r||e>s)&&(e=s,n=r)}return n}[dt(166)](t,e){const n=dt;this[n(130)]=4*this[n(153)]+17,this[n(149)]=[];for(let t=0;t<this[n(130)];t+=1){this[n(149)][n(148)]([]);for(let e=0;e<this[n(130)];e+=1)this[n(149)][t][n(148)](null)}this[n(142)](0,0),this[n(142)](this[n(130)]-7,0),this.setupPositionProbePattern(0,this[n(130)]-7),this.setupPositionAdjustPattern(),this.setupTimingPattern(),this[n(179)](t,e),this[n(153)]>=7&&this[n(147)](t);const r=bt[n(167)](this[n(153)],this[n(155)],this[n(177)]);this[n(171)](r,e)}[dt(171)](t,e){const n=dt;let r=-1,s=this[n(130)]-1,i=7,o=0;const a=ct.getMaskFunc(e);for(let e=this[n(130)]-1;e>0;e-=2)for(6==e&&(e-=1);;){for(let r=0;r<2;r+=1)if(null==this[n(149)][s][e-r]){let c=!1;o<t[n(138)]&&(c=1==(t[o]>>>i&1));a(s,e-r)&&(c=!c),this[n(149)][s][e-r]=c,i-=1,-1==i&&(o+=1,i=7)}if(s+=r,s<0||this[n(130)]<=s){s-=r,r=-r;break}}}[dt(186)](){const t=dt,e=ct[t(154)](this[t(153)]);e[t(157)]((n=>{const r=t;e[r(157)]((t=>{const e=r;if(null==this.modules[n][t])for(let r=-2;r<=2;r+=1)for(let s=-2;s<=2;s+=1)this[e(149)][n+r][t+s]=-2==r||2==r||-2==s||2==s||0==r&&0==s}))}))}[dt(142)](t,e){const n=dt;for(let r=-1;r<=7;r+=1)for(let s=-1;s<=7;s+=1)t+r<=-1||this[n(130)]<=t+r||e+s<=-1||this.moduleCount<=e+s||(0<=r&&r<=6&&(0==s||6==s)||0<=s&&s<=6&&(0==r||6==r)||2<=r&&r<=4&&2<=s&&s<=4?this.modules[t+r][e+s]=!0:this[n(149)][t+r][e+s]=!1)}setupTimingPattern(){const t=dt;for(let e=8;e<this.moduleCount-8;e+=1)null==this[t(149)][e][6]&&(this.modules[e][6]=e%2==0);for(let e=8;e<this[t(130)]-8;e+=1)null==this[t(149)][6][e]&&(this.modules[6][e]=e%2==0)}[dt(147)](t){const e=dt,n=ct[e(176)](this[e(153)]);for(let r=0;r<18;r+=1)this[e(149)][~~(r/3)][r%3+this[e(130)]-8-3]=!t&&1==(n>>r&1);for(let r=0;r<18;r+=1)this[e(149)][r%3+this[e(130)]-8-3][~~(r/3)]=!t&&1==(n>>r&1)}[dt(179)](t,e){const n=dt,r=this.errorCorrectLevel<<3|e,s=ct[n(188)](r);for(let e=0;e<15;e+=1){const r=!t&&1==(s>>e&1);e<6?this[n(149)][e][8]=r:e<8?this[n(149)][e+1][8]=r:this[n(149)][this.moduleCount-15+e][8]=r}for(let e=0;e<15;e+=1){const r=!t&&1==(s>>e&1);e<8?this[n(149)][8][this.moduleCount-e-1]=r:e<9?this[n(149)][8][15-e-1+1]=r:this[n(149)][8][15-e-1]=r}this[n(149)][this[n(130)]-8][8]=!t}static[dt(167)](t,e,n){const r=dt,s=ft[r(127)](t,e),i=new g;n.forEach((e=>{const n=r;i.put(e[n(135)](),4),i[n(170)](e.getLength(),e.getLengthInBits(t)),e[n(161)](i)}));const o=s[r(137)](((t,e)=>t+e[r(146)]()),0);if(i[r(131)]()>8*o)throw new Error("code length overflow. ("+i.getLengthInBits()+">"+8*o+")");for(i.getLengthInBits()+4<=8*o&&i[r(170)](0,4);i[r(131)]()%8!=0;)i[r(123)](!1);for(;!(i[r(131)]()>=8*o||(i[r(170)](bt[r(162)],8),i[r(131)]()>=8*o));)i[r(170)](bt.PAD1,8);return bt.createBytes(i,s)}static[dt(165)](t,e){const n=dt;let r=0,s=0,i=0;const o=new Array(e[n(138)]).map((t=>[])),a=new Array(e[n(138)]).map((t=>[]));function c(t){const e=n,r=[];for(let n=0;n<t;n+=1)r[e(148)](0);return r}for(let h=0;h<e[n(138)];h+=1){const u=e[h][n(146)](),l=e[h][n(178)]()-u;s=Math[n(133)](s,u),i=Math[n(133)](i,l),o[h]=c(u);for(let e=0;e<o[h].length;e+=1)o[h][e]=255&t.getBuffer()[e+r];r+=u;const p=ct.getErrorCorrectPolynomial(l),f=new E(o[h],p[n(156)]()-1)[n(164)](p);a[h]=c(p[n(156)]()-1);for(let t=0;t<a[h][n(138)];t+=1){const e=t+f[n(156)]()-a[h][n(138)];a[h][t]=e>=0?f[n(124)](e):0}}const h=c(e[n(137)](((t,e)=>t+e[n(178)]()),0));let u=0;for(let t=0;t<s;t+=1)for(let r=0;r<e[n(138)];r+=1)t<o[r][n(138)]&&(h[u]=o[r][t],u+=1);for(let t=0;t<i;t+=1)for(let r=0;r<e[n(138)];r+=1)t<a[r][n(138)]&&(h[u]=a[r][t],u+=1);return h}}function kt(t,e){const n=It();return(kt=function(t,e){return n[t-=122]})(t,e)}bt[dt(126)]={default(t){const e=dt,n=[];for(let r=0;r<t.length;r+=1){const s=t[e(180)](r);n.push(255&s)}return n}},bt[dt(162)]=236,bt[dt(134)]=17,function(){const t=St,e=Ct();for(;;)try{if(218572===-parseInt(t(381))/1+-parseInt(t(373))/2*(parseInt(t(382))/3)+parseInt(t(379))/4*(parseInt(t(378))/5)+-parseInt(t(384))/6*(-parseInt(t(375))/7)+-parseInt(t(374))/8*(-parseInt(t(377))/9)+-parseInt(t(385))/10*(-parseInt(t(380))/11)+parseInt(t(383))/12)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const At={UTF8:t=>function(t){const e=St,n=[];for(let r=0;r<t[e(387)];r++){let s=t.charCodeAt(r);s<128?n[e(386)](s):s<2048?n[e(386)](192|s>>6,128|63&s):s<55296||s>=57344?n[e(386)](224|s>>12,128|s>>6&63,128|63&s):(r++,s=65536+((1023&s)<<10|1023&t[e(376)](r)),n[e(386)](240|s>>18,128|s>>12&63,128|s>>6&63,128|63&s))}return n}(t)};function St(t,e){const n=Ct();return(St=function(t,e){return n[t-=373]})(t,e)}function Ct(){const t=["8Hlluii","1540165tzvwGC","365615kDwGlz","21pfdawy","5497404VcrzHK","210678TRdIeM","10vOKVlR","push","length","118588vsTuKw","37992MCGFya","14FBmGby","charCodeAt","441KfHjgV","245465NcBdze"];return(Ct=function(){return t})()}const Ot=Tt;!function(){const t=Tt,e=vt();for(;;)try{if(355753===parseInt(t(201))/1*(parseInt(t(191))/2)+-parseInt(t(198))/3+-parseInt(t(190))/4+parseInt(t(196))/5*(-parseInt(t(192))/6)+parseInt(t(184))/7*(parseInt(t(199))/8)+-parseInt(t(185))/9*(-parseInt(t(200))/10)+parseInt(t(197))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const Zt=t=>!!t&&typeof t===Ot(187)&&!Array[Ot(183)](t);function vt(){const t=["1490ztLypT","12KeLRga","reverse","shift","forEach","841955GjyHLe","1228601MTHXQr","1381530ftksSP","5347192cubYTd","10uUfMOY","718AYUqlc","join","split","isArray","7zOHZFb","3642885keQfIz","toLocaleUpperCase","object","length","keys","2266880HnQcqX"];return(vt=function(){return t})()}function Mt(t,e=!1){const n=Ot,r=t[n(182)]("")[n(193)]()[n(181)]("");return e?r[n(186)]():r}function Tt(t,e){const n=vt();return(Tt=function(t,e){return n[t-=181]})(t,e)}function Et(t,...e){const n=Ot;if(!e[n(188)])return t;const r=e[n(194)]();return void 0!==r&&Zt(t)&&Zt(r)?(t={...t},Object[n(189)](r)[n(195)]((e=>{const s=n,i=t[e],o=r[e];Array[s(183)](i)&&Array[s(183)](o)?t[e]=o:Zt(i)&&Zt(o)?t[e]=Et({...i},o):t[e]=o})),Et(t,...e)):t}const Wt=Rt;function Rt(t,e){const n=jt();return(Rt=function(t,e){return n[t-=291]})(t,e)}!function(){const t=Rt,e=jt();for(;;)try{if(640891===-parseInt(t(303))/1+parseInt(t(300))/2*(parseInt(t(297))/3)+parseInt(t(295))/4+-parseInt(t(291))/5+-parseInt(t(298))/6+-parseInt(t(301))/7*(parseInt(t(299))/8)+parseInt(t(292))/9*(parseInt(t(293))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();function jt(){const t=["560iKmpGS","talp","2940588NWHstr","repeat","3rEnLLH","4429776bWsaiv","280QdBtTN","47982xjIiBh","72107YgNyLo","mrof","1009356sSKMLY","1881420hkUtHH","380286lbyQYR"];return(jt=function(){return t})()}const Bt=Wt(294),Vt=Wt(302),Nt=Mt("rq",!0)+Mt("-",!0)+Mt(Bt,!0)+Mt(Vt,!0),Jt=Mt("a"[Wt(296)](6)+"#",!0),Yt=Pt;!function(){const t=Pt,e=Xt();for(;;)try{if(628284===-parseInt(t(489))/1*(parseInt(t(488))/2)+-parseInt(t(484))/3*(-parseInt(t(483))/4)+-parseInt(t(486))/5+-parseInt(t(478))/6+parseInt(t(479))/7+parseInt(t(476))/8+parseInt(t(473))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const xt={top:Yt(480),bottom:Yt(475),left:Yt(474),right:Yt(477)};const Dt=t=>typeof t===Yt(487)?t:parseInt(t.replace("%",""),10);function Xt(){const t=["rotate(","792655SyaUPq","number","704766uPGUWI","2WHvQFK","10600983QyOojO","left","bottom","3750328eselRE","right","6951264fdeDvj","1513484IdCPxH","top",") scale(1, -1) translate(","trim","316EVwFPR","29895CMXRcH"];return(Xt=function(){return t})()}function Pt(t,e){const n=Xt();return(Pt=function(t,e){return n[t-=473]})(t,e)}const Ut=(t,e="0%")=>t?t.endsWith("%")?t:t+"%":e,Gt=zt;!function(){const t=zt,e=Qt();for(;;)try{if(704527===parseInt(t(277))/1*(-parseInt(t(265))/2)+parseInt(t(215))/3+-parseInt(t(222))/4*(-parseInt(t(216))/5)+-parseInt(t(214))/6+parseInt(t(240))/7+parseInt(t(237))/8+-parseInt(t(239))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const Ft={text:Gt(275),image:Gt(276)},Lt={disabled:!1,enableText:!0,type:Gt(275),value:Nt},qt=Gt(251);function zt(t,e){const n=Qt();return(zt=function(t,e){return n[t-=208]})(t,e)}const Ht=(t,e)=>!t?.[Gt(261)]?.[e]?.[Gt(274)],Kt=(t,e,n)=>!n||!t?.[Gt(261)]?.[e]?.[Gt(274)];function Qt(){const t=["1767bMGCAI","mask","find","userSpaceOnUse","thickness","type","text-anchor","number","inner","trim","radius","50%","verticalOffset","http://www.w3.org/2000/svg","-text-path-","rect","appendChild","dominant-baseline","px;","right","includes","4205664KEsTRN","3256437uiXIkH","401255eLDQOe","normal","getElementsByTagName","; fill: ","textContent","borderOuter","68QJtPSx","entries","curveDisabled","setAttribute","max","nextSibling","px; font-family: ","middle","curveRadius","path","borderInner"," translate(","left","fill","rotate(","9136776kpkoTU","createElementNS","13779720juxYJP","4924717sgoSrF"," 0 0 1 ","toString","getAttribute","document","none","string","qr-mask-","forEach","; font-size: ","color","#ffffff","white","Helvetica","from","transform","top","insertBefore","length","bottom","#000000","decorations","maskUnits","horizontalOffset","href","1538yKxjZE","offset","min","alignment-baseline","style","enableText","defs","stroke-width","firstChild","disabled","text","image"];return(Qt=function(){return t})()}const _t=t=>{const e=Gt;if("string"==typeof t)return t;if(!t)return"";const{fontFace:n=e(253),fontSize:r=20,fontColor:s="#000000",letterSpacing:i=0,fontWeight:o=e(217)}=t;return"font-weight: "+o+e(249)+r+e(228)+n+e(219)+s+"; letter-spacing: "+i+e(211)};Lt.style={fontFace:Gt(253),fontSize:20,fontColor:Jt,letterSpacing:2};const $t={bottom:{...Lt}};const te=({document:t,position:e,rotate:n,flip:r,thickness:s,height:i,width:o,round:a,offset:c=0,curveAdjustment:h=0,curveRadius:u,outerBorderPadding:l=0,instanceId:p})=>{const f=Gt,d=Math[f(267)](o,i),I=t[f(238)](f(290),f(231)),m=(t=>{const e=Gt;if(t>=50)return 1;const n=[{R:0,P:0},{R:5,P:0},{R:10,P:.12},{R:15,P:.2},{R:20,P:.32},{R:25,P:.44},{R:30,P:.56},{R:35,P:.65},{R:40,P:.78},{R:45,P:.9},{R:50,P:1}],r=n[e(279)]((e=>t<=e.R))||n[0],s=n[e(279)]((e=>t>e.R))||n[n[e(258)]-1],{R:i,P:o}=r,{R:a,P:c}=s;return o+(t-i)/(a-i)*(c-o)})(typeof a===f(246)?Dt(a):a),g=(d-s-2*l-10*h*2)/2*(void 0!==u?function(t){const e=Gt;let n;return n=typeof t===e(284)?t:typeof t===e(246)?(t[e(213)]("%"),parseFloat(t)):0,n=Math[e(267)](Math[e(226)](n,0),50),.5+n/50*.5}(u):m),w=((t,e,n,r)=>{const s=Yt,i=n/2,o=r/2;let a="";return t&&(a+=s(485)+t+", "+i+", "+o+")"),e&&(a+="translate("+i+", "+o+s(481)+-i+", "+-o+")"),a[s(482)]()})(n,r,o,i);I[f(225)]("id",e+f(291)+p),I[f(225)]("transform",w);const{startX:y,startY:b,pathWidth:k}=((t,e,n,r,s={})=>{let i=e/2,o=e/2+r,a=t-e;return n&&(a-=2*n,i+=n,o+=n),i+=s[Yt(474)]||0,o+=s.top||0,{startX:i,startY:o,pathWidth:a}})(d,s,l,c);return I.setAttribute("d",(A=k,"M"+y+","+(b+(S=g))+" a"+S+","+S+Gt(241)+S+","+-S+" h"+(A-2*S)+" a"+S+","+S+Gt(241)+S+","+S)),I;var A,S},ee=({document:t,thickness:e,value:n,svg:r,position:s,height:i,width:o,round:a,style:c,offset:h=0,curveAdjustment:u=0,curveDisabled:l=!1,outerBorderPadding:p=0,curveRadius:f,instanceId:d,noBorderThickness:I,enabledBorders:m})=>{const g=Gt;let w=0,y=!1;if(s===xt[g(212)]?w=90:s===xt[g(259)]?y=!l:s===xt[g(234)]&&(w=270),l){const a=t[g(238)]("http://www.w3.org/2000/svg",g(275));let u=o/2,l=(i-Math.min(o,i)+e)/2+2*p+h-(i-o>0?0:(o-i)/2);if(s===xt[g(259)]?l=i-2*p-e/2-h:s===xt[g(256)]&&(l=2*p+e/2+h),s===xt[g(256)]||s===xt[g(259)]){let t=0;!m[xt[g(234)]]&&m[xt.right]?t=-(e-I)/2:m[xt.left]&&!m[xt[g(212)]]&&(t=(e-I)/2),u+=t}else if(s===xt.left||s===xt.right){let t=0;!m[xt.top]&&m[xt.bottom]?t=s===xt[g(234)]?(e-I)/2:-(e-I)/2:m[xt[g(256)]]&&!m[xt[g(259)]]&&(t=s===xt[g(234)]?-(e-I)/2:(e-I)/2),u+=t}let f="";0!==w&&(f+=g(236)+w+", "+o/2+", "+i/2+")"),a[g(225)]("x",u.toString()),a[g(225)]("y",l[g(242)]()),a.setAttribute(g(283),g(229)),a[g(225)](g(210),g(229)),f&&a[g(225)](g(255),f[g(286)]()),a[g(220)]=n;const d=_t(c);a[g(225)](g(269),d),r.appendChild(a)}else{let l=r[g(218)](g(271))[0];!l&&(l=t[g(238)](g(290),g(271)),r[g(209)](l));const b=te({document:t,position:s,rotate:w,flip:y,thickness:e,height:i,width:o,round:a,offset:h,curveAdjustment:u,enabledBorders:m,outerBorderPadding:p,curveRadius:f,noBorderThickness:I,instanceId:d}),{x:k,y:A}=function(t,e,n,r){const s=Yt;let i=0,o=0;const a=(e-n)/2;return r[s(474)]&&r.right&&r[s(480)]&&r[s(475)]?(i=0,o=0):t===s(480)||"bottom"===t?!r.left&&r.right?i=-a:(r.left&&!r[s(477)]||r[s(474)]&&r[s(477)])&&(i=a):"left"!==t&&t!==s(477)||(!r.top&&r[s(475)]?r[s(474)]&&r[s(477)]?(i=t===s(474)?2*+a:0,o=-a):i=t===s(474)?+a:-a:r.top&&!r.bottom?r.left&&r.right?(i=t===s(474)?0:2*a,o=-a):i=0:r[s(480)]&&r.bottom?o=r[s(474)]&&r[s(477)]?2*+a:+a:(i=r[s(474)]&&r[s(477)]?2*+a:+a,o=r[s(474)]&&r[s(477)]?2*-a:-a)),{x:i,y:o}}(s,e,I,m);if(0!==k||0!==A){const t=((b[g(243)](g(255))||"")+g(233)+k+", "+A+")")[g(286)]();b[g(225)]("transform",t)}l[g(209)](b),r[g(209)]((({document:t,value:e,position:n,style:r,instanceId:s})=>{const i=Gt,o=t.createElementNS("http://www.w3.org/2000/svg",i(275)),a=t[i(238)](i(290),"textPath");a[i(225)](i(264),"#"+n+i(291)+s),a[i(225)](i(283),i(229)),a[i(225)]("startOffset",i(288)),a.textContent=e,a[i(225)](i(268),i(229));const c=_t(r);return o.setAttribute("style",c),o[i(209)](a),o})({document:t,position:s,rotate:w,value:n,style:c,instanceId:d}))}},ne=({document:t,thickness:e,value:n,svg:r,position:s,height:i,width:o,offset:a=0,style:c})=>{const h=Gt,u=t.createElementNS(h(290),h(276)),l=Math.min(o,i);let p=(o-l+e)/2,f=(i-l+e)/2+a;s===xt[h(256)]?p+=(l-e)/2:s===xt[h(212)]?(p+=l-e,f+=(l-e)/2):s===xt[h(259)]?(p+=(l-e)/2,f+=l-e):s===xt[h(234)]&&(f+=(l-e)/2),u[h(225)]("href",n||""),u.setAttribute("x",""+p),u.setAttribute("y",""+f),u[h(225)](h(269),c?.[h(242)]()||""),r[h(209)](u)},re=t=>(e,n,r,s,i,o,a,c,h)=>{const u=Gt,{instanceId:l}=n,p=r,f=r,d=Math.min(p,f),I=Ut(t[u(287)]),m=I&&Dt(I)>0?Dt(I)/100*d:0,g=Ut(t?.[u(285)]?.[u(287)],m),w=Math.min(Math.max(t[u(285)]?.scale??1,0),1.5),y=t[u(285)]?.[u(263)]??0,b=t[u(285)]?.[u(289)]??0,k=t.thickness,A=t[u(250)]??u(260),S=t.borderOuter?t[u(221)].thickness/2:0,C=t[u(232)]?t.borderInner[u(281)]/2:0,O=n[u(244)],Z=i[u(234)]+i.right,v=i[u(256)]+i.bottom,M=s(k,m),T={top:Ht(t,u(256)),right:Ht(t,u(212)),bottom:Kt(t,"bottom",h()),left:Ht(t,"left")},E=O[u(238)](u(290),u(208)),W={x:o[u(234)]/2,y:o[u(256)]/2,width:d+Z-o[u(234)],height:d+v-o[u(256)],fill:A,rx:I??m};Object[u(223)](W)[u(248)]((([t,e])=>{E[u(225)](t,e.toString())}));const R=O[u(238)](u(290),u(208)),j=m>=200?u(288):m,B=p+Z-(i[u(234)]+i[u(212)]+a.left+a[u(212)]+o.left+o[u(212)]),V=f+v-(i.top+i.bottom+a.top+a[u(259)]+o[u(256)]+o[u(259)]),N=B*w,J=V*w,Y=(B-N)/2-y,x=(V-J)/2-b,D={x:i.left+a.left+o[u(234)]+Y,y:i.top+a.top+o[u(256)]+x,width:N,height:J,fill:M?.[u(243)](u(235))||qt,rx:g??j};Object[u(223)](D)[u(248)]((([t,e])=>R[u(225)](t,e.toString()))),M&&(({strokePath:t,backgroundMaskGroup:e,svgElement:n,color:r})=>{const s=Gt;t[s(225)](s(235),e?.[s(243)]("fill")||r),e[s(225)]("fill","none"),e[s(225)](s(272),"0"),n[s(257)](e,n.firstChild)})({strokePath:R,backgroundMaskGroup:M,svgElement:e,color:A});let X=e[u(218)](u(271))[0];!X&&(X=O.createElementNS("http://www.w3.org/2000/svg",u(271)),e[u(257)](X,e.firstChild));const P=O[u(238)](u(290),u(278));P[u(225)]("id",u(247)+l),P[u(225)](u(262),u(280));const U=O[u(238)](u(290),"rect");if(U.setAttribute(u(235),u(252)),Object[u(223)](D)[u(248)]((([t,e])=>{const n=u;t!==n(235)&&U[n(225)](t,e[n(242)]())})),X[u(209)](P),P[u(209)](U),e[u(257)](R,e.firstChild?.[u(227)]),e[u(257)](E,e[u(273)]),t[u(221)]&&t[u(221)][u(281)]>0){const n=O[u(238)](u(290),u(208)),r={x:o[u(234)]/2,y:o[u(256)]/2,width:p+Z-o.left,height:f+v-o[u(256)],fill:u(245),rx:I??m,stroke:t[u(221)].color,"stroke-width":t[u(221)][u(281)]};Object.entries(r)[u(248)]((([t,e])=>n.setAttribute(t,e[u(242)]()))),e[u(257)](n,e[u(273)]?.[u(227)])}if(M){if(Array[u(254)](e[u(218)](u(208)))[0]){const t=e[u(273)];t?e[u(257)](M,t):e.appendChild(M)}}if(t[u(232)]&&t[u(232)][u(281)]>0){const n=O[u(238)](u(290),u(208)),r={x:i[u(234)]+a[u(234)]+o.left+Y,y:i[u(256)]+a.top+o[u(256)]+x,width:N,height:J,fill:"none",stroke:t[u(232)].color,"stroke-width":a.left,rx:g??j};Object[u(223)](r)[u(248)]((([t,e])=>n[u(225)](t,e[u(242)]()))),e[u(209)](n)}let G={...$t[u(259)]};if(!h()){const e=((t,e=[xt[Gt(256)],xt[Gt(234)],xt.right])=>{const n=Gt;for(const r of e){const e=t[n(261)]?.[r];if(e&&e[n(270)]&&!e[n(274)]&&e[n(282)]===Ft.text&&e[n(269)])return e[n(269)]}})(t);e&&(G={...G,style:e})}const F=h()?t:{...t,decorations:{...t[u(261)],bottom:{...t.decorations?.bottom||{},...G,disabled:!1,enableText:!0}}};for(const t in F[u(261)]){const n=F[u(261)][t];if(!n?.enableText||!T[t])continue;const r=n[u(282)]===Ft.image?ne:n[u(282)]===Ft[u(275)]?ee:void 0;r&&r({document:O,svg:e,position:t,thickness:F[u(281)],value:n.value,style:n[u(269)],offset:n[u(266)],curveAdjustment:n.curveAdjustment,curveDisabled:n[u(224)],height:f+v,width:p+Z,enabledBorders:T,outerBorderPadding:S,innerBorderPadding:C,round:I,curveRadius:n[u(230)],instanceId:l,noBorderThickness:c})}};function se(){var t=["364SzsqKY","radial","6mPdtOU","6162710nEkKhz","25966413ndKboR","linear","1040355heqqIT","Field 'colorStops' is required in gradient","rotation","89800efgkZa","3178056GMjiAM","length","5398136dydbYV","35664cMJTMn","offset","colorStops"];return(se=function(){return t})()}var ie,oe,ae,ce,he,ue,le,pe,fe,de,Ie,me,ge,we,ye,be,ke,Ae;function Se(t,e){var n=se();return(Se=function(t,e){return n[t-=191]})(t,e)}function Ce(t){var e=Se;const n={...t};if(!n[e(206)]||!n[e(206)][e(202)])throw new Error(e(198));return n[e(199)]?n[e(199)]=Number(n[e(199)]):n[e(199)]=0,n.colorStops=n[e(206)].map((t=>({...t,offset:Number(t[e(205)])}))),n}function Oe(){var t=["cornersDotOptions","margin","small-square","horizontalLine","dot","4123152gZMlpN","imageOptions","center","mode","rounded","1527348GLBJQU","backgroundOptions","207HEcQLv","background","overlay","cornersSquareOptions","classy","circle","gradient","extraRounded","1585CTLXyV","star","horizontal-line","plus","27454Jojxfa","fill","imageSize","verticalLine","tinySquare","undefined","87myCbSa","367815bbpOcU","classyRounded","size","inpoint","square","classy-rounded","outpoint","dotsOptions","heart","randomDot","random-dot","9942OlCpZt","76821oIxrcA","932540ptgyuV","document"];return(Oe=function(){return t})()}function Ze(t,e){var n=Oe();return(Ze=function(t,e){return n[t-=321]})(t,e)}function ve(t){var e=Ze;const n={...t};return n[e(347)]={...n[e(347)],imageSize:Math.min(1,Number(n[e(347)]?.[e(321)]))||1,margin:Number(n.imageOptions?.margin)||0},n[e(347)][e(349)]==be[e(355)]&&(n[e(347)][e(342)]=0),n[e(347)]?.[e(366)]?.[e(359)]&&(n[e(347)][e(366)][e(359)]=Ce(n.imageOptions[e(366)][e(359)])),n[e(333)]={...n[e(333)]},n[e(333)].gradient&&(n.dotsOptions[e(359)]=Ce(n.dotsOptions.gradient)),n[e(333)][e(328)]=Math.round(Math.max(0,n[e(333)][e(328)])||10),n.cornersSquareOptions&&(n[e(356)]={...n[e(356)]},n[e(356)].gradient&&(n[e(356)].gradient=Ce(n[e(356)][e(359)]))),n[e(341)]&&(n[e(341)]={...n[e(341)]},n[e(341)][e(359)]&&(n[e(341)][e(359)]=Ce(n[e(341)][e(359)]))),n.backgroundOptions&&(n[e(352)]={...n[e(352)]},n.backgroundOptions[e(359)]&&(n[e(352)][e(359)]=Ce(n[e(352)].gradient))),typeof document!==e(324)&&!n[e(340)]&&(n.document=document),n}!function(){for(var t=Se,e=se();;)try{if(925960===-parseInt(t(204))/1+parseInt(t(201))/2+-parseInt(t(197))/3+-parseInt(t(203))/4+parseInt(t(194))/5*(-parseInt(t(193))/6)+-parseInt(t(191))/7*(parseInt(t(200))/8)+parseInt(t(195))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),(oe=ie||(ie={}))[(ae=Se)(192)]="radial",oe.linear=ae(196),function(){for(var t=Ze,e=Oe();;)try{if(299983===-parseInt(t(338))/1+-parseInt(t(365))/2*(parseInt(t(325))/3)+-parseInt(t(351))/4+-parseInt(t(361))/5*(parseInt(t(337))/6)+parseInt(t(326))/7+-parseInt(t(346))/8+-parseInt(t(353))/9*(-parseInt(t(339))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),(he=ce||(ce={}))[(ue=Ze)(345)]=ue(345),he[ue(335)]=ue(336),he[ue(350)]=ue(350),he[ue(360)]="extra-rounded",he[ue(322)]="vertical-line",he[ue(344)]=ue(363),he.classy=ue(357),he[ue(327)]=ue(331),he[ue(330)]=ue(330),he.smallSquare=ue(343),he[ue(323)]="tiny-square",he[ue(362)]="star",he[ue(364)]=ue(364),he.diamond="diamond",pe=le||(le={}),fe=Ze,pe.dot=fe(345),pe[fe(330)]=fe(330),pe[fe(334)]="heart",pe.rounded="rounded",pe[fe(357)]=fe(357),pe[fe(332)]=fe(332),pe[fe(329)]=fe(329),Ie=de||(de={}),me=Ze,Ie.dot="dot",Ie.square=me(330),Ie.rounded=me(350),Ie[me(357)]="classy",Ie.outpoint="outpoint",Ie[me(329)]=me(329),we=ge||(ge={}),ye=Ze,we.square=ye(330),we[ye(358)]="circle",ke=be||(be={}),Ae=Ze,ke.center=Ae(348),ke[Ae(355)]="overlay",ke[Ae(354)]=Ae(354),function(){const t=Ee,e=Te();for(;;)try{if(570182===-parseInt(t(249))/1*(-parseInt(t(248))/2)+-parseInt(t(250))/3+parseInt(t(254))/4+parseInt(t(256))/5*(-parseInt(t(261))/6)+-parseInt(t(258))/7*(-parseInt(t(252))/8)+-parseInt(t(257))/9*(parseInt(t(246))/10)+-parseInt(t(259))/11*(parseInt(t(247))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const Me={[gt.L]:.07,[gt.M]:.15,[gt.Q]:.25,[gt.H]:.3};function Te(){const t=["byte","833415yNRZjR","9FwkvAO","213269HdwyWO","921459sacxlq","numeric","6IfyNUd","test","3186940EGAlcv","84NGSbMO","3678VIMaYC","33ZMSWvk","723615lCGUqv","alphanumeric","208KjthOF","unicode","4121272TBSPcG"];return(Te=function(){return t})()}function Ee(t,e){const n=Te();return(Ee=function(t,e){return n[t-=246]})(t,e)}function We(t){const e=Re,n={};return(t[e(307)]||t[e(280)])&&(n[e(320)]={...n[e(320)],...t[e(307)]&&{color:t[e(307)]},...t.dotsGradient&&{gradient:t[e(280)]}}),(t[e(305)]||t[e(309)])&&(n[e(287)]={...n[e(287)],...t[e(305)]&&{color:t.secondaryColor},...t.cornersGradient&&{gradient:t[e(309)]}},n.cornersDotOptions={...n[e(290)],...t.secondaryColor&&{color:t[e(305)]}}),(t[e(304)]||t.cornersDotGradient)&&(n.cornersDotOptions={...n[e(290)],...t[e(304)]&&{color:t[e(304)]},...t.cornersDotGradient&&{gradient:t[e(328)]}}),(t[e(292)]||t.backgroundGradient)&&(n[e(306)]={...n.backgroundOptions,...t[e(292)]&&{color:t[e(292)]},...t[e(288)]&&{gradient:t[e(288)]}}),t[e(286)]&&(n[e(320)]={...n[e(320)],type:t[e(286)]}),t[e(293)]&&(n[e(287)]={...n[e(287)],type:t.cornerSquareShape}),t[e(324)]&&(n.cornersDotOptions={...n[e(290)],type:t.cornerDotShape}),t[e(322)]&&(n.image=t[e(322)]),(void 0!==t.logoSize||t.logoMode||void 0!==t[e(301)]||t[e(329)]||t[e(316)])&&(n[e(315)]={...n.imageOptions,...void 0!==t.logoSize&&{imageSize:t[e(296)]},...t[e(323)]&&{mode:t[e(323)]},...void 0!==t[e(301)]&&{margin:t[e(301)]},fill:{...n[e(315)]?.fill,...t[e(329)]&&{color:t[e(329)]},...t[e(316)]&&{gradient:t[e(316)]}}}),(t[e(291)]||void 0!==t[e(284)]||void 0!==t.borderRadius||t[e(303)]||t.borderTextRight||t[e(294)]||t[e(317)]||t.borderFontFace||void 0!==t[e(302)]||t[e(277)]||void 0!==t.borderLetterSpacing||t.borderFontWeight)&&(n.borderOptions={...n[e(289)],hasBorder:!0,...t[e(291)]&&{color:t[e(291)]},...void 0!==t[e(284)]&&{thickness:t.borderThickness},...void 0!==t.borderRadius&&{radius:String(t[e(278)])},...t[e(299)]&&{fontFace:t[e(299)]},...void 0!==t.borderFontSize&&{fontSize:t.borderFontSize},...t[e(277)]&&{fontColor:t[e(277)]},...void 0!==t[e(314)]&&{letterSpacing:t[e(314)]},...t[e(282)]&&{fontWeight:t[e(282)]},decorations:{...n.borderOptions?.[e(281)],...t[e(303)]&&{top:{...n[e(289)]?.[e(281)]?.[e(300)]||{},text:t[e(303)]}},...t[e(311)]&&{right:{...n.borderOptions?.[e(281)]?.right||{},text:t[e(311)]}},...t[e(294)]&&{bottom:{...n[e(289)]?.decorations?.bottom||{},text:t[e(294)]}},...t[e(317)]&&{left:{...n[e(289)]?.decorations?.[e(321)]||{},text:t[e(317)]}}}}),n}function Re(t,e){const n=Be();return(Re=function(t,e){return n[t-=277]})(t,e)}function je(t){const e=Re,n=[];return void 0!==t[e(296)]&&(typeof t[e(296)]!==e(310)||t.logoSize<0||t.logoSize>1)&&n[e(326)](e(312)),{isValid:0===n[e(297)],errors:n}}function Be(){const t=["borderTextRight","logoSize must be a number between 0 and 1.","65150030NfFXdg","borderLetterSpacing","imageOptions","logoFillGradient","borderTextLeft","190hlKDIB","1606683uEznPy","dotsOptions","left","logo","logoMode","cornerDotShape","9476GUYJND","push","81mWhxCS","cornersDotGradient","logoFillColor","borderFontColor","borderRadius","6Qfldev","dotsGradient","decorations","borderFontWeight","1180464eNYTPz","borderThickness","60CdxvHf","dotShape","cornersSquareOptions","backgroundGradient","borderOptions","cornersDotOptions","borderColor","backgroundColor","cornerSquareShape","borderTextBottom","13627726cqCHiq","logoSize","length","10548930jOVjlA","borderFontFace","top","logoMargin","borderFontSize","borderTextTop","thirdColor","secondaryColor","backgroundOptions","primaryColor","82156PSyscL","cornersGradient","number"];return(Be=function(){return t})()}!function(){const t=Re,e=Be();for(;;)try{if(981870===parseInt(t(318))/1*(-parseInt(t(325))/2)+parseInt(t(319))/3+-parseInt(t(308))/4*(parseInt(t(285))/5)+-parseInt(t(279))/6*(parseInt(t(295))/7)+-parseInt(t(283))/8*(parseInt(t(327))/9)+-parseInt(t(298))/10+parseInt(t(313))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();var Ve=Je;function Ne(){var t=["247177oTFRgz","3032590QFoSxy","11525910aKmInZ","30bTkgMR","11736IcjxFD","186534eJwWoK","480400ujiorj","close","158PtfJut","408468JViPfY","72CNtTwH"];return(Ne=function(){return t})()}function Je(t,e){var n=Ne();return(Je=function(t,e){return n[t-=320]})(t,e)}!function(){for(var t=Je,e=Ne();;)try{if(355471===parseInt(t(324))/1+-parseInt(t(327))/2*(-parseInt(t(323))/3)+parseInt(t(328))/4+parseInt(t(320))/5+parseInt(t(322))/6*(-parseInt(t(330))/7)+-parseInt(t(325))/8*(-parseInt(t(329))/9)+-parseInt(t(321))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Ye{constructor(){}[Ve(326)](){}}const xe=Xe;!function(){const t=Xe,e=Pe();for(;;)try{if(192914===-parseInt(t(132))/1+parseInt(t(131))/2+-parseInt(t(134))/3+-parseInt(t(140))/4+-parseInt(t(143))/5+-parseInt(t(129))/6+parseInt(t(142))/7)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class De extends Ye{constructor(t){const e=Xe;super(),this[e(133)]=t,this[e(130)]=0,this.buflen=0}[xe(138)](){const t=xe;for(;this[t(137)]<8;){const e=this[t(133)][t(138)]();if(-1==e){if(0==this[t(137)])return-1;throw new Error(t(136)+this.buflen)}if(e=="="[t(139)](0))return this[t(137)]=0,-1;De[t(141)](e)||(this.buffer=this[t(130)]<<6|De[t(135)](e),this[t(137)]+=6)}const e=this[t(130)]>>>this[t(137)]-8&255;return this.buflen-=8,e}static isWhitespace(t){const e=xe;return t=="\v"[e(139)](0)||t=="\t"[e(139)](0)||t=="\r"[e(139)](0)||t=="\n".charCodeAt(0)}static[xe(135)](t){const e=xe;if("A"[e(139)](0)<=t&&t<="Z"[e(139)](0))return t-"A"[e(139)](0);if("a"[e(139)](0)<=t&&t<="z".charCodeAt(0))return t-"a"[e(139)](0)+26;if("0".charCodeAt(0)<=t&&t<="9"[e(139)](0))return t-"0"[e(139)](0)+52;if(t=="+".charCodeAt(0))return 62;if(t=="/"[e(139)](0))return 63;throw new Error("c:"+t)}}function Xe(t,e){const n=Pe();return(Xe=function(t,e){return n[t-=129]})(t,e)}function Pe(){const t=["659100ZOxMsA","259044EwOQQS","istream","350865gPnyWa","decode","unexpected end of file./","buflen","readByte","charCodeAt","1213616HLupGj","isWhitespace","7752171XUiybO","1567465ITKLXo","1507158EGUgNe","buffer"];return(Pe=function(){return t})()}function Ue(t,e){var n=Ge();return(Ue=function(t,e){return n[t-=430]})(t,e)}function Ge(){var t=["1756452nrqPcK","3153KRdDmp","738JSJQlB","440505rvTquk","893704ZnjmZR","writeBytes","flush","forEach","3444040iiXSuB","2373285meJCPx","20ycfkZD","7oPzqEI","close","writeByte","204272lDNvmH"];return(Ge=function(){return t})()}var Fe=Ue;!function(){for(var t=Ue,e=Ge();;)try{if(256273===-parseInt(t(434))/1+parseInt(t(437))/2*(parseInt(t(436))/3)+parseInt(t(439))/4+parseInt(t(444))/5+parseInt(t(435))/6*(-parseInt(t(431))/7)+-parseInt(t(443))/8+parseInt(t(438))/9*(parseInt(t(430))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Le{constructor(){}[Fe(440)](t){var e=Fe;t[e(442)]((t=>this[e(433)](t)))}[Fe(441)](){}[Fe(432)](){this[Fe(441)]()}}function qe(t,e){const n=He();return(qe=function(t,e){return n[t-=135]})(t,e)}const ze=qe;function He(){const t=["245643UuZiBs","buffer","writeEncoded","13041fqGixh","5038wECevo","charCodeAt","207464vbWJvF","flush","338060uQaHmT","length","8620wabXaz","writeByte","ostream","38354fmfcTK","400070TnhMOl","21pCAFzk","4tjkfEr","buflen","12lFDebK","encode"];return(He=function(){return t})()}!function(){const t=qe,e=He();for(;;)try{if(100524===parseInt(t(144))/1+-parseInt(t(145))/2+parseInt(t(151))/3*(parseInt(t(147))/4)+parseInt(t(139))/5*(-parseInt(t(149))/6)+-parseInt(t(146))/7*(parseInt(t(137))/8)+-parseInt(t(154))/9+-parseInt(t(141))/10*(-parseInt(t(135))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();ze(142),ze(138),ze(153),ze(150);function Ke(){const t=["31006020ksBScL","11946537pIomNC","1347674fOahcN","1925AWFvGI","pos","2oXEFxG","4338032KNHBRJ","4456eZurWP","694389yASBUd","1836930CcEowx","bytes","15EBETTd"];return(Ke=function(){return t})()}function Qe(t,e){const n=Ke();return(Qe=function(t,e){return n[t-=326]})(t,e)}!function(){const t=Qe,e=Ke();for(;;)try{if(733272===parseInt(t(334))/1+-parseInt(t(337))/2*(parseInt(t(328))/3)+-parseInt(t(326))/4+parseInt(t(331))/5*(-parseInt(t(329))/6)+-parseInt(t(335))/7*(parseInt(t(327))/8)+-parseInt(t(333))/9+parseInt(t(332))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class _e extends Ye{constructor(t){const e=Qe;super(),this[e(330)]=t,this[e(336)]=0}readByte(){const t=Qe;if(this[t(336)]<this[t(330)].length){const t=this.bytes[this.pos];return this.pos+=1,t}return-1}}function $e(t,e){var n=tn();return($e=function(t,e){return n[t-=239]})(t,e)}function tn(){var t=["bytes","46422mnRbqX","149010uAeHXH","10942zUYHnT","5011528JCgXEA","157QXnBCq","writeByte","973732hRPUdc","toByteArray","819tiQpQM","5875668kqDLmv","5ZSunIR","37438140ENJoux"];return(tn=function(){return t})()}var en=$e;!function(){for(var t=$e,e=tn();;)try{if(506582===parseInt(t(243))/1*(-parseInt(t(241))/2)+parseInt(t(240))/3+-parseInt(t(245))/4*(parseInt(t(249))/5)+-parseInt(t(239))/6*(parseInt(t(247))/7)+-parseInt(t(242))/8+-parseInt(t(248))/9+parseInt(t(250))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();en(244),en(246);const nn=rn;function rn(t,e){const n=sn();return(rn=function(t,e){return n[t-=289]})(t,e)}function sn(){const t=["25280211uWdgUM","2001tkHBfB","3386BtJcFH","1613148mgXpkP","40000YXMFuJ","9673407LTgiMw","1730512PnGPqM","66FJPmxf","writeBytes","328210kDlZnk","35PWYFTL","readByte","toByteArray","writeByte","10tbtYFA","encode"];return(sn=function(){return t})()}!function(){const t=rn,e=sn();for(;;)try{if(708648===parseInt(t(292))/1+-parseInt(t(290))/2*(-parseInt(t(289))/3)+parseInt(t(291))/4+parseInt(t(297))/5*(-parseInt(t(295))/6)+-parseInt(t(298))/7*(-parseInt(t(294))/8)+parseInt(t(293))/9*(parseInt(t(302))/10)+-parseInt(t(304))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();nn(303);const on=cn;function an(){const t=["306962LcDOZI","contains","toByteArray","indexOf","writeBytes","bitLength","getSize","toDataURL","fromCharCode","map","data","518745pcOowa","dup key:","1146350gtRRqv","8334606aZjlTS","8WOAZtG","close","charCodeAt","write","writeByte","encode","push","add","height","reduce","308814bnpiYw","length","getLZWRaster","length over","size","writeWord","flush","12vmhJny","2217706qaEJQE","bitBuffer","17633997rfqdnZ","out","width"];return(an=function(){return t})()}!function(){const t=cn,e=an();for(;;)try{if(761310===-parseInt(t(312))/1+parseInt(t(307))/2+-parseInt(t(323))/3+-parseInt(t(306))/4*(parseInt(t(325))/5)+parseInt(t(299))/6+-parseInt(t(326))/7*(parseInt(t(327))/8)+parseInt(t(309))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();on(330),on(301),on(304),on(316),on(319);function cn(t,e){const n=an();return(cn=function(t,e){return n[t-=294]})(t,e)}on(296),on(315),on(313);on(305);const hn=ln;function un(){const t=["scalable"," height: ","trim","647129FSNEoQ","</tbody>","<img","string",' preserveAspectRatio="xMinYMin meet"',"395613VyOUzT",'"/>','px" height="'," width: ","getModuleCount","</title>","undefined","<",'<rect width="100%" height="100%" fill="white" cx="0" cy="0"/>',"alt","renderTo2dContext",'<title id="','<description id="',"#ffffff","join","<tr>"," border-width: 0px; border-style: none;"," padding: 0px; margin: 0px;","fillRect","setPixel","substring",' width="'," padding: 0px; margin: ","qrcode-description","toDataURL",">","qrcode-title","11bREbOV",""","6064542gUDYuB",'<table style="'," background-color: ","text","<tbody>","title","</table>","isDark",' viewBox="0 0 ',"4FHKRMN"," border-collapse: collapse;",'<path d="',"812815HSFMyd","fillStyle","#000000","black","floor",' src="',"4133256IYbQHI","px;","1243730zDxgvZ","margin","</description>","</tr>",' alt="',"createASCII","createImgTag","length",' role="img" aria-labelledby="',"30FjQHqi","9HcjAMJ",' height="','" stroke="transparent" fill="black"/>',"586jLLkaK",'px"'];return(un=function(){return t})()}function ln(t,e){const n=un();return(ln=function(t,e){return n[t-=245]})(t,e)}!function(){const t=ln,e=un();for(;;)try{if(345058===parseInt(t(265))/1*(parseInt(t(300))/2)+parseInt(t(310))/3+parseInt(t(276))/4*(-parseInt(t(279))/5)+-parseInt(t(296))/6*(-parseInt(t(305))/7)+-parseInt(t(285))/8+parseInt(t(297))/9*(-parseInt(t(287))/10)+parseInt(t(267))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();hn(292),hn(248),hn(293);function pn(t,e){const n=fn();return(pn=function(t,e){return n[t-=148]})(t,e)}function fn(){const t=["1176870VgHqMs","fromCharCode","39429GsFDXe","readByte","length","5ymIgRI","28wxtOkt","2763084ybClhj","46oZTiMM","821757OWutmO","190tkzhNW","6926200gRHOTP","charAt","9BdskBS","524117AJyhYf","charCodeAt","push","53004828WsYNiP"];return(fn=function(){return t})()}function dn(){const t=["3381091qMuZdC","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MIWC4zCGguQwh4LlMIiC5jCJgucwioLoMIuC6TCMguowjYLrMI6C7DCPgu0wkILuMJGC7zCSgvAwk4LxMJuBSjCcgUswnYFUMJ6BVTChg0AwooNBMKODQjCkg0MwpYNEMKaDRTCng0YwqINHMKmDSDCqg0kwq4NKMKyDSzCtg0wwroNNMK+DTjCwg08wsYNQMLKDUTCzg1IwtINTMLWDVDC2g1Uwt4NWMLiDVzC5g1gwuoNZMLuDWjC8g1swvYNcML6DXTC/g14wwINfMMGDYDDCg2Eww4NiMMSDYzDFg2QwxoNlMMeDZjDIg2cwyYNoMMqDaTDLg2owzINrMM2DbDDOg20wz4NuMNCDbzDRg3Aw0oNxMNODcjDUg3Mw1YN0MNaDdTDXg3Yw2IN3MNmDeDDag3kw24N6MNyDezDdg3ww3oN9MN+DfjDgg4Aw4YOBMOKDgjDjg4Mw5IOEMOWDhTDmg4Yw54OHMOiDiDDpg4kw6oOKMOuDizDsg4ww7YONMO6DjjDvg48w8IOQMPGDkTDyg5Iw84OTMPSDlDD1g5Uw9oOWMPuBRTD8gVsw/YFSMP6BU04AiOpOAZKaTgOOtU4HlpxOCI/kTgmOT04Kj+NOC4m6Tg2Vc04Ol15OEJigThGJTk4Uio5OFZihThaQok4XmcBOGIt1ThmVuE4ej+VOIZe8TiaVwE4qmKJOLZKGTjGYo04yi/hONpikTjiK2045kk9OO47lTjyYpU4/mKZOQpinTkOUVE5Fi3ZOS5RWTk2T4U5OjMFOT5ZSTlXlaE5WmKhOV4/mTliYqU5ZibNOXYvjTl6M7k5fludOYpukTnGXkE5zk/tOfoqjToCLVE6CmKpOhZirToaXuU6Il1xOiZGIToqYrU6LjpZOjJPxTo6YsE6RiV1OkozdTpSM3E6ViOROmJhqTpmYaU6bjbFOnIifTp6YsU6fmLJOoJizTqGWU06imLROpIzwTqWI5U6mlpJOqIucTquLnU6si55OrZLgTq6Xuk6wmLVOs5i2TraYt066kGxOwI9ZTsGQbU7CmLxOxJi6TsaYu07Hi3dOyo2hTsuJ7k7NmLlOzpi4Ts+Vp07UjmVO1Y5kTtaRvE7XmL1O2JV0TtmQ5U7dgVdO3pi+Tt+YwE7jkeNO5JffTuWIyE7tmL9O7om8TvCLwk7ykodO9oyPTveYwU77lENPAYrpTwmYwk8KiMlPDYzeTw6K6k8PlZpPEJSwTxGLeE8aie9PHJjlTx2TYE8vlIxPMJjETzSUuk82l+BPOJBMTzqOZk88jpdPPYm+T0OSz09GkkFPR5jIT02Iyk9OkuFPT49aT1CNsk9Rl0NPU5HMT1WJvU9XmMdPWZddT1qYw09bmMVPXI3sT12Yxk9em0NPaZjOT2+Y0U9wmM9Pc4nAT3WVuU92mMlPe5jNT3yM8U9/jmdPg4qkT4aY0k+ImMpPi5fhT42OmE+PmMtPkZjQT5aY00+YmMxPm4ufT52Iy0+gi6BPoYm/T6ubRE+tlplPrpWOT6+M8k+1kE5Ptpe1T7+V1k/CjFdPw5GjT8SJ4k/Kj3JPzpjXT9CY3E/RmNpP1JjVT9eRrU/YmNhP2pjbT9uY2U/dldtP35jWT+GQTU/jlpNP5JjdT+WY3k/uj0NP75jrT/OUb0/1lVVP9pjmT/iV7k/6ibRP/pjqUAWY5FAGmO1QCZFxUAuMwlANlHtQD+DFUBGY7FASk3xQFJjhUBaM9FAZjPNQGpjfUB+O2FAhmOdQI5XtUCSSbFAlmONQJoyRUCiY4FApmOhQKpjiUCuXz1AsmOlQLZhgUDaL5FA5jJBQQ5juUEeY71BImPNQSYjMUE+VzlBQmPJQVZjxUFaY9VBamPRQXJLiUGWMklBsmPZQco7DUHSRpFB1kuNQdov0UHiY91B9i1VQgJj4UIWY+lCNllRQkYyGUJiOUFCZlPVQmpj5UKyNw1Ctl2JQspj8ULOZQlC0mPtQtY3CULePnVC+jFhQwplDUMWLzVDJmUBQyplBUM2TrVDPkZxQ0YuhUNWWbFDWmURQ2pe7UN6ZRVDjmUhQ5ZlGUOeRbVDtmUdQ7plJUPWZS1D5mUpQ+5XGUQCLVlEBmU1RAplOUQSJrVEJmUxREo7yURSZUVEVmVBRFplPURiY1FEamVJRH4+eUSGZU1Eql0RRMpbXUTeZVVE6mVRRO5lXUTyZVlE/mVhRQJlZUUGI8lFDjLNRRIxaUUWPW1FGkptRR4uiUUiQ5lFJjPVRS42OUUyZW1FNlsZRTpNlUVCOmVFSmVpRVJlcUVqTfVFcipVRYpldUWWT/FFokVNRaZlfUWqZYFFrlKpRbIz2UW2YWlFumWFRcYukUXWVulF2kbRRd4vvUXiTVFF8jJNRgJliUYKZY1GFk+BRhol+UYmZZlGKjftRjJllUY2NxFGPmWdRkOPsUZGZaFGSlmBRk5lpUZWZalGWmWtRl4/nUZmOylGgiqVRopluUaSZbFGllrtRppltUaiVeVGpmW9RqplwUauZcVGsk35RsJl1UbGZc1GymXRRs5lyUbSN4VG1mXZRtpboUbeX4lG9mXdRxJCmUcWZeFHGj3lRyZl5UcuSnFHMl71RzZOAUdaZw1HbmXpR3OqjUd2Lw1HgmXtR4ZZ9UeaPiFHnkfpR6Zl9UeqT4lHtmX5R8JmAUfGKTVH1mYFR9oulUfiTylH5iZpR+o9vUf2Un1H+mYJSAJOBUgOQblIEmYNSBpWqUgeQ2FIIiqBSCoqnUguZhFIOmYZSEYxZUhSZhVIXl/FSHY+JUiSUu1IllcpSJ5mHUimXmFIqmYhSLpmJUjCTnlIzmYpSNpCnUjeN/FI4jJRSOZmLUjqOaFI7jY9SQ5LkUkSZjVJHkaVSSo3tUkuZjlJMmY9STZFPUk+ZjFJUmZFSVpZVUluNhFJemZBSY4yVUmSN3FJllI1SaZmUUmqZklJvlZtScI/oUnGZm1JyioRSc5mVUnSZk1J1kW5SfZmXUn+ZllKDimNSh4yAUoiZnFKJl6tSjZmYUpGZnVKSmZpSlJmZUpuXzVKfjPdSoInBUqOX8lKpj5VSqpN3UquNhVKsmaBSrZmhUrGX41K0mEpStZmjUrmM+FK8maJSvopOUsGZpFLDlnVSxZK6UseXRVLJlddSzZmlUtLo01LVk65S15mmUtiKqFLZlrFS3Y+fUt6Zp1LfleVS4JmrUuKQqFLjmahS5IvOUuaZqVLniqlS8oxNUvOZrFL1ma1S+JmuUvmZr1L6jtlS/oz5Uv+W3FMBluZTApP1UwWV71MGmbBTCJmxUw2Zs1MPmbVTEJm0UxWZtlMWibtTF5ZrUxmN+lMambdTHZF4UyCPoFMhi6dTI5m4UyqU2VMvmblTMZm6UzOZu1M4mbxTOZVDUzqL5lM7iONTP5O9U0CZvVNBj1xTQ5DnU0WZv1NGmb5TR4+hU0iM31NJmcFTSpS8U02ZwlNRlNpTUpGyU1OR7FNUi6ZTV5PsU1iSUFNalI5TXJZtU16ZxFNgkOhTZoxUU2mZxVNumcZTb4lLU3CI81NxiutTc5GmU3SLcFN1l5FTd5nJU3iJtVN7mchTf4uoU4KZylOElu9TlpnLU5iX0FOajPpTn4y0U6CZzFOlmc5TppnNU6iQflOpiVhTrYl9U66Zz1OwmdBTs4y1U7aZ0VO7i45Two5RU8OZ0lPIlpRTyY2zU8qLeVPLl0ZTzJFvU82UvVPOjvtT1I9mU9aO5lPXjvNT2Y+WU9uUvlPfmdVT4YliU+KRcFPjjPtT5IzDU+WL5VPomdlT6ZJAU+qR/FPri6lT7I+iU+2Z2lPumdhT74nCU/CR5FPxjrZT8o5qU/OJRVP2ipBT942GU/iOaVP6mdtUAZncVAOLaFQEimVUCI2HVAmLZ1QKkt1UC4lEVAyTr1QNlrxUDo1AVA+XmVQQk2ZUEYz8VBuMTlQdmeVUH4vhVCCWaVQmlNtUKZnkVCuK3FQsmd9ULZngVC6Z4lQ2meNUOIt6VDmQgVQ7latUPJnhVD2Z3VQ+jOFUQJneVEKYQ1RGlfBUSJLmVEmM4FRKjZBUTpnmVFGT21RfmepUaI78VGqO9FRwme1UcZnrVHOWoVR1mehUdpnxVHeZ7FR7me9UfIzEVH2WvVSAmfBUhJnyVIaZ9FSLje5UjJhhVI6Z6VSPmedUkJnzVJKZ7lSimfZUpJpCVKWZ+FSomfxUq5pAVKyZ+VSvml1Uso3nVLOKUFS4mfdUvJpEVL2I9FS+mkNUwIijVMGVaVTCmkFUxJn6VMeZ9VTImftUyY3GVNiaRVThiPVU4ppOVOWaRlTmmkdU6I+jVOmWiVTtmkxU7ppLVPKTTlT6mk1U/ZpKVQSJU1UGjbRVB5BPVQ+aSFUQk4JVFJpJVRaIoFUumlNVL5dCVTGPpVUzmllVOJpYVTmaT1U+kcFVQJpQVUSR7VVFmlVVRo+kVUyaUlVPluJVU4xbVVaaVlVXmldVXJpUVV2aWlVjmlFVe5pgVXyaZVV+mmFVgJpcVYOaZlWEkVBVh5poVYmNQVWKml5Vi5KdVZiaYlWZmltVmoqrVZyK7FWdioVVnppjVZ+aX1WnjJZVqJppVamaZ1WqkXJVq4tpVayLqlWummRVsIvyVbaJY1XEmm1VxZprVceapVXUmnBV2ppqVdyablXfmmxV445rVeSab1X3mnJV+Zp3Vf2adVX+mnRWBpJRVgmJw1YUmnFWFppzVhePplYYiVJWG5p2VimJ3FYvmoJWMY/6VjKafVY0mntWNpp8VjiaflZCiVxWTJFYVk6aeFZQmnlWW4qaVmSagVZoiu1WapqEVmuagFZsmoNWdJWsVniT01Z6lLZWgJqGVoaahVaHimRWipqHVo+ailaUmolWoJqIVqKUWFalmotWrpqMVrSajla2mo1WvJqQVsCak1bBmpFWwpqPVsOaklbImpRWzpqVVtGallbTmpdW15qYVtiZZFbajvpW245sVt6J8VbgiPZW45JjVu6amVbwjaJW8ojNVvOQfVb5mppW+ozFVv2NkVb/mpxXAJqbVwOV3lcEmp1XCJqfVwmanlcLmqBXDZqhVw+Ml1cSiYBXE5qiVxaapFcYmqNXHJqmVx+TeVcmmqdXJ4izVyiN3VctjFxXMJJuVzeaqFc4mqlXO5qrV0CarFdCjeJXR4vPV0qWVldOmqpXT5qtV1CNv1dRjUJXYZqxV2SNo1dmklJXaZquV2qS2Fd/mrJXgpCCV4iasFeJmrNXi4xeV5OatFegmrVXoo1DV6OKX1ekmrdXqpq4V7CauVezmrZXwJqvV8OaulfGmrtXy5aEV86P6VfSmr1X05q+V9SavFfWmsBX3JRXV9+I5lfglXVX45rBV/SP+1f3jrdX+ZR8V/qK7lf8jelYAJZ4WAKTsFgFjJhYBpHNWAqav1gLmsJYFZHCWBmaw1gdmsRYIZrGWCSS51gqiqxYL+qfWDCJgVgxlfFYNI/qWDWTZ1g6jeRYPZrMWECVu1hBl9tYSonyWEuayFhRkVlYUprLWFSTg1hXk2hYWJOEWFmUt1hakstYXo3HWGKax1hpiZZYa5NVWHCayVhymsVYdZBvWHmazVh+j21Yg4urWIWazliTleZYl5GdWJySxFifmtBYqJZuWKua0ViumtZYs5WtWLia1Vi5ms9YuprSWLua1Fi+jaRYwZXHWMWa11jHkmRYyonzWMyP61jRmtlY05rYWNWNiFjXmtpY2JrcWNma21jcmt5Y3prTWN+a4Fjkmt9Y5ZrdWOuObVjskHBY7pFzWO+a4VjwkLpY8YjrWPKUhFj3ktlY+ZrjWPqa4lj7muRY/JrlWP2a5lkCmudZCZXPWQqa6FkPicRZEJrpWRWXW1kWik9ZGJnHWRmPZ1kakb1ZG5rqWRyW6VkilrJZJZrsWSeR5Vkpk1ZZKpG+WSuVdlksmu1ZLZruWS6Jm1kxjrhZMprvWTeIzlk4mvBZPprxWUSJgllHiu9ZSJPeWUmV8llOmvVZT5F0WVCa9FlRjF9ZVJZ6WVWa81lXk4VZWJr3WVqa9llgmvlZYpr4WWWJnFlnmvpZaI+nWWma/FlqkkRZbJr7WW6VsVlzj5dZdJN6WXibQFl9jURZgZtBWYKUQFmDlNxZhJbPWYqURFmNm0pZk4tXWZaXZFmZlq1Zm5uqWZ2bQlmjm0VZpZHDWaiWV1msk2lZsptGWbmWhVm7jchZvo+oWcabR1nJjm9Zy45uWdCIt1nRjMZZ05CpWdSIz1nZm0tZ2ptMWdybSVnliVdZ5oqtWeibSFnqlsNZ65VQWfaIpln7iPdZ/45wWgGI0FoDiKFaCZtRWhGbT1oYlrpaGptSWhybUFofm05aIJBQWiWbTVopldhaL4ziWjWbVlo2m1daPI+pWkCbU1pBmEtaRpRrWkmbVVpajaVaYptYWmaVd1pqm1labJtUWn+WuVqSlH1amptaWpuVUVq8m1tavZtfWr6bXFrBicVawpteWsmOuVrLm11azIyZWtCba1rWm2Ra15thWuGShFrjm2Ba5ptiWumbY1r6m2Va+5tmWwmK8FsLm2hbDJtnWxabaVsij+xbKptsWyyS2lswiWRbMptqWzabbVs+m25bQJtxW0Obb1tFm3BbUI5xW1GbcltUjUVbVZtzW1eOmltYkbZbWpt0W1ubdVtcjnlbXY1GW1+W0Ftji0dbZIzHW2WbdltmindbaZt3W2uRt1twm3hbcZuhW3ObeVt1m3pbeJt7W3qbfVuAm35bg5uAW4WR7luHiUZbiI7nW4mIwFuLkXZbjIquW42Os1uPjUdblZOGW5ePQFuYiq9bmZKIW5qS6FubiLZbnItYW52V81ufjsBbootxW6OQ6VukjrpbpZdHW6abgVuui3tbsI3JW7OKUVu0iYNbtY+qW7aJxlu4m4JbuZdlW7+PaFvCjuJbw5uDW8SK8VvFk9BbxpanW8ebhFvJm4VbzJV4W9Cbh1vSiqZb04v1W9SbhlvbirBb3ZBRW96bi1vfjkBb4YnHW+Kbilvkm4hb5ZuMW+abiVvnlEpb6J7LW+mQUlvrm41b7pe+W/Cbjlvzm5Bb9ZKeW/abj1v4kKFb+o6bW/6Rzlv/jvVcAZWVXAKQ6lwEjstcBZuRXAaPq1wHm5JcCJuTXAmI0VwKkbhcC5BxXA2blFwOk7FcD4+sXBGPrVwTm5VcFpDrXBqPrlwgm5ZcIpuXXCSW3lwom5hcLYvEXDGPQVw4m5lcOZuaXDqO2lw7kEtcPJPyXD2Qc1w+lPZcP5RBXECLx1xBm5tcRYuPXEabnFxIi/xcSpPNXEuJrlxNjnJcTpudXE+boFxQm59cUYv7XFObnlxVk1dcXpGuXGCTalxhjsZcZJF3XGWXmlxsm6JcbpujXG+T1FxxjlJcdpulXHmbplyMm6dckIryXJGbqFyUm6lcoYmqXKiRWlypiuJcq5urXKyWplyxkdBcs4p4XLabrVy3m69cuIrdXLubrFy8m65cvpuxXMWbsFzHm7Jc2ZuzXOCTu1zhi6xc6InjXOmbtFzqm7lc7Zu3XO+V9VzwlfRc9pOHXPqbtlz7j3Nc/Zu1XQeQkl0Lm7pdDo3oXRGbwF0Um8FdFZu7XRaKUl0Xm7xdGJvFXRmbxF0am8NdG5u/XR+bvl0im8JdKZX2XUubyV1Mm8ZdTpvIXVCXkl1Sm8ddXJu9XWmQk11sm8pdb421XXOby112m8xdgpvPXYSbzl2Hm81di5OIXYybuF2Qm9VdnZvRXaKb0F2sm9JdrpvTXbeb1l26l+RdvJvXXb2b1F3Jm9hdzIreXc2b2V3Sm9td05vaXdab3F3bm91d3ZDsXd6PQl3hj4Rd45GDXeWNSF3mjbZd541JXeiLkF3rm95d7o23XfGMyF3ym99d85akXfSUYl31m+Bd941KXfuKql39kkZd/ovQXgKOc14DlXpeBpS/Xgub4V4MivNeEZvkXhaSn14Zm+NeGpviXhub5V4dkuleJZCDXiuOdF4tkMheL5HRXjCLQV4zkqBeNpvmXjeb5144j+1ePZZYXkCb6l5Dm+leRJvoXkWVnV5Hm/FeTJZ5Xk6b615Um+1eVZaLXleb7F5fm+5eYZSmXmKb715jlbxeZJvwXnKKsV5zlb1edJROXnWb8l52m/NeeI1LXnmKsl56m/Ree4y2XnyXY159l0hefor0Xn+b9l6BkqFeg41MXoSPr16HlN1eio+wXo+PmF6VkupelpX3XpeTWF6ajU1enJV7XqCb916mk3hep43AXquMyV6tkutetYjBXraPjl63jU5euJdmXsGb+F7Cm/lew5RwXsib+l7Jl/VeyphMXs+b/F7Qm/te04pmXtacQF7anENe25xEXt2cQl7flV9e4I+xXuGcRl7inEVe45xBXuicR17pnEhe7JxJXvCcTF7xnEpe85xLXvScTV72iYRe95LsXvicTl76jJpe+4n0XvyUVV7+nE9e/5P5XwGV2V8DnFBfBJhNXwmcUV8Klb5fC5xUXwyYn18NmK9fD46uXxCT818RnFVfE4t8XxSSol8ViPhfFpxWXxeVpF8YjU9fG5JvXx+S7V8llu1fJoy3XyeMyl8pnFdfLZxYXy+cXl8xjuNfNZKjXzeLrV84nFlfPJVKXz6SZV9BnFpfSJxbX0qLrl9MnFxfTpxdX1GcX19Tk5ZfVpxgX1ecYV9ZnGJfXJxTX12cUl9hnGNfYoxgX2aVRl9pjcpfapVWX2uSpF9slWpfbZxkX3CPsl9xiWVfc5xlX3ecZl95lvBffJTeX3+caV+AiZ1fgZCqX4KcaF+DnGdfhIxhX4WR0l+HnG1fiJxrX4qcal+Ll6VfjIzjX5CPmV+RnGxfkpNrX5OPXV+Xk75fmJxwX5mcb1+enG5foJxxX6GM5F+onHJfqZWcX6qPel+tnHNfrpT3X7OTv1+0kqVfuZNPX7ycdF+9i0pfw5BTX8WVS1/MivVfzZRFX9acdV/XjnVf2JZZX9mWWl/ciZ5f3Zx6X+CSiV/knHdf64n1X/Ccq1/xnHlf9ZRPX/iceF/7nHZf/Y2aX/+cfGAOnINgD5yJYBCcgWASk3tgFZyGYBaVfGAZnIBgG5yFYByX5WAdjnZgIJHTYCGcfWAli31gJpyIYCeQq2AoiYVgKZyCYCqJ9mArnIdgL4uvYDGchGA6nIpgQZyMYEKclmBDnJRgRpyRYEqckGBLl/ZgTZySYFCLsGBSjVBgVY+aYFmcmWBanItgX5yPYGCcfmBiifhgY5yTYGSclWBlknBgaI2mYGmJtmBqnI1ga5yYYGycl2Bti7Fgb5GnYHCKhmB1jGJgd5yOYIGcmmCDnJ1ghJyfYImOu2CLnKVgjJLuYI2cm2CSnKNglIn3YJacoWCXnKJgmpyeYJucoGCfjOVgoJdJYKOKs2CmiXhgp5ykYKmUWWCqiKtgspTfYLOce2C0nKpgtZyuYLaW42C4nKdgvJOJYL2crGDFj+5gxpytYMeT1WDRmGZg05ypYNicr2DajZtg3JDJYN+I0mDgnKhg4ZymYOOReWDnnJxg6I5TYPCRxGDxnLtg85F6YPSctmD2nLNg95y0YPmO5GD6nLdg+5y6YQCctWEBj0RhA5y4YQacsmEIlvphCZb5YQ2cvGEOnL1hD4jTYRWcsWEai/BhG4ikYR+KtGEhnLlhJ5zBYSicwGEsnMVhNJzGYTycxGE9nMdhPpy/YT+cw2FCnMhhRJzJYUecvmFIjpxhSpzCYUuR1GFMjVFhTZywYU6QVGFTnNZhVZXnYViczGFZnM1hWpzOYV2c1WFfnNRhYpadYWOKtWFlnNJhZ4xkYWiKU2FrnM9hbpe2YW+c0WFwiNRhcZzTYXOcymF0nNBhdZzXYXaMY2F3nMthfpd8YYKXSmGHnNphipzeYY6RnmGQl/dhkZzfYZSc3GGWnNlhmZzYYZqc3WGkla5hp5OyYamMZWGrnOBhrJzbYa6c4WGyjJthtomvYbqc6WG+irZhw5znYcac6GHHjadhyJzmYcmc5GHKnONhy5zqYcyc4mHNnOxh0In5YeOc7mHmnO1h8pKmYfSc8WH2nO9h95zlYfiMnGH6nPBh/Jz0Yf2c82H+nPVh/5zyYgCc9mIInPdiCZz4YgqV6GIMnPpiDZz5Yg6PXmIQkKxiEYnkYhKJ+mIUnPtiFoi9YhqQymIbnPxiHebBYh6dQGIfjIFiIZ1BYiaQ7WIqnUJiLp1DYi+LWWIwnURiMp1FYjOdRmI0kdViOIzLYjuW32I/lltiQI+KYkGdR2JHkO5iSOe7YkmU4GJLjuhiTY3LYk6dSGJTkcViVZWlYliR72JbnUtiXp1JYmCdTGJjnUpiaJ1NYm6Vr2JxiLVidpV9YnmU4WJ8nU5ifp1RYn+Ps2KAi1pigp1PYoOdVmKEj7RiiZ1QYoqUY2KRl31ikp1SYpOdU2KUnVdilZOKYpadVGKXjVJimJDcYpudZWKclLJinpHwYquU4mKsnatisZX4YrWS72K5lpViu51aYryJn2K9kopiwp1jYsWSU2LGnV1ix51kYsidX2LJnWZiyp1iYsydYWLNlI9iz51bYtCJ+2LRnVli0ouRYtOR8WLUnVVi151YYtiNU2LZkNli24+1YtydYGLdlHFi4IuSYuGKZ2Lsiodi7ZBAYu6daGLvnW1i8Z1pYvOMnWL1nW5i9o5BYveNiWL+j0Vi/51cYwGOnWMCnWtjB453YwidbGMJiMJjDJ1nYxGSp2MZi5NjH4uyYyedamMoiKVjK43BYy+QVWM6kvBjPZTSYz6dcGM/kX1jSZGoY0yOSmNNnXFjT51zY1Cdb2NVld9jV5K7Y1yRe2NnlfljaI7MY2mdgGNrnX5jbpCYY3KMnmN2nXhjd4+3Y3qT5mN7lFBjgJ12Y4ORfGOIjvZjiZ17Y4yPtmOOnXVjj516Y5KUcmOWnXRjmIxAY5uKfGOfnXxjoJepY6GNzGOiklRjo515Y6WQ2mOnjVRjqJCEY6mJhmOqkVtjq513Y6yLZGOyjGZjtJLNY7WdfWO7kX5jvp2BY8Cdg2PDkbVjxJ2JY8adhGPJnYZjz5VgY9CS8WPSnYdj1pdLY9qXZ2Pbirdj4YisY+OdhWPpnYJj7or2Y/SJh2P2nYhj+pdoZAadjGQNkblkD52TZBOdjWQWnYpkF52RZBydcmQmnY5kKJ2SZCyUwGQtk4tkNJ2LZDadj2Q6jGdkPo3vZEKQ22ROnZdkWJNFZGedlGRploBkb52VZHadlmR4lsxkepCgZIOMgmSInZ1kko5UZJOdmmSVnZlkmpRRZJ6Ts2Skk1BkpZ2bZKmdnGSrlY9krZRkZK6OQmSwkO9kspZvZLmKaGS7naNkvJ2eZMGXaWTCnaVkxZ2hZMedomTNkYBk0p2gZNSdXmTYnaRk2p2fZOCdqWThnapk4pNGZOOdrGTmjkNk552nZOyLW2Tvna1k8Z2mZPKdsWT0nbBk9p2vZPqdsmT9nbRk/o/vZQCds2UFnbdlGJ21ZRydtmUdnZBlI525ZSSduGUqnZhlK526ZSydrmUvjnhlNJ27ZTWdvGU2nb5lN529ZTidv2U5ifxlO41VZT6V+mU/kK1lRYzMZUidwWVNncRlT5VxZVGLfmVVncNlVp3CZVeUc2VYncVlWYuzZV2dx2VencZlYoq4ZWOOVWVmk9ZlbIxoZXCQlGVynchldJCuZXWTR2V3lX5leJ3JZYKdymWDnctlh5W2ZYibfGWJkMRljJVrZY6N1mWQlONlkZTBZZeTbGWZl79lm53NZZyOzmWfnc5loYi0ZaSL0mWlkMtlp5WAZaudz2WsjmFlrZJmZa+OemWwkFZlt53QZbmV+2W8iZdlvY57ZcGd02XDndFlxJ3UZcWXt2XGndJly5D5Zcyd1WXPkbBl0p3WZdeK+GXZndhl253XZeCd2WXhndpl4or5ZeWT+mXmklVl54uMZeiOfGXpkYFl7I97Ze2IrmXxndtl+omgZfud32YCjVZmA53eZgaNqWYHj7hmCp3dZgyPuWYOlr5mD42oZhOI1WYUkMxmHJ3kZh+Qr2YgiWZmJY90ZieWhmYojfBmLY+6Zi+QpWY0neNmNZ3hZjad4mY8kotmP55FZkGd6GZCjp5mQ41XZkSd5mZJnedmS5BXZk+d5WZSjk5mXZ3qZl6d6WZfne5mYp3vZmSd62ZmikFmZ53sZmid7WZplNNmbpWBZm+MaWZwnfBmdJCwZnaPu2Z6knFmgYvFZoOd8WaEnfVmh4nJZoid8maJnfRmjp3zZpGPi2aWkmdml4jDZpid9madnfdmopKoZqaX72arjmJmrpXpZrSWXGa4nkFmuZ35Zryd/Ga+nftmwZ34ZsSeQGbHk9xmyZ36ZtaeQmbZj4xm2p5DZtyXambdlJhm4J5EZuaeRmbpnkdm8J5IZvKLyGbziWdm9I1YZvWeSWb3nkpm+I+RZvmRgmb8mdZm/ZFdZv6RXGb/kdZnAI3FZwOY8GcIjI5nCZdMZwuV/GcNlZ5nD55LZxSN8WcVkr1nFp5MZxeYTmcbll1nHZKpZx6eTWcfivpnJp5OZyeeT2colthnKpaiZyuWlmcslntnLY5EZy6eUWcxjulnNJZwZzaeU2c3nlZnOJ5VZzqK92c9i4BnP55SZ0GeVGdGnldnSZCZZ06Xm2dPiMdnUI3eZ1GRumdTjttnVo/xZ1meWmdck21nXp5YZ1+RqWdgnllnYY/wZ2KW22djnltnZJ5cZ2WXiGdqnmFnbY1ZZ2+UdGdwnl5ncZOMZ3Kd3GdzneBndYtuZ3eUZmd8nmBnfo+8Z3+UwmeFnmZnh5T4Z4meXWeLnmNnjJ5iZ5CQzWeVlo1nl5fRZ5qWh2ecicpnnY59Z6CYZ2ehnmVnopCVZ6aeZGepnl9nr4zNZ7Oea2e0nmlntonLZ7eeZ2e4nm1nuZ5zZ8GRxmfElb9nxp51Z8qVQWfOnnRnz5SQZ9CWXmfRirln05D1Z9SPX2fYktFn2pdNZ92ecGfenm9n4p5xZ+SebmfnnnZn6Z5sZ+yeamfunnJn755oZ/GSjGfzlvZn9I7EZ/WN8mf7jbhn/paPZ/+KYGgCksxoA5PIaASJaGgTkPBoFpCyaBeMSWgennhoIY1aaCKKnGgpnnpoKoqUaCuegWgynn1oNJDxaDiKamg5japoPIppaD2NzWhAnntoQYyFaEKMamhDk41oRp55aEiIxGhNnnxoTp5+aFCLy2hRjEtoU4q6aFSLamhZnoJoXI33aF2WkWhfjlZoY56DaGeVT2h0no9odomxaHeehGh+npVof56FaIGXwGiDnoxohZR+aI2elGiPnodok4iyaJSeiWiXjVtom56LaJ2eimifnoZooJ6RaKKPvWimmutop4zmaKiXnGitnohor5LyaLCKQmixjatos56AaLWekGi2ioFouZ6OaLqekmi8k45oxIr8aMaesGjJlsdoyp6XaMuK+2jNnp5o0pZfaNSen2jVnqFo156laNiemWjakklo35OPaOCeqWjhnpxo456maOeeoGjukFho756qaPKQsWj5nqho+oq7aQCYb2kBnpZpBJ6kaQWI1mkInphpC5a4aQyenWkNkEFpDpLFaQ+ek2kSnqNpGZCaaRqerWkbipFpHIyfaSGer2kinpppI56uaSWep2kmnptpKJ6raSqerGkwnr1pNJPMaTaeomk5nrlpPZ67aT+S1mlKl2tpU5WWaVSetmlVkchpWZ68aVqRXmlcnrNpXZ7AaV6ev2lgk+1pYZ6+aWKT6GlqnsJpa561aW2Lxmlunrhpb498aXOUgGl0nrppdYvJaXeesml4nrRpeZ6xaXyYT2l9inlpfp63aYGewWmCilRpio3laY6JfGmRntJplJhQaZWe1WmbkFlpnJ7UaaCe02mnntBprp7EabGe4WmynsNptJ7Wabuezmm+nslpv57GacGex2nDns9px+qgacqezGnLjVxpzJLGac2RhGnOnspp0J7FadOeyGnYl2xp2ZaKad2ezWnentdp557faeie2GnrnuVp7Z7jafKe3mn5nt1p+5LOaf2RhWn/nttqAp7ZagWe4GoKnuZqC5Tzagye7GoSnudqE57qahSe5GoXkpRqGZVXahue2moenuJqH4++aiGWzWoinvZqI57paimMoGoqiaFqK4p+ai6e0Wo1j79qNp7uajie9Wo5jvdqOoqSaj2STWpEnutqR57wakie9GpLi7RqWItralme8mpfi0BqYZPJamKe8WpmnvNqcp7tanie72p/ioBqgJJoaoSe+mqNnvhqjoznapCe92qXn0BqnJ53aqCe+Wqinvtqo578aqqfS2qsn0dqrp6NarOfRmq4n0Vqu59CasGe6GrCn0Rqw59DatGfSWrTmEVq2p9MatuL+Wren0hq359KauiUpWrqn01q+p9RavufTmsEl5NrBZ9Pawqe3GsSn1JrFp9Tax2JVGsfn1VrIIyHayGOn2sji9NrJ4miazKXfms3n1drOJ9WazmfWWs6i1xrPYvUaz6KvGtDn1xrR59ba0mfXWtMicxrTpJWa1CfXmtTir1rVJ9ga1mfX2tbn2FrX59ia2GfY2tijn5rY5Cza2SNn2tmlZBraZXga2qYY2tvjpVrc43Oa3SX8Gt4n2RreZ9la3uOgGt/n2ZrgJ9na4OfaWuEn2hrhpZ3a4mPfWuKjupri45ja42famuVn2xrlpBCa5ifa2uen21rpJ9ua6qfb2urn3Brr59xa7Gfc2uyn3Jrs590a7SJo2u1kmlrt591a7qORWu7imtrvJ92a7+TYWvAmsprxYtCa8afd2vLn3hrzZXqa86WiGvSk8Vr0595a9SU5GvYlPlr25bRa9+femvrn3xr7J97a++ffmvzn31sCJ+BbA+OgWwRlq9sE5+CbBSfg2wXi0NsG5+EbCOfhmwkn4VsNJCFbDeVWGw4iWlsPpTDbECS82xBj2BsQouBbE6UxGxQjqxsVZ+IbFeKvmxaiZhsXZPwbF6fh2xfjV1sYJJybGKfiWxon5Fsap+KbHCRv2xyi4Jsc5+SbHqMiGx9i0Rsfp+QbIGfjmyCn4tsg5eAbIiSvmyMk9dsjZ+MbJCflGySn5Nsk4xCbJaJq2yZjblsmp+NbJufj2yhlnZsopHybKuWl2yun5xssZ+dbLOJzWy4laZsuZb7bLqfn2y7jqFsvI/AbL2fmGy+n55sv4mIbMGLtWzEn5VsxZ+abMmQ8mzKlJFszJTlbNOfl2zVlkBs15+ZbNmfomzbn6Bs3Z+bbOGWQWzilGds44uDbOWTRGzoko1s6p+jbO+foWzwkdds8Z+WbPOJam0Ll21tDJ+ubRKfrW0XkPRtGZ+qbRuXjG0ek7RtH5+kbSWSw20piWttKo1ebSufp20yj0ZtM5+sbTWfq202n6ZtOJ+pbTuKiG09n6htPpRobUGXrG1Ej/JtRZDzbVmftG1an7JtXJVsbWOfr21kn7FtZolZbWmNX21qmFFtbIpcbW6Vgm10l4Ftd4pDbXiQWm15n7NthZ+4bYiPwW2Ml09tjp+1bZOfsG2Vn7ZtmZfcbZuTk22ck8Btr4pVbbKJdG21n7xtuJ+/bbyXwW3Al4RtxZ/GbcafwG3Hn71ty5fS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hWmToIVqlZOFbeVKhXflUIV+5VGFgOVEhYSUloWH5U6FiOVGhYrlSIWQ5VKFkeVHhZTlS4WXiZKFmZPjhZvlTIWc5U+FpOVFhaaRRYWo5UmFqY5GhaqQZIWrjE+FrJbyha6W94Wvj5KFueVWhbrlVIXBmG2FyeVThc2XlYXP5VWF0OVXhdXlWIXc5VuF3eVZheSToYXl5VqF6ZTLherlTYX3j5OF+eVchfrlYYX7kZSF/uVghgLlQYYG5WKGB5FohgrlXYYL5V+GE+VehhafUIYXn0GGGuVkhiLlY4Ytl5aGL+G6hjDlZYY/5WaGTeVnhk6M1YZQi3OGVOVphlWZfIZai5WGXJe4hl6L8YZf5WqGZ+VrhmuSjoZx5WyGeZP4hnuIuIaKieGGi+VxhozlcoaT5W2GlY5chqPlboaklGGGqeVvhqrlcIar5XqGr+V0hrDld4a25XOGxOV1hsbldobHjtaGyeV4hsuSYIbNjHWGzophhtTle4bZil6G2+WBht7lfIbf5YCG5JS4hunlfYbs5X6G7ZVnhu6U2Ibv5YKG+JH7hvnljIb75YiG/onphwDlhocClkmHA+WHhwblhIcI5YWHCeWKhwrljYcN5YuHEeWJhxLlg4cYkneHGuWUhxyWqIcl5ZKHKeWThzTljoc35ZCHO+WRhz/lj4dJkOSHS5hYh0zlmIdO5ZmHU+Wfh1WQSYdX5ZuHWeWeh1/llodg5ZWHY+Wgh2aJ2odo5ZyHauWhh27lnYd05ZqHdpKxh3jll4d/lIiHguWlh42XWoef5aSHouWjh6vlrIev5aaHs+Wuh7qXhoe75bGHveWoh8DlqYfE5a2HxuWwh8flr4fL5aeH0OWqh9Llu4fg5bSH7+Wyh/Lls4f25biH9+W5h/mKSYf7i2GH/uW3iAXloogN5baIDuW6iA/ltYgR5byIFeW+iBblvYgh5cCIIuW/iCPleYgn5cSIMeXBiDblwog55cOIO+XFiECMjIhC5ceIROXGiEaPT4hMjXOITZ+liFLlyIhTj3CIV4pYiFnlyYhbiXGIXY/ViF7lyohhjXSIYuXLiGOI34holVyIa+XMiHCQiohy5dOIdeXQiHeSj4h95dGIfuXOiH+L3IiB5c2IguXUiIiMVYiLkdyIjeXaiJLl1oiWkbOIl+XViJnl2Iie5c+IouXZiKTl24irlO2IruXX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ljKWaJY7kWqWP4iilkCRyZZC6JiWRJWNlkvom5ZM6JmWTY1+lk/ompZQjMCWW5XDllzonZZd6J+WXuiell/ooJZiiUCWY5B3lmSPnJZliteWZuihlmqUhpZs6KOWcIlBlnLoopZzksKWdZfLlnaTqZZ36JyWeJeklnqMr5Z9l3qWhYv3loaXspaIjEeWipHglovkQJaN6KSWjopLlo+Qj5aUinWWleimlpfop5aY6KWWmYyElpuN25acj+GWoIlClqOX15an6KmWqOeslqroqJaw6KyWseiqlrLoq5a06K2WtuiulreX6pa46K+WueiwlruQx5a8lLmWwJCdlsGK5ZbEl1mWxYnrlsaPV5bHjNmWyeizlsvospbMjpOWzei0ls7osZbRjkeW1ei4ltblq5bZmdSW25CXltzotpbil6OW45PvluiJSpbqkOGW6460lvCVtZbyiV+W9pfrlveXi5b56LmW+5NklwCO+ZcE6LqXBui7lweQa5cI6LyXCpfslw3ot5cO6L6XD+jAlxHov5cT6L2XFujBlxnowpcckZqXHonglyTow5cnlraXKujElzDoxZcymEmXOJ5Qlznoxpc96MeXPujIl0LozJdE6MmXRujKl0joy5dJ6M2XUpDCl1aW9ZdZkMOXXOjOl16U8Zdg6M+XYepyl2KWypdk6NCXZujRl2jo0pdpinaXa+jUl22QeJdx6NWXdIxDl3no1pd66NqXfOjYl4Ho2ZeEipOXhejXl4bo25eL6NyXjYjGl4/o3ZeQ6N6XmI/il5zo35egi2aXo+jil6bo4Zeo6OCXq+aRl62V2pez6OOXtOjkl8Po5ZfG6OaXyOjnl8vo6JfTitiX3Ojpl+3o6pfulEKX8ujsl/OJuZf16O+X9ujul/uJQ5f/i7+YAZXFmAKSuJgDjaCYBY2AmAaPh5gIkHuYDOjxmA/o8JgQl2GYEYrmmBKU0JgTk9qYF5CcmBiXzJgajHqYIej0mCTo85gslmqYLZOqmDSJb5g36PWYOOjymDuVcJg8l4qYPej2mEbo95hL6PmYTJHomE2KephOinuYT+j4mFSK55hVjLCYWIromFuTXphel96YZ4zamGvo+phv6PuYcOj8mHHpQJhz6UKYdOlBmKiVl5iq6UOYr+lEmLHpRZi26UaYw+lImMTpR5jG6UmY25TymNzjypjfkEiY4otRmOnpSpjr6UuY7ZmqmO6fWpjvlNGY8oj5mPSIuZj8jpSY/ZZPmP6P/JkD6UyZBZbdmQnpTZkKl3uZDIlhmRCOYJkS6U6ZE4nsmRTpT5kY6VCZHelSmR7pU5kg6VWZIelRmSTpVJkoitmZLOlWmS7pV5k96ViZPulZmULpWplF6VyZSelbmUvpXplM6WGZUOldmVHpX5lS6WCZVelimVeLwJmWjvGZl+ljmZjpZJmZjYGZpellmaiKXZmslG6Zrelmma7pZ5mzknmZtJPpmbzpaJnBlJ2ZxJHKmcWJd5nGi+yZyIvtmdCSk5nR6W2Z0ovumdWJ7ZnY6WyZ2+lqmd3pa5nf6WmZ4ul3me3pbpnu6W+Z8elwmfLpcZn46XOZ++lymf+PeJoB6XSaBel2mg6LUpoP6XWaEpGbmhOMsZoZ6XiaKJHLmivpeZowk6uaN+l6mj7pgJpA6X2aQul8mkPpfppF6XuaTemCmlXpgZpX6YSaWovBmlvpg5pf6YWaYumGmmTpiJpl6YeaaemJmmrpi5pr6YqaqI2cmq3pjJqw6Y2auIpbmrzpjprA6Y+axJCRms/pkJrR6ZGa0+mSmtTpk5rYjYKa3umUmt/plZri6Zaa4+mXmubpmJrqlK+a6+mamu2VRZru6Zua7+mZmvHpnZr06Zya9+memvvpn5sG6aCbGOmhmxrpopsf6aObIumkmyPppZsl6aabJ+mnmyjpqJsp6ambKumqmy7pq5sv6aybMZ9UmzLprZs74vabPItTm0GKQJtCjbCbQ+mvm0TprptFlqObTemxm07psptP6bCbUemzm1SWgptY6bSbWoubm2+YRJt06bWbg+m3m46IvJuR6bibkpWpm5PptpuW6bmbl+m6m5/pu5ug6bybqOm9m6qWjpurjkybrY34m66RTpu06b6buenBm8Dpv5vG6cKbyYzvm8rpwJvP6cOb0enEm9LpxZvU6cmb1o5Jm9uR4pvh6cqb4unHm+Ppxpvk6cib6Ix+m/Dpzpvx6c2b8unMm/WIsZwE6dicBunUnAjp1ZwJ6dGcCunXnAzp05wNioKcEJhrnBLp1pwT6dKcFOnQnBXpz5wb6dqcIendnCTp3Jwl6ducLZVonC7p2ZwviPGcMOnenDLp4Jw5io+cOunLnDuJVpw+6eKcRunhnEfp35xIkkycUpaQnFeX2Jxa6eOcYOnknGfp5Zx26eaceOnnnOWSuZzn6eic6ZS1nOvp7Zzs6emc8OnqnPOWUJz0lsKc9pPOnQPp7p0G6e+dB5O8nQjp7J0J6eudDomonRLp950V6fadG4mVnR/p9J0j6fOdJunxnSiKm50q6fCdK46wnSyJp507jYOdPun6nT/p+Z1B6fidROn1nUbp+51I6fydUOpEnVHqQ51Z6kWdXIlMnV3qQJ1e6kGdYI2UnWGWt51k6kKdbJZRnW/qSp1y6kadeupLnYfqSJ2J6kedj4x7nZrqTJ2k6k2dqepOnavqSZ2v6fKdsupPnbSS35246lOduupUnbvqUp3B6lGdwupXncTqUJ3G6lWdz+pWndPqWZ3Z6lid5upbne3qXJ3v6l2d8phonfjqWp35kemd+o3rnf3qXp4a6l+eG+pgnh7qYZ516mKeeIyynnnqY5596mSef46tnoHqZZ6I6maei+pnnozqaJ6R6muekuppnpOYW56V6mqel5ftnp3qbJ6fl9mepeptnqaUnp6p6m6equpwnq3qcZ646m+euY2NnrqWy567loOevJv1nr6fgJ6/lpuexImpnszqc57Ni2+ezup0ns/qdZ7Q6nae0o2VntTqd57Y4NKe2ZbZntuR4Z7c6nie3ep6nt7qeZ7g6nue5ep8nujqfZ7v6n6e9OqAnvbqgZ736oKe+eqDnvvqhJ786oWe/eqGnwfqh58I6oifDpNDnxOM258V6oqfIJFsnyHqi58s6oyfO5VAnz7qjZ9K6o6fS+JWn07m2J9P6OufUuqPn1TqkJ9f6pKfYOqTn2HqlJ9il+6fY+qRn2bqlZ9n6pafauqYn2zql59y6pqfduqbn3fqmZ+Nl7Sfleqcn5zqnZ+d4nOfoOqe/wGBSf8DgZT/BIGQ/wWBk/8GgZX/CIFp/wmBav8KgZb/C4F7/wyBQ/8OgUT/D4Fe/xCCT/8RglD/EoJR/xOCUv8UglP/FYJU/xaCVf8Xglb/GIJX/xmCWP8agUb/G4FH/xyBg/8dgYH/HoGE/x+BSP8ggZf/IYJg/yKCYf8jgmL/JIJj/yWCZP8mgmX/J4Jm/yiCZ/8pgmj/KoJp/yuCav8sgmv/LYJs/y6Cbf8vgm7/MIJv/zGCcP8ygnH/M4Jy/zSCc/81gnT/NoJ1/zeCdv84gnf/OYJ4/zqCef87gW3/PIFf/z2Bbv8+gU//P4FR/0CBTf9BgoH/QoKC/0OCg/9EgoT/RYKF/0aChv9Hgof/SIKI/0mCif9Kgor/S4KL/0yCjP9Ngo3/ToKO/0+Cj/9QgpD/UYKR/1KCkv9TgpP/VIKU/1WClf9Wgpb/V4KX/1iCmP9Zgpn/WoKa/1uBb/9cgWL/XYFw/2EAof9iAKL/YwCj/2QApP9lAKX/ZgCm/2cAp/9oAKj/aQCp/2oAqv9rAKv/bACs/20Arf9uAK7/bwCv/3AAsP9xALH/cgCy/3MAs/90ALT/dQC1/3YAtv93ALf/eAC4/3kAuf96ALr/ewC7/3wAvP99AL3/fgC+/38Av/+AAMD/gQDB/4IAwv+DAMP/hADE/4UAxf+GAMb/hwDH/4gAyP+JAMn/igDK/4sAy/+MAMz/jQDN/44Azv+PAM//kADQ/5EA0f+SANL/kwDT/5QA1P+VANX/lgDW/5cA1/+YANj/mQDZ/5oA2v+bANv/nADc/50A3f+eAN7/nwDf/+OBUP/lgY8=","3407890kTpTes","1324251GbqyEI","854sEIehi","3IrLyqw","1858ajVgZj","9154120YDRila","2315388PZTdGt","4029430ToAQcP","18KOJTyt"];return(dn=function(){return t})()}!function(){const t=pn,e=fn();for(;;)try{if(651182===-parseInt(t(150))/1+parseInt(t(149))/2*(parseInt(t(161))/3)+-parseInt(t(148))/4*(parseInt(t(164))/5)+parseInt(t(159))/6*(-parseInt(t(165))/7)+parseInt(t(152))/8*(-parseInt(t(154))/9)+parseInt(t(151))/10*(-parseInt(t(155))/11)+parseInt(t(158))/12)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const In=mn;function mn(t,e){const n=dn();return(mn=function(t,e){return n[t-=467]})(t,e)}function gn(){var t=["3520tlQTTx","8415IhUjMe","6mqZsQb","1161912NKMzpz","8umaITE","22614dnUdGn","3845320ZkzZjw","2102892vbOfdB","890286IaQzwt","110698RZfbos"];return(gn=function(){return t})()}function wn(t,e){var n=gn();return(wn=function(t,e){return n[t-=432]})(t,e)}!function(){const t=mn,e=dn();for(;;)try{if(739605===parseInt(t(469))/1*(parseInt(t(467))/2)+-parseInt(t(468))/3*(-parseInt(t(471))/4)+-parseInt(t(476))/5+parseInt(t(473))/6*(parseInt(t(474))/7)+-parseInt(t(470))/8+parseInt(t(477))/9+-parseInt(t(472))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),function(t,e){const n=pn,r=(()=>{const n=pn,r=new De(new _e(function(t){const e=pn,n=[];for(let r=0;r<t[e(163)];r+=1)n[e(157)](t[e(156)](r));return n}(t))),s=()=>{const t=r[pn(162)]();if(-1==t)throw new Error("eof");return t};let i=0;const o={};for(;;){const t=r[n(162)]();if(-1==t)break;const e=s(),a=s()<<8|s();o[String[n(160)](t<<8|e)]=a,i+=1}if(i!=e)throw new Error(i+"!="+e);return o})(),s="?"[n(156)](0)}(In(475),7070),function(){for(var t=wn,e=gn();;)try{if(794272===parseInt(t(439))/1+-parseInt(t(434))/2+parseInt(t(441))/3+parseInt(t(433))/4+-parseInt(t(432))/5*(parseInt(t(438))/6)+-parseInt(t(435))/7*(parseInt(t(440))/8)+parseInt(t(437))/9*(parseInt(t(436))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const yn=On;!function(){const t=On,e=An();for(;;)try{if(421745===parseInt(t(161))/1+parseInt(t(148))/2+parseInt(t(152))/3*(-parseInt(t(145))/4)+-parseInt(t(154))/5*(parseInt(t(144))/6)+-parseInt(t(149))/7*(parseInt(t(153))/8)+-parseInt(t(157))/9*(-parseInt(t(159))/10)+-parseInt(t(162))/11*(-parseInt(t(158))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const bn={shape:ge.square,qrOptions:{typeNumber:mt[0],errorCorrectionLevel:gt.Q},cornersSquareOptions:{type:de.square},cornersDotOptions:{type:le[yn(147)]},dotsOptions:{type:ce[yn(147)]}},kn={shape:ge.square,qrOptions:{typeNumber:mt[0],mode:void 0,errorCorrectionLevel:gt.Q},imageOptions:{mode:be[yn(163)],imageSize:.4,crossOrigin:void 0,margin:0,fill:{color:yn(155)}},cornersSquareOptions:{type:de[yn(160)],color:yn(146)},cornersDotOptions:{type:le[yn(160)],color:yn(146)},dotsOptions:{type:ce.verticalLine,color:yn(146),size:10},backgroundOptions:{color:"#FFFFFF"}};function An(){const t=["6035792DAHZqf","3235NSClWb","rgba(255,255,255,1)","rounded","19476HwPkxU","12OsqpIj","3680dtnyVf","dot","78789BqLqmI","12118678cvsVwF","center","7290ptItPs","12ICIVfq","#000000","square","10744NBrbBl","7hkpMwj","classy","dotsOptions","19887xZtQXn"];return(An=function(){return t})()}const Sn={...kn,dotsOptions:{...kn[yn(151)],type:ce[yn(156)]},cornersSquareOptions:{type:de[yn(160)],color:yn(146)},cornersDotOptions:{type:le.dot,color:yn(146)}},Cn={...kn,dotsOptions:{...kn[yn(151)],type:ce.dot},cornersSquareOptions:{type:de[yn(160)],color:yn(146)},cornersDotOptions:{type:le[yn(160)],color:yn(146)}};function On(t,e){const n=An();return(On=function(t,e){return n[t-=144]})(t,e)}const Zn={...kn,dotsOptions:{...kn[yn(151)],type:ce[yn(150)]},cornersSquareOptions:{type:de[yn(150)],color:yn(146)},cornersDotOptions:{type:le.classy,color:yn(146)}},vn={plain:bn,basic:kn,rounded:Sn,dots:Cn,classy:Zn},Mn=Tn;function Tn(t,e){const n=En();return(Tn=function(t,e){return n[t-=328]})(t,e)}function En(){const t=["194rpjrNC","string","match","Invalid error correction level","values","35525NGEkMv","toLowerCase","].offset","errorCorrectionLevel","pink","cornersSquareOptions.gradient","qrOptions","QR data is required and must be a string","color","gray","push","30NfbZTg","imageOptions.imageSize","typeNumber",".type","cornersSquareOptions.type","385674oSWnDT",".colorStops",".colorStops[","type","includes","Invalid gradient type. Must be one of: ",".rotation","Dot size must be a positive number","Rotation must be a valid number","Margin must be a non-negative number","3411776anEdHx","lime","dotsOptions","blue","].color","join","dotsOptions.type","yellow","mode","qrOptions.mode","isArray","Invalid corner dot type. Must be one of: ","imageSize","magenta","307713MwkeSY","number","red","cornersDotOptions.gradient","dotsOptions.size","2939580zqNijn","data","grey","imageOptions","imageOptions.margin","map","qrOptions.typeNumber","rotation","teal","Color stop offset must be between 0 and 1","margin","shape","Invalid mode","Invalid image mode. Must be one of: ","purple","offset","Image size must be between 0 and 1","cornersDotOptions","imageOptions.mode","has","957800dNJnWz","4443vpUVjt","cornersSquareOptions","test","gradient","colorStops","size"];return(En=function(){return t})()}!function(){const t=Tn,e=En();for(;;)try{if(249579===-parseInt(t(350))/1*(parseInt(t(356))/2)+parseInt(t(377))/3+parseInt(t(349))/4+-parseInt(t(361))/5+parseInt(t(372))/6*(parseInt(t(401))/7)+parseInt(t(387))/8+-parseInt(t(329))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const Wn=t=>typeof t===Mn(402)&&!isNaN(t)&&isFinite(t),Rn=(t,e)=>{const n=Mn,r=[];return!Object[n(360)](ie)[n(381)](t.type)&&r[n(371)]({path:e+n(375),message:n(382)+Object.values(ie)[n(392)](", "),value:t[n(380)]}),void 0!==t[n(336)]&&!Wn(t[n(336)])&&r[n(371)]({path:e+n(383),message:n(385),value:t[n(336)]}),!t[n(354)]||!Array[n(397)](t[n(354)])||t[n(354)].length<2?r[n(371)]({path:e+n(378),message:"Gradient must have at least 2 color stops",value:t[n(354)]}):t.colorStops.forEach(((t,s)=>{const i=n;(!Wn(t[i(344)])||t[i(344)]<0||t[i(344)]>1)&&r.push({path:e+i(379)+s+i(363),message:i(338),value:t[i(344)]}),!(t=>{const e=Mn;if(new Set(["black","white",e(403),"green",e(390),e(394),e(343),e(370),e(331),"cyan",e(400),e(388),e(365),e(337),"brown","orange"])[e(348)](t[e(362)]()))return!0;if(/^#([A-Fa-f0-9]{3}){1,2}$/.test(t))return!0;if(/^#([A-Fa-f0-9]{4}){1,2}$/.test(t))return!0;if(/^rgb\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*\)$/.test(t)||/^rgba\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*,\s*([01]?\.?\d*)\)$/[e(352)](t))return(t[e(358)](/\d+/g)?.[e(334)](Number)||[]).every((t=>t>=0&&t<=255));return!1})(t.color)&&r.push({path:e+i(379)+s+i(391),message:"Invalid color format",value:t[i(369)]})})),r};function jn(t){const e=Mn,n=[];let r={...kn};return(!t[e(330)]||typeof t.data!==e(357))&&n.push({path:e(330),message:e(368),value:t[e(330)]}),t[e(340)]&&!Object[e(360)](ge)[e(381)](t.shape)&&(n.push({path:e(340),message:"Invalid shape type. Must be one of: "+Object[e(360)](ge).join(", "),value:t[e(340)]}),t[e(340)]=kn[e(340)]),t.qrOptions&&(t[e(367)].typeNumber&&!Object.values(mt)[e(381)](t[e(367)][e(374)])&&(n[e(371)]({path:e(335),message:"Invalid type number",value:t[e(367)][e(374)]}),t.qrOptions[e(374)]=kn[e(367)]?.typeNumber),t.qrOptions[e(364)]&&!Object[e(360)](gt)[e(381)](t.qrOptions[e(364)])&&(n[e(371)]({path:"qrOptions.errorCorrectionLevel",message:e(359),value:t[e(367)].errorCorrectionLevel}),t[e(367)][e(364)]=kn[e(367)]?.[e(364)]),t[e(367)].mode&&!Object[e(360)](yt).includes(t[e(367)][e(395)])&&(n[e(371)]({path:e(396),message:e(341),value:t[e(367)][e(395)]}),t[e(367)][e(395)]=kn.qrOptions?.[e(395)])),t[e(332)]&&(t[e(332)][e(399)]&&(!Wn(t[e(332)][e(399)])||t[e(332)][e(399)]<=0||t.imageOptions[e(399)]>1)&&(n.push({path:e(373),message:e(345),value:t.imageOptions[e(399)]}),t[e(332)][e(399)]=kn.imageOptions?.[e(399)]),t[e(332)][e(339)]&&(!Wn(t[e(332)][e(339)])||t[e(332)][e(339)]<0)&&(n[e(371)]({path:e(333),message:e(386),value:t[e(332)][e(339)]}),t[e(332)][e(339)]=kn[e(332)]?.margin),t[e(332)][e(395)]&&!Object[e(360)](be)[e(381)](t[e(332)][e(395)])&&(n[e(371)]({path:e(347),message:e(342)+Object[e(360)](be)[e(392)](", "),value:t[e(332)][e(395)]}),t.imageOptions[e(395)]=kn[e(332)]?.[e(395)])),t[e(389)]&&(t.dotsOptions[e(380)]&&!Object[e(360)](ce)[e(381)](t[e(389)][e(380)])&&(n[e(371)]({path:e(393),message:"Invalid dot type. Must be one of: "+Object.values(ce).join(", "),value:t[e(389)][e(380)]}),t[e(389)][e(380)]=kn[e(389)]?.[e(380)]),t.dotsOptions[e(355)]&&(!Wn(t[e(389)].size)||t.dotsOptions[e(355)]<=0)&&(n[e(371)]({path:e(328),message:e(384),value:t[e(389)][e(355)]}),t.dotsOptions.size=kn[e(389)]?.[e(355)]),t[e(389)][e(353)]&&n[e(371)](...Rn(t[e(389)][e(353)],"dotsOptions.gradient"))),t[e(351)]&&(t[e(351)][e(380)]&&!Object[e(360)](de).includes(t[e(351)][e(380)])&&(n[e(371)]({path:e(376),message:"Invalid corner square type. Must be one of: "+Object[e(360)](de)[e(392)](", "),value:t.cornersSquareOptions[e(380)]}),t[e(351)][e(380)]=kn[e(351)]?.[e(380)]),t[e(351)].gradient&&n[e(371)](...Rn(t.cornersSquareOptions[e(353)],e(366)))),t.cornersDotOptions&&(t.cornersDotOptions[e(380)]&&!Object[e(360)](le)[e(381)](t[e(346)][e(380)])&&(n[e(371)]({path:"cornersDotOptions.type",message:e(398)+Object[e(360)](le)[e(392)](", "),value:t.cornersDotOptions[e(380)]}),t.cornersDotOptions[e(380)]=kn[e(346)]?.type),t[e(346)][e(353)]&&n[e(371)](...Rn(t.cornersDotOptions.gradient,e(404)))),r={...r,...t},{warnings:n,validatedOptions:r}}function Bn(t,e){const n=Nn();return(Bn=function(t,e){return n[t-=280]})(t,e)}const Vn=Bn;function Nn(){const t=["2240088FaIoEB","#2e7d32","#00e676","#d32f2f","3828231aQQwBd","#4CAF50","#6200ea","#0277bd","#37474f","dot","1240890qCyAmH","30lrltxi","#3f51b5","#ff5722","5427818BfCzPd","#6a1b9a","85656cMkeXD","#fafafa","#c62828","#00695c","#fffde7","5AkALeP","#c2185b","#ffebee","#263238","#007fff","#00838f","#ff1744","#757575","#eceff1","#fff3e0","#6d4c41","#d7ccc8","#ffffff","#afb42b","#ad1457","square","#e0f7fa","#bf360c","#f1f8e9","15150gvqeIf","#007bff","#388e3c","#536dfe","#f57f17","1610245JMrIuH","#26a69a","81YDUGQp","#689f38","rounded","#efebe9","#d50000","#d84315","#e1f5fe","#00796b","#795548","#5c6bc0","#b2ebf2","#f57c00","18skgbpF","#fff8e1","#827717"];return(Nn=function(){return t})()}!function(){const t=Bn,e=Nn();for(;;)try{if(584902===-parseInt(t(303))/1*(-parseInt(t(322))/2)+-parseInt(t(329))/3*(parseInt(t(298))/4)+parseInt(t(327))/5+-parseInt(t(341))/6*(parseInt(t(292))/7)+parseInt(t(282))/8+-parseInt(t(286))/9+parseInt(t(293))/10*(parseInt(t(296))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const Jn={classic:{primaryColor:"#000000",secondaryColor:"#000000",thirdColor:Vn(310),backgroundColor:Vn(315),dotShape:ce[Vn(318)],cornerSquareShape:de.square,cornerDotShape:le.square},modern:{primaryColor:Vn(287),secondaryColor:Vn(307),thirdColor:"#d81b60",backgroundColor:Vn(315),dotShape:ce[Vn(291)],cornerSquareShape:de[Vn(331)],cornerDotShape:le[Vn(291)]},rounded:{primaryColor:Vn(323),secondaryColor:Vn(287),thirdColor:Vn(285),backgroundColor:Vn(315),dotShape:ce[Vn(331)],cornerSquareShape:de[Vn(331)],cornerDotShape:le[Vn(291)]},vibrant:{primaryColor:Vn(295),secondaryColor:Vn(294),thirdColor:Vn(283),backgroundColor:"#ffffff",dotShape:ce[Vn(331)],cornerSquareShape:de[Vn(331)],cornerDotShape:le.dot},pastel:{primaryColor:"#f8bbd0",secondaryColor:Vn(339),thirdColor:Vn(301),backgroundColor:"#f5f5f5",dotShape:ce[Vn(291)],cornerSquareShape:de[Vn(318)],cornerDotShape:le[Vn(318)]},neon:{primaryColor:Vn(284),secondaryColor:Vn(309),thirdColor:"#0288d1",backgroundColor:"#212121",dotShape:ce.rounded,cornerSquareShape:de[Vn(331)],cornerDotShape:le[Vn(291)]},earthy:{primaryColor:Vn(337),secondaryColor:"#4db6ac",thirdColor:"#8e24aa",backgroundColor:Vn(332),dotShape:ce[Vn(318)],cornerSquareShape:de[Vn(318)],cornerDotShape:le[Vn(318)]},sunset:{primaryColor:Vn(320),secondaryColor:"#ab47bc",thirdColor:Vn(336),backgroundColor:Vn(312),dotShape:ce[Vn(291)],cornerSquareShape:de[Vn(331)],cornerDotShape:le[Vn(291)]},oceanic:{primaryColor:"#0288d1",secondaryColor:Vn(328),thirdColor:"#6a1b9a",backgroundColor:Vn(319),dotShape:ce[Vn(331)],cornerSquareShape:de.square,cornerDotShape:le[Vn(291)]},bold:{primaryColor:Vn(333),secondaryColor:Vn(288),thirdColor:Vn(324),backgroundColor:Vn(299),dotShape:ce[Vn(318)],cornerSquareShape:de[Vn(331)],cornerDotShape:le[Vn(318)]},limeGlow:{primaryColor:Vn(316),secondaryColor:Vn(325),thirdColor:Vn(300),backgroundColor:Vn(302),dotShape:ce[Vn(291)],cornerSquareShape:de[Vn(331)],cornerDotShape:le[Vn(291)]},twilight:{primaryColor:"#4527a0",secondaryColor:"#d84315",thirdColor:"#00796b",backgroundColor:Vn(311),dotShape:ce[Vn(331)],cornerSquareShape:de.rounded,cornerDotShape:le[Vn(291)]},meadow:{primaryColor:"#388e3c",secondaryColor:Vn(330),thirdColor:Vn(317),backgroundColor:Vn(321),dotShape:ce[Vn(291)],cornerSquareShape:de[Vn(318)],cornerDotShape:le[Vn(318)]},coral:{primaryColor:Vn(304),secondaryColor:Vn(308),thirdColor:Vn(326),backgroundColor:Vn(305),dotShape:ce[Vn(331)],cornerSquareShape:de.rounded,cornerDotShape:le[Vn(291)]},midnight:{primaryColor:Vn(338),secondaryColor:"#fbc02d",thirdColor:"#00695c",backgroundColor:Vn(306),dotShape:ce[Vn(318)],cornerSquareShape:de[Vn(318)],cornerDotShape:le[Vn(318)]},citrus:{primaryColor:Vn(340),secondaryColor:"#558b2f",thirdColor:Vn(313),backgroundColor:Vn(280),dotShape:ce[Vn(291)],cornerSquareShape:de.rounded,cornerDotShape:le[Vn(291)]},dusk:{primaryColor:Vn(297),secondaryColor:"#e65100",thirdColor:Vn(283),backgroundColor:Vn(314),dotShape:ce[Vn(331)],cornerSquareShape:de[Vn(318)],cornerDotShape:le[Vn(291)]},frost:{primaryColor:Vn(289),secondaryColor:Vn(290),thirdColor:Vn(304),backgroundColor:Vn(335),dotShape:ce[Vn(291)],cornerSquareShape:de[Vn(331)],cornerDotShape:le[Vn(318)]},autumn:{primaryColor:Vn(334),secondaryColor:Vn(281),thirdColor:"#4a148c",backgroundColor:Vn(332),dotShape:ce.square,cornerSquareShape:de.rounded,cornerDotShape:le.dot}};function Yn(t,e){const n=xn();return(Yn=function(t,e){return n[t-=406]})(t,e)}function xn(){const t=["196662jPJZST","3KBfpgc","number","3950424WthbLk","146098hMgyhJ","705204vBnVft","trim","18120eEFmXy","3973296KBIhWO","6829711rmIIZq","reduce","replace","1086AoDHVS"];return(xn=function(){return t})()}!function(){const t=Yn,e=xn();for(;;)try{if(505989===-parseInt(t(409))/1+-parseInt(t(418))/2*(-parseInt(t(406))/3)+parseInt(t(410))/4+parseInt(t(412))/5*(-parseInt(t(417))/6)+parseInt(t(414))/7+parseInt(t(413))/8+-parseInt(t(408))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const Dn=/\.?0+$/;function Xn(t){const e=Yn;return t.toFixed(7)[e(416)](Dn,"")}function Pn(t,...e){const n=Yn;return t[n(415)](((t,r,s)=>{const i=n;let o="";return s&&(o=e[s-1]),typeof o==i(407)&&(o=Xn(o)),""+t+o+r}),"")[n(411)]()[n(416)](/[\s\n\r]+/gim," ")}function Un(t,e){const n=Gn();return(Un=function(t,e){return n[t-=186]})(t,e)}function Gn(){const t=["12TZQbJR","982TgbGOI","rounded","drawHeart","basicRounded","toUpperCase","807395xgdIaR","string","document","heart","4714272YeLlIJ","path","_element","map","drawOutpoint","width","outpoint","drawSquare","4524824CggOAc","http://www.w3.org/2000/svg","type","circle","basicClassy","basicDot","dot","basicSquare","drawDot","join","rect","2652232NCjCtJ","transform","7IObNGq","classy","20VHkRbM","basicHeart","draw","756sUBAlS","5466ctmxkE","createElementNS","call","element","setAttribute","drawInpoint","rotateFigure","evenodd","inpoint","clip-rule","920410aawPyi","77275PqFQkG","drawClassy","height","basicInpoint"];return(Gn=function(){return t})()}const Fn=Un;!function(){const t=Un,e=Gn();for(;;)try{if(631337===parseInt(t(224))/1+-parseInt(t(219))/2*(-parseInt(t(203))/3)+-parseInt(t(195))/4+parseInt(t(213))/5*(-parseInt(t(218))/6)+-parseInt(t(197))/7*(-parseInt(t(236))/8)+-parseInt(t(228))/9*(parseInt(t(199))/10)+-parseInt(t(214))/11*(-parseInt(t(202))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Ln{get[Fn(206)](){return this[Fn(230)]}constructor(t,e){const n=Fn;this[n(186)]=t,this[n(226)]=e}[Fn(201)](t){const e=Fn;let n;switch(this.type){case le.square:n=this.drawSquare;break;case le[e(227)]:n=this[e(221)];break;case le[e(220)]:n=this.drawRounded;break;case le[e(198)]:n=this[e(215)];break;case le[e(211)]:n=this[e(208)];break;case le[e(234)]:n=this[e(232)];break;case le[e(190)]:default:n=this[e(192)]}n[e(205)](this,t)}rotateFigure({x:t,y:e,size:n,rotation:r=0,draw:s}){const i=Fn,o=t+n/2,a=e+n/2;s(),this[i(230)]?.setAttribute(i(196),"rotate("+Xn(180*r/Math.PI)+","+o+","+a+")")}basicDot(t){const e=Fn,{size:n,x:r,y:s}=t;this[e(209)]({...t,draw:()=>{const t=e;this[t(230)]=this[t(226)][t(204)](t(237),t(187)),this[t(230)][t(207)]("cx",Xn(r+n/2)),this._element.setAttribute("cy",Xn(s+n/2)),this[t(230)][t(207)]("r",Xn(n/2.1))}})}[Fn(191)](t){const e=Fn,{size:n,x:r,y:s}=t,i=n/11;this[e(209)]({...t,draw:()=>{const t=e;this[t(230)]=this[t(226)].createElementNS(t(237),t(194)),this[t(230)].setAttribute("x",Xn(r+i)),this[t(230)].setAttribute("y",Xn(s+i)),this[t(230)][t(207)](t(233),Xn(n-2*i)),this[t(230)][t(207)](t(216),Xn(n-2*i))}})}[Fn(200)](t){const e=Fn,{size:n,x:r,y:s}=t;this[e(230)]=this[e(226)][e(204)](e(237),e(229));let i=!1,o=0;this[e(230)][e(207)]("d",["M",1,.3262506,"c",0,.0383376,-.0064626,.0758377,-.0193751,.1125001,"s",-.0356247,.076875,-.0681248,.1206252,"c",-.0325,.0437499,-.0762503,.0931247,-.1312501,.1481249,"C",.7262502,.7625008,.6566626,.8279132,.5724999,.9037505,"L",.5,.9687506,"L",.4275001,.9037505,"C",.3433374,.8279132,.2737499,.7625005,.21875,.7075007,"C",.1637501,.6525008,.1199999,.6031258,.0874999,.5593758,"S",.0322876,.4754133,.0193751,.4387506,"S",0,.3645881,0,.3262506,"c",0,-.0783374,.0262499,-.1437498,.07875,-.1962499,"s",.1179124,-.07875,.1962499,-.07875,"c",.0433376,0,.0845875,.0091625,.12375,.0274999,"S",.4716623,.1229131,.5,.1562506,"c",.0283374,-.0333375,.0620874,-.0591625,.1012502,-.0775,"c",.0391627,-.0183375,.0804126,-.0274999,.12375,-.0274999,"c",.0783374,0,.1437497,.0262499,.1962501,.07875,"S",1,.2479131,1,.3262506,"z"][e(231)]((t=>{const a=e;return typeof t==a(225)?(o=0,i=t[a(223)]()==t,t):(o++,t*=n,i&&(t+=o%2==1?r:s),Xn(t))}))[e(193)](" "))}[Fn(222)](t){const e=Fn,{size:n,x:r,y:s}=t;this[e(209)]({...t,draw:()=>{const t=e;this[t(230)]=this.document[t(204)](t(237),t(194)),this._element[t(207)]("x",Xn(r)),this[t(230)].setAttribute("y",Xn(s)),this[t(230)][t(207)](t(233),Xn(n)),this[t(230)][t(207)](t(216),Xn(n)),this[t(230)][t(207)]("rx",Xn(n/4)),this[t(230)][t(207)]("ry",Xn(n/4))}})}[Fn(188)](t){const e=Fn,{size:n,x:r,y:s}=t,i=n/7;this[e(209)]({...t,draw:()=>{const t=e;this[t(230)]=this[t(226)].createElementNS(t(237),"path"),this._element[t(207)](t(212),t(210)),this[t(230)][t(207)]("d",Pn`M ${r} ${s+2.5*i} v ${2*i} a ${2.5*i} ${2.5*i}, 0, 0, 0, ${2.5*i} ${2.5*i} h ${4.5*i} v ${-4.5*i} a ${2.5*i} ${2.5*i}, 0, 0, 0, ${2.5*-i} ${2.5*-i} h ${-2*i} H ${r} z`)}})}[Fn(217)](t){const{size:e,x:n,y:r}=t,s=e;this.rotateFigure({...t,draw:()=>{const t=Un;this[t(230)]=this[t(226)].createElementNS(t(237),t(229)),this[t(230)].setAttribute(t(212),t(210)),this[t(230)][t(207)]("d",Pn`M ${n} ${r+s/2} v ${s/4} a ${s/4}, ${s/4} 0 0 0 ${s/4}, ${s/4} h ${s/4*3} v ${-s/4*3} a ${s/4}, ${s/4} 0 0 0 ${-s/4}, ${-s/4} h ${-s/2} a ${s/4}, ${s/4} 0 0 0 ${-s/4}, ${s/4} z`)}})}[Fn(192)]({x:t,y:e,size:n,rotation:r}){this[Fn(189)]({x:t,y:e,size:n,rotation:r})}[Fn(235)]({x:t,y:e,size:n,rotation:r}){this.basicSquare({x:t,y:e,size:n,rotation:r})}[Fn(221)]({x:t,y:e,size:n,rotation:r}){this[Fn(200)]({x:t,y:e,size:n,rotation:r})}drawRounded({x:t,y:e,size:n,rotation:r}){this[Fn(222)]({x:t,y:e,size:n,rotation:r})}[Fn(215)]({x:t,y:e,size:n,rotation:r}){this.basicClassy({x:t,y:e,size:n,rotation:r})}[Fn(208)]({x:t,y:e,size:n,rotation:r}){this.basicInpoint({x:t,y:e,size:n,rotation:r})}[Fn(232)]({x:t,y:e,size:n,rotation:r}){this[Fn(217)]({x:t,y:e,size:n,rotation:(r||0)+Math.PI})}}function qn(){const t=["1589249YiKCFn","evenodd","65159655BLnWNg","type","square","drawOutpoint","drawSquare","basicInpoint","basicExtraRounded","fill","20yxdoAn","18joMIDo","rotate(","drawDot","createElementNS","outpoint","basicDot","_element","basicSquare","inpoint","setAttribute","546pHktJk","classy","1653104iGqpFu","drawExtraRounded","http://www.w3.org/2000/svg","rotateFigure","clip-rule","1505135bJAVPw","8062310zXTFfP","108468OKumIL","element","transform","basicClassy","call","2926371SLHPTo","document","drawInpoint","path","2FCilLX","_fill","dot"];return(qn=function(){return t})()}const zn=Hn;function Hn(t,e){const n=qn();return(Hn=function(t,e){return n[t-=393]})(t,e)}!function(){const t=Hn,e=qn();for(;;)try{if(962144===-parseInt(t(428))/1*(-parseInt(t(425))/2)+parseInt(t(421))/3+-parseInt(t(396))/4*(-parseInt(t(414))/5)+parseInt(t(416))/6*(parseInt(t(407))/7)+-parseInt(t(409))/8+-parseInt(t(397))/9*(-parseInt(t(415))/10)+-parseInt(t(430))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Kn{get[zn(417)](){return this[zn(403)]}get[zn(395)](){return this[zn(426)]}constructor(t,e){const n=zn;this.type=t,this[n(422)]=e}draw(t){const e=zn;let n;switch(this[e(431)]){case de[e(432)]:n=this[e(434)];break;case de.rounded:n=this[e(410)];break;case de[e(408)]:n=this.drawClassy;break;case de[e(401)]:n=this.drawOutpoint;break;case de[e(405)]:n=this[e(423)];break;case de[e(427)]:default:n=this.drawDot}n[e(420)](this,t)}[zn(412)]({x:t,y:e,size:n,rotation:r=0,draw:s}){const i=zn,o=t+n/2,a=e+n/2;s(),this[i(403)]?.setAttribute(i(418),i(398)+Xn(180*r/Math.PI)+","+o+","+a+")"),this._fill?.[i(406)](i(418),i(398)+Xn(180*r/Math.PI)+","+o+","+a+")")}[zn(402)](t){const e=zn,{size:n,x:r,y:s}=t,i=n/8,o=.5*n,a=o-i;this[e(412)]({...t,draw:()=>{const t=e;this._element=this.document[t(400)](t(411),t(424)),this[t(403)][t(406)](t(413),t(429)),this[t(403)][t(406)]("d",Pn`M ${r+n/2} ${s+(n/2-o)} a ${o} ${o} 0 1 0 0.1 0 z m 0 ${i} a ${a} ${a} 0 1 1 -0.1 0 Z`),this[t(426)]=this.document[t(400)](t(411),t(424)),this[t(426)].setAttribute(t(413),t(429)),this._fill[t(406)]("d",Pn`M ${r+n/2} ${s+(n/2-(o+i))} a ${o+i} ${o+i} 0 1 0 0.1 0 z`)}})}[zn(404)](t){const e=zn,{size:n,x:r,y:s}=t,i=n/7;this[e(412)]({...t,draw:()=>{const t=e;this[t(403)]=this.document.createElementNS(t(411),"path"),this[t(403)].setAttribute(t(413),t(429)),this._element[t(406)]("d",Pn`M ${r} ${s} v ${n} h ${n} v ${-n} z M ${r+i} ${s+i} h ${n-2*i} v ${n-2*i} h ${2*i-n} z`),this[t(426)]=this[t(422)].createElementNS(t(411),t(424)),this._fill[t(406)]("clip-rule",t(429)),this._fill[t(406)]("d",Pn`M ${r-i} ${s-i} h ${n+2*i} v ${n+2*i} h ${-n-2*i} z`)}})}[zn(394)](t){const e=zn,{size:n,x:r,y:s}=t,i=n/7;this[e(412)]({...t,draw:()=>{const t=e;this._element=this[t(422)].createElementNS(t(411),t(424)),this[t(403)][t(406)](t(413),t(429)),this[t(403)][t(406)]("d",Pn`M ${r} ${s+2.5*i} v ${2*i} a ${2.5*i} ${2.5*i}, 0, 0, 0, ${2.5*i} ${2.5*i} h ${2*i} a ${2.5*i} ${2.5*i}, 0, 0, 0, ${2.5*i} ${2.5*-i} v ${-2*i} a ${2.5*i} ${2.5*i}, 0, 0, 0, ${2.5*-i} ${2.5*-i} h ${-2*i} a ${2.5*i} ${2.5*i}, 0, 0, 0, ${2.5*-i} ${2.5*i} z M ${r+2.5*i} ${s+i} h ${2*i} a ${1.5*i} ${1.5*i}, 0, 0, 1, ${1.5*i} ${1.5*i} v ${2*i} a ${1.5*i} ${1.5*i}, 0, 0, 1, ${1.5*-i} ${1.5*i} h ${-2*i} a ${1.5*i} ${1.5*i}, 0, 0, 1, ${1.5*-i} ${1.5*-i} v ${-2*i} a ${1.5*i} ${1.5*i}, 0, 0, 1, ${1.5*i} ${1.5*-i} z`),this[t(426)]=this[t(422)][t(400)](t(411),t(424)),this._fill[t(406)]("clip-rule",t(429)),this._fill.setAttribute("d",Pn`M ${r-i} ${s+2.5*i} v ${2*i} a ${3.5*i} ${3.5*i}, 0, 0, 0, ${3.5*i} ${3.5*i} h ${2*i} a ${3.5*i} ${3.5*i}, 0, 0, 0, ${3.5*i} ${3.5*-i} v ${-2*i} a ${3.5*i} ${3.5*i}, 0, 0, 0, ${3.5*-i} ${3.5*-i} h ${-2*i} a ${3.5*i} ${3.5*i}, 0, 0, 0, ${3.5*-i} ${3.5*i} z`)}})}[zn(419)](t){const e=zn,{size:n,x:r,y:s}=t,i=n/7;this[e(412)]({...t,draw:()=>{const t=e;this[t(403)]=this.document[t(400)](t(411),t(424)),this[t(403)][t(406)](t(413),"evenodd"),this[t(403)].setAttribute("d",Pn`M ${r} ${s+2.5*i} v ${2*i} a ${2.5*i} ${2.5*i}, 0, 0, 0, ${2.5*i} ${2.5*i} h ${4.5*i} v ${-4.5*i} a ${2.5*i} ${2.5*i}, 0, 0, 0, ${2.5*-i} ${2.5*-i} h ${-2*i} H ${r} z M ${r+2.5*i} ${s+i} h ${2*i} a ${1.5*i} ${1.5*i}, 0, 0, 1, ${1.5*i} ${1.5*i} v ${3.5*i} h ${-3.5*i} a ${1.5*i} ${1.5*i}, 0, 0, 1, ${1.5*-i} ${1.5*-i} v ${-3.5*i} z`),this[t(426)]=this.document.createElementNS(t(411),t(424)),this._fill.setAttribute(t(413),"evenodd"),this[t(426)].setAttribute("d",Pn`M ${r+.5*i} ${s-i} h ${4*i} a ${3.5*i} ${3.5*i}, 0, 0, 1, ${3.5*i} ${3.5*i} v ${5.5*i} h ${-5.5*i} a ${3.5*i} ${3.5*i}, 0, 0, 1, ${3.5*-i} ${3.5*-i} v ${-5.5*i} z`)}})}[zn(393)](t){const{size:e,x:n,y:r}=t,s=e/7;this.rotateFigure({...t,draw:()=>{const t=Hn;this[t(403)]=this[t(422)][t(400)]("http://www.w3.org/2000/svg",t(424)),this[t(403)][t(406)](t(413),t(429)),this[t(403)][t(406)]("d",Pn`M ${n} ${r+2.5*s} v ${2*s} a ${2.5*s} ${2.5*s}, 0, 0, 0, ${2.5*s} ${2.5*s} h ${4.5*s} v ${-4.5*s} a ${2.5*s} ${2.5*s}, 0, 0, 0, ${2.5*-s} ${2.5*-s} h ${-2*s} a ${2.5*s} ${2.5*s}, 0, 0, 0, ${2.5*-s} ${2.5*s} z M ${n+2.5*s} ${r+s} h ${2*s} a ${1.5*s} ${1.5*s}, 0, 0, 1, ${1.5*s} ${1.5*s} v ${3.5*s} h ${-3.5*s} a ${1.5*s} ${1.5*s}, 0, 0, 1, ${1.5*-s} ${1.5*-s} v ${-2*s} a ${1.5*s} ${1.5*s}, 0, 0, 1, ${1.5*s} ${1.5*-s} z`),this[t(426)]=this[t(422)].createElementNS(t(411),t(424)),this[t(426)][t(406)](t(413),t(429)),this[t(426)].setAttribute("d",Pn`M ${n+.5*s} ${r-s} h ${4*s} a ${3.5*s} ${3.5*s}, 0, 0, 1, ${3.5*s} ${3.5*s} v ${5.5*s} h ${-5.5*s} a ${3.5*s} ${3.5*s}, 0, 0, 1, ${3.5*-s} ${3.5*-s} v ${-2*s} a ${3.5*s} ${3.5*s}, 0, 0, 1, ${3.5*s} ${3.5*-s} z`)}})}[zn(399)]({x:t,y:e,size:n,rotation:r}){this[zn(402)]({x:t,y:e,size:n,rotation:r})}[zn(434)]({x:t,y:e,size:n,rotation:r}){this.basicSquare({x:t,y:e,size:n,rotation:r})}[zn(410)]({x:t,y:e,size:n,rotation:r}){this[zn(394)]({x:t,y:e,size:n,rotation:r})}drawClassy({x:t,y:e,size:n,rotation:r}){this[zn(419)]({x:t,y:e,size:n,rotation:r})}drawInpoint({x:t,y:e,size:n,rotation:r}){this[zn(393)]({x:t,y:e,size:n,rotation:r})}[zn(433)]({x:t,y:e,size:n,rotation:r}){this[zn(393)]({x:t,y:e,size:n,rotation:(r||0)+Math.PI})}}function Qn(t,e){const n=_n();return(Qn=function(t,e){return n[t-=273]})(t,e)}function _n(){const t=["drawExtraRounded","verticalLine","drawSmallSquare","draw","basicCornersRounded","dot","drawClassyRounded","diamond","square","star","drawPlus","basicCornerExtraRounded","rotateFigure","rounded","extraRounded","document","http://www.w3.org/2000/svg","call","basicDot","smallSquare","createElementNS","rotate(","123366jpJOUr","cos","2581075pmdiTg","236906JNVgee","drawStar","height","classy","sin","drawDiamond","basicSquare","88ikvicu","drawVerticalLine","plus","63PTFKkj","492849kWSqSo","circle","type","basicSideRounded","24VdFmbx","transform","setAttribute","basicCornerRounded","3HzrrrD","_element","2189050wfYquP","1047540jnDxyQ","random","drawHorizontalLine","drawRounded","drawSquare","drawRandomDot","drawDot","drawTinySquare","651895EYmQDw","drawClassy","path"];return(_n=function(){return t})()}const $n=Qn;!function(){const t=Qn,e=_n();for(;;)try{if(460464===-parseInt(t(284))/1+parseInt(t(312))/2*(parseInt(t(273))/3)+-parseInt(t(276))/4+-parseInt(t(311))/5+parseInt(t(309))/6*(parseInt(t(322))/7)+-parseInt(t(327))/8*(parseInt(t(323))/9)+parseInt(t(275))/10*(parseInt(t(319))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class tr{get element(){return this[Qn(274)]}constructor(t,e){const n=Qn;this[n(325)]=t,this[n(302)]=e}[$n(290)](t){const e=$n;let n;switch(this[e(325)]){case ce[e(292)]:n=this[e(282)];break;case ce.randomDot:n=this[e(281)];break;case ce[e(315)]:n=this[e(285)];break;case ce.classyRounded:n=this[e(293)];break;case ce[e(300)]:n=this[e(279)];break;case ce[e(288)]:n=this[e(320)];break;case ce.horizontalLine:n=this[e(278)];break;case ce[e(301)]:n=this[e(287)];break;case ce[e(294)]:n=this[e(317)];break;case ce[e(306)]:n=this[e(289)];break;case ce.tinySquare:n=this[e(283)];break;case ce[e(296)]:n=this.drawStar;break;case ce[e(321)]:n=this[e(297)];break;case ce[e(295)]:default:n=this[e(280)]}n[e(304)](this,t)}[$n(299)]({x:t,y:e,size:n,rotation:r=0,draw:s}){const i=$n,o=t+n/2,a=e+n/2;s(),this[i(274)]?.setAttribute(i(328),i(308)+Xn(180*r/Math.PI)+","+o+","+a+")")}[$n(305)](t){const e=$n,{size:n,x:r,y:s}=t;this[e(299)]({...t,draw:()=>{const t=e;this[t(274)]=this[t(302)][t(307)]("http://www.w3.org/2000/svg",t(324)),this[t(274)][t(329)]("cx",Xn(r+n/2)),this[t(274)][t(329)]("cy",Xn(s+n/2)),this[t(274)].setAttribute("r",Xn(n/2))}})}[$n(318)](t){const e=$n,{size:n,x:r,y:s}=t;this[e(299)]({...t,draw:()=>{const t=e;this[t(274)]=this[t(302)][t(307)](t(303),"rect"),this[t(274)][t(329)]("x",Xn(r)),this[t(274)].setAttribute("y",Xn(s)),this[t(274)].setAttribute("width",Xn(n)),this[t(274)][t(329)](t(314),Xn(n))}})}[$n(326)](t){const e=$n,{size:n,x:r,y:s}=t;this[e(299)]({...t,draw:()=>{const t=e;this[t(274)]=this[t(302)][t(307)](t(303),t(286)),this[t(274)][t(329)]("d",Pn`M ${r} ${s} v ${n} h ${n/2} a ${n/2} ${n/2}, 0, 0, 0, 0 ${-n} z`)}})}[$n(330)](t){const e=$n,{size:n,x:r,y:s}=t;this[e(299)]({...t,draw:()=>{const t=e;this._element=this[t(302)][t(307)](t(303),t(286)),this[t(274)][t(329)]("d",Pn`M ${r} ${s} v ${n} h ${n} v ${-n/2} a ${n/2} ${n/2}, 0, 0, 0, ${-n/2} ${-n/2} z`)}})}[$n(298)](t){const e=$n,{size:n,x:r,y:s}=t;this[e(299)]({...t,draw:()=>{const t=e;this[t(274)]=this.document[t(307)]("http://www.w3.org/2000/svg",t(286)),this[t(274)][t(329)]("d",Pn`M ${r} ${s} v ${n} h ${n} a ${n} ${n}, 0, 0, 0, ${-n} ${-n} z`)}})}[$n(291)](t){const e=$n,{size:n,x:r,y:s}=t;this[e(299)]({...t,draw:()=>{const t=e;this._element=this[t(302)][t(307)]("http://www.w3.org/2000/svg",t(286)),this._element[t(329)]("d",Pn`M ${r} ${s} v ${n/2} a ${n/2} ${n/2}, 0, 0, 0, ${n/2} ${n/2} h ${n/2} v ${-n/2} a ${n/2} ${n/2}, 0, 0, 0, ${-n/2} ${-n/2} z`)}})}[$n(282)]({x:t,y:e,size:n}){this.basicDot({x:t,y:e,size:n,rotation:0})}drawRandomDot({x:t,y:e,size:n}){const r=$n,s=.25*Math[r(277)]()+.75;this[r(305)]({x:t,y:e,size:n*s,rotation:0})}drawSquare({x:t,y:e,size:n}){this[$n(318)]({x:t,y:e,size:n,rotation:0})}[$n(289)]({x:t,y:e,size:n}){const r=n;n=.7*r,t+=.15*r,e+=.15*r,this[$n(318)]({x:t,y:e,size:n,rotation:0})}[$n(283)]({x:t,y:e,size:n}){const r=n;n=.6*r,t+=.35*r,e+=.35*r,this[$n(318)]({x:t,y:e,size:n,rotation:0})}[$n(317)]({x:t,y:e,size:n}){this[$n(318)]({x:t,y:e,size:n,rotation:Math.PI/4})}[$n(279)]({x:t,y:e,size:n,getNeighbor:r}){const s=$n,i=r?+r(-1,0):0,o=r?+r(1,0):0,a=r?+r(0,-1):0,c=r?+r(0,1):0,h=i+o+a+c;if(0!==h)if(h>2||i&&o||a&&c)this[s(318)]({x:t,y:e,size:n,rotation:0});else{if(2===h){let r=0;return i&&a?r=Math.PI/2:a&&o?r=Math.PI:o&&c&&(r=-Math.PI/2),void this.basicCornerRounded({x:t,y:e,size:n,rotation:r})}if(1===h){let r=0;return a?r=Math.PI/2:o?r=Math.PI:c&&(r=-Math.PI/2),void this[s(326)]({x:t,y:e,size:n,rotation:r})}}else this[s(305)]({x:t,y:e,size:n,rotation:0})}[$n(320)]({x:t,y:e,size:n,getNeighbor:r}){const s=$n,i=r?+r(-1,0):0,o=r?+r(1,0):0,a=r?+r(0,-1):0,c=r?+r(0,1):0;if(0===i+o+a+c||i&&!a&&!c||o&&!a&&!c)this[s(305)]({x:t,y:e,size:n,rotation:0});else if(a&&c)this.basicSquare({x:t,y:e,size:n,rotation:0});else if(!a||c)if(!c||a);else{const r=-Math.PI/2;this[s(326)]({x:t,y:e,size:n,rotation:r})}else{const r=Math.PI/2;this[s(326)]({x:t,y:e,size:n,rotation:r})}}[$n(278)]({x:t,y:e,size:n,getNeighbor:r}){const s=$n,i=r?+r(-1,0):0,o=r?+r(1,0):0,a=r?+r(0,-1):0,c=r?+r(0,1):0;if(0===i+o+a+c||a&&!i&&!o||c&&!i&&!o)this[s(305)]({x:t,y:e,size:n,rotation:0});else if(i&&o)this[s(318)]({x:t,y:e,size:n,rotation:0});else if(!i||o)if(!o||i);else{const r=Math.PI;this[s(326)]({x:t,y:e,size:n,rotation:r})}else{const r=0;this[s(326)]({x:t,y:e,size:n,rotation:r})}}[$n(287)]({x:t,y:e,size:n,getNeighbor:r}){const s=$n,i=r?+r(-1,0):0,o=r?+r(1,0):0,a=r?+r(0,-1):0,c=r?+r(0,1):0,h=i+o+a+c;if(0!==h)if(h>2||i&&o||a&&c)this.basicSquare({x:t,y:e,size:n,rotation:0});else{if(2===h){let r=0;return i&&a?r=Math.PI/2:a&&o?r=Math.PI:o&&c&&(r=-Math.PI/2),void this[s(298)]({x:t,y:e,size:n,rotation:r})}if(1===h){let r=0;return a?r=Math.PI/2:o?r=Math.PI:c&&(r=-Math.PI/2),void this[s(326)]({x:t,y:e,size:n,rotation:r})}}else this[s(305)]({x:t,y:e,size:n,rotation:0})}[$n(285)]({x:t,y:e,size:n,getNeighbor:r}){const s=$n,i=r?+r(-1,0):0,o=r?+r(1,0):0,a=r?+r(0,-1):0,c=r?+r(0,1):0;0!==i+o+a+c?i||a?o||c?this[s(318)]({x:t,y:e,size:n,rotation:0}):this[s(330)]({x:t,y:e,size:n,rotation:Math.PI/2}):this[s(330)]({x:t,y:e,size:n,rotation:-Math.PI/2}):this.basicCornersRounded({x:t,y:e,size:n,rotation:Math.PI/2})}[$n(293)]({x:t,y:e,size:n,getNeighbor:r}){const s=$n,i=r?+r(-1,0):0,o=r?+r(1,0):0,a=r?+r(0,-1):0,c=r?+r(0,1):0;0!==i+o+a+c?i||a?o||c?this[s(318)]({x:t,y:e,size:n,rotation:0}):this[s(298)]({x:t,y:e,size:n,rotation:Math.PI/2}):this[s(298)]({x:t,y:e,size:n,rotation:-Math.PI/2}):this[s(291)]({x:t,y:e,size:n,rotation:Math.PI/2})}[$n(313)]({x:t,y:e,size:n}){const r=$n;this[r(299)]({x:t,y:e,size:n,rotation:0,draw:()=>{const s=r;this[s(274)]=this[s(302)][s(307)](s(303),s(286));const i=t+n/2,o=e+n/2,a=1.3*n/2,c=.5*a;let h="";for(let t=0;t<10;t++){const e=t*Math.PI/5-Math.PI/2,n=t%2==0?a:c;h+=(0===t?"M":"L")+(i+n*Math[s(310)](e))+","+(o+n*Math[s(316)](e))}h+="Z",this._element?.setAttribute("d",h)}})}[$n(297)]({x:t,y:e,size:n}){this.rotateFigure({x:t,y:e,size:n,rotation:0,draw:()=>{const r=Qn;this[r(274)]=this[r(302)][r(307)](r(303),r(286));const s=.35*n,i=.85*n,o=(n-i)/2,a=s/2,c=["M "+(t+n/2-a)+" "+(e+o),"h "+s,"v "+i,"h "+-s,"z","M "+(t+o)+" "+(e+n/2-a),"h "+i,"v "+s,"h "+-i,"z"].join(" ");this._element?.[r(329)]("d",c)}})}}const er=nr;function nr(t,e){const n=sr();return(nr=function(t,e){return n[t-=292]})(t,e)}!function(){const t=nr,e=sr();for(;;)try{if(312245===-parseInt(t(320))/1+parseInt(t(312))/2*(parseInt(t(295))/3)+-parseInt(t(323))/4+parseInt(t(329))/5+parseInt(t(309))/6+-parseInt(t(314))/7*(parseInt(t(318))/8)+-parseInt(t(313))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const rr=er(330);function sr(){const t=["string","Image loading error:","data:","statusText","onloadend","3711504tqyDPh","onload","response","1426YYZBUx","7956738QiWqEx","70TaJRcw","result","Invalid image source","GET","118296kStbeR","then","301378Kyoiqc","ontimeout","send","1336yomLMW","startsWith","Failed to read image blob","status","responseType","Image loading timed out","2352360LkFxwV","data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSIjY2NjIi8+PHRleHQgeD0iNTAlIiB5PSI1MCUiIGRvbWluYW50LWJhc2VsaW5lPSJtaWRkbGUiIHRleHQtYW5jaG9yPSJtaWRkbGUiIGZpbGw9IiMwMDAiIGZvbnQtc2l6ZT0iMTYiPkxvZ28gbG9hZCBlcnJvcjwvdGV4dD48L3N2Zz4=","crossOrigin","blob","onabort","readAsDataURL","2343cNAPZE","src","width","data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==","catch","Failed to read local image","Image size detection error:","Failed to load image: ","onerror"];return(sr=function(){return t})()}const ir={toDataURL:t=>{const e=er;return typeof t===e(304)&&t[e(324)](e(306))?Promise.resolve(t):new Promise(((n,r)=>{const s=e;if(typeof t===s(304)){const e=new XMLHttpRequest,i=()=>{e.abort()};e.onload=()=>{const t=s;if(e.status<200||e[t(326)]>=300)return i(),void r(new Error(t(302)+e[t(307)]));const o=new FileReader;o[t(308)]=()=>{const e=t;i(),n(o[e(315)])},o[t(303)]=()=>{const e=t;i(),r(new Error(e(325)))},o.readAsDataURL(e[t(311)])},e[s(303)]=e[s(321)]=e[s(293)]=()=>{i(),r(new Error("Image load aborted or failed"))};try{e.open(s(317),t,!0),e[s(327)]=s(292),e.timeout=1e4,e[s(322)]()}catch(t){i(),r(t)}}else{const e=new FileReader;e[s(308)]=()=>{n(e.result)},e[s(303)]=()=>{r(new Error(s(300)))},e[s(294)](t)}})).catch((t=>{const n=e;return console.error(n(305),t),rr}))},getSize:(t,e)=>new Promise(((n,r)=>{const s=er,i=new Image,o=setTimeout((()=>{r(new Error(nr(328)))}),15e3);"string"==typeof e&&(i[s(331)]=e);const a=()=>{const t=s;clearTimeout(o),i[t(310)]=i.onerror=i[t(293)]=null,i[t(296)]=t(298)};i[s(310)]=()=>{const t=s;a(),n({width:i[t(297)],height:i.height})},i[s(303)]=i[s(293)]=()=>{a(),r(new Error("Failed to load image"))};try{"string"==typeof t?i[s(296)]=t:ir.toDataURL(t)[s(319)]((t=>{const e=s;t?i[e(296)]=t:r(new Error(e(316)))}))[s(299)](r)}catch(t){a(),r(t)}}))[er(299)]((t=>{const e=er;return console.error(e(301),t),{width:200,height:200}}))};function or(t){const e=ar;let n,r=[],s=1;if("#"===(t=t.toLowerCase())[0]){const n=t[e(173)](1),i=n[e(185)];i<=4?(r=[parseInt(n[0]+n[0],16),parseInt(n[1]+n[1],16),parseInt(n[2]+n[2],16)],4===i&&(s=parseInt(n[3]+n[3],16)/255)):(r=[parseInt(n[0]+n[1],16),parseInt(n[2]+n[3],16),parseInt(n[4]+n[5],16)],8===i&&(s=parseInt(n[6]+n[7],16)/255)),r[0]||(r[0]=0),r[1]||(r[1]=0),r[2]||(r[2]=0)}else{if(!(n=/^((?:rgba?))\s*\(([^)]*)\)/[e(189)](t)))return{value:t,alpha:s};{const t=3;r=n[2][e(188)]().split(/\s*[,/]\s*|\s+/),r=r.map(((t,n)=>{const r=e;if("%"===t[t[r(185)]-1]){const e=parseFloat(t)/100;return 3===n?e:255*e}return t===r(177)?0:parseFloat(t)})),s=r[e(185)]>t?r[e(174)]():1}}return{value:"#"+r.map((t=>Math[e(179)](0,Math.min(255,t))[e(190)](16)[e(176)](2,"0")))[e(171)](""),alpha:Math.max(0,Math.min(1,s))}}function ar(t,e){const n=cr();return(ar=function(t,e){return n[t-=171]})(t,e)}function cr(){const t=["528936CCPhFB","slice","pop","9012773mtDIds","padStart","none","19989azPJxc","max","10fDQLEW","3298617ZjHzSJ","284xPJysW","40HetgKN","128klQGfc","length","330957DOyrEB","423489QRFqzx","trim","exec","toString","903098bqTJsb","join"];return(cr=function(){return t})()}function hr(t,e){const n=ur();return(hr=function(t,e){return n[t-=390]})(t,e)}function ur(){const t=["min","481629ryoDiP","655bkBeCJ","round","11832ZwaUjW","9hUjjem","abs","6gmWeKz","ceil","2238610WAvEjC","13211ZOCHFV","2270541JdGyVh","2mhTSYp","1449432sotlFr","58444bxyJNO","max","15656EIAwFv"];return(ur=function(){return t})()}!function(){const t=ar,e=cr();for(;;)try{if(504175===-parseInt(t(187))/1+parseInt(t(191))/2+-parseInt(t(178))/3*(-parseInt(t(182))/4)+parseInt(t(183))/5*(parseInt(t(172))/6)+-parseInt(t(181))/7+parseInt(t(184))/8*(parseInt(t(186))/9)+parseInt(t(180))/10*(-parseInt(t(175))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),function(){const t=hr,e=ur();for(;;)try{if(276938===parseInt(t(405))/1+parseInt(t(403))/2*(parseInt(t(392))/3)+-parseInt(t(390))/4*(-parseInt(t(393))/5)+-parseInt(t(398))/6*(-parseInt(t(402))/7)+parseInt(t(404))/8*(parseInt(t(396))/9)+parseInt(t(400))/10+parseInt(t(401))/11*(-parseInt(t(395))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const lr=pr;function pr(t,e){const n=fr();return(pr=function(t,e){return n[t-=446]})(t,e)}function fr(){const t=["draw","dot-color-","thickness","lightDotsMask","drawBackgroundForBorder","mask-background-color-","insertBefore","indexOf","length","borderOuter","finalHeight","margin","errorCorrectionPercent",") scale(","getSize","toDataURL","_maskedQrGroup","colorStops","bottom","tinySquare","backgroundMaskGroup","verticalOffset","backgroundMask","Element code is not defined","http://www.w3.org/2000/svg","center","opacity","circle","4765792WdwwwO","options","dotsMaskGroup","drawCorners","rect","6318KIykfK","color","gradientUnits","svg","9726048QsRcLa","hideXDots","mask:url(#mask-","731134AstYtF","#fff","hls","_element","dotsOptions","text/xml","QR code is not defined","square","backgroundOptions","toFixed","imageTools","startsWith","cornersSquareOptions","defs","borderInner","document","hasBorder","inner","from","imageSize","left","mask-corners-square-color-","height","radial","mask-corners-dot-color-","svgSize","replace","scale","radialGradient","createColor","element","substring","roundValue","offset","mask","isResponsive","top","#ffffff","base64","round","right","finalWidth","_instanceId","max","isDark","mode","size","background","544107RevaUw","overflow","imageOptions","mask-dot-color-","parseFromString","image","find","4vUKIgp","gradient","transform","hideYDots","drawImage","getPatternPosition","utf8","lightDotsMaskGroup","userSpaceOnUse","forEach","drawDots","function","dotsMask","http://www.w3.org/1999/xlink","borderOptions","0 0 ","type","_innerQrGroup","instanceCount","sqrt","createMask","value","linearGradient","qrGroup","light-dot-color-","appendChild","tan","floor","noBorderThickness","viewBox","5468020ClMMuD","setAttribute","cornersDotOptions","alpha","abs","683438SBeOpj","shape","_hls","stop-opacity","style","corners-dot-color-","xlink:href","fill","crossOrigin","min","setAttributeNS","drawBackground","getModuleCount","createElementNS","radius","width","mask-light-dot-color-","horizontalOffset","1072tWkWVL","visible","sign","corners-square-color-","drawQR","number"];return(fr=function(){return t})()}!function(){const t=pr,e=fr();for(;;)try{if(840738===parseInt(t(579))/1+-parseInt(t(480))/2*(parseInt(t(473))/3)+parseInt(t(567))/4+parseInt(t(510))/5+-parseInt(t(576))/6+-parseInt(t(515))/7+parseInt(t(533))/8*(-parseInt(t(572))/9))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const dr=[[1,1,1,1,1,1,1],[1,0,0,0,0,0,1],[1,0,0,0,0,0,1],[1,0,0,0,0,0,1],[1,0,0,0,0,0,1],[1,0,0,0,0,0,1],[1,1,1,1,1,1,1]],Ir=[[0,0,0,0,0,0,0],[0,0,0,0,0,0,0],[0,0,1,1,1,0,0],[0,0,1,1,1,0,0],[0,0,1,1,1,0,0],[0,0,0,0,0,0,0],[0,0,0,0,0,0,0]];class mr{constructor(t){const e=pr;this[e(457)]=t=>{const n=e;return typeof t===n(538)?t:parseInt(t[n(451)]("%",""),10)/100};const n=t[e(550)]||0,r=t[e(516)]===e(566)?.1:.3,{bordersMain:s,bordersOuter:i,bordersInner:o}=t,a=Math[e(524)](t.width,t[e(447)]),c=Ut(t[e(494)]?.[e(529)]),h=Ut(t[e(494)]?.[e(596)]?.[e(529)],c),u=c&&Dt(c)>0?Dt(c)/100*a:0,l=(c&&Dt(h)>0?Dt(h)/100*a:0)??u,p=l>0&&t.borderOptions?.[e(595)]?l*r:0;this[e(517)]=t[e(581)],this[e(466)]=t[e(530)]+s[e(599)]+s[e(465)]+i[e(599)]+i[e(465)]+o[e(599)]+o[e(465)],this[e(549)]=t[e(447)]+s[e(461)]+s[e(557)]+i[e(461)]+i.bottom+o.top+o[e(557)];const f=s[e(599)]+s[e(465)]+i[e(599)]+i[e(465)]+o.left+o.right,d=s[e(461)]+s[e(557)]+i[e(461)]+i[e(557)]+o[e(461)]+o[e(557)],I=t[e(494)]?.[e(595)]?this.finalWidth-f-2*i.left-2*o.left-o.right-2*n-p:this[e(466)]-2*n,m=t[e(494)]?.hasBorder?this.finalHeight-d-2*i.top-2*o[e(461)]-o[e(461)]-2*n-p:this.finalHeight-2*n,g=I/t.width,w=m/t.height,y=Math.min(g,w),b=Math[e(524)](Math[e(468)](t[e(452)]??1,0),1.5),k=Math[e(524)](Math[e(468)](t[e(494)]?.inner?.[e(452)]??1,0),1.5),A=t[e(494)]?.inner?.[e(532)]||0,S=t[e(494)]?.[e(596)]?.[e(560)]||0;t[e(452)]=y*b*k||1,this[e(568)]=t,this[e(594)]=t[e(594)],this.imageTools=t[e(589)]||ir,this[e(582)]=this[e(594)][e(528)](e(563),e(575));const C=Xn(t[e(530)]),O=Xn(t[e(447)]);!t[e(460)]&&(this[e(582)].setAttribute(e(530),C),this[e(582)][e(511)]("height",O)),this._element.setAttribute(e(509),e(495)+C+" "+O),this[e(592)]=this[e(594)][e(528)]("http://www.w3.org/2000/svg",e(592)),this[e(582)].appendChild(this[e(592)]),this[e(497)]=this[e(594)][e(528)](e(563),"g");let Z=(I-t.width*t.scale)/2+n-A+p/2,v=(m-t[e(447)]*t[e(452)])/2+n-S+p/2;if(t[e(494)]?.hasBorder){const n={top:Ht(t[e(494)],e(461)),right:Ht(t.borderOptions,e(465)),bottom:Kt(t[e(494)],e(557),this[e(517)]),left:Ht(t[e(494)],e(599))},r=t[e(494)][e(541)]||0,s=t[e(494)][e(548)]?.[e(541)]||0,i=t[e(494)][e(593)]?.[e(541)]||0,o=t[e(494)][e(508)]||r/4;v+=((n[e(461)]?r:o)-(n.bottom?r:o))/2+s+i+i/2,Z+=((n[e(599)]?r:o)-(n[e(465)]?r:o))/2+s+i+i/2}t[e(560)]&&(v-=t[e(560)]),t[e(532)]&&(Z-=t[e(532)]),this[e(467)]=mr[e(498)]++,(1!==t[e(452)]||0!==Z||0!==v)&&this._innerQrGroup[e(511)](e(482),"translate("+Z+", "+v+e(552)+t[e(452)]+")"),this[e(555)]=this[e(594)][e(528)]("http://www.w3.org/2000/svg","g"),this[e(555)][e(511)](e(459),"url(#qr-mask-"+this[e(467)]+")"),this[e(555)][e(505)](this._innerQrGroup),this[e(582)][e(505)](this[e(555)])}get element(){return this[pr(582)]}get[lr(503)](){const t=lr;return this[t(497)]||this[t(582)]}get[lr(530)](){return this.finalWidth}get[lr(447)](){return this[lr(549)]}get[lr(450)](){const t=lr;return{width:this[t(568)][t(530)],height:this[t(568)][t(447)]}}getElement(){return this[lr(582)]}async[lr(537)](t){const e=lr,n=t[e(527)](),r=parseInt(((n-17)/4)[e(588)](0),10),s=this[e(568)][e(583)].size;let i={hideXDots:0,hideYDots:0,width:0,height:0};if(this.qr=t,!this[e(568)][e(494)]?.[e(595)]&&this[e(526)](),this[e(568)].image){const t=await this[e(589)][e(553)](this[e(568)].image,this.options[e(475)][e(523)]),{imageOptions:o}=this[e(568)];if(this[e(568)].imageOptions.mode==be[e(472)]){const n=0,r=(this.finalWidth-2*n*s)*o[e(598)],a=(this[e(549)]-2*n*s)*o[e(598)];let{width:c,height:h}=t;h=h/c*r,c=r,h>a&&(c=c/h*a,h=a),i={hideXDots:0,hideYDots:0,width:c,height:h}}else{const o=this.options[e(475)][e(598)]*this[e(568)][e(551)],a=ct.getPatternPosition(r),c=Math[e(507)](o*(n*n-192-2*(n-16)-a[e(547)]**2*25));i=function({originalHeight:t,originalWidth:e,maxHiddenDots:n,maxHiddenAxisDots:r,dotSize:s,margin:i}){const o=hr,a={x:0,y:0},c={x:0,y:0};if(t<=0||e<=0||n<=0||s<=0||4*i**2>n)return{height:0,width:0,hideYDots:0,hideXDots:0};r&&r%2==0&&(r=Math[o(406)](1,r-1));const h=Math.max(e,t),u=Math[o(391)](e,t);let l=0,p=(r||n)-2*i;do{const t=l+(p-l)/2;let e=Math[o(406)](1,Math[o(399)](t+2*i));e%2==0&&e++;let r=Math.max(1,Math.ceil(t*u/h+2*i));r%2==0&&r++,e*r>n?p=t:l=t}while(Math[o(397)](l-p)>.001);const f=l;let d=Math[o(406)](1,Math[o(399)](f+2*i));d%2==0&&d++;let I=Math.max(1,Math[o(399)](f*u/h+2*i));I%2==0&&I++,e>t?(a.x=d,a.y=I):(a.x=I,a.y=d);const m=(a.x-2*i)*s,g=(a.y-2*i)*s;return c.x=m,c.y=m*t/e,c.y>g&&(c.y=g,c.x=g*e/t),{height:Math.round(c.y+2*i*s),width:Math[o(394)](c.x+2*i*s),hideYDots:a.y,hideXDots:a.x}}({originalWidth:t[e(530)],originalHeight:t.height,maxHiddenDots:c,maxHiddenAxisDots:n-14,dotSize:s,margin:this.options[e(475)][e(550)]})}}this.options[e(475)][e(470)]!=be.overlay&&this.options[e(478)]&&i.width>0&&i[e(447)]>0&&await this[e(484)]({width:i.width,height:i[e(447)],count:n,dotSize:s}),this.drawDots(((t,r)=>{const s=e;return!(this.options[s(475)][s(470)]==be[s(564)]&&t>=(n-i[s(577)])/2&&t<(n+i[s(577)])/2&&r>=(n-i[s(483)])/2&&r<(n+i[s(483)])/2)&&!(t<8&&r<8||t>=n-8&&r<8||r>=n-8&&t<8)})),this[e(568)][e(475)][e(470)]==be.overlay&&this[e(568)].image&&i.width>0&&i[e(447)]>0&&await this[e(484)]({width:i[e(530)],height:i[e(447)],count:n,dotSize:s}),this[e(570)]()}[lr(526)](){const t=lr,e=this.options;if(this[t(582)]&&e[t(587)]){const n=e.backgroundOptions.gradient,r=e.backgroundOptions[t(573)];this[t(454)]({options:n,color:r,additionalRotation:0,x:0,y:0,height:e[t(447)],width:e[t(530)],name:"background-color-"+this[t(467)]});const s=Math[t(524)](e.width,e[t(447)]),i=this[t(594)][t(528)]("http://www.w3.org/2000/svg","rect");[this[t(561)],this[t(559)]]=this[t(500)](t(544)+this[t(467)]),this[t(592)].appendChild(this[t(561)]);const o=e[t(587)]?.[t(464)]||0,a=this[t(457)](o);i.setAttribute("x",Xn((e[t(530)]-s)/2)),i[t(511)]("y",Xn((e.height-s)/2)),i.setAttribute(t(530),Xn(s)),i[t(511)]("height",Xn(s)),i.setAttribute("rx",Xn(s/2*a)),this[t(559)].appendChild(i)}}[lr(543)](t,e){const n=lr,r=this[n(568)];if(r.backgroundOptions){const s=r[n(587)][n(481)],i=r.backgroundOptions[n(573)]||n(462),o=Math[n(524)](r.width,r[n(447)])-2*t,a=(r.width-o)/2,c=(r.height-o)/2,h=e-t,u=this[n(454)]({options:s,borderOptions:r[n(494)],color:i,additionalRotation:0,x:a,y:c,height:o,width:o,name:"background-color-"+this[n(467)],returnSVGGroup:!0}),l=this[n(594)][n(528)](n(563),n(571));return[this.backgroundMask,this[n(559)]]=this[n(500)](n(544)+this._instanceId),this.defs.appendChild(this[n(561)]),l[n(511)]("x",Xn(a)),l[n(511)]("y",Xn(c)),l.setAttribute(n(530),Xn(o)),l[n(511)]("height",Xn(o)),l[n(511)]("rx",Xn(h)),this[n(559)][n(505)](l),u}}[lr(490)](t){const e=lr;if(!this.qr)throw new Error(e(585));const n=this[e(568)],r=this.qr[e(527)]();if(r>n.width||r>n[e(447)])throw new Error("The canvas is too small");const s=n.dotsOptions[e(471)];let i=Math[e(524)](n[e(530)],n[e(447)]);n[e(475)][e(470)]==be[e(472)]&&(i-=2*s*(n[e(475)][e(550)]||0));const o=Math[e(507)]((n[e(530)]-r*s)/2);let a=Math[e(507)]((n.height-r*s)/2);if(n[e(458)]){const t=(n[e(447)]-r*s)/2;a+=Math[e(524)](Math[e(514)](n.offset),t)*Math[e(535)](n.offset)}let c=new tr(n[e(583)][e(496)],this[e(594)]);const h=new tr(ce[e(558)],this[e(594)]),u=new tr(ce[e(586)],this[e(594)]);[this[e(492)],this[e(569)]]=this[e(500)](e(476)+this._instanceId),this[e(592)][e(505)](this[e(492)]),n[e(475)][e(470)]==be[e(472)]&&([this[e(542)],this[e(487)]]=this.createMask(e(531)+this[e(467)]),this[e(592)][e(505)](this.lightDotsMask));let l=0,p=r;n[e(516)]===ge.circle?(l=Math.floor((i/s-r-2)/2),p=r+2*l):n[e(475)].mode==be.background&&(l=1,p=r+2*l);const f=o-l*s,d=a-l*s,I=f,m=d,g=r+2*l,w=new Array(p),y=Math[e(507)](p/2);for(let s=0;s<p;s++){w[s]=new Array(p);for(let i=0;i<p;i++)if(s>l-1&&s<p-l&&i>l-1&&i<p-l){const n=s-l,r=i-l;t&&!t(n,r)?w[s][i]=void 0:w[s][i]=!!this.qr[e(469)](r,n)}else n[e(516)]===ge[e(566)]&&Math[e(499)]((s-y)*(s-y)+(i-y)*(i-y))>y?w[s][i]=void 0:w[s][i]=s!=l-1&&s!=p-l&&i!=l-1&&i!=p-l?this.qr[e(469)](i-2*l<0?i:i>=r?i-2*l:i-l,s-2*l<0?s:s>=r?s-2*l:s-l):(i==l-1&&(s<l+8||s>p-l-9)||i==p-l&&s<l+8||s==l-1&&(i<l+8||i>p-l-9)||s==p-l&&i<l+8)&&void 0}const b=(r-17)/4,k=ct[e(485)](b);for(let t=0;t<p;t++){const n=k[e(479)]((e=>t-l>e-3&&t-l<e+3));for(let r=0;r<p;r++){const i=k[e(479)]((t=>r-l>t-3&&r-l<t+3));null!=w[t][r]&&(this[e(542)]&&(c=n&&i&&(n!=k[0]&&i!=k[0]||i!=k[0]&&i!=k[k.length-1]||n!=k[0]&&n!=k[k.length-1])?u:h),w[t][r]?(c[e(539)]({x:f+t*s,y:d+r*s,size:s,getNeighbor:(e,n)=>!0===w[t+e]?.[r+n]}),c[e(455)]&&this[e(569)]&&this.dotsMaskGroup[e(505)](c[e(455)])):this[e(542)]&&(c.draw({x:f+t*s,y:d+r*s,size:s,getNeighbor:(e,n)=>!1===w[t+e]?.[r+n]}),c[e(455)]&&this[e(487)]&&this[e(487)][e(505)](c.element)))}}this[e(542)]&&this[e(454)]({options:n[e(475)].fill?.gradient,color:n.imageOptions[e(522)]?.[e(573)],additionalRotation:0,x:I,y:m,height:g*s,width:g*s,name:e(504)+this[e(467)]}),this[e(454)]({options:n[e(583)]?.[e(481)],color:n.dotsOptions.color,additionalRotation:0,x:I,y:m,height:g*s,width:g*s,name:e(540)+this[e(467)]})}drawCorners(){const t=lr;if(!this.qr)throw new Error("QR code is not defined");const e=this[t(503)],n=this[t(568)];if(!e)throw new Error(t(562));const r=this.qr[t(527)](),s=n[t(583)][t(471)],i=7*s,o=3*s,a=Math.floor((n[t(530)]-r*s)/2);let c=Math.floor((n[t(447)]-r*s)/2);if(n[t(458)]){const e=(n[t(447)]-r*s)/2,i=Math[t(524)](Math[t(514)](n.offset),e)*Math[t(535)](n[t(458)]);c+=i}[[0,0,0],[1,0,Math.PI/2],[0,1,-Math.PI/2]][t(489)]((([e,h,u])=>{const l=t,p=a+e*s*(r-7),f=c+h*s*(r-7);let d=this[l(492)],I=this[l(569)],m=this[l(492)],g=this[l(569)];if((n[l(591)]?.[l(481)]||n.cornersSquareOptions?.[l(573)])&&([d,I]=this[l(500)](l(446)+e+"-"+h+"-"+this._instanceId),this[l(592)][l(505)](d),m=d,g=I,this[l(454)]({options:n[l(591)]?.[l(481)],color:n[l(591)]?.color,additionalRotation:u,x:p,y:f,height:i,width:i,name:l(536)+e+"-"+h+"-"+this[l(467)]})),n[l(591)]?.[l(496)]){const t=new Kn(n.cornersSquareOptions[l(496)],this[l(594)]);t.draw({x:p,y:f,size:i,rotation:u}),t[l(455)]&&I&&I[l(505)](t[l(455)]),t[l(522)]&&this[l(487)]&&this.lightDotsMaskGroup[l(505)](t[l(522)])}else{const t=new tr(n.dotsOptions[l(496)],this[l(594)]);for(let e=0;e<dr.length;e++)for(let n=0;n<dr[e][l(547)];n++)dr[e]?.[n]?(t[l(539)]({x:p+e*s,y:f+n*s,size:s,getNeighbor:(t,r)=>!!dr[e+t]?.[n+r]}),t[l(455)]&&I&&I[l(505)](t.element)):this[l(542)]&&!Ir[e]?.[n]&&(t[l(539)]({x:p+e*s,y:f+n*s,size:s,getNeighbor:(t,r)=>!dr[e+t]?.[n+r]&&!Ir[e+t]?.[n+r]}),t[l(455)]&&this[l(487)]&&this[l(487)][l(505)](t[l(455)]));if(this[l(542)])for(let e=-1;e<8;e++)for(let n=-1;n<8;n++)(-1==e||7==e||-1==n||7==n)&&(t[l(539)]({x:p+e*s,y:f+n*s,size:s,getNeighbor:(t,r)=>{const s=e+t,i=n+r;return s>=-1&&s<=7&&i>=-1&&i<=7&&(-1==s||7==s||-1==i||7==i)}}),t[l(455)]&&this.lightDotsMaskGroup&&this[l(487)][l(505)](t.element))}if((n[l(512)]?.[l(481)]||n[l(512)]?.[l(573)])&&([m,g]=this[l(500)](l(449)+e+"-"+h+"-"+this._instanceId),this[l(592)][l(505)](m),this[l(454)]({options:n.cornersDotOptions?.[l(481)],color:n[l(512)]?.color,additionalRotation:u,x:p+2*s,y:f+2*s,height:o,width:o,name:l(520)+e+"-"+h+"-"+this[l(467)]})),n[l(512)]?.[l(496)]){const t=new Ln(n[l(512)][l(496)],this[l(594)]);t[l(539)]({x:p+2*s,y:f+2*s,size:o,rotation:u}),t.element&&g&&g[l(505)](t[l(455)])}else{const t=new tr(n[l(583)].type,this[l(594)]);for(let e=0;e<Ir[l(547)];e++)for(let n=0;n<Ir[e].length;n++)Ir[e]?.[n]&&(t[l(539)]({x:p+e*s,y:f+n*s,size:s,getNeighbor:(t,r)=>!!Ir[e+t]?.[n+r]}),t[l(455)]&&g&&g.appendChild(t[l(455)]))}}))}async[lr(484)]({width:t,height:e,count:n,dotSize:r}){const s=lr,i=this.options,o=Math[s(507)]((i.width-n*r)/2);let a=Math[s(507)]((i[s(447)]-n*r)/2);if(i[s(458)]){const t=(i[s(447)]-n*r)/2;a+=Math.min(Math[s(514)](i[s(458)]),t)*Math.sign(i[s(458)])}let c=i[s(475)].margin*r;i.imageOptions[s(470)]==be[s(472)]&&(c=0);const h=o+c+(n*r-t)/2,u=a+c+(n*r-e)/2,l=t-2*c,p=e-2*c,f=await this[s(589)][s(554)](i.image||"");let d=this[s(594)].createElementNS(s(563),s(478));if(d[s(525)](s(493),s(521),f||""),f?.[s(590)]("data:image/svg+xml;")){let t=f[s(456)](19);const e=t[s(546)](","),n=t.substring(0,e);if(t=t[s(456)](e+1),n===s(463))t=typeof atob==s(491)?atob(t):Buffer.from(t,s(463)).toString(s(486));else t="";if(t){const e=(new DOMParser)[s(477)](t,s(584)),n=Array[s(597)](e.getElementsByTagName(s(575)));n[s(547)]&&(d=n[0],d[s(511)](s(474),s(534)))}}d&&f&&(d[s(511)]("x",Xn(h)),d.setAttribute("y",Xn(u)),d.setAttribute(s(530),Xn(l)+"px"),d[s(511)](s(447),Xn(p)+"px"),this[s(503)][s(505)](d))}createColor({options:t,borderOptions:e,color:n,additionalRotation:r,x:s,y:i,height:o,width:a,name:c,returnSVGGroup:h=!1}){const u=lr,l=a>o?a:o,p=this[u(594)].createElementNS("http://www.w3.org/2000/svg",u(571));if(p[u(511)]("x",Xn(s)),p.setAttribute("y",Xn(i)),p[u(511)](u(447),Xn(o)),p[u(511)](u(530),Xn(a)),p.setAttribute(u(519),u(578)+c+"-"+this._instanceId+")"),t){let n;if(t[u(496)]===ie[u(448)]){n=this.document[u(528)](u(563),u(453)),n.setAttribute("id",c+"-"+this._instanceId),n[u(511)](u(574),"userSpaceOnUse");let t=s+a/2,r=i+o/2;if(e){const n=e.thickness/2,c=2;Ht(e,u(461))&&!Kt(e,"bottom",this[u(517)])?r=i+n*c+o/2:!Ht(e,u(461))&&Kt(e,"bottom",this._hls)&&(r=i-n*c+o/2),Ht(e,"right")&&!Ht(e,"left")?t=s-n*c+a/2:!Ht(e,u(465))&&Ht(e,u(599))&&(t=s+n*c+a/2)}n.setAttribute("fx",Xn(t)),n[u(511)]("fy",Xn(r)),n[u(511)]("cx",Xn(s+a/2)),n.setAttribute("cy",Xn(i+o/2)),n[u(511)]("r",Xn(l/2))}else{const e=((t.rotation||0)+r)%(2*Math.PI),h=(e+2*Math.PI)%(2*Math.PI);let l=s+a/2,p=i+o/2,f=s+a/2,d=i+o/2;h>=0&&h<=.25*Math.PI||h>1.75*Math.PI&&h<=2*Math.PI?(l-=a/2,p-=o/2*Math[u(506)](e),f+=a/2,d+=o/2*Math[u(506)](e)):h>.25*Math.PI&&h<=.75*Math.PI?(p-=o/2,l-=a/2/Math.tan(e),d+=o/2,f+=a/2/Math[u(506)](e)):h>.75*Math.PI&&h<=1.25*Math.PI?(l+=a/2,p+=o/2*Math.tan(e),f-=a/2,d-=o/2*Math[u(506)](e)):h>1.25*Math.PI&&h<=1.75*Math.PI&&(p+=o/2,l+=a/2/Math[u(506)](e),d-=o/2,f-=a/2/Math.tan(e)),n=this.document[u(528)](u(563),u(502)),n[u(511)]("id",c+"-"+this._instanceId),n[u(511)](u(574),u(488)),n.setAttribute("x1",Xn(l)),n[u(511)]("y1",Xn(p)),n[u(511)]("x2",Xn(f)),n[u(511)]("y2",Xn(d))}t[u(556)].forEach((t=>{const e=u,r=this[e(594)][e(528)]("http://www.w3.org/2000/svg","stop");r.setAttribute(e(458),Xn(100*t[e(458)])+"%");const s=or(t.color);r[e(511)]("stop-color",s.value),s.alpha<1&&r[e(511)](e(518),s[e(513)].toFixed(7)),n[e(505)](r)})),p[u(511)](u(522),"url(#"+c+"-"+this[u(467)]+")"),this[u(592)][u(505)](n)}else if(n){const t=or(n);p[u(511)]("fill",t[u(501)]),t[u(513)]<1&&p[u(511)](u(565),t[u(513)][u(588)](7))}if(h)return p;c[u(590)]("background-color")?this._element[u(545)](p,this[u(555)]):this[u(503)].appendChild(p)}[lr(500)](t){const e=lr,n=t+"-"+this[e(467)],r=this[e(568)],s=this[e(594)][e(528)](e(563),"mask");s[e(511)]("id",n),s.setAttribute("maskUnits",e(488)),s[e(511)]("x","0"),s[e(511)]("y","0"),s[e(511)]("width",Xn(r[e(530)])),s[e(511)]("height",Xn(r[e(447)]));const i=this[e(594)][e(528)](e(563),"g");return i.setAttribute(e(522),e(580)),s[e(505)](i),[s,i]}}mr[lr(498)]=0;const gr=yr;function wr(){const t=["innerHTML","applyQRThreshold","toLowerCase","_setupSvgAsync","ceil","thickness","join","336525RABAgO","cloneNode","svgSize","from","QR code is empty","174htrbIY","addData","webp","deleteExtension","length",'QR Code style "','" not found. Using default.',"borderInner","size","onerror","6rirStH","serialize","jpeg","filter","1413KLvVqQ","imageOptions","top","583496XbcmWb","right","QR Code Options Validation Warnings:","Failed to serialize SVG.","bind","Image load aborted","option: ","Could not get OffscreenCanvas 2D context","QR Code JS Options Update Validation Warnings:","borderOptions"," - '","crossOrigin","Image load error: ","getContext","assign","update","Error drawing to canvas:","map","_selectedStyle","warn","undefined","left","container","version","Invalid static style options ignored during instantiation:","SVG serialization returned empty.","then","borderOuter","dotsOptions","Extension function should be defined.","stringToBytesFuncs","serializeToString","qrOptions","data:image/svg+xml;base64,","setTemplate","src","downloadURI","svg","svgDrawingPromise","background","qrSVG","canvas","extension","onload","createOptimizedQRCanvas","fromCharCode","onabort","_logValidationWarnings","bottom","getModuleCount",'QR Code template "',"data","noBorderThickness","margin","208780RQKpfQ","' : ","height","1411300tMeohm","sqrt","click","invert(1)","href","setStyle","instanceId","Anonymous","_instanceId","20918KUuCqP","mode","shape","drawToCanvas","0.9.0","drawQR","error","removeChild","_hls","width","append","_selectedTemplate","toDataURL","putImageData","body","hasBorder","name","options","string","element","3981768OjywKv","Invalid style options provided to setStyle:","download","660705jHLRtt",'" not found. Resetting to default template.',"appendChild","circle","drawBackgroundForBorder","createElement","Could not get canvas 2D context","max","data:image/svg+xml;charset=utf-8,","errorCorrectionLevel","drawImage","catch"];return(wr=function(){return t})()}function yr(t,e){const n=wr();return(yr=function(t,e){return n[t-=475]})(t,e)}var br;!function(){const t=yr,e=wr();for(;;)try{if(726216===-parseInt(t(546))/1+parseInt(t(523))/2+-parseInt(t(580))/3*(parseInt(t(587))/4)+parseInt(t(514))/5+-parseInt(t(570))/6*(parseInt(t(565))/7)+-parseInt(t(543))/8+parseInt(t(584))/9*(parseInt(t(511))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),function(t){const e=yr;t[e(494)]="svg",t.png="png",t[e(582)]=e(582),t[e(572)]=e(572)}(br||(br={})),Object[gr(601)](bt[gr(487)],At);let kr=class t{get[gr(578)](){const t=gr;return this[t(497)]?{width:this.qrSVG[t(532)],height:this[t(497)][t(513)]}:void 0}constructor(e){const n=gr,r=e;let s=kn;if(t._selectedTemplate)if("string"==typeof t[n(534)]){const e=t[n(534)];vn[e]?s=vn[e]:console[n(476)](n(507)+e+n(576))}else s=t[n(534)];let i={};if(t[n(475)]){const{isValid:e,errors:r}=je(t[n(475)]);e?i=We(t[n(475)]):console[n(476)](n(481),r)}const o=Et(s,i,r),{warnings:a,validatedOptions:c}=jn(o);this[n(540)]=ve(c),a[n(574)]>0&&this[n(504)](n(589),a),this.update()}static[gr(491)](e){const n=gr;return typeof e===n(541)?vn[e]?t[n(534)]=e:(console.warn(n(507)+e+n(547)),t._selectedTemplate=kn):t[n(534)]=e,t}static[gr(519)](e){const n=gr;let r=null;if(typeof e===n(541)){const s=e;if(!Jn[s])return console[n(476)](n(575)+s+'" not found in setStyle. Ignoring.'),t;r=Jn[s]}else r=e;if(r){const{isValid:e,errors:s}=je(r);!e&&console[n(476)](n(544),s),t[n(475)]=r}else t[n(475)]=null;return t}async update(t){const e=gr;this[e(479)]&&(this.container[e(558)]="");const{warnings:n}=jn(t||this[e(540)]);if(n[e(574)]>0&&this._logValidationWarnings(e(595),n),this[e(540)]=t?ve(Et(this[e(540)],t)):this[e(540)],!this.options[e(508)])return;this.options[e(487)]&&(Object[e(601)](bt[e(487)],this[e(540)][e(487)]),delete this[e(540)][e(487)]),this.qr=new bt(this[e(540)][e(489)].typeNumber,this[e(540)][e(489)][e(555)]);const r=this[e(540)][e(489)][e(524)]||function(t){const e=Ee;switch(!0){case/^[0-9]*$/[e(262)](t):return yt[e(260)];case/^[0-9A-Z $%*+\-./:]*$/[e(262)](t):return yt[e(251)];case/[^\u0000-\u00ff]/[e(262)](t):return yt[e(253)];default:return yt[e(255)]}}(this[e(540)][e(508)]);this.qr[e(571)](this.options[e(508)],r),this.qr.make(),await this[e(561)](),this[e(533)](this[e(479)])}[gr(533)](t){const e=gr;if(t)return this[e(497)]?.element&&t[e(548)](this.qrSVG[e(542)]),this[e(479)]=t,this}async applyExtension(t){const e=gr;if(!t)throw new Error(e(486));this[e(499)]=t,await this[e(602)]()}async[gr(573)](){const t=gr;this[t(499)]=void 0,await this[t(602)]()}async[gr(581)](t=!1){const e=gr;if(!this.qr)throw new Error(e(569));if(!this[e(497)]?.[e(542)]&&await this._setupSvgAsync(),this.svgDrawingPromise&&await this[e(495)],!this[e(497)]?.[e(542)])return;let n=this[e(497)][e(542)];if(t){const t=this[e(497)].element[e(566)](!0);t.style[e(583)]=e(517),n=t}let r=(new XMLSerializer)[e(488)](n);return r='<?xml version="1.0" standalone="no"?>\r\n'+r,r}async[gr(561)](){const t=gr;if(!this.qr)return;let e=this.qr[t(506)]();this.options[t(585)][t(524)]===be[t(496)]&&this[t(540)][t(525)]!==ge[t(549)]&&(e+=2);let n=Math[t(562)]((this.options[t(525)]===ge.circle?Math[t(515)](1.8):1.1)*e);n%2==0&&(n-=1);let r=0;this.options[t(585)][t(524)]===be.background&&(r+=this[t(540)].imageOptions[t(510)]||0);const s=Math.ceil(this.options[t(485)][t(578)]*(n+2*r)),i=this[t(540)].borderOptions;let o=0,a=0;const c={top:0,right:0,bottom:0,left:0},h={top:0,right:0,bottom:0,left:0},u={top:0,right:0,bottom:0,left:0},l=i?.[t(509)]||i?.[t(563)]?i[t(563)]/4:0;if(i?.[t(538)]){const e=i[t(484)]?.[t(563)]?2*i[t(484)]?.[t(563)]:0,n=i.borderInner?.[t(563)]?2*i[t(577)]?.thickness:0;e>0&&(h[t(586)]=e/2,h[t(505)]=e/2,h[t(478)]=e/2,h[t(588)]=e/2),n>0&&(u.top=n/2,u[t(505)]=n/2,u[t(478)]=n/2,u[t(588)]=n/2),Ht(i,t(478))?(c[t(478)]=i[t(563)],o+=i[t(563)]):(c[t(478)]=l,o+=l),Ht(i,t(588))?(c[t(588)]=i.thickness,o+=i[t(563)]):(c[t(588)]=l,o+=l),Ht(i,t(586))?(c[t(586)]=i[t(563)],a+=i[t(563)]):(c[t(586)]=l,a+=l),Kt(i,t(505),this[t(531)]())?(c[t(505)]=i.thickness,a+=i.thickness):(c[t(505)]=l,a+=l)}const p=s+o,f=s+a;this[t(497)]=new mr({...this[t(540)],width:p,height:f,bordersMain:c,bordersOuter:h,bordersInner:u,errorCorrectionPercent:Me[this.options[t(489)][t(555)]],hls:this[t(531)]()}),this.svgDrawingPromise=this[t(497)][t(528)](this.qr)[t(483)]((()=>{const e=t;this[e(497)]?.[e(542)]&&(this[e(540)][e(520)]=this.qrSVG[e(522)],this[e(540)][e(596)]?.[e(538)]&&re(this[e(540)][e(596)])(this.qrSVG[e(542)],this.options,s,this[e(497)][e(550)][e(591)](this[e(497)]),c,h,u,l,this[e(531)]),this[e(499)]?.(this[e(497)][e(542)],this.options))}))[t(557)]((t=>{console.error(t)}))}async _drawToCanvasForValidation(t){const e=gr,{width:n=300,height:r=300}=this.qrSVG?.svgSize??t??f,s=n,i=r,o=document[e(551)](e(498));o[e(532)]=s,o[e(513)]=i;const a=await this.serialize();if(!a)throw new Error(e(590));const c=btoa(a),h=e(490)+c;return new Promise(((t,n)=>{const r=e,a=new Image;a[r(532)]=s,a.height=i,a[r(598)]=r(521),a[r(500)]=()=>{const e=r,c=o[e(600)]("2d");if(!c)return n(new Error(e(552)));c[e(556)](a,0,0,s,i),t(o)},a[r(579)]=a[r(503)]=n,a[r(492)]=h}))}async[gr(526)](t){const e=gr,{width:n=300,height:r=300}=this[e(497)]?.[e(567)]??t??f,s=1*n,i=1*r,o=document[e(551)](e(498));o.width=s,o[e(513)]=i;const a=(async()=>{const t=e;try{const e=await this[t(581)]();if(!e)return void console.warn(t(482));const a="data:image/svg+xml;base64,"+btoa(e),c=new Image;c[t(532)]=s,c[t(513)]=i,await new Promise(((e,h)=>{const u=t;c[u(500)]=()=>{const t=u,a=Math[t(562)](2*Math.max(n,r)/Math[t(553)](c[t(532)],c[t(513)]));let l;try{l=new OffscreenCanvas(c[t(532)]*a*2,c.height*a*2)}catch(e){l=document[t(551)](t(498)),l.width=c.width*a*2,l[t(513)]=c[t(513)]*a*2}const p=l.getContext("2d");if(!p)return h(new Error(t(594)));p[t(556)](c,0,0,l[t(532)],l[t(513)]);const f=o[t(600)]("2d");if(!f)return h(new Error(t(552)));f.drawImage(l,0,0,l.width,l[t(513)],0,0,s,i),e()},c[u(579)]=t=>h(new Error(u(599)+t)),c[u(503)]=()=>h(new Error(u(592))),c.src=a}))}catch(e){throw console[t(529)](t(603),e),e}})();return{canvas:o,canvasDrawingPromise:a}}[gr(493)](t,e){const n=gr,r=document[n(551)]("a");r[n(545)]=e,r[n(518)]=t,document[n(537)].appendChild(r),r[n(516)](),document[n(537)][n(530)](r)}async download(t,e){const n=gr;if(typeof Blob===n(477))throw new Error("Cannot download in Node.js environment");let r=br.png,s="qr";if(t&&(t[n(539)]&&(s=t[n(539)]),t[n(499)]&&(r=t[n(499)])),r[n(560)]()===n(494)){const t=await this[n(581)]();if(!t)return;const e=n(554)+encodeURIComponent(t);this[n(493)](e,s+".svg")}else{const t=await this[n(526)](e);if(!t)return;const{canvas:i,canvasDrawingPromise:o}=t;await o;const a=i[n(535)]("image/"+r);this[n(493)](a,s+"."+r)}}async[gr(501)](t){const e=gr,{width:n=300,height:r=300}=this.qrSVG?.[e(567)]??t??f,s=document.createElement(e(498));s[e(532)]=n,s[e(513)]=r;const i=await this[e(581)]();if(!i)throw new Error(e(590));const o=btoa(Array[e(568)]((new TextEncoder).encode(i))[e(604)]((t=>String[e(502)](t)))[e(564)]("")),a=e(490)+o;return new Promise(((t,i)=>{const o=e,c=new Image;c[o(532)]=n,c[o(513)]=r,c[o(598)]=o(521),c[o(500)]=()=>{const e=s.getContext("2d");if(!e)return i(new Error("Could not get canvas 2D context"));e.imageSmoothingEnabled=!1,e.drawImage(c,0,0,n,r),this.applyQRThreshold(s),t(s)},c.onerror=t=>i(new Error(o(599)+t)),c[o(503)]=()=>i(new Error(o(592))),c[o(492)]=a}))}[gr(559)](t){const e=gr,n=t.getContext("2d");if(!n)return;const r=n.getImageData(0,0,t[e(532)],t[e(513)]),s=r[e(508)];for(let t=0;t<s[e(574)];t+=4){const e=(s[t]+s[t+1]+s[t+2])/3<128?0:255;s[t]=s[t+1]=s[t+2]=e}n[e(536)](r,0,0)}[gr(531)](){return!1}[gr(504)](t,e){console.warn(t),e.forEach((t=>{const e=yr;console[e(476)](e(593)+t.path+e(597)+t.value+e(512)+t.message)}))}};kr[gr(480)]=gr(527),kr._selectedTemplate=null,kr[gr(475)]=null;const Ar=Cr;function Sr(){const t=["3510617eaawxT","98ZyiNYh","4qRfbJJ","string","598webfaX","27WkoMhn","-----BEGIN PUBLIC KEY----- MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0ZCmxp1vq4LJLviS9d2u Y5V9IykLzCrNcj8fCenqEyir5b4+FGE3hvLqp9zT+IYRF2cV2K0aGe9G0COFZsX2 E5ye1DguyvPQgRMPO8y7bxXJ3da1IP7Gs+/3gy4iuzRV4Uhy73jUVpqE/zZ2JAv/ sY36Rxmq4h7YE/F6YQk3DeZvnHjS7spUlp/+d3W67G8v2jiYWy3pO08Sn0rF2cjg XrJA5jcNr7ksER7AQcwayaLT4rAV4+EOcDYXL2egnqoTEmRzQYD2ReHBsO6jB0Ud bmsNepxbBdq/fBr+5HNj2tUJItarfH3BUVRFu/L1xP8wOEQa8wmPRwrJdPsI3bdk 7QIDAQAB -----END PUBLIC KEY-----","367832WDaNWQ","394226vsJopa","1587010gJAzhr","RS256","33905QWsYDj","978WIGwdN","1cDgDRk","686974SbbLNT","4131471LwMfJd","12DpXwWt"];return(Sr=function(){return t})()}function Cr(t,e){const n=Sr();return(Cr=function(t,e){return n[t-=215]})(t,e)}!function(){const t=Cr,e=Sr();for(;;)try{if(692115===-parseInt(t(224))/1*(parseInt(t(225))/2)+parseInt(t(226))/3*(parseInt(t(230))/4)+parseInt(t(222))/5*(parseInt(t(223))/6)+parseInt(t(229))/7*(parseInt(t(218))/8)+-parseInt(t(216))/9*(parseInt(t(220))/10)+-parseInt(t(228))/11*(parseInt(t(227))/12)+parseInt(t(215))/13*(-parseInt(t(219))/14))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const Or=Ar(217);const Zr=vr;function vr(t,e){const n=Mr();return(vr=function(t,e){return n[t-=223]})(t,e)}function Mr(){const t=["POST","string","initialize","_defaultLicenseApiUrl","LicenseManagerNode: Fetched token for key ","_storedToken","licenseKey","resolve","stringify","resetInitialization","_setStoredLicenseData","_licenseFetcher","LicenseManagerNode: Failed to fetch license token for key ","LicenseManagerNode: URL provided to setDefaultLicenseApiUrl does not appear to be absolute. Relative URLs may not work reliably server-side.","_hls","256721yRHrpE","http://","_instance","activateWithToken","_initPromise","getLicenseDetails","_performInitialization","resetLicenseState","2491686JUeMci","/api/get-token","LicenseManagerNode: Invalid URL provided to setDefaultLicenseApiUrl.","token","_storedKey","1492672hMevyJ","message","startsWith"," failed validation.","License fetcher failed: ","statusText","1525827nzBEKK","107247DtRwDv","_getStoredLicenseData","text","warn","LicenseManagerNode: Default fetcher failed: ","license","_decodedToken","isValid","46368ibWaBB","LicenseManagerNode: Attempting to refresh token using stored license key...","248265tSwRYm","_licenseKey","_validateAndStoreToken","LicenseManagerNode: API URL not set. Call LicenseManagerNode.setDefaultLicenseApiUrl() with an absolute URL.","error","setDefaultLicenseApiUrl","Invalid token string provided to activateWithToken().","instance","_isInitialized","application/json","LicenseManagerNode: Cached token validation failed. Attempting to fetch a new token...","status","activateWithKey","License fetcher must be a function that accepts a license key string and returns a Promise<string>.","key"];return(Mr=function(){return t})()}!function(){const t=vr,e=Mr();for(;;)try{if(267291===-parseInt(t(256))/1+parseInt(t(224))/2+parseInt(t(275))/3+parseInt(t(269))/4+parseInt(t(226))/5+-parseInt(t(264))/6+-parseInt(t(276))/7)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Tr{constructor(){const t=vr;this[t(255)]=!1,this[t(282)]=null,this[t(227)]=null,this._storedToken=null,this[t(268)]=null,this._isInitialized=!1,this._initPromise=null,this[t(252)]=async e=>{const n=t,r=Tr._defaultLicenseApiUrl;if(!r)throw new Error(n(229));try{const t=await fetch(r,{method:n(241),headers:{"Content-Type":n(235)},body:JSON[n(249)]({licenseKey:e})});if(!t.ok){let e={};try{e=await t.json()}catch(t){}throw new Error("Failed to fetch token: "+t[n(237)]+" "+(e?.[n(230)]||t[n(274)]))}const s=await t[n(278)]();if(!s)throw new Error("Fetched token is empty.");return s}catch(t){throw console.error(n(280)+t.message),new Error(n(273)+t[n(270)])}}}static get[Zr(233)](){return!Tr[Zr(258)]&&(Tr._instance=new Tr),Tr._instance}static[Zr(231)](t){const e=Zr;typeof t===e(242)&&t?(!t[e(271)](e(257))&&!t[e(271)]("https://")&&console[e(279)](e(254)),Tr._defaultLicenseApiUrl=t):console[e(279)](e(266))}get hls(){return this[Zr(255)]}get isInitialized(){return this[Zr(234)]}[Zr(261)](){const t=Zr;return this[t(255)]?this[t(282)]:null}get[Zr(247)](){return this[Zr(227)]}configureLicenseFetcher(t){const e=Zr;if("function"!=typeof t)throw new Error(e(239));this[e(252)]=t,this[e(250)](),this[e(263)]()}async[Zr(243)](){const t=Zr;return this[t(234)]&&this[t(260)]||!this[t(260)]&&(this._initPromise=this[t(262)]()),this[t(260)]}async[Zr(262)](){const t=Zr;if(this[t(255)])return this[t(234)]=!0,!0;this[t(263)]();const e=this[t(277)](),n=e[t(267)]||null,r=e[t(240)]||null;if(this[t(227)]=r,!n)return this._isInitialized=!0,!1;const s=await this[t(228)](n,r);if(s.isValid)return this[t(255)]=!0,this[t(282)]=s.license,this._isInitialized=!0,!0;if(console[t(279)]("LicenseManagerNode: Stored license token failed validation during initialization."),!r)return console[t(279)]("LicenseManagerNode: Cannot refresh token: No license key found in storage."),this[t(234)]=!0,!1;console[t(279)](t(225));try{const e=await this[t(238)](r);return this._isInitialized=!0,e[t(223)]}catch(e){return console[t(230)]("LicenseManagerNode: Auto-refresh attempt failed: "+e[t(270)]),this._licenseKey=r,this[t(234)]=!0,!1}}[Zr(250)](){const t=Zr;this[t(234)]=!1,this[t(260)]=null}[Zr(263)](){const t=Zr;this._hls=!1,this[t(282)]=null,this[t(227)]=null,this[t(246)]=null,this[t(268)]=null}async[Zr(259)](t){const e=Zr;let n;return this[e(250)](),null===t?(n=await this[e(228)](null,this[e(227)]),this._hls=!1,this[e(282)]=null):typeof t===e(242)&&t?(n=await this._validateAndStoreToken(t,null),this[e(255)]=n[e(223)],this[e(282)]=n[e(281)],n.isValid?this[e(227)]=this._getStoredLicenseData().key||null:this[e(227)]=null):(console[e(279)](e(232)),n=await this[e(228)](null,null),this[e(255)]=!1,this._decodedToken=null,this._licenseKey=null),this[e(234)]=!0,this[e(260)]=Promise.resolve(this[e(255)]),n}async activateWithKey(t){const e=Zr;this[e(250)]();let n={isValid:!1,token:null,license:null};if(t&&typeof t===e(242)){this[e(227)]=t;let r=null,s=null;const i=this._getStoredLicenseData();if(r=i[e(267)]||null,s=i[e(240)]||null,r&&s===t?(n=await this[e(228)](r,t),!n[e(223)]&&console.warn(e(236))):(n={isValid:!1,token:null,license:null},r&&s!==t&&console[e(279)]("LicenseManagerNode: Cached token belongs to a different license key. Fetching new token...")),!n[e(223)])try{const r=await this._licenseFetcher(t);n=await this[e(228)](r,t),!n[e(223)]&&console[e(279)](e(245)+t+e(272))}catch(r){console[e(279)](e(253)+t+": "+r[e(270)]),await this[e(228)](null,t),n={isValid:!1,token:null,license:null}}this[e(255)]=n[e(223)],this[e(282)]=n[e(281)]}else console[e(279)]("Invalid license key provided to activateWithKey()."),await this[e(228)](null,null),this._hls=!1,this[e(282)]=null,this._licenseKey=null;return this[e(234)]=!0,this[e(260)]=Promise[e(248)](this._hls),n}[Zr(277)](){const t=Zr;return{token:this[t(246)]??void 0,key:this[t(268)]??void 0}}[Zr(251)](t){this._storedToken=t.token??null,this._storedKey=t.key??null}async[Zr(228)](t,e){const n=Zr,r=e??this[n(268)]??void 0;if(!t)return this[n(251)]({key:r}),{isValid:!1,token:null,license:null};try{const e=await async function(t){const e=Ar;try{const n=await i(Or,e(221)),{payload:r}=await o(t,n,{algorithms:[e(221)]});if(!r||typeof r.sub!==e(231))throw new a.JOSEError("Decoded token payload structure is invalid.");return r}catch(t){throw t}}(t);return this._setStoredLicenseData({token:t,key:r}),{isValid:!0,token:t,license:e}}catch(e){return console.warn("LicenseManagerNode: License token validation failed: "+e[n(270)]),this[n(246)]===t&&this[n(251)]({key:r}),{isValid:!1,token:null,license:null}}}}function Er(){const t=["Failed to save debug image: ",".png","retryInterval","No barcode detected after ","now","validate","message","width","error","1660080jdKCeB","Validation error: ","Switching to inverted image for next attempt","1345533HVjVUA","449966frLHGX","height","222640FvWrzV"," failed: ","processImageResvg","Decoder error: ","2FgUZRf","Processed image ","NO_BARCODE_DETECTED","debug/qr-attempt-","zoom","Error decoding QR code: ","decode","debug","sleep","length","validateWithRetry","inverted","render","Image processing error: ","points","attempts","pixels","[QRValidatorZbarNode] ","769024LbAaoq","map","success","2492840PAmgEi","normal","maxRetries"," pixels","Decoder error:","Failed","PROCESSING_ERROR","data","decodeQR","log","MAX_RETRIES_EXCEEDED","from","VALIDATION_ERROR","DECODER_ERROR","typeName","Debug image saved to: ","No barcode detected","Barcode scan attempt ","write","366546DzUUJZ"];return(Er=function(){return t})()}Tr[Zr(258)]=null,Tr[Zr(244)]=Zr(265);const Wr=Rr;function Rr(t,e){const n=Er();return(Rr=function(t,e){return n[t-=454]})(t,e)}!function(){const t=Rr,e=Er();for(;;)try{if(250749===-parseInt(t(470))/1+parseInt(t(476))/2*(parseInt(t(456))/3)+parseInt(t(494))/4+parseInt(t(497))/5+-parseInt(t(466))/6+parseInt(t(469))/7+-parseInt(t(472))/8)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class jr{constructor(t={}){const e=Rr;this[e(499)]=t[e(499)]??5,this.retryInterval=t[e(459)]??100,this[e(483)]=t.debug??!1}[Wr(506)](t){const e=Wr;this[e(483)]&&console[e(506)](e(493)+t)}async[Wr(462)](t,e=!1){const n=Wr;try{if(!h)throw new Error("zbar-wasm library not found. Please ensure @undecaf/zbar-wasm is installed and loaded correctly.");return this[n(486)](t,e)}catch(t){return this.log(n(467)+(t instanceof Error?t[n(463)]:String(t))),{isValid:!1,error:t instanceof Error?t[n(463)]:String(t),errorCode:n(509)}}}[Wr(484)](t){return new Promise((e=>setTimeout(e,t)))}async[Wr(474)](t,e){const n=Wr;try{const r=new c(t,{fitTo:{mode:n(480),value:2}})[n(488)](),s=r[n(464)],i=r[n(471)],o=r[n(492)],a=Buffer[n(508)](o);if(e)for(let t=0;t<a[n(485)];t+=4)a[t]=255-a[t],a[t+1]=255-a[t+1],a[t+2]=255-a[t+2];return{imageData:{data:new Uint8ClampedArray(a),width:s,height:i},metadata:{width:s,height:i}}}catch(t){throw this.log(n(489)+(t instanceof Error?t.message:String(t))),t}}async[Wr(486)](t,e){const n=Wr;let r=0,s=null;const i=t;let o=!1;do{r++;try{const t=this[n(474)],{imageData:a}=await t(i,e);if(this[n(506)](n(477)+a[n(464)]+"x"+a[n(471)]+n(500)),this[n(483)]&&await this.saveDebugImage(a,n(479)+r+"-"+n(o?487:498)),s=await this[n(505)](a),this.log(n(454)+r+": "+(s[n(496)]?"Success":n(502))),s.success)return s[n(491)]=r,{isValid:!0,data:s.data,format:s.format,attempts:r,isInverted:e}}catch(t){this[n(506)]("Attempt "+r+n(473)+(t instanceof Error?t[n(463)]:String(t))),s={success:!1,error:t instanceof Error?t[n(463)]:String(t),errorCode:n(503)}}!e||o?r<this[n(499)]&&await this[n(484)](this[n(459)]):(o=!0,this[n(506)](n(468)))}while(r<this[n(499)]);return{isValid:!1,attempts:r,error:n(460)+r+" attempts",errorCode:n(507)}}async saveDebugImage(t,e){const n=Wr;try{const r=new u({data:Buffer[n(508)](t[n(504)]),width:t[n(464)],height:t[n(471)]}),s=e+"-"+Date[n(461)]();await r[n(455)](s+n(458)),this.log(n(512)+s)}catch(t){this[n(506)](n(457)+(t instanceof Error?t[n(463)]:String(t)))}}async[Wr(505)](t){const e=Wr;try{let n;try{n=await h(t)}catch(t){this.log(e(481)+t)}if(n&&n[e(485)]>0){const t=n[0],r=t.decode();return this[e(506)]("Detected: "+t[e(511)]+" - "+r),{success:!0,data:r,format:t.typeName||"UNKNOWN",confidence:.9,count:n[e(485)],allSymbols:n[e(495)]((t=>({data:t[e(482)](),type:t.typeName,points:t[e(490)]})))}}return{success:!1,error:e(513),errorCode:e(478)}}catch(t){return this[e(506)](e(501)),console[e(465)](t instanceof Error?t[e(463)]:String(t)),{success:!1,error:e(475)+(t instanceof Error?t[e(463)]:String(t)),errorCode:e(510)}}}}function Br(){const t=["165290umryeB","Decoded successfully (inverted).","[QR Validator]","14985045yAyNbj","validate"," decode failed:","Normal SVG","time","Failed to decode QR code after all attempts.","2718099ZYDXuE","timeEnd","3953850NWeJWr","4021955OCxhYM","Trying ","4eanWJE","attempts","No text found in normal QR code","Decoded successfully.","Inverted SVG","data","No text found in inverted QR code","debug","9kXElkv","execute","21GEmiGj","3782286RvmluN","No svg source","2206472PqoEhS","scan-validator"];return(Br=function(){return t})()}function Vr(t,e){const n=Br();return(Vr=function(t,e){return n[t-=451]})(t,e)}!function(){const t=Vr,e=Br();for(;;)try{if(896725===-parseInt(t(475))/1*(-parseInt(t(453))/2)+parseInt(t(462))/3*(-parseInt(t(467))/4)+-parseInt(t(465))/5+parseInt(t(478))/6+parseInt(t(477))/7*(-parseInt(t(451))/8)+parseInt(t(456))/9+parseInt(t(464))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();let Nr=!1;const Jr=t=>{const e=Vr;Nr&&console[e(474)](e(455),t)},Yr=new jr({maxRetries:1,debug:!1,retryInterval:200}),xr={validateZbar:async(t,e=!1)=>{const n=Vr;Nr=e||Nr,Nr&&console[n(460)](n(452));const r=[{name:n(459),execute:async()=>{const e=n;if(!t)throw new Error(e(479));const r=await Yr.validate(t,!1);if(!r.isValid||!r[e(472)])throw new Error(e(469));return{isValid:!0,isInverted:!1,decodedText:r[e(472)],message:e(470),attempts:r[e(468)]}}},{name:n(471),execute:async()=>{const e=n;if(!t)throw new Error("No svg source for inverted attempt");const r=await Yr[e(457)](t,!0);if(!r.isValid||!r.data)throw new Error(e(473));return{isValid:!0,isInverted:!0,decodedText:r[e(472)],message:e(454),attempts:r[e(468)]}}}];for(const t of r)try{Jr(n(466)+t.name+" decode...");const e=await t[n(476)]();return Nr&&console[n(463)](n(452)),e}catch(e){Jr(t.name+n(458)),Jr(e)}return Nr&&console.timeEnd(n(452)),{isValid:!1,message:n(461)}}},Dr=Xr;function Xr(t,e){const n=Ur();return(Xr=function(t,e){return n[t-=265]})(t,e)}!function(){const t=Xr,e=Ur();for(;;)try{if(540182===-parseInt(t(266))/1+-parseInt(t(269))/2*(-parseInt(t(272))/3)+-parseInt(t(275))/4*(parseInt(t(278))/5)+-parseInt(t(267))/6+-parseInt(t(276))/7*(parseInt(t(274))/8)+-parseInt(t(271))/9+parseInt(t(277))/10*(parseInt(t(268))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Pr extends l{constructor(t=void 0){super(t),this.message=t}[Dr(265)](){const t=Dr;return this.constructor[t(273)]}}function Ur(){const t=["6809499wbHWzR","1803297iQyTpn","kind","64984bJtQdK","32JAnjNs","203gYDror","10oDjIea","469760sWfeBf","getKind","499956kKPALO","6271926sIADln","35509694bzgJZx","2JdiNAt","Exception"];return(Ur=function(){return t})()}Pr[Dr(273)]=Dr(270);var Gr,Fr,Lr,qr=Kr;!function(){for(var t=Kr,e=Hr();;)try{if(346991===-parseInt(t(148))/1+-parseInt(t(151))/2+-parseInt(t(144))/3*(parseInt(t(149))/4)+-parseInt(t(145))/5+parseInt(t(143))/6+-parseInt(t(146))/7+parseInt(t(147))/8)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class zr extends Pr{static getNotFoundInstance(){return new zr}}function Hr(){var t=["kind","899356dXwSnW","1325586NqtNkh","591HpWPag","1763070DBXdhw","4201162XDLTQF","19260256StYSew","311654Ewbagt","11520WGZUIb"];return(Hr=function(){return t})()}function Kr(t,e){var n=Hr();return(Kr=function(t,e){return n[t-=143]})(t,e)}function Qr(t,e){var n=_r();return(Qr=function(t,e){return n[t-=195]})(t,e)}function _r(){var t=["15872SfpuXU","PDF_417","68308nCUJuq","CODE_39","3374710oGewKG","33EJSGWo","6CTxzGS","RSS_EXPANDED","CODE_128","UPC_A","242835JVZRbq","2067540VZlrCo","QR_CODE","CODE_93","ITF","EAN_8","RSS_14","DATA_MATRIX","AZTEC","2054792PhkeHH","81vTWzPp","MAXICODE","1558431oXEJQp","3933FVCsVK","EAN_13","CODABAR","UPC_EAN_EXTENSION"];return(_r=function(){return t})()}zr[qr(150)]="NotFoundException",function(){for(var t=Qr,e=_r();;)try{if(533430===parseInt(t(197))/1+parseInt(t(216))/2*(-parseInt(t(207))/3)+parseInt(t(206))/4+parseInt(t(218))/5+parseInt(t(220))/6*(-parseInt(t(209))/7)+parseInt(t(214))/8*(parseInt(t(210))/9)+-parseInt(t(198))/10*(parseInt(t(219))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),(Fr=Gr||(Gr={}))[Fr[(Lr=Qr)(205)]=0]=Lr(205),Fr[Fr.CODABAR=1]=Lr(212),Fr[Fr.CODE_39=2]=Lr(217),Fr[Fr[Lr(200)]=3]="CODE_93",Fr[Fr.CODE_128=4]=Lr(195),Fr[Fr.DATA_MATRIX=5]=Lr(204),Fr[Fr.EAN_8=6]=Lr(202),Fr[Fr[Lr(211)]=7]=Lr(211),Fr[Fr[Lr(201)]=8]=Lr(201),Fr[Fr[Lr(208)]=9]=Lr(208),Fr[Fr[Lr(215)]=10]="PDF_417",Fr[Fr.QR_CODE=11]=Lr(199),Fr[Fr[Lr(203)]=12]=Lr(203),Fr[Fr[Lr(221)]=13]=Lr(221),Fr[Fr.UPC_A=14]=Lr(196),Fr[Fr.UPC_E=15]="UPC_E",Fr[Fr[Lr(213)]=16]=Lr(213);var $r=Gr;function ts(){var t=["160884kRAZax","5084805WpHqNW","kind","77964JJJSfV","IllegalArgumentException","68IzDGEV","2RovvkJ","2693545vPwXmX","6WMrwUd","240FzKnxj","161751qeVflX","482363HxNASk","3691190wdSWfj"];return(ts=function(){return t})()}var es=ns;function ns(t,e){var n=ts();return(ns=function(t,e){return n[t-=447]})(t,e)}!function(){for(var t=ns,e=ts();;)try{if(306701===parseInt(t(447))/1*(-parseInt(t(456))/2)+-parseInt(t(453))/3*(-parseInt(t(455))/4)+parseInt(t(457))/5+parseInt(t(458))/6*(-parseInt(t(448))/7)+-parseInt(t(459))/8*(parseInt(t(450))/9)+-parseInt(t(449))/10+parseInt(t(451))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class rs extends Pr{}function ss(t,e){var n=os();return(ss=function(t,e){return n[t-=358]})(t,e)}rs[es(452)]=es(454);var is=ss;function os(){var t=["5368074DlohMD","17059SVuODQ","5689NUiqta","1074VZgtKp","5696648nUkARP","274NIWNQW","5458245qEfXAP","kind","2512092hIbFbK","19750536taQJPE"];return(os=function(){return t})()}!function(){for(var t=ss,e=os();;)try{if(945615===-parseInt(t(359))/1*(-parseInt(t(362))/2)+parseInt(t(367))/3+parseInt(t(365))/4+parseInt(t(363))/5+-parseInt(t(360))/6*(parseInt(t(358))/7)+-parseInt(t(361))/8+-parseInt(t(366))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class as extends Pr{}as[is(364)]="IndexOutOfBoundsException";var cs=hs;function hs(t,e){var n=ls();return(hs=function(t,e){return n[t-=287]})(t,e)}!function(){for(var t=hs,e=ls();;)try{if(318934===-parseInt(t(298))/1*(parseInt(t(294))/2)+parseInt(t(300))/3*(-parseInt(t(295))/4)+-parseInt(t(297))/5+parseInt(t(292))/6*(-parseInt(t(293))/7)+-parseInt(t(299))/8*(parseInt(t(290))/9)+parseInt(t(291))/10+parseInt(t(301))/11*(parseInt(t(287))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class us extends as{constructor(t,e){var n=hs;super(e),this.index=t,this[n(296)]=e}}function ls(){var t=["4498410OCHKlN","114zNEDPj","33551NBHjfg","51854iGaGyE","12TFGPyS","message","3112570BJufmQ","7KpUyZt","160ugVSrO","205185RYmKPN","6512eEJkjy","27228RjHEXc","kind","ArrayIndexOutOfBoundsException","168255TbQwSM"];return(ls=function(){return t})()}us[cs(288)]=cs(289);var ps=ds;!function(){for(var t=ds,e=Is();;)try{if(881095===-parseInt(t(432))/1+-parseInt(t(443))/2+-parseInt(t(441))/3*(-parseInt(t(435))/4)+-parseInt(t(442))/5+-parseInt(t(436))/6*(parseInt(t(438))/7)+parseInt(t(440))/8*(parseInt(t(439))/9)+parseInt(t(437))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class fs{static[ps(434)](t,e,n,r,s){if(t===n&&e<r)for(r+=s-1,e+=s-1;s--;)n[r--]=t[e--];else for(;s--;)n[r++]=t[e++]}static currentTimeMillis(){return Date[ps(433)]()}}function ds(t,e){var n=Is();return(ds=function(t,e){return n[t-=432]})(t,e)}function Is(){var t=["68108fNaDCH","899934DcPjjJ","1072310pbXJHc","49OFdFYW","18lxJCKS","6811624fhEhDH","219VmJfIj","595845pIzzSH","586528GFouFv","709657LJmHvt","now","arraycopy"];return(Is=function(){return t})()}const ms=gs;function gs(t,e){const n=ws();return(gs=function(t,e){return n[t-=165]})(t,e)}function ws(){const t=["1395882IPlogy","set",") > toIndex(","fromIndex(","fillUint8Array","rangeCheck","406TwLyKb","create","94938qiAYNF","length","8LrdQoz","8339500NZxicn","slice","numberComparator","equals","binarySearch","copyOf","681003YTigxa","95GtpsCx","copyOfRange","hashCode","1631624UTrYDA","from","125784uwtzCj","map","1810251igxwpC","fill"];return(ws=function(){return t})()}!function(){const t=gs,e=ws();for(;;)try{if(718302===parseInt(t(170))/1+-parseInt(t(180))/2*(parseInt(t(187))/3)+parseInt(t(191))/4+-parseInt(t(188))/5*(parseInt(t(178))/6)+-parseInt(t(176))/7*(parseInt(t(166))/8)+parseInt(t(168))/9+parseInt(t(181))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class ys{static[ms(169)](t,e){for(let n=0,r=t.length;n<r;n++)t[n]=e}static fillWithin(t,e,n,r){ys[ms(175)](t.length,e,n);for(let s=e;s<n;s++)t[s]=r}static[ms(175)](t,e,n){const r=ms;if(e>n)throw new rs(r(173)+e+r(172)+n+")");if(e<0)throw new us(e);if(n>t)throw new us(n)}static asList(...t){return t}static[ms(177)](t,e,n){const r=ms;return Array[r(165)]({length:t})[r(167)]((t=>Array[r(165)]({length:e})[r(169)](n)))}static createInt32Array(t,e,n){const r=ms;return Array[r(165)]({length:t})[r(167)]((t=>Int32Array.from({length:e})[r(169)](n)))}static[ms(184)](t,e){const n=ms;if(!t)return!1;if(!e)return!1;if(!t.length)return!1;if(!e[n(179)])return!1;if(t[n(179)]!==e[n(179)])return!1;for(let n=0,r=t.length;n<r;n++)if(t[n]!==e[n])return!1;return!0}static[ms(190)](t){if(null===t)return 0;let e=1;for(const n of t)e=31*e+n;return e}static[ms(174)](t,e){const n=ms;for(let r=0;r!==t[n(179)];r++)t[r]=e}static[ms(186)](t,e){return t[ms(182)](0,e)}static copyOfUint8Array(t,e){const n=ms;if(t.length<=e){const r=new Uint8Array(e);return r[n(171)](t),r}return t[n(182)](0,e)}static[ms(189)](t,e,n){const r=n-e,s=new Int32Array(r);return fs.arraycopy(t,e,s,0,r),s}static[ms(185)](t,e,n){void 0===n&&(n=ys[ms(183)]);let r=0,s=t.length-1;for(;r<=s;){const i=s+r>>1,o=n(e,t[i]);if(o>0)r=i+1;else{if(!(o<0))return i;s=i-1}}return-r-1}static[ms(183)](t,e){return t-e}}function bs(t,e){var n=Cs();return(bs=function(t,e){return n[t-=372]})(t,e)}var ks,As,Ss;function Cs(){var t=["237340BQOCVk","1054120VOeNmk","ENABLE_CODE_39_EXTENDED_MODE","1896270YpDMoV","OTHER","4541390hSfjJV","81nXWBlK","2Fcufnh","240VvwrhP","CHARACTER_SET","ALLOWED_EAN_EXTENSIONS","RETURN_CODABAR_START_END","NEED_RESULT_POINT_CALLBACK","POSSIBLE_FORMATS","ASSUME_CODE_39_CHECK_DIGIT","50150JJbwVk","ALLOWED_LENGTHS","25446430yaNzZO","PURE_BARCODE","1030134yTiezQ","TRY_HARDER","ASSUME_GS1"];return(Cs=function(){return t})()}!function(){for(var t=bs,e=Cs();;)try{if(772479===-parseInt(t(376))/1*(parseInt(t(386))/2)+parseInt(t(382))/3+parseInt(t(379))/4+parseInt(t(372))/5*(parseInt(t(387))/6)+-parseInt(t(384))/7+-parseInt(t(380))/8*(parseInt(t(385))/9)+parseInt(t(374))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),(As=ks||(ks={}))[As[(Ss=bs)(383)]=0]=Ss(383),As[As[Ss(375)]=1]=Ss(375),As[As[Ss(392)]=2]=Ss(392),As[As[Ss(377)]=3]=Ss(377),As[As[Ss(388)]=4]=Ss(388),As[As[Ss(373)]=5]="ALLOWED_LENGTHS",As[As[Ss(393)]=6]="ASSUME_CODE_39_CHECK_DIGIT",As[As[Ss(381)]=7]=Ss(381),As[As[Ss(378)]=8]=Ss(378),As[As[Ss(390)]=9]="RETURN_CODABAR_START_END",As[As.NEED_RESULT_POINT_CALLBACK=10]=Ss(391),As[As[Ss(389)]=11]="ALLOWED_EAN_EXTENSIONS";var Os=ks,Zs=Ms;!function(){for(var t=Ms,e=Ts();;)try{if(974693===-parseInt(t(188))/1+parseInt(t(189))/2*(-parseInt(t(194))/3)+-parseInt(t(187))/4*(parseInt(t(195))/5)+-parseInt(t(193))/6+parseInt(t(185))/7*(parseInt(t(191))/8)+parseInt(t(186))/9+parseInt(t(196))/10*(parseInt(t(192))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class vs extends Pr{static[Zs(190)](){return new vs}}function Ms(t,e){var n=Ts();return(Ms=function(t,e){return n[t-=185]})(t,e)}function Ts(){var t=["48984990TrdZQQ","50722HapOfn","8036343zyizHi","5866832aELnvw","928286fBKCbg","2YMZSDs","getFormatInstance","1208WdOQgB","11ezUBSD","11194200bRzzab","4950555yCYoiL","5KXCrcw"];return(Ts=function(){return t})()}function Es(){const t=["UTF-16BE","getValue","ISO88593","GB2312","ISO8859_8","UnicodeBig","windows-1256","length","ISO885915","Cp1252","valueIdentifier","1937240dpJhrt","ISO88598","get","Cp1250","ISO8859_13","ISO88599","319820ZxIlJM","ISO-8859-14","values","ISO-8859-1","incorect value","Cp1256","Shift_JIS","ISO8859_2","872HJIQbr","SJIS","ISO8859_14","ISO885914","ISO-8859-7","Cp1251","ISO885911","30crjwAl","1064700TfEENn","VALUES_TO_ECI","getCharacterSetECIByValue","Cp437","ISO8859_7","name","ISO-8859-2","ISO8859_4","equals","ISO8859_1","GB18030","ISO-8859-15","ISO8859_16","ISO-8859-5","ASCII","ISO-8859-16","UnicodeBigUnmarked","EUC_KR","ISO8859_3","getValueIdentifier","ISO-8859-8","ISO88594","getCharacterSetECIByName","3941Wwvciq","ISO-8859-10","GBK","ISO885910","ISO885916","39426AwmoDO","12QlceFb","ISO885913","getName","ISO8859_11","UTF8","UTF-8","ISO-8859-3","ISO88595","US-ASCII","NAME_TO_ECI","1410205bAKvIo","windows-1252","ISO8859_6","ISO-8859-6","otherEncodingNames","ISO88596","from","ISO8859_9","ISO-8859-4","VALUE_IDENTIFIER_TO_ECI","ISO88591","ISO-8859-13","set","ISO88597","ISO8859_10","ISO8859_15","ISO8859_5","EUC-KR","Big5","355888UUVcal"];return(Es=function(){return t})()}vs.kind="FormatException";const Ws=Rs;function Rs(t,e){const n=Es();return(Rs=function(t,e){return n[t-=118]})(t,e)}var js;!function(){const t=Rs,e=Es();for(;;)try{if(386761===-parseInt(t(132))/1+-parseInt(t(176))/2*(parseInt(t(147))/3)+parseInt(t(206))/4+parseInt(t(187))/5*(parseInt(t(177))/6)+-parseInt(t(171))/7*(parseInt(t(140))/8)+parseInt(t(148))/9+parseInt(t(126))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),function(t){const e=Rs;t[t[e(151)]=0]="Cp437",t[t.ISO8859_1=1]="ISO8859_1",t[t[e(139)]=2]="ISO8859_2",t[t.ISO8859_3=3]=e(166),t[t[e(155)]=4]=e(155),t[t[e(203)]=5]=e(203),t[t.ISO8859_6=6]=e(189),t[t[e(152)]=7]="ISO8859_7",t[t[e(119)]=8]=e(119),t[t[e(194)]=9]=e(194),t[t[e(201)]=10]=e(201),t[t[e(180)]=11]=e(180),t[t[e(130)]=12]=e(130),t[t.ISO8859_14=13]=e(142),t[t[e(202)]=14]=e(202),t[t[e(160)]=15]=e(160),t[t[e(141)]=16]=e(141),t[t.Cp1250=17]=e(129),t[t.Cp1251=18]=e(145),t[t[e(124)]=19]="Cp1252",t[t.Cp1256=20]="Cp1256",t[t[e(164)]=21]=e(164),t[t[e(181)]=22]=e(181),t[t[e(162)]=23]=e(162),t[t.Big5=24]=e(205),t[t.GB18030=25]=e(158),t[t[e(165)]=26]=e(165)}(js||(js={}));class Bs{constructor(t,e,n,...r){const s=Rs;this[s(125)]=t,this[s(153)]=n,"number"==typeof e?this[s(134)]=Int32Array[s(193)]([e]):this.values=e,this[s(191)]=r,Bs[s(196)].set(t,this),Bs.NAME_TO_ECI.set(n,this);const i=this.values;for(let t=0,e=i[s(122)];t!==e;t++){const e=i[t];Bs[s(149)].set(e,this)}for(const t of r)Bs[s(186)][s(199)](t,this)}[Ws(167)](){return this[Ws(125)]}[Ws(179)](){return this.name}[Ws(208)](){return this[Ws(134)][0]}static[Ws(150)](t){const e=Ws;if(t<0||t>=900)throw new vs(e(136));const n=Bs[e(149)][e(128)](t);if(void 0===n)throw new vs("incorect value");return n}static[Ws(170)](t){const e=Ws,n=Bs[e(186)].get(t);if(void 0===n)throw new vs(e(136));return n}[Ws(156)](t){const e=Ws;if(!(t instanceof Bs))return!1;const n=t;return this[e(179)]()===n[e(179)]()}}Bs[Ws(196)]=new Map,Bs[Ws(149)]=new Map,Bs[Ws(186)]=new Map,Bs[Ws(151)]=new Bs(js[Ws(151)],Int32Array.from([0,2]),Ws(151)),Bs[Ws(157)]=new Bs(js[Ws(157)],Int32Array[Ws(193)]([1,3]),Ws(135),Ws(197),Ws(157)),Bs[Ws(139)]=new Bs(js.ISO8859_2,4,Ws(154),"ISO88592","ISO8859_2"),Bs[Ws(166)]=new Bs(js.ISO8859_3,5,Ws(183),Ws(209),Ws(166)),Bs[Ws(155)]=new Bs(js[Ws(155)],6,Ws(195),Ws(169),"ISO8859_4"),Bs[Ws(203)]=new Bs(js[Ws(203)],7,Ws(161),Ws(184),"ISO8859_5"),Bs[Ws(189)]=new Bs(js[Ws(189)],8,Ws(190),Ws(192),Ws(189)),Bs[Ws(152)]=new Bs(js[Ws(152)],9,Ws(144),Ws(200),Ws(152)),Bs[Ws(119)]=new Bs(js.ISO8859_8,10,Ws(168),Ws(127),Ws(119)),Bs[Ws(194)]=new Bs(js[Ws(194)],11,"ISO-8859-9",Ws(131),"ISO8859_9"),Bs[Ws(201)]=new Bs(js.ISO8859_10,12,Ws(172),Ws(174),Ws(201)),Bs.ISO8859_11=new Bs(js[Ws(180)],13,"ISO-8859-11",Ws(146),Ws(180)),Bs.ISO8859_13=new Bs(js[Ws(130)],15,Ws(198),Ws(178),"ISO8859_13"),Bs[Ws(142)]=new Bs(js[Ws(142)],16,Ws(133),Ws(143),Ws(142)),Bs[Ws(202)]=new Bs(js[Ws(202)],17,Ws(159),Ws(123),"ISO8859_15"),Bs[Ws(160)]=new Bs(js.ISO8859_16,18,Ws(163),Ws(175),Ws(160)),Bs[Ws(141)]=new Bs(js[Ws(141)],20,Ws(141),Ws(138)),Bs[Ws(129)]=new Bs(js[Ws(129)],21,Ws(129),"windows-1250"),Bs[Ws(145)]=new Bs(js[Ws(145)],22,Ws(145),"windows-1251"),Bs[Ws(124)]=new Bs(js[Ws(124)],23,Ws(124),Ws(188)),Bs[Ws(137)]=new Bs(js[Ws(137)],24,Ws(137),Ws(121)),Bs.UnicodeBigUnmarked=new Bs(js[Ws(164)],25,Ws(164),Ws(207),Ws(120)),Bs[Ws(181)]=new Bs(js.UTF8,26,"UTF8",Ws(182)),Bs[Ws(162)]=new Bs(js.ASCII,Int32Array[Ws(193)]([27,170]),Ws(162),Ws(185)),Bs[Ws(205)]=new Bs(js[Ws(205)],28,"Big5"),Bs[Ws(158)]=new Bs(js[Ws(158)],29,Ws(158),Ws(118),"EUC_CN",Ws(173)),Bs[Ws(165)]=new Bs(js[Ws(165)],30,Ws(165),Ws(204));var Vs=Ns;function Ns(t,e){var n=Ys();return(Ns=function(t,e){return n[t-=453]})(t,e)}!function(){for(var t=Ns,e=Ys();;)try{if(418525===parseInt(t(462))/1*(parseInt(t(454))/2)+parseInt(t(455))/3*(-parseInt(t(460))/4)+-parseInt(t(458))/5+-parseInt(t(463))/6*(-parseInt(t(453))/7)+-parseInt(t(457))/8+-parseInt(t(461))/9+parseInt(t(456))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Js extends Pr{}function Ys(){var t=["3dJPiDQ","126QWdGqB","kind","125566xAgUBv","403678iyOtXb","492lWgdYL","2946110MMyaIi","4572928vKnwBM","484345kVDBYn","UnsupportedOperationException","232RvYeHR","1622736SxpOTM"];return(Ys=function(){return t})()}Js[Vs(464)]=Vs(459);const xs=Xs;function Ds(){const t=["getCharacterSetECIByName","2jNlGFg","isBrowser","2355731vdfJqk","500198vCItLu","2462823yXmgdr","6leLKyk","push","[object Window]","decodeFallback"," not supported by fallback.","getName","11148XfvXfV","2768520NVihqK","155GYrujk","charCodeAt","equals","607707RuToVI","fromCharCode","customEncoder","ASCII","2383136hKxeBJ","Encoding ","split","encode","isDecodeFallbackSupported","shouldDecodeOnFallback","apply","24vDGunP","encodingCharacterSet","length","customDecoder","buffer","decode","encodeFallback","ISO-8859-1","encodingName","call","136Zxodyx"];return(Ds=function(){return t})()}function Xs(t,e){const n=Ds();return(Xs=function(t,e){return n[t-=169]})(t,e)}!function(){const t=Xs,e=Ds();for(;;)try{if(662248===parseInt(t(204))/1*(-parseInt(t(201))/2)+parseInt(t(206))/3*(parseInt(t(182))/4)+-parseInt(t(175))/5*(-parseInt(t(173))/6)+parseInt(t(203))/7+parseInt(t(199))/8*(-parseInt(t(178))/9)+parseInt(t(174))/10+-parseInt(t(205))/11*(-parseInt(t(189))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Ps{static decode(t,e){const n=Xs,r=this.encodingName(e);return this.customDecoder?this[n(192)](t,r):"undefined"==typeof TextDecoder||this[n(187)](r)?this[n(170)](t,r):new TextDecoder(r)[n(194)](t)}static[xs(187)](t){const e=xs;return!Ps[e(202)]()&&t===e(196)}static[xs(185)](t,e){const n=xs,r=this[n(197)](e);return this[n(180)]?this.customEncoder(t,r):"undefined"==typeof TextEncoder?this[n(195)](t):(new TextEncoder)[n(185)](t)}static[xs(202)](){const t=xs;return"undefined"!=typeof window&&{}.toString[t(198)](window)===t(169)}static[xs(197)](t){return"string"==typeof t?t:t[xs(172)]()}static[xs(190)](t){return t instanceof Bs?t:Bs[xs(200)](t)}static[xs(170)](t,e){const n=xs,r=this[n(190)](e);if(Ps[n(186)](r)){let e="";for(let r=0,s=t[n(191)];r<s;r++){let s=t[r].toString(16);s[n(191)]<2&&(s="0"+s),e+="%"+s}return decodeURIComponent(e)}if(r[n(177)](Bs.UnicodeBigUnmarked))return String[n(179)][n(188)](null,new Uint16Array(t[n(193)]));throw new Js(n(183)+this.encodingName(e)+n(171))}static[xs(186)](t){const e=xs;return t.equals(Bs.UTF8)||t.equals(Bs.ISO8859_1)||t[e(177)](Bs[e(181)])}static encodeFallback(t){const e=xs,n=btoa(unescape(encodeURIComponent(t)))[e(184)](""),r=[];for(let t=0;t<n[e(191)];t++)r[e(207)](n[t][e(176)](0));return new Uint8Array(r)}}const Us=Fs;function Gs(){const t=["getBytes","756546ZJifVV","259853FXYSYz","guessEncoding","482226LGlYlm","128GlqMeJ","UTF8","fromCharCode","toPrecision","toExponential","toString","12483veAaAr","2248iYdyJw","castAsNonUtf8Char","ISO88591","CHARACTER_SET","encode","190jicQcs","12WpiVmH","4850196lXCWLe","ASSUME_SHIFT_JIS","GB2312","7xTSuti","272krCGeI","SJIS","decode","stringify","toFixed","substr","640385BrhNdz","ISO8859_1","SHIFT_JIS","get","PLATFORM_DEFAULT_ENCODING","getCharCode","13BLzzsB","getName","length","format","EUC_JP"];return(Gs=function(){return t})()}function Fs(t,e){const n=Gs();return(Fs=function(t,e){return n[t-=349]})(t,e)}!function(){const t=Fs,e=Gs();for(;;)try{if(308563===parseInt(t(357))/1*(-parseInt(t(379))/2)+parseInt(t(378))/3+parseInt(t(352))/4*(parseInt(t(363))/5)+-parseInt(t(375))/6*(-parseInt(t(356))/7)+parseInt(t(386))/8*(-parseInt(t(385))/9)+parseInt(t(351))/10*(parseInt(t(376))/11)+-parseInt(t(353))/12*(parseInt(t(369))/13))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Ls{static[Us(387)](t,e=null){const n=Us,r=e?e.getName():this[n(388)];return Ps[n(359)](new Uint8Array([t]),r)}static[Us(377)](t,e){const n=Us;if(null!=e&&void 0!==e[n(366)](Os[n(349)]))return e[n(366)](Os[n(349)])[n(384)]();const r=t[n(371)];let s=!0,i=!0,o=!0,a=0,c=0,h=0,u=0,l=0,p=0,f=0,d=0,I=0,m=0,g=0;const w=t[n(371)]>3&&239===t[0]&&187===t[1]&&191===t[2];for(let e=0;e<r&&(s||i||o);e++){const n=255&t[e];o&&(a>0?128&n?a--:o=!1:128&n&&(64&n?(a++,32&n?(a++,16&n?(a++,8&n?o=!1:u++):h++):c++):o=!1)),s&&(n>127&&n<160?s=!1:n>159&&(n<192||215===n||247===n)&&g++),i&&(l>0?n<64||127===n||n>252?i=!1:l--:128===n||160===n||n>239?i=!1:n>160&&n<224?(p++,d=0,f++,f>I&&(I=f)):n>127?(l++,f=0,d++,d>m&&(m=d)):(f=0,d=0))}return o&&a>0&&(o=!1),i&&l>0&&(i=!1),o&&(w||c+h+u>0)?Ls[n(380)]:i&&(Ls[n(354)]||I>=3||m>=3)?Ls[n(365)]:s&&i?2===I&&2===p||10*g>=r?Ls.SHIFT_JIS:Ls[n(388)]:s?Ls[n(388)]:i?Ls[n(365)]:o?Ls.UTF8:Ls[n(367)]}static[Us(372)](t,...e){let n=-1;return t.replace(/%(-)?(0?[0-9]+)?([.][0-9]+)?([#][0-9]+)?([scfpexd%])/g,(function(t,r,s,i,o,a){const c=Fs;if("%%"===t)return"%";if(void 0===e[++n])return;t=i?parseInt(i[c(362)](1)):void 0;let h,u=o?parseInt(o[c(362)](1)):void 0;switch(a){case"s":h=e[n];break;case"c":h=e[n][0];break;case"f":h=parseFloat(e[n])[c(361)](t);break;case"p":h=parseFloat(e[n])[c(382)](t);break;case"e":h=parseFloat(e[n])[c(383)](t);break;case"x":h=parseInt(e[n]).toString(u||16);break;case"d":h=parseFloat(parseInt(e[n],u||10)[c(382)](t)).toFixed(0)}h="object"==typeof h?JSON[c(360)](h):(+h)[c(384)](u);let l=parseInt(s),p=s&&s[0]+""=="0"?"0":" ";for(;h[c(371)]<l;)h=void 0!==r?h+p:p+h;return h}))}static[Us(374)](t,e){return Ps[Us(350)](t,e)}static[Us(368)](t,e=0){return t.charCodeAt(e)}static getCharAt(t){return String[Us(381)](t)}}Ls.SHIFT_JIS=Bs[Us(358)][Us(370)](),Ls[Us(355)]=Us(355),Ls[Us(388)]=Bs[Us(364)][Us(370)](),Ls[Us(373)]=Us(373),Ls[Us(380)]=Bs[Us(380)][Us(370)](),Ls[Us(367)]=Ls[Us(380)],Ls[Us(354)]=!1;const qs=zs;function zs(t,e){const n=Hs();return(zs=function(t,e){return n[t-=490]})(t,e)}function Hs(){const t=["encoding","substr","appendChars","setCharAt","3208548JGpwkK","charAt","1117935AvsEqa","substring","length","toString","3wrakeo","9274748Boregl","351kxYiRX","append","13741030BuIWAb","value","string","191784rMGiHZ","fromCharCode","insert","enableDecoding","67096RIozyc","5225OwavHA","4348IRxOaf","castAsNonUtf8Char"];return(Hs=function(){return t})()}!function(){const t=zs,e=Hs();for(;;)try{if(757940===parseInt(t(505))/1*(parseInt(t(491))/2)+parseInt(t(501))/3+-parseInt(t(493))/4*(parseInt(t(492))/5)+parseInt(t(499))/6+parseInt(t(506))/7+parseInt(t(512))/8*(parseInt(t(507))/9)+-parseInt(t(509))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Ks{constructor(t=""){this[zs(510)]=t}[qs(490)](t){return this.encoding=t,this}append(t){const e=qs;return typeof t===e(511)?this[e(510)]+=t.toString():this.encoding?this[e(510)]+=Ls[e(494)](t,this[e(495)]):this.value+=String[e(513)](t),this}[qs(497)](t,e,n){const r=qs;for(let s=e;e<e+n;s++)this[r(508)](t[s]);return this}length(){const t=qs;return this[t(510)][t(503)]}[qs(500)](t){const e=qs;return this[e(510)][e(500)](t)}deleteCharAt(t){const e=qs;this.value=this[e(510)][e(496)](0,t)+this.value[e(502)](t+1)}[qs(498)](t,e){const n=qs;this.value=this.value[n(496)](0,t)+e+this[n(510)][n(496)](t+1)}[qs(502)](t,e){const n=qs;return this[n(510)][n(502)](t,e)}setLengthToZero(){this[qs(510)]=""}[qs(504)](){return this[qs(510)]}[qs(514)](t,e){const n=qs;this.value=this[n(510)][n(502)](0,t)+e+this[n(510)].substring(t)}}function Qs(){const t=["128887RicaNS","371672GyidVo","26810TyWXKX","81HcFNmY","toBinaryString","5128FhYTHV","trunc","parseInt","bitCount","400750WXxSGO","numberOfLeadingZeros","44jSLAja","toHexString","64800uuWMjZ","509943mgBqIp","truncDivision"];return(Qs=function(){return t})()}const _s=$s;function $s(t,e){const n=Qs();return($s=function(t,e){return n[t-=315]})(t,e)}!function(){const t=$s,e=Qs();for(;;)try{if(129905===parseInt(t(330))/1+parseInt(t(315))/2+-parseInt(t(328))/3+-parseInt(t(325))/4*(-parseInt(t(316))/5)+-parseInt(t(327))/6+-parseInt(t(323))/7+-parseInt(t(319))/8*(parseInt(t(317))/9))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class ti{static numberOfTrailingZeros(t){let e;if(0===t)return 32;let n=31;return e=t<<16,0!==e&&(n-=16,t=e),e=t<<8,0!==e&&(n-=8,t=e),e=t<<4,0!==e&&(n-=4,t=e),e=t<<2,0!==e&&(n-=2,t=e),n-(t<<1>>>31)}static[_s(324)](t){if(0===t)return 32;let e=1;return t>>>16==0&&(e+=16,t<<=16),t>>>24==0&&(e+=8,t<<=8),t>>>28==0&&(e+=4,t<<=4),t>>>30==0&&(e+=2,t<<=2),e-=t>>>31,e}static[_s(326)](t){return t.toString(16)}static[_s(318)](t){return String(parseInt(String(t),2))}static[_s(322)](t){return t=(t=(858993459&(t-=t>>>1&1431655765))+(t>>>2&858993459))+(t>>>4)&252645135,t+=t>>>8,63&(t+=t>>>16)}static[_s(329)](t,e){return Math[_s(320)](t/e)}static[_s(321)](t,e=void 0){return parseInt(t,e)}}ti.MIN_VALUE_32_BITS=-2147483648,ti.MAX_VALUE=Number.MAX_SAFE_INTEGER;const ei=ni;function ni(t,e){const n=ri();return(ni=function(t,e){return n[t-=321]})(t,e)}function ri(){const t=["floor","3591927GsqhuH","2281938CHQaXe","Sizes don't match","getBitArray","ensureCapacity","makeArray","toString","equals","16gTkXsV","110pTmhpJ","flip","toBytes","xor","getNextUnset","973390MJrnsD","5850453pnykJv","getSize","slice","240MJYvGM","1zhSPQe","clear","isRange","get","setBulk","1230540IYQhjI","155304wouUFs","1745163bFcCMg","reverse","bits","hashCode","size","push","appendBit","length","appendBitArray","numberOfTrailingZeros","getSizeInBytes"];return(ri=function(){return t})()}!function(){const t=ni,e=ri();for(;;)try{if(838340===-parseInt(t(356))/1*(parseInt(t(338))/2)+-parseInt(t(325))/3+parseInt(t(323))/4+-parseInt(t(355))/5*(-parseInt(t(324))/6)+parseInt(t(352))/7+-parseInt(t(345))/8*(parseInt(t(337))/9)+-parseInt(t(346))/10*(-parseInt(t(351))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class si{constructor(t,e){const n=ni;void 0===t?(this[n(329)]=0,this[n(327)]=new Int32Array(1)):(this[n(329)]=t,this[n(327)]=e??si[n(342)](t))}[ei(353)](){return this[ei(329)]}[ei(335)](){const t=ei;return Math[t(336)]((this[t(329)]+7)/8)}[ei(341)](t){const e=ei;if(t>32*this[e(327)][e(332)]){const n=si[e(342)](t);fs.arraycopy(this[e(327)],0,n,0,this[e(327)][e(332)]),this[e(327)]=n}}[ei(321)](t){return!!(this[ei(327)][Math.floor(t/32)]&1<<(31&t))}set(t){this[ei(327)][Math.floor(t/32)]|=1<<(31&t)}[ei(347)](t){const e=ei;this[e(327)][Math[e(336)](t/32)]^=1<<(31&t)}getNextSet(t){const e=ei,n=this.size;if(t>=n)return n;const r=this[e(327)];let s=Math[e(336)](t/32),i=r[s];i&=~((1<<(31&t))-1);const o=r[e(332)];for(;0===i;){if(++s===o)return n;i=r[s]}const a=32*s+ti[e(334)](i);return a>n?n:a}[ei(350)](t){const e=ei,n=this.size;if(t>=n)return n;const r=this.bits;let s=Math[e(336)](t/32),i=~r[s];i&=~((1<<(31&t))-1);const o=r.length;for(;0===i;){if(++s===o)return n;i=~r[s]}const a=32*s+ti[e(334)](i);return a>n?n:a}[ei(322)](t,e){const n=ei;this.bits[Math[n(336)](t/32)]=e}setRange(t,e){const n=ei;if(e<t||t<0||e>this[n(329)])throw new rs;if(e===t)return;e--;const r=Math[n(336)](t/32),s=Math[n(336)](e/32),i=this[n(327)];for(let n=r;n<=s;n++){const o=(2<<(n<s?31:31&e))-(1<<(n>r?0:31&t));i[n]|=o}}[ei(357)](){const t=ei,e=this[t(327)].length,n=this[t(327)];for(let t=0;t<e;t++)n[t]=0}[ei(358)](t,e,n){const r=ei;if(e<t||t<0||e>this.size)throw new rs;if(e===t)return!0;e--;const s=Math[r(336)](t/32),i=Math.floor(e/32),o=this[r(327)];for(let r=s;r<=i;r++){const a=(2<<(r<i?31:31&e))-(1<<(r>s?0:31&t))&4294967295;if((o[r]&a)!==(n?a:0))return!1}return!0}[ei(331)](t){const e=ei;this[e(341)](this[e(329)]+1),t&&(this[e(327)][Math.floor(this.size/32)]|=1<<(31&this[e(329)])),this[e(329)]++}appendBits(t,e){const n=ei;if(e<0||e>32)throw new rs("Num bits must be between 0 and 32");this[n(341)](this.size+e);for(let r=e;r>0;r--)this[n(331)](1==(t>>r-1&1))}[ei(333)](t){const e=ei,n=t[e(329)];this[e(341)](this[e(329)]+n);for(let r=0;r<n;r++)this.appendBit(t[e(321)](r))}[ei(349)](t){const e=ei;if(this[e(329)]!==t.size)throw new rs(e(339));const n=this[e(327)];for(let r=0,s=n[e(332)];r<s;r++)n[r]^=t[e(327)][r]}[ei(348)](t,e,n,r){for(let s=0;s<r;s++){let r=0;for(let e=0;e<8;e++)this.get(t)&&(r|=1<<7-e),t++;e[n+s]=r}}[ei(340)](){return this[ei(327)]}[ei(326)](){const t=ei,e=new Int32Array(this[t(327)][t(332)]),n=Math[t(336)]((this[t(329)]-1)/32),r=n+1,s=this[t(327)];for(let t=0;t<r;t++){let r=s[t];r=r>>1&1431655765|(1431655765&r)<<1,r=r>>2&858993459|(858993459&r)<<2,r=r>>4&252645135|(252645135&r)<<4,r=r>>8&16711935|(16711935&r)<<8,r=r>>16&65535|(65535&r)<<16,e[n-t]=r}if(this[t(329)]!==32*r){const t=32*r-this.size;let n=e[0]>>>t;for(let s=1;s<r;s++){const r=e[s];n|=r<<32-t,e[s-1]=n,n=r>>>t}e[r-1]=n}this[t(327)]=e}static[ei(342)](t){return new Int32Array(Math[ei(336)]((t+31)/32))}[ei(344)](t){const e=ei;if(!(t instanceof si))return!1;const n=t;return this[e(329)]===n[e(329)]&&ys[e(344)](this[e(327)],n[e(327)])}[ei(328)](){const t=ei;return 31*this.size+ys[t(328)](this[t(327)])}[ei(343)](){const t=ei;let e="";for(let n=0,r=this[t(329)];n<r;n++)!(7&n)&&(e+=" "),e+=this[t(321)](n)?"X":".";return e}clone(){const t=ei;return new si(this[t(329)],this.bits[t(354)]())}toArray(){const t=ei;let e=[];for(let n=0,r=this[t(329)];n<r;n++)e[t(330)](this[t(321)](n));return e}}const ii=ai;function oi(){const t=["from","flip","get","Matrix dimensions are undefined","clear","hashCode","row lengths do not match","toString","7IxceUC","getWidth","1586112teLsWg","reverse","Left and top must be nonnegative","2988695vLqjCc","append","substring","stringRepresentation cannot be null","getBottomRightOnBit","equals","getBitArray","xor","unset","setRow","16794848AXVntn","set","getTopLeftOnBit","685635RWTiGj","bits","Height and width must be at least 1","964840ujAiJf","parseFromBooleanArray","floor","width","input matrix dimensions do not match","height","illegal character encountered: ","The region must fit inside the matrix","468472NCRkol","getRowSize","setBulk","length","rotate180","charAt","rowSize","2708058lDvXTc","buildToString","getRow","getHeight"];return(oi=function(){return t})()}function ai(t,e){const n=oi();return(ai=function(t,e){return n[t-=423]})(t,e)}!function(){const t=ai,e=oi();for(;;)try{if(411253===parseInt(t(450))/1+-parseInt(t(442))/2+-parseInt(t(439))/3+-parseInt(t(423))/4+-parseInt(t(426))/5+-parseInt(t(457))/6*(parseInt(t(469))/7)+parseInt(t(436))/8)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class ci{constructor(t,e,n,r){const s=ai;if(this[s(445)]=t,this.height=e,this[s(456)]=n,this[s(440)]=r,null==e&&(e=t),this.height=e,t<1||e<1)throw new rs("Both dimensions must be greater than 0");null==n&&(n=(t+31)/32|0),this[s(456)]=n,null==r&&(this.bits=new Int32Array(this.rowSize*this[s(447)]))}static[ii(443)](t){const e=ii,n=t.length,r=t[0][e(453)],s=new ci(r,n);for(let i=0;i<n;i++){const n=t[i];for(let t=0;t<r;t++)n[t]&&s[e(437)](t,i)}return s}static parseFromString(t,e,n){const r=ii;if(null===t)throw new rs(r(429));const s=new Array(t.length);let i=0,o=0,a=-1,c=0,h=0;for(;h<t.length;){const u=t[r(455)](h);if("\n"===u||"\r"===u){if(i>o){if(-1===a)a=i-o;else if(i-o!==a)throw new rs(r(467));o=i,c++}h++}else if(t[r(428)](h,h+e[r(453)])===e)h+=e[r(453)],s[i++]=!0;else{if(t[r(428)](h,h+n.length)!==n)throw new rs(r(448)+t[r(428)](h));h+=n[r(453)],s[i++]=!1}}if(i>o){if(-1===a)a=i-o;else if(i-o!==a)throw new rs("row lengths do not match");c++}const u=new ci(a,c);for(let t=0;t<i;t++)s[t]&&u.set(t%a,Math[r(444)](t/a));return u}[ii(463)](t,e){const n=ii,r=e*this[n(456)]+(t>>5);return!!(this[n(440)][r]>>>(31&t)&1)}[ii(437)](t,e){const n=ii,r=e*this[n(456)]+(t>>5);this[n(440)][r]|=1<<(31&t)}[ii(434)](t,e){const n=ii,r=e*this[n(456)]+(t>>5);this[n(440)][r]&=~(1<<(31&t))}[ii(462)](t,e){const n=ii,r=e*this[n(456)]+(t>>5);this[n(440)][r]^=1<<(31&t)}[ii(433)](t){const e=ii;if(this.width!==t[e(470)]()||this.height!==t[e(460)]()||this[e(456)]!==t[e(451)]())throw new rs(e(446));const n=new si(1+(this[e(445)]>>5)),r=this.rowSize,s=this[e(440)];for(let i=0,o=this[e(447)];i<o;i++){const o=i*r,a=t.getRow(i,n)[e(432)]();for(let t=0;t<r;t++)s[o+t]^=a[t]}}[ii(465)](){const t=this[ii(440)],e=t.length;for(let n=0;n<e;n++)t[n]=0}setRegion(t,e,n,r){const s=ii;if(e<0||t<0)throw new rs(s(425));if(r<1||n<1)throw new rs(s(441));const i=t+n,o=e+r;if(o>this.height||i>this[s(445)])throw new rs(s(449));const a=this.rowSize,c=this[s(440)];for(let n=e;n<o;n++){const e=n*a;for(let n=t;n<i;n++)c[e+(n>>5)]|=1<<(31&n)}}[ii(459)](t,e){const n=ii;null==e||e.getSize()<this.width?e=new si(this[n(445)]):e.clear();const r=this[n(456)],s=this[n(440)],i=t*r;for(let t=0;t<r;t++)e[n(452)](32*t,s[i+t]);return e}[ii(435)](t,e){const n=ii;fs.arraycopy(e.getBitArray(),0,this.bits,t*this[n(456)],this[n(456)])}[ii(454)](){const t=ii,e=this.getWidth(),n=this[t(460)]();let r=new si(e),s=new si(e);for(let e=0,i=Math.floor((n+1)/2);e<i;e++)r=this[t(459)](e,r),s=this.getRow(n-1-e,s),r[t(424)](),s[t(424)](),this[t(435)](e,s),this.setRow(n-1-e,r)}getEnclosingRectangle(){const t=ii,e=this[t(445)],n=this[t(447)],r=this[t(456)],s=this[t(440)];let i=e,o=n,a=-1,c=-1;for(let t=0;t<n;t++)for(let e=0;e<r;e++){const n=s[t*r+e];if(0!==n){if(t<o&&(o=t),t>c&&(c=t),32*e<i){let t=0;for(;n<<31-t>>>0==0;)t++;32*e+t<i&&(i=32*e+t)}if(32*e+31>a){let t=31;for(;n>>>t==0;)t--;32*e+t>a&&(a=32*e+t)}}}return a<i||c<o?null:Int32Array[t(461)]([i,o,a-i+1,c-o+1])}[ii(438)](){const t=ii,e=this[t(456)],n=this[t(440)];let r=0;for(;r<n[t(453)]&&0===n[r];)r++;if(r===n[t(453)])return null;const s=Math.floor(r/e);let i=r%e<<5;const o=n[r];let a=0;for(;o<<31-a>>>0==0;)a++;return i+=a,Int32Array[t(461)]([i,s])}[ii(430)](){const t=ii,e=this[t(456)],n=this[t(440)];let r=n.length-1;for(;r>=0&&0===n[r];)r--;if(r<0)return null;const s=Math[t(444)](r/e);let i=r%e<<5;const o=n[r];let a=31;for(;o>>>a==0;)a--;return i+=a,Int32Array.from([i,s])}[ii(470)](){return this[ii(445)]}[ii(460)](){return this.height}[ii(451)](){return this[ii(456)]}[ii(431)](t){const e=ii;if(!(t instanceof ci))return!1;const n=t;return this[e(445)]===n[e(445)]&&this[e(447)]===n[e(447)]&&this[e(456)]===n[e(456)]&&ys[e(431)](this.bits,n[e(440)])}[ii(466)](){const t=ii;let e=this[t(445)];return e=31*e+this.height,e=31*e+this[t(456)],e=31*e+ys.hashCode(this[t(440)]),e}[ii(468)](t="X ",e=" ",n="\n"){return this[ii(458)](t,e,n)}[ii(458)](t,e,n){const r=ii,s=new Ks,i=this[r(447)],o=this[r(445)];if(void 0===i||void 0===o)throw new Error(r(464));for(let a=0;a<i;a++){for(let n=0;n<o;n++)s.append(this[r(463)](n,a)?t:e);s[r(427)](n)}return s[r(468)]()}clone(){const t=ii;return new ci(this.width,this[t(447)],this[t(456)],this[t(440)].slice())}}const hi=ui;function ui(t,e){const n=pi();return(ui=function(t,e){return n[t-=105]})(t,e)}!function(){const t=ui,e=pi();for(;;)try{if(288694===parseInt(t(114))/1+parseInt(t(113))/2+-parseInt(t(105))/3+-parseInt(t(106))/4+-parseInt(t(120))/5*(parseInt(t(107))/6)+-parseInt(t(117))/7+parseInt(t(112))/8)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class li{constructor(t=null,e,n=(null==e?0:8*e[hi(123)]),r,s,i=fs[hi(129)]()){const o=hi;this.text=t,this.rawBytes=e,this[o(109)]=n,this[o(124)]=r,this[o(130)]=s,this[o(126)]=i,this[o(121)]=t,this.rawBytes=e,null==n?this.numBits=null==e?0:8*e.length:this[o(109)]=n,this.resultPoints=r,this[o(130)]=s,this[o(108)]=new Map,this[o(126)]=i??fs[o(129)]()}[hi(116)](){return this[hi(121)]?this.text:null}[hi(118)](){return this[hi(131)]}[hi(122)](){return this[hi(109)]}getResultPoints(){return this[hi(124)]}[hi(111)](){return this[hi(130)]}[hi(110)](){return this[hi(108)]}[hi(125)](t,e){const n=hi;null===this[n(108)]&&(this[n(108)]=new Map),this[n(108)][n(128)](t,e)}putAllMetadata(t){const e=hi;null!==t&&(null===this[e(108)]?this[e(108)]=t:this[e(108)]=new Map(t))}[hi(115)](t){const e=hi,n=this[e(124)];if(null===n)this[e(124)]=t;else if(null!==t&&t[e(123)]>0){const r=new Array(n.length+t[e(123)]);fs[e(119)](n,0,r,0,n.length),fs[e(119)](t,0,r,n[e(123)],t.length),this[e(124)]=r}}getTimestamp(){return this[hi(126)]}[hi(127)](){const t=hi;return null===this.text?this[t(124)].toString():this[t(121)]}}function pi(){const t=["getNumBits","length","resultPoints","putMetadata","timestamp","toString","set","currentTimeMillis","format","rawBytes","614283MlMjxK","768952OAgaFb","103584HeAYQg","resultMetadata","numBits","getResultMetadata","getBarcodeFormat","4252816Yrbulu","1143250CxcTZJ","34926SVBkXH","addResultPoints","getText","2442132QERrDD","getRawBytes","arraycopy","30anTtlF","text"];return(pi=function(){return t})()}var fi,di,Ii;function mi(t,e){var n=gi();return(mi=function(t,e){return n[t-=219]})(t,e)}function gi(){var t=["39853tnBjUN","ORIENTATION","3888846YrGAym","BYTE_SEGMENTS","229423WxoEci","557946IFGwIm","1845620rCTkPB","469cwoaRq","ISSUE_NUMBER","10RCHYOM","110HauCfI","STRUCTURED_APPEND_PARITY","8OJKOIj","7935072JKYXzY","POSSIBLE_COUNTRY","8016Sdxlpb","SUGGESTED_PRICE","OTHER","25192CrTsBv","STRUCTURED_APPEND_SEQUENCE","ERROR_CORRECTION_LEVEL","UPC_EAN_EXTENSION"];return(gi=function(){return t})()}!function(){for(var t=mi,e=gi();;)try{if(682680===parseInt(t(230))/1*(-parseInt(t(235))/2)+parseInt(t(228))/3+parseInt(t(238))/4*(parseInt(t(232))/5)+parseInt(t(239))/6+parseInt(t(233))/7*(parseInt(t(222))/8)+-parseInt(t(231))/9*(-parseInt(t(236))/10)+parseInt(t(226))/11*(-parseInt(t(219))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),(di=fi||(fi={}))[di[(Ii=mi)(221)]=0]=Ii(221),di[di.ORIENTATION=1]=Ii(227),di[di[Ii(229)]=2]=Ii(229),di[di[Ii(224)]=3]="ERROR_CORRECTION_LEVEL",di[di.ISSUE_NUMBER=4]=Ii(234),di[di[Ii(220)]=5]="SUGGESTED_PRICE",di[di[Ii(240)]=6]=Ii(240),di[di[Ii(225)]=7]=Ii(225),di[di.PDF417_EXTRA_METADATA=8]="PDF417_EXTRA_METADATA",di[di.STRUCTURED_APPEND_SEQUENCE=9]=Ii(223),di[di[Ii(237)]=10]="STRUCTURED_APPEND_PARITY";var wi=fi;function yi(t,e){var n=Ai();return(yi=function(t,e){return n[t-=179]})(t,e)}var bi=yi;!function(){for(var t=yi,e=Ai();;)try{if(315645===parseInt(t(184))/1*(parseInt(t(181))/2)+-parseInt(t(189))/3+parseInt(t(191))/4+-parseInt(t(188))/5+parseInt(t(185))/6*(parseInt(t(186))/7)+parseInt(t(187))/8*(parseInt(t(182))/9)+parseInt(t(183))/10*(-parseInt(t(190))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class ki extends Pr{static[bi(180)](){return new ki}}function Ai(){var t=["11wnuogC","2469456Ycomhc","ChecksumException","getChecksumInstance","2kuhXHH","51921HwBIYQ","5275980zHhzgj","340723WRyXlt","2095986PrtrtV","7phWPcw","360rQSKqN","2373990tJXfph","746946lUdTMx"];return(Ai=function(){return t})()}ki.kind=bi(179);var Si=Oi;function Ci(){var t=["2262630guoiFg","20mnKHLX","365168kRziAQ","219EmKYlx","ArithmeticException","7pEHqjY","17740jhAxbx","5059614TSFkuX","535688jTWCzN","3951099qQpQlb","110224MfPsWk"];return(Ci=function(){return t})()}function Oi(t,e){var n=Ci();return(Oi=function(t,e){return n[t-=221]})(t,e)}!function(){for(var t=Oi,e=Ci();;)try{if(540541===parseInt(t(224))/1+-parseInt(t(221))/2+-parseInt(t(225))/3*(parseInt(t(228))/4)+parseInt(t(222))/5+-parseInt(t(229))/6*(parseInt(t(227))/7)+parseInt(t(230))/8+-parseInt(t(231))/9*(-parseInt(t(223))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Zi extends Pr{}Zi.kind=Si(226);var vi=Ti;function Mi(){var t=["log","exp","9iaIEZw","35ukxNLE","1309360BLZJxx","179460YUmOYM","410344jlojmZ","expTable","234198nlJPqb","3mEEgeX","11XVnXNe","30CeyjPk","logTable","addOrSubtract","205435XRDBht","64104eIZnCm","211332mIbxec"];return(Mi=function(){return t})()}function Ti(t,e){var n=Mi();return(Ti=function(t,e){return n[t-=165]})(t,e)}!function(){for(var t=Ti,e=Mi();;)try{if(103602===parseInt(t(178))/1+parseInt(t(172))/2*(-parseInt(t(173))/3)+-parseInt(t(179))/4*(parseInt(t(175))/5)+-parseInt(t(180))/6*(-parseInt(t(167))/7)+-parseInt(t(170))/8*(-parseInt(t(166))/9)+-parseInt(t(168))/10+-parseInt(t(174))/11*(-parseInt(t(169))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Ei{[vi(165)](t){return this[vi(171)][t]}[vi(181)](t){var e=vi;if(0===t)throw new rs;return this[e(176)][t]}static[vi(177)](t,e){return t^e}}function Wi(t,e){const n=ji();return(Wi=function(t,e){return n[t-=332]})(t,e)}const Ri=Wi;function ji(){const t=["3177303NaGeLX","multiplyByMonomial","1557440liKMzM","getCoefficient","multiplyScalar","30102sTNzph","1210289YWuKiY"," + ","field","buildMonomial","divide","from","equals","coefficients","multiply","3800592dlDYJT","isZero","1485WHbePf","log","getCoefficients","3977260JYtfkG","arraycopy","getZero","Divide by 0","GenericGFPolys do not have same GenericGF field","getDegree","8524131vEgNTr","8mtAxjk","inverse","addOrSubtract","length"];return(ji=function(){return t})()}!function(){const t=Wi,e=ji();for(;;)try{if(912355===parseInt(t(335))/1+parseInt(t(362))/2+parseInt(t(360))/3+parseInt(t(349))/4+-parseInt(t(346))/5*(parseInt(t(334))/6)+-parseInt(t(355))/7*(parseInt(t(356))/8)+-parseInt(t(344))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Bi{constructor(t,e){const n=Wi;if(0===e[n(359)])throw new rs;this[n(337)]=t;const r=e[n(359)];if(r>1&&0===e[0]){let t=1;for(;t<r&&0===e[t];)t++;t===r?this[n(342)]=Int32Array[n(340)]([0]):(this.coefficients=new Int32Array(r-t),fs[n(350)](e,t,this[n(342)],0,this.coefficients[n(359)]))}else this[n(342)]=e}[Ri(348)](){return this.coefficients}[Ri(354)](){const t=Ri;return this.coefficients[t(359)]-1}[Ri(345)](){return 0===this.coefficients[0]}[Ri(332)](t){const e=Ri;return this[e(342)][this[e(342)][e(359)]-1-t]}evaluateAt(t){const e=Ri;if(0===t)return this[e(332)](0);const n=this[e(342)];let r;if(1===t){r=0;for(let t=0,s=n[e(359)];t!==s;t++){const s=n[t];r=Ei[e(358)](r,s)}return r}r=n[0];const s=n[e(359)],i=this.field;for(let o=1;o<s;o++)r=Ei[e(358)](i[e(343)](t,r),n[o]);return r}[Ri(358)](t){const e=Ri;if(!this.field.equals(t.field))throw new rs(e(353));if(this[e(345)]())return t;if(t[e(345)]())return this;let n=this[e(342)],r=t[e(342)];if(n.length>r.length){const t=n;n=r,r=t}let s=new Int32Array(r[e(359)]);const i=r[e(359)]-n[e(359)];fs.arraycopy(r,0,s,0,i);for(let t=i;t<r[e(359)];t++)s[t]=Ei.addOrSubtract(n[t-i],r[t]);return new Bi(this[e(337)],s)}[Ri(343)](t){const e=Ri;if(!this[e(337)][e(341)](t.field))throw new rs(e(353));if(this[e(345)]()||t[e(345)]())return this[e(337)].getZero();const n=this.coefficients,r=n[e(359)],s=t.coefficients,i=s[e(359)],o=new Int32Array(r+i-1),a=this[e(337)];for(let t=0;t<r;t++){const r=n[t];for(let n=0;n<i;n++)o[t+n]=Ei[e(358)](o[t+n],a[e(343)](r,s[n]))}return new Bi(a,o)}[Ri(333)](t){const e=Ri;if(0===t)return this[e(337)][e(351)]();if(1===t)return this;const n=this[e(342)].length,r=this[e(337)],s=new Int32Array(n),i=this[e(342)];for(let o=0;o<n;o++)s[o]=r[e(343)](i[o],t);return new Bi(r,s)}[Ri(361)](t,e){const n=Ri;if(t<0)throw new rs;if(0===e)return this[n(337)].getZero();const r=this[n(342)],s=r[n(359)],i=new Int32Array(s+t),o=this.field;for(let t=0;t<s;t++)i[t]=o.multiply(r[t],e);return new Bi(o,i)}[Ri(339)](t){const e=Ri;if(!this[e(337)].equals(t[e(337)]))throw new rs(e(353));if(t.isZero())throw new rs(e(352));const n=this[e(337)];let r=n[e(351)](),s=this;const i=t[e(332)](t[e(354)]()),o=n[e(357)](i);for(;s[e(354)]()>=t[e(354)]()&&!s[e(345)]();){const i=s[e(354)]()-t.getDegree(),a=n.multiply(s[e(332)](s[e(354)]()),o),c=t[e(361)](i,a),h=n[e(338)](i,a);r=r[e(358)](h),s=s.addOrSubtract(c)}return[r,s]}toString(){const t=Ri;let e="";for(let n=this[t(354)]();n>=0;n--){let r=this[t(332)](n);if(0!==r){if(r<0?(e+=" - ",r=-r):e[t(359)]>0&&(e+=t(336)),0===n||1!==r){const n=this.field[t(347)](r);0===n?e+="1":1===n?e+="a":(e+="a^",e+=n)}0!==n&&(1===n?e+="x":(e+="x^",e+=n))}}return e}}function Vi(){const t=["size","AZTEC_DATA_10","12hhxOoX","14koSVSI","670850LiZXBB","one","18019177zhYbYI","generatorBase","multiply","getGeneratorBase","4lfmmXI","36OklUpe","buildMonomial","getSize","from","184328omipMq","DATA_MATRIX_FIELD_256","4412133yLQaZS","5697832alZNcU","primitive","AZTEC_PARAM","GF(0x","zero","342357aQmSzW","AZTEC_DATA_6","toHexString","AZTEC_DATA_8","13jMGPhv","16840450uXemqG","getZero","logTable"];return(Vi=function(){return t})()}const Ni=Yi;!function(){const t=Yi,e=Vi();for(;;)try{if(943702===-parseInt(t(387))/1*(parseInt(t(375))/2)+-parseInt(t(383))/3*(-parseInt(t(370))/4)+parseInt(t(364))/5*(-parseInt(t(393))/6)+parseInt(t(363))/7*(-parseInt(t(378))/8)+parseInt(t(377))/9+-parseInt(t(388))/10+parseInt(t(366))/11*(parseInt(t(371))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Ji extends Ei{constructor(t,e,n){const r=Yi;super(),this[r(379)]=t,this[r(391)]=e,this[r(367)]=n;const s=new Int32Array(e);let i=1;for(let n=0;n<e;n++)s[n]=i,i*=2,i>=e&&(i^=t,i&=e-1);this.expTable=s;const o=new Int32Array(e);for(let t=0;t<e-1;t++)o[s[t]]=t;this[r(390)]=o,this[r(382)]=new Bi(this,Int32Array[r(374)]([0])),this[r(365)]=new Bi(this,Int32Array[r(374)]([1]))}[Ni(389)](){return this[Ni(382)]}getOne(){return this.one}[Ni(372)](t,e){const n=Ni;if(t<0)throw new rs;if(0===e)return this[n(382)];const r=new Int32Array(t+1);return r[0]=e,new Bi(this,r)}inverse(t){const e=Ni;if(0===t)throw new Zi;return this.expTable[this[e(391)]-this[e(390)][t]-1]}[Ni(368)](t,e){const n=Ni;return 0===t||0===e?0:this.expTable[(this[n(390)][t]+this[n(390)][e])%(this[n(391)]-1)]}[Ni(373)](){return this.size}[Ni(369)](){return this[Ni(367)]}toString(){const t=Ni;return t(381)+ti[t(385)](this[t(379)])+","+this[t(391)]+")"}equals(t){return t===this}}function Yi(t,e){const n=Vi();return(Yi=function(t,e){return n[t-=363]})(t,e)}function xi(t,e){var n=Xi();return(xi=function(t,e){return n[t-=151]})(t,e)}Ji.AZTEC_DATA_12=new Ji(4201,4096,1),Ji[Ni(392)]=new Ji(1033,1024,1),Ji[Ni(384)]=new Ji(67,64,1),Ji[Ni(380)]=new Ji(19,16,1),Ji.QR_CODE_FIELD_256=new Ji(285,256,0),Ji[Ni(376)]=new Ji(301,256,1),Ji[Ni(386)]=Ji[Ni(376)],Ji.MAXICODE_FIELD_64=Ji[Ni(384)];var Di=xi;function Xi(){var t=["IllegalStateException","4vUbHnA","559566dkQxwl","624708XHyvUi","kind","1543938DOiKzD","6996488dWenAE","21064626qNsvtq","421025EOZlPO","4299745bTLUVG","66ZLixBn"];return(Xi=function(){return t})()}!function(){for(var t=xi,e=Xi();;)try{if(500564===-parseInt(t(161))/1+-parseInt(t(158))/2+parseInt(t(156))/3+parseInt(t(154))/4*(-parseInt(t(151))/5)+-parseInt(t(152))/6*(-parseInt(t(155))/7)+-parseInt(t(159))/8+parseInt(t(160))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Pi extends Pr{}Pi[Di(157)]=Di(153);var Ui=Fi;!function(){for(var t=Fi,e=Li();;)try{if(379211===parseInt(t(501))/1*(-parseInt(t(497))/2)+parseInt(t(503))/3+parseInt(t(504))/4*(-parseInt(t(500))/5)+-parseInt(t(507))/6*(-parseInt(t(499))/7)+parseInt(t(505))/8*(parseInt(t(502))/9)+-parseInt(t(506))/10+parseInt(t(498))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Gi extends Pr{}function Fi(t,e){var n=Li();return(Fi=function(t,e){return n[t-=496]})(t,e)}function Li(){var t=["2715832BHkjSZ","135768tybZQJ","6286460FTYfzy","1362792wKRHzG","kind","81878tHxlPI","6999740QPdwUM","14tXrwxA","5umLuph","6CBYLTL","45TWdGmP","2270970kjZduC"];return(Li=function(){return t})()}Gi[Ui(496)]="ReedSolomonException";const qi=Hi;function zi(){const t=["Bad error location","decode","findErrorMagnitudes","218200XoLEcz","getDegree","inverse","getCoefficient","220NWJnNt","addOrSubtract","16evBqtC","multiply","getSize","getZero","7308900pGwqsh","multiplyScalar","6514119BqNUOH","r_{i-1} was zero","getGeneratorBase","evaluateAt","9271446HgbJFO","from","field","findErrorLocations","length","runEuclideanAlgorithm","2190711AVShim","multiplyByMonomial","4ONliKT","exp","isZero","Division algorithm failed to reduce polynomial?","buildMonomial","59092zlAPgS","4XGqfac","getOne","2167165oWbvHJ","sigmaTilde(0) was zero"];return(zi=function(){return t})()}function Hi(t,e){const n=zi();return(Hi=function(t,e){return n[t-=292]})(t,e)}!function(){const t=Hi,e=zi();for(;;)try{if(847499===parseInt(t(313))/1*(-parseInt(t(312))/2)+-parseInt(t(305))/3*(parseInt(t(307))/4)+parseInt(t(293))/5+-parseInt(t(299))/6+-parseInt(t(315))/7*(-parseInt(t(326))/8)+parseInt(t(295))/9+parseInt(t(320))/10*(parseInt(t(324))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Ki{constructor(t){this[Hi(301)]=t}[qi(318)](t,e){const n=qi,r=this[n(301)],s=new Bi(r,t),i=new Int32Array(e);let o=!0;for(let t=0;t<e;t++){const e=s[n(298)](r[n(308)](t+r[n(297)]()));i[i[n(303)]-1-t]=e,0!==e&&(o=!1)}if(o)return;const a=new Bi(r,i),c=this[n(304)](r[n(311)](e,1),a,e),h=c[0],u=c[1],l=this[n(302)](h),p=this.findErrorMagnitudes(u,l);for(let e=0;e<l.length;e++){const s=t[n(303)]-1-r.log(l[e]);if(s<0)throw new Gi(n(317));t[s]=Ji[n(325)](t[s],p[e])}}[qi(304)](t,e,n){const r=qi;if(t.getDegree()<e.getDegree()){const n=t;t=e,e=n}const s=this[r(301)];let i=t,o=e,a=s[r(292)](),c=s[r(314)]();for(;o[r(321)]()>=(n/2|0);){let t=i,e=a;if(i=o,a=c,i[r(309)]())throw new Gi(r(296));o=t;let n=s[r(292)]();const h=i.getCoefficient(i[r(321)]()),u=s[r(322)](h);for(;o[r(321)]()>=i.getDegree()&&!o[r(309)]();){const t=o[r(321)]()-i[r(321)](),e=s.multiply(o.getCoefficient(o.getDegree()),u);n=n[r(325)](s[r(311)](t,e)),o=o[r(325)](i[r(306)](t,e))}if(c=n[r(327)](a)[r(325)](e),o[r(321)]()>=i[r(321)]())throw new Pi(r(310))}const h=c[r(323)](0);if(0===h)throw new Gi(r(316));const u=s.inverse(h);return[c.multiplyScalar(u),o[r(294)](u)]}[qi(302)](t){const e=qi,n=t[e(321)]();if(1===n)return Int32Array[e(300)]([t[e(323)](1)]);const r=new Int32Array(n);let s=0;const i=this[e(301)];for(let o=1;o<i[e(328)]()&&s<n;o++)0===t[e(298)](o)&&(r[s]=i[e(322)](o),s++);if(s!==n)throw new Gi("Error locator degree does not match number of roots");return r}[qi(319)](t,e){const n=qi,r=e[n(303)],s=new Int32Array(r),i=this.field;for(let o=0;o<r;o++){const a=i[n(322)](e[o]);let c=1;for(let t=0;t<r;t++)if(o!==t){const r=i[n(327)](e[t],a),s=1&r?-2&r:1|r;c=i[n(327)](c,s)}s[o]=i[n(327)](t.evaluateAt(a),i[n(322)](c)),0!==i[n(297)]()&&(s[o]=i[n(327)](s[o],a))}return s}}function Qi(){const t=["DATA_MASK_010","DATA_MASK_100","1035nWPjjn","DATA_MASK_111","DATA_MASK_110","184912qBVtaw","3012588aycqjZ","value","flip","DATA_MASK_001","42258nxIEUW","floor","5718083ysuSci","isMasked","DATA_MASK_000","18238311TjwbVW","DATA_MASK_101","2RKWZFF","190752xeqERz","252079aLlSup","DATA_MASK_011"];return(Qi=function(){return t})()}const _i=eo;var $i;!function(){const t=eo,e=Qi();for(;;)try{if(789829===-parseInt(t(440))/1*(parseInt(t(438))/2)+parseInt(t(439))/3+parseInt(t(448))/4+-parseInt(t(444))/5*(-parseInt(t(452))/6)+parseInt(t(433))/7+-parseInt(t(447))/8+-parseInt(t(436))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),function(t){const e=eo;t[t[e(435)]=0]=e(435),t[t[e(451)]=1]=e(451),t[t.DATA_MASK_010=2]="DATA_MASK_010",t[t[e(441)]=3]=e(441),t[t.DATA_MASK_100=4]=e(443),t[t[e(437)]=5]=e(437),t[t[e(446)]=6]=e(446),t[t[e(445)]=7]=e(445)}($i||($i={}));class to{constructor(t,e){const n=eo;this[n(449)]=t,this[n(434)]=e}unmaskBitMatrix(t,e){const n=eo;for(let r=0;r<e;r++)for(let s=0;s<e;s++)this[n(434)](r,s)&&t[n(450)](s,r)}}function eo(t,e){const n=Qi();return(eo=function(t,e){return n[t-=433]})(t,e)}function no(t,e){var n=so();return(no=function(t,e){return n[t-=407]})(t,e)}to.values=new Map([[$i[_i(435)],new to($i[_i(435)],((t,e)=>!(t+e&1)))],[$i.DATA_MASK_001,new to($i.DATA_MASK_001,((t,e)=>!(1&t)))],[$i[_i(442)],new to($i[_i(442)],((t,e)=>e%3==0))],[$i[_i(441)],new to($i[_i(441)],((t,e)=>(t+e)%3==0))],[$i[_i(443)],new to($i[_i(443)],((t,e)=>{const n=_i;return!(Math.floor(t/2)+Math[n(453)](e/3)&1)}))],[$i.DATA_MASK_101,new to($i[_i(437)],((t,e)=>t*e%6==0))],[$i[_i(446)],new to($i.DATA_MASK_110,((t,e)=>t*e%6<3))],[$i[_i(445)],new to($i[_i(445)],((t,e)=>!(t+e+t*e%3&1)))]]);var ro=no;function so(){var t=["3217690lwLvdv","87483vLhjLS","26270BvjAQh","40OepxKc","1419975NrGwhx","ArgumentException","kind","807396NyXmTF","56853wEaEWl","1580tlpcwA","236lIwsSa","1136664GGTzGh","138nELfOV"];return(so=function(){return t})()}!function(){for(var t=no,e=so();;)try{if(663068===parseInt(t(407))/1+-parseInt(t(416))/2+-parseInt(t(417))/3*(parseInt(t(419))/4)+parseInt(t(411))/5*(parseInt(t(408))/6)+parseInt(t(409))/7+parseInt(t(412))/8*(-parseInt(t(413))/9)+-parseInt(t(418))/10*(-parseInt(t(410))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class io extends Pr{}function oo(t,e){var n=lo();return(oo=function(t,e){return n[t-=123]})(t,e)}io[ro(415)]=ro(414);var ao,co,ho=oo;!function(){for(var t=oo,e=lo();;)try{if(232650===-parseInt(t(124))/1+-parseInt(t(137))/2*(parseInt(t(132))/3)+-parseInt(t(134))/4*(parseInt(t(138))/5)+parseInt(t(135))/6+-parseInt(t(123))/7+-parseInt(t(133))/8+-parseInt(t(141))/9*(-parseInt(t(127))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),(co=ao||(ao={}))[co.L=0]="L",co[co.M=1]="M",co[co.Q=2]="Q",co[co.H=3]="H";class uo{constructor(t,e,n){var r=oo;this.value=t,this.stringValue=e,this[r(139)]=n,uo[r(136)][r(126)](n,this),uo[r(140)][r(126)](t,this)}getValue(){return this[oo(131)]}getBits(){return this[oo(139)]}static fromString(t){switch(t){case"L":return uo.L;case"M":return uo.M;case"Q":return uo.Q;case"H":return uo.H;default:throw new io(t+"not available")}}toString(){return this[oo(125)]}[ho(129)](t){if(!(t instanceof uo))return!1;const e=t;return this[ho(131)]===e.value}static[ho(130)](t){var e=ho;if(t<0||t>=uo[e(136)].size)throw new rs;return uo[e(136)][e(128)](t)}}function lo(){var t=["FOR_BITS","181574AuiqAE","10GnMOHA","bits","FOR_VALUE","1566LYRafS","446257YLXOUw","229529dVZsjI","stringValue","set","32290zQiwQD","get","equals","forBits","value","3aIwomV","1631552jkinxd","179204iPDKHA","2090502cyDtzW"];return(lo=function(){return t})()}uo.FOR_BITS=new Map,uo[ho(140)]=new Map,uo.L=new uo(ao.L,"L",1),uo.M=new uo(ao.M,"M",0),uo.Q=new uo(ao.Q,"Q",3),uo.H=new uo(ao.H,"H",2);const po=fo;function fo(t,e){const n=mo();return(fo=function(t,e){return n[t-=105]})(t,e)}!function(){const t=fo,e=mo();for(;;)try{if(854616===parseInt(t(125))/1+parseInt(t(114))/2+-parseInt(t(118))/3+parseInt(t(117))/4*(-parseInt(t(123))/5)+-parseInt(t(115))/6+-parseInt(t(108))/7+parseInt(t(106))/8)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Io{constructor(t){const e=fo;this[e(124)]=uo[e(107)](t>>3&3),this[e(111)]=7&t}static numBitsDiffering(t,e){return ti[fo(110)](t^e)}static[po(122)](t,e){const n=po,r=Io[n(113)](t,e);return null!==r?r:Io[n(113)](t^Io.FORMAT_INFO_MASK_QR,e^Io[n(116)])}static[po(113)](t,e){const n=po;let r=Number[n(119)],s=0;for(const i of Io[n(120)]){const n=i[0];if(n===t||n===e)return new Io(i[1]);let o=Io.numBitsDiffering(t,n);o<r&&(s=i[1],r=o),t!==e&&(o=Io.numBitsDiffering(e,n),o<r&&(s=i[1],r=o))}return r<=3?new Io(s):null}[po(109)](){return this[po(124)]}getDataMask(){return this.dataMask}hashCode(){const t=po;return this.errorCorrectionLevel[t(121)]()<<3|this[t(111)]}[po(105)](t){const e=po;if(!(t instanceof Io))return!1;const n=t;return this.errorCorrectionLevel===n[e(124)]&&this[e(111)]===n[e(111)]}}function mo(){const t=["1972465ErmVNs","errorCorrectionLevel","1575651nmnBDW","equals","15571296LzrNPq","forBits","5929595eMnsvI","getErrorCorrectionLevel","bitCount","dataMask","from","doDecodeFormatInformation","1030170mqVDiU","6662586sLufhl","FORMAT_INFO_MASK_QR","4xEHciJ","2491569fUZNld","MAX_SAFE_INTEGER","FORMAT_INFO_DECODE_LOOKUP","getBits","decodeFormatInformation"];return(mo=function(){return t})()}function go(){var t=["1WFefjo","1405046alhHsy","count","7999272pfQmeO","dataCodewords","7149162kEyXrn","243osHFQL","311850cpEvZe","9079272QEchfo","5CpKPJb","829094PtlQUm","getDataCodewords","5384DnxKyy","507VFdMYx","getCount","22Krebeg"];return(go=function(){return t})()}Io[po(116)]=21522,Io[po(120)]=[Int32Array.from([21522,0]),Int32Array[po(112)]([20773,1]),Int32Array.from([24188,2]),Int32Array.from([23371,3]),Int32Array[po(112)]([17913,4]),Int32Array[po(112)]([16590,5]),Int32Array[po(112)]([20375,6]),Int32Array.from([19104,7]),Int32Array[po(112)]([30660,8]),Int32Array.from([29427,9]),Int32Array[po(112)]([32170,10]),Int32Array[po(112)]([30877,11]),Int32Array[po(112)]([26159,12]),Int32Array[po(112)]([25368,13]),Int32Array.from([27713,14]),Int32Array[po(112)]([26998,15]),Int32Array[po(112)]([5769,16]),Int32Array.from([5054,17]),Int32Array.from([7399,18]),Int32Array[po(112)]([6608,19]),Int32Array[po(112)]([1890,20]),Int32Array[po(112)]([597,21]),Int32Array[po(112)]([3340,22]),Int32Array[po(112)]([2107,23]),Int32Array.from([13663,24]),Int32Array.from([12392,25]),Int32Array[po(112)]([16177,26]),Int32Array[po(112)]([14854,27]),Int32Array[po(112)]([9396,28]),Int32Array[po(112)]([8579,29]),Int32Array.from([11994,30]),Int32Array.from([11245,31])];var wo=yo;function yo(t,e){var n=go();return(yo=function(t,e){return n[t-=424]})(t,e)}!function(){for(var t=yo,e=go();;)try{if(884668===-parseInt(t(432))/1*(-parseInt(t(433))/2)+-parseInt(t(429))/3*(-parseInt(t(428))/4)+-parseInt(t(425))/5*(-parseInt(t(437))/6)+parseInt(t(426))/7+parseInt(t(435))/8+parseInt(t(438))/9*(-parseInt(t(439))/10)+-parseInt(t(431))/11*(parseInt(t(424))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class bo{constructor(t,e){this[yo(434)]=t,this.dataCodewords=e}[wo(430)](){return this[wo(434)]}[wo(427)](){return this[wo(436)]}}const ko=Ao;function Ao(t,e){const n=Co();return(Ao=function(t,e){return n[t-=131]})(t,e)}!function(){const t=Ao,e=Co();for(;;)try{if(543950===-parseInt(t(148))/1+-parseInt(t(144))/2*(-parseInt(t(136))/3)+-parseInt(t(140))/4+-parseInt(t(134))/5*(parseInt(t(139))/6)+-parseInt(t(133))/7*(parseInt(t(146))/8)+parseInt(t(138))/9*(-parseInt(t(142))/10)+parseInt(t(143))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class So{constructor(t,...e){const n=Ao;this.ecCodewordsPerBlock=t,this[n(137)]=e}[ko(145)](){return this[ko(135)]}[ko(147)](){const t=ko;let e=0;const n=this[t(137)];for(const r of n)e+=r[t(132)]();return e}[ko(131)](){const t=ko;return this[t(135)]*this[t(147)]()}[ko(141)](){return this.ecBlocks}}function Co(){const t=["getECCodewordsPerBlock","8ngbjbN","getNumBlocks","113197WmSLSE","getTotalECCodewords","getCount","3942701qeGMJl","347335UooLSo","ecCodewordsPerBlock","1149ujblZp","ecBlocks","2748393sCrJvk","6oOcuKU","3969856lZsEUV","getECBlocks","10mpAfiX","28182407taSVyL","134BUoVPP"];return(Co=function(){return t})()}const Oo=vo;function Zo(){const t=["getVersionForNumber","VERSION_DECODE_INFO","8mnaLPB","MAX_SAFE_INTEGER","1088037QHTvOy","from","length","totalCodewords","4041667IvAJpO","4qzEcRG","numBitsDiffering","getCount","getECBlocksForLevel","getProvisionalVersionForDimension","getECCodewordsPerBlock","toString","getDataCodewords","2614119ePoJsJ","8672184inxKoN","3177876PKCcVW","buildFunctionPattern","getTotalCodewords","getVersionNumber","getDimensionForVersion","getAlignmentPatternCenters","alignmentPatternCenters","versionNumber","638455ymlzNf","setRegion","ecBlocks","getValue","VERSIONS","12188570KbHUUN","2hdCCPY"];return(Zo=function(){return t})()}function vo(t,e){const n=Zo();return(vo=function(t,e){return n[t-=293]})(t,e)}!function(){const t=vo,e=Zo();for(;;)try{if(647371===parseInt(t(300))/1+parseInt(t(295))/2*(-parseInt(t(313))/3)+parseInt(t(305))/4*(parseInt(t(323))/5)+-parseInt(t(315))/6+-parseInt(t(304))/7*(-parseInt(t(298))/8)+-parseInt(t(314))/9+parseInt(t(294))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Mo{constructor(t,e,...n){const r=vo;this[r(322)]=t,this[r(321)]=e,this[r(325)]=n;let s=0;const i=n[0][r(310)](),o=n[0].getECBlocks();for(const t of o)s+=t[r(307)]()*(t[r(312)]()+i);this[r(303)]=s}[Oo(318)](){return this[Oo(322)]}[Oo(320)](){return this[Oo(321)]}[Oo(317)](){return this[Oo(303)]}[Oo(319)](){return 17+4*this[Oo(322)]}[Oo(308)](t){const e=Oo;return this.ecBlocks[t[e(326)]()]}static[Oo(309)](t){if(t%4!=1)throw new vs;try{return this.getVersionForNumber((t-17)/4)}catch(t){throw new vs}}static[Oo(296)](t){const e=Oo;if(t<1||t>40)throw new rs;return Mo[e(293)][t-1]}static decodeVersionInformation(t){const e=Oo;let n=Number[e(299)],r=0;for(let s=0;s<Mo[e(297)][e(302)];s++){const i=Mo[e(297)][s];if(i===t)return Mo.getVersionForNumber(s+7);const o=Io[e(306)](t,i);o<n&&(r=s+7,n=o)}return n<=3?Mo[e(296)](r):null}[Oo(316)](){const t=Oo,e=this[t(319)](),n=new ci(e);n[t(324)](0,0,9,9),n.setRegion(e-8,0,8,9),n[t(324)](0,e-8,9,8);const r=this[t(321)].length;for(let e=0;e<r;e++){const s=this[t(321)][e]-2;for(let t=0;t<r;t++)0===e&&(0===t||t===r-1)||e===r-1&&0===t||n.setRegion(this.alignmentPatternCenters[t]-2,s,5,5)}return n[t(324)](6,9,1,e-17),n[t(324)](9,6,e-17,1),this[t(322)]>6&&(n[t(324)](e-11,0,3,6),n[t(324)](0,e-11,6,3)),n}[Oo(311)](){return""+this[Oo(322)]}}Mo[Oo(297)]=Int32Array[Oo(301)]([31892,34236,39577,42195,48118,51042,55367,58893,63784,68472,70749,76311,79154,84390,87683,92361,96236,102084,102881,110507,110734,117786,119615,126325,127568,133589,136944,141498,145311,150283,152622,158308,161089,167017]),Mo[Oo(293)]=[new Mo(1,new Int32Array(0),new So(7,new bo(1,19)),new So(10,new bo(1,16)),new So(13,new bo(1,13)),new So(17,new bo(1,9))),new Mo(2,Int32Array[Oo(301)]([6,18]),new So(10,new bo(1,34)),new So(16,new bo(1,28)),new So(22,new bo(1,22)),new So(28,new bo(1,16))),new Mo(3,Int32Array.from([6,22]),new So(15,new bo(1,55)),new So(26,new bo(1,44)),new So(18,new bo(2,17)),new So(22,new bo(2,13))),new Mo(4,Int32Array[Oo(301)]([6,26]),new So(20,new bo(1,80)),new So(18,new bo(2,32)),new So(26,new bo(2,24)),new So(16,new bo(4,9))),new Mo(5,Int32Array.from([6,30]),new So(26,new bo(1,108)),new So(24,new bo(2,43)),new So(18,new bo(2,15),new bo(2,16)),new So(22,new bo(2,11),new bo(2,12))),new Mo(6,Int32Array[Oo(301)]([6,34]),new So(18,new bo(2,68)),new So(16,new bo(4,27)),new So(24,new bo(4,19)),new So(28,new bo(4,15))),new Mo(7,Int32Array[Oo(301)]([6,22,38]),new So(20,new bo(2,78)),new So(18,new bo(4,31)),new So(18,new bo(2,14),new bo(4,15)),new So(26,new bo(4,13),new bo(1,14))),new Mo(8,Int32Array[Oo(301)]([6,24,42]),new So(24,new bo(2,97)),new So(22,new bo(2,38),new bo(2,39)),new So(22,new bo(4,18),new bo(2,19)),new So(26,new bo(4,14),new bo(2,15))),new Mo(9,Int32Array[Oo(301)]([6,26,46]),new So(30,new bo(2,116)),new So(22,new bo(3,36),new bo(2,37)),new So(20,new bo(4,16),new bo(4,17)),new So(24,new bo(4,12),new bo(4,13))),new Mo(10,Int32Array[Oo(301)]([6,28,50]),new So(18,new bo(2,68),new bo(2,69)),new So(26,new bo(4,43),new bo(1,44)),new So(24,new bo(6,19),new bo(2,20)),new So(28,new bo(6,15),new bo(2,16))),new Mo(11,Int32Array[Oo(301)]([6,30,54]),new So(20,new bo(4,81)),new So(30,new bo(1,50),new bo(4,51)),new So(28,new bo(4,22),new bo(4,23)),new So(24,new bo(3,12),new bo(8,13))),new Mo(12,Int32Array[Oo(301)]([6,32,58]),new So(24,new bo(2,92),new bo(2,93)),new So(22,new bo(6,36),new bo(2,37)),new So(26,new bo(4,20),new bo(6,21)),new So(28,new bo(7,14),new bo(4,15))),new Mo(13,Int32Array.from([6,34,62]),new So(26,new bo(4,107)),new So(22,new bo(8,37),new bo(1,38)),new So(24,new bo(8,20),new bo(4,21)),new So(22,new bo(12,11),new bo(4,12))),new Mo(14,Int32Array[Oo(301)]([6,26,46,66]),new So(30,new bo(3,115),new bo(1,116)),new So(24,new bo(4,40),new bo(5,41)),new So(20,new bo(11,16),new bo(5,17)),new So(24,new bo(11,12),new bo(5,13))),new Mo(15,Int32Array[Oo(301)]([6,26,48,70]),new So(22,new bo(5,87),new bo(1,88)),new So(24,new bo(5,41),new bo(5,42)),new So(30,new bo(5,24),new bo(7,25)),new So(24,new bo(11,12),new bo(7,13))),new Mo(16,Int32Array[Oo(301)]([6,26,50,74]),new So(24,new bo(5,98),new bo(1,99)),new So(28,new bo(7,45),new bo(3,46)),new So(24,new bo(15,19),new bo(2,20)),new So(30,new bo(3,15),new bo(13,16))),new Mo(17,Int32Array[Oo(301)]([6,30,54,78]),new So(28,new bo(1,107),new bo(5,108)),new So(28,new bo(10,46),new bo(1,47)),new So(28,new bo(1,22),new bo(15,23)),new So(28,new bo(2,14),new bo(17,15))),new Mo(18,Int32Array.from([6,30,56,82]),new So(30,new bo(5,120),new bo(1,121)),new So(26,new bo(9,43),new bo(4,44)),new So(28,new bo(17,22),new bo(1,23)),new So(28,new bo(2,14),new bo(19,15))),new Mo(19,Int32Array[Oo(301)]([6,30,58,86]),new So(28,new bo(3,113),new bo(4,114)),new So(26,new bo(3,44),new bo(11,45)),new So(26,new bo(17,21),new bo(4,22)),new So(26,new bo(9,13),new bo(16,14))),new Mo(20,Int32Array[Oo(301)]([6,34,62,90]),new So(28,new bo(3,107),new bo(5,108)),new So(26,new bo(3,41),new bo(13,42)),new So(30,new bo(15,24),new bo(5,25)),new So(28,new bo(15,15),new bo(10,16))),new Mo(21,Int32Array.from([6,28,50,72,94]),new So(28,new bo(4,116),new bo(4,117)),new So(26,new bo(17,42)),new So(28,new bo(17,22),new bo(6,23)),new So(30,new bo(19,16),new bo(6,17))),new Mo(22,Int32Array[Oo(301)]([6,26,50,74,98]),new So(28,new bo(2,111),new bo(7,112)),new So(28,new bo(17,46)),new So(30,new bo(7,24),new bo(16,25)),new So(24,new bo(34,13))),new Mo(23,Int32Array.from([6,30,54,78,102]),new So(30,new bo(4,121),new bo(5,122)),new So(28,new bo(4,47),new bo(14,48)),new So(30,new bo(11,24),new bo(14,25)),new So(30,new bo(16,15),new bo(14,16))),new Mo(24,Int32Array[Oo(301)]([6,28,54,80,106]),new So(30,new bo(6,117),new bo(4,118)),new So(28,new bo(6,45),new bo(14,46)),new So(30,new bo(11,24),new bo(16,25)),new So(30,new bo(30,16),new bo(2,17))),new Mo(25,Int32Array[Oo(301)]([6,32,58,84,110]),new So(26,new bo(8,106),new bo(4,107)),new So(28,new bo(8,47),new bo(13,48)),new So(30,new bo(7,24),new bo(22,25)),new So(30,new bo(22,15),new bo(13,16))),new Mo(26,Int32Array.from([6,30,58,86,114]),new So(28,new bo(10,114),new bo(2,115)),new So(28,new bo(19,46),new bo(4,47)),new So(28,new bo(28,22),new bo(6,23)),new So(30,new bo(33,16),new bo(4,17))),new Mo(27,Int32Array[Oo(301)]([6,34,62,90,118]),new So(30,new bo(8,122),new bo(4,123)),new So(28,new bo(22,45),new bo(3,46)),new So(30,new bo(8,23),new bo(26,24)),new So(30,new bo(12,15),new bo(28,16))),new Mo(28,Int32Array[Oo(301)]([6,26,50,74,98,122]),new So(30,new bo(3,117),new bo(10,118)),new So(28,new bo(3,45),new bo(23,46)),new So(30,new bo(4,24),new bo(31,25)),new So(30,new bo(11,15),new bo(31,16))),new Mo(29,Int32Array[Oo(301)]([6,30,54,78,102,126]),new So(30,new bo(7,116),new bo(7,117)),new So(28,new bo(21,45),new bo(7,46)),new So(30,new bo(1,23),new bo(37,24)),new So(30,new bo(19,15),new bo(26,16))),new Mo(30,Int32Array[Oo(301)]([6,26,52,78,104,130]),new So(30,new bo(5,115),new bo(10,116)),new So(28,new bo(19,47),new bo(10,48)),new So(30,new bo(15,24),new bo(25,25)),new So(30,new bo(23,15),new bo(25,16))),new Mo(31,Int32Array[Oo(301)]([6,30,56,82,108,134]),new So(30,new bo(13,115),new bo(3,116)),new So(28,new bo(2,46),new bo(29,47)),new So(30,new bo(42,24),new bo(1,25)),new So(30,new bo(23,15),new bo(28,16))),new Mo(32,Int32Array.from([6,34,60,86,112,138]),new So(30,new bo(17,115)),new So(28,new bo(10,46),new bo(23,47)),new So(30,new bo(10,24),new bo(35,25)),new So(30,new bo(19,15),new bo(35,16))),new Mo(33,Int32Array[Oo(301)]([6,30,58,86,114,142]),new So(30,new bo(17,115),new bo(1,116)),new So(28,new bo(14,46),new bo(21,47)),new So(30,new bo(29,24),new bo(19,25)),new So(30,new bo(11,15),new bo(46,16))),new Mo(34,Int32Array[Oo(301)]([6,34,62,90,118,146]),new So(30,new bo(13,115),new bo(6,116)),new So(28,new bo(14,46),new bo(23,47)),new So(30,new bo(44,24),new bo(7,25)),new So(30,new bo(59,16),new bo(1,17))),new Mo(35,Int32Array[Oo(301)]([6,30,54,78,102,126,150]),new So(30,new bo(12,121),new bo(7,122)),new So(28,new bo(12,47),new bo(26,48)),new So(30,new bo(39,24),new bo(14,25)),new So(30,new bo(22,15),new bo(41,16))),new Mo(36,Int32Array[Oo(301)]([6,24,50,76,102,128,154]),new So(30,new bo(6,121),new bo(14,122)),new So(28,new bo(6,47),new bo(34,48)),new So(30,new bo(46,24),new bo(10,25)),new So(30,new bo(2,15),new bo(64,16))),new Mo(37,Int32Array[Oo(301)]([6,28,54,80,106,132,158]),new So(30,new bo(17,122),new bo(4,123)),new So(28,new bo(29,46),new bo(14,47)),new So(30,new bo(49,24),new bo(10,25)),new So(30,new bo(24,15),new bo(46,16))),new Mo(38,Int32Array[Oo(301)]([6,32,58,84,110,136,162]),new So(30,new bo(4,122),new bo(18,123)),new So(28,new bo(13,46),new bo(32,47)),new So(30,new bo(48,24),new bo(14,25)),new So(30,new bo(42,15),new bo(32,16))),new Mo(39,Int32Array.from([6,26,54,82,110,138,166]),new So(30,new bo(20,117),new bo(4,118)),new So(28,new bo(40,47),new bo(7,48)),new So(30,new bo(43,24),new bo(22,25)),new So(30,new bo(10,15),new bo(67,16))),new Mo(40,Int32Array[Oo(301)]([6,30,58,86,114,142,170]),new So(30,new bo(19,118),new bo(6,119)),new So(28,new bo(18,47),new bo(31,48)),new So(30,new bo(34,24),new bo(34,25)),new So(30,new bo(20,15),new bo(61,16)))];const To=Eo;function Eo(t,e){const n=Wo();return(Eo=function(t,e){return n[t-=131]})(t,e)}function Wo(){const t=["remask","readFormatInformation","getHeight","mirror","flip","floor","32oxHhec","6JAxTZM","unmaskBitMatrix","parsedFormatInfo","parsedVersion","setMirror","isMirror","978984rLXdaW","10129480idKmWK","getDimensionForVersion","getDataMask","get","copyBit","464292OlQpku","bitMatrix","buildFunctionPattern","1454235BgZpnA","getVersionForNumber","readVersion","getTotalCodewords","getWidth","390211jhsSUu","63khheBj","decodeFormatInformation","values","75987wynAkw","154040osryUg"];return(Wo=function(){return t})()}!function(){const t=Eo,e=Wo();for(;;)try{if(267525===-parseInt(t(136))/1+parseInt(t(148))/2*(parseInt(t(140))/3)+-parseInt(t(155))/4+-parseInt(t(131))/5*(parseInt(t(149))/6)+parseInt(t(137))/7*(-parseInt(t(141))/8)+-parseInt(t(161))/9+parseInt(t(156))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Ro{constructor(t){const e=Eo,n=t[e(144)]();if(n<21||1!=(3&n))throw new vs;this[e(162)]=t}[To(143)](){const t=To;if(null!==this[t(151)]&&void 0!==this[t(151)])return this.parsedFormatInfo;let e=0;for(let n=0;n<6;n++)e=this[t(160)](n,8,e);e=this[t(160)](7,8,e),e=this[t(160)](8,8,e),e=this[t(160)](8,7,e);for(let n=5;n>=0;n--)e=this[t(160)](8,n,e);const n=this[t(162)].getHeight();let r=0;const s=n-7;for(let e=n-1;e>=s;e--)r=this[t(160)](8,e,r);for(let e=n-8;e<n;e++)r=this[t(160)](e,8,r);if(this[t(151)]=Io[t(138)](e,r),null!==this.parsedFormatInfo)return this.parsedFormatInfo;throw new vs}[To(133)](){const t=To;if(null!==this[t(152)]&&void 0!==this[t(152)])return this[t(152)];const e=this[t(162)][t(144)](),n=Math[t(147)]((e-17)/4);if(n<=6)return Mo[t(132)](n);let r=0;const s=e-11;for(let t=5;t>=0;t--)for(let n=e-9;n>=s;n--)r=this.copyBit(n,t,r);let i=Mo.decodeVersionInformation(r);if(null!==i&&i[t(157)]()===e)return this.parsedVersion=i,i;r=0;for(let t=5;t>=0;t--)for(let n=e-9;n>=s;n--)r=this.copyBit(t,n,r);if(i=Mo.decodeVersionInformation(r),null!==i&&i.getDimensionForVersion()===e)return this[t(152)]=i,i;throw new vs}[To(160)](t,e,n){const r=To;return(this[r(154)]?this.bitMatrix[r(159)](e,t):this[r(162)][r(159)](t,e))?n<<1|1:n<<1}readCodewords(){const t=To,e=this[t(143)](),n=this[t(133)](),r=to.values.get(e[t(158)]()),s=this.bitMatrix[t(144)]();r?.[t(150)](this[t(162)],s);const i=n[t(163)]();let o=!0;const a=new Uint8Array(n.getTotalCodewords());let c=0,h=0,u=0;for(let e=s-1;e>0;e-=2){6===e&&e--;for(let n=0;n<s;n++){const r=o?s-1-n:n;for(let n=0;n<2;n++)!i[t(159)](e-n,r)&&(u++,h<<=1,this[t(162)].get(e-n,r)&&(h|=1),8===u&&(a[c++]=h,u=0,h=0))}o=!o}if(c!==n[t(134)]())throw new vs;return a}[To(142)](){const t=To;if(null===this[t(151)])return;const e=this[t(151)]&&to[t(139)][t(159)](this[t(151)][t(158)]()),n=this[t(162)][t(144)]();e?.[t(150)](this[t(162)],n)}[To(153)](t){const e=To;this[e(152)]=null,this[e(151)]=null,this[e(154)]=t}[To(145)](){const t=To,e=this[t(162)];for(let n=0,r=e[t(135)]();n<r;n++)for(let r=n+1,s=e[t(144)]();r<s;r++)e.get(n,r)!==e[t(159)](r,n)&&(e.flip(r,n),e[t(146)](n,r))}}const jo=Bo;function Bo(t,e){const n=No();return(Bo=function(t,e){return n[t-=188]})(t,e)}!function(){const t=Bo,e=No();for(;;)try{if(421026===-parseInt(t(205))/1*(parseInt(t(194))/2)+parseInt(t(206))/3*(-parseInt(t(198))/4)+parseInt(t(190))/5*(parseInt(t(191))/6)+parseInt(t(203))/7+parseInt(t(210))/8*(-parseInt(t(195))/9)+-parseInt(t(196))/10*(parseInt(t(188))/11)+parseInt(t(189))/12)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Vo{constructor(t,e){const n=Bo;this[n(197)]=t,this[n(200)]=e}static[jo(204)](t,e,n){const r=jo;if(t[r(201)]!==e[r(208)]())throw new rs;const s=e[r(193)](n);let i=0;const o=s[r(207)]();for(const t of o)i+=t.getCount();const a=new Array(i);let c=0;for(const t of o)for(let e=0;e<t[r(192)]();e++){const e=t[r(199)](),n=s[r(209)]()+e;a[c++]=new Vo(e,new Uint8Array(n))}const h=a[0][r(200)][r(201)];let u=a[r(201)]-1;for(;u>=0;){if(a[u][r(200)][r(201)]===h)break;u--}u++;const l=h-s[r(209)]();let p=0;for(let e=0;e<l;e++)for(let n=0;n<c;n++)a[n][r(200)][e]=t[p++];for(let e=u;e<c;e++)a[e][r(200)][l]=t[p++];const f=a[0][r(200)][r(201)];for(let e=l;e<f;e++)for(let n=0;n<c;n++){const r=n<u?e:e+1;a[n].codewords[r]=t[p++]}return a}getNumDataCodewords(){return this.numDataCodewords}[jo(202)](){return this[jo(200)]}}function No(){const t=["665YnJLHA","16674NUVDjO","getCount","getECBlocksForLevel","2swigZy","4393314GjMzos","10xHQgpg","numDataCodewords","4TGBand","getDataCodewords","codewords","length","getCodewords","1924664obslVu","getDataBlocks","332754dWSuBo","2314446lpShIW","getECBlocks","getTotalCodewords","getECCodewordsPerBlock","8pTwqpl","150733zNyvOz","16590624LfQCEz"];return(No=function(){return t})()}const Jo=Yo;function Yo(t,e){const n=xo();return(Yo=function(t,e){return n[t-=196]})(t,e)}function xo(){const t=["586600pIdxrG","38650IVlpPp","getByteOffset","412442NOnIXz","3rRkETU","readBits","4984704lQgzyB","6000KBHaCq","36qFcbfZ","3223528ibNKSy","available","45gQDEve","1668396ANZdch","bytes","getBitOffset","2qgvStr","byteOffset","12067FHRuWO","bitOffset"];return(xo=function(){return t})()}!function(){const t=Yo,e=xo();for(;;)try{if(378410===parseInt(t(207))/1*(parseInt(t(200))/2)+parseInt(t(208))/3*(-parseInt(t(197))/4)+-parseInt(t(205))/5*(-parseInt(t(212))/6)+parseInt(t(213))/7+-parseInt(t(204))/8*(parseInt(t(196))/9)+parseInt(t(211))/10*(parseInt(t(202))/11)+-parseInt(t(210))/12)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Do{constructor(t){const e=Yo;this.bytes=t,this[e(201)]=0,this[e(203)]=0}[Jo(199)](){return this.bitOffset}[Jo(206)](){return this[Jo(201)]}[Jo(209)](t){const e=Jo;if(t<1||t>32||t>this[e(214)]())throw new rs(""+t);let n=0,r=this[e(203)],s=this[e(201)];const i=this[e(198)];if(r>0){const e=8-r,o=t<e?t:e,a=e-o,c=255>>8-o<<a;n=(i[s]&c)>>a,t-=o,r+=o,8===r&&(r=0,s++)}if(t>0){for(;t>=8;)n=n<<8|255&i[s],s++,t-=8;if(t>0){const e=8-t,o=255>>e<<e;n=n<<t|(i[s]&o)>>e,r+=t}}return this[e(203)]=r,this[e(201)]=s,n}[Jo(214)](){const t=Jo;return 8*(this[t(198)].length-this[t(201)])-this[t(203)]}}function Xo(t,e){var n=Go();return(Xo=function(t,e){return n[t-=207]})(t,e)}var Po=Xo;!function(){for(var t=Xo,e=Go();;)try{if(279864===-parseInt(t(216))/1*(-parseInt(t(213))/2)+parseInt(t(215))/3+parseInt(t(231))/4+-parseInt(t(209))/5+parseInt(t(221))/6*(-parseInt(t(237))/7)+-parseInt(t(208))/8*(-parseInt(t(225))/9)+-parseInt(t(234))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Uo{constructor(t,e,n,r,s=-1,i=-1){var o=Xo;this[o(210)]=t,this.text=e,this[o(233)]=n,this[o(207)]=r,this.structuredAppendSequenceNumber=s,this[o(235)]=i,this[o(218)]=null==t?0:8*t.length}[Po(212)](){return this[Po(210)]}[Po(223)](){return this[Po(218)]}[Po(229)](t){this[Po(218)]=t}[Po(219)](){return this.text}[Po(232)](){return this.byteSegments}getECLevel(){return this[Po(207)]}[Po(217)](){return this.errorsCorrected}[Po(220)](t){this[Po(236)]=t}[Po(226)](){return this[Po(214)]}[Po(224)](t){this[Po(214)]=t}[Po(222)](){return this[Po(230)]}[Po(227)](t){this[Po(230)]=t}[Po(228)](){return this[Po(235)]>=0&&this.structuredAppendSequenceNumber>=0}[Po(211)](){return this[Po(235)]}getStructuredAppendSequenceNumber(){return this.structuredAppendSequenceNumber}}function Go(){var t=["688412JnqMvE","erasures","350463qpAyCf","1slldgY","getErrorsCorrected","numBits","getText","setErrorsCorrected","3164910DmqgJv","getOther","getNumBits","setErasures","1629wtGPOr","getErasures","setOther","hasStructuredAppend","setNumBits","other","99912mkJFil","getByteSegments","byteSegments","185850CZyXKb","structuredAppendParity","errorsCorrected","7eYvGmJ","ecLevel","20120CZBYEe","576430ijSzQd","rawBytes","getStructuredAppendParity","getRawBytes"];return(Go=function(){return t})()}const Fo=Lo;function Lo(t,e){const n=zo();return(Lo=function(t,e){return n[t-=287]})(t,e)}var qo;function zo(){const t=["9qIWhsB","FOR_VALUE","set","value","characterCountBitsForVersions","KANJI","HANZI","ALPHANUMERIC","FOR_BITS","4QBWqxY","FNC1_FIRST_POSITION","STRUCTURED_APPEND","14370910fBSSIy","NUMERIC","1191QQfVse","getVersionNumber","get","equals","BYTE","7vtcVgz","forBits","toString","from","12032296tyasQr","8644242LTMrmr","ECI","stringValue","FNC1_SECOND_POSITION","1807657xQIGHf","getCharacterCountBits","5646990iEjdPC","getBits","4819640sExBlN","TERMINATOR"];return(zo=function(){return t})()}!function(){const t=Lo,e=zo();for(;;)try{if(972976===parseInt(t(318))/1+parseInt(t(299))/2*(-parseInt(t(304))/3)+-parseInt(t(288))/4+-parseInt(t(320))/5+-parseInt(t(314))/6+-parseInt(t(309))/7*(-parseInt(t(313))/8)+parseInt(t(290))/9*(parseInt(t(302))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),function(t){const e=Lo;t[t[e(289)]=0]=e(289),t[t[e(303)]=1]=e(303),t[t[e(297)]=2]=e(297),t[t[e(301)]=3]="STRUCTURED_APPEND",t[t[e(308)]=4]=e(308),t[t[e(315)]=5]=e(315),t[t.KANJI=6]=e(295),t[t.FNC1_FIRST_POSITION=7]=e(300),t[t.FNC1_SECOND_POSITION=8]="FNC1_SECOND_POSITION",t[t[e(296)]=9]=e(296)}(qo||(qo={}));class Ho{constructor(t,e,n,r){const s=Lo;this[s(293)]=t,this[s(316)]=e,this[s(294)]=n,this.bits=r,Ho[s(298)][s(292)](r,this),Ho.FOR_VALUE[s(292)](t,this)}static[Fo(310)](t){const e=Fo,n=Ho[e(298)][e(306)](t);if(void 0===n)throw new rs;return n}[Fo(319)](t){const e=Fo,n=t[e(305)]();let r;return r=n<=9?0:n<=26?1:2,this[e(294)][r]}getValue(){return this.value}[Fo(287)](){return this.bits}[Fo(307)](t){const e=Fo;if(!(t instanceof Ho))return!1;const n=t;return this[e(293)]===n[e(293)]}[Fo(311)](){return this[Fo(316)]}}Ho[Fo(298)]=new Map,Ho[Fo(291)]=new Map,Ho[Fo(289)]=new Ho(qo[Fo(289)],Fo(289),Int32Array[Fo(312)]([0,0,0]),0),Ho[Fo(303)]=new Ho(qo[Fo(303)],Fo(303),Int32Array[Fo(312)]([10,12,14]),1),Ho[Fo(297)]=new Ho(qo[Fo(297)],Fo(297),Int32Array[Fo(312)]([9,11,13]),2),Ho[Fo(301)]=new Ho(qo.STRUCTURED_APPEND,Fo(301),Int32Array[Fo(312)]([0,0,0]),3),Ho[Fo(308)]=new Ho(qo[Fo(308)],Fo(308),Int32Array[Fo(312)]([8,16,16]),4),Ho[Fo(315)]=new Ho(qo.ECI,"ECI",Int32Array[Fo(312)]([0,0,0]),7),Ho[Fo(295)]=new Ho(qo[Fo(295)],Fo(295),Int32Array[Fo(312)]([8,10,12]),8),Ho[Fo(300)]=new Ho(qo[Fo(300)],Fo(300),Int32Array[Fo(312)]([0,0,0]),5),Ho[Fo(317)]=new Ho(qo[Fo(317)],Fo(317),Int32Array[Fo(312)]([0,0,0]),9),Ho[Fo(296)]=new Ho(qo[Fo(296)],Fo(296),Int32Array.from([8,10,12]),13);const Ko=Qo;function Qo(t,e){const n=$o();return(Qo=function(t,e){return n[t-=309]})(t,e)}!function(){const t=Qo,e=$o();for(;;)try{if(182196===-parseInt(t(310))/1*(parseInt(t(334))/2)+-parseInt(t(326))/3*(-parseInt(t(339))/4)+-parseInt(t(331))/5*(-parseInt(t(347))/6)+parseInt(t(354))/7*(-parseInt(t(320))/8)+parseInt(t(350))/9*(parseInt(t(351))/10)+-parseInt(t(341))/11*(parseInt(t(319))/12)+-parseInt(t(343))/13)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class _o{static[Ko(335)](t,e,n,r){const s=Ko,i=new Do(t);let o=new Ks;const a=new Array;let c=-1,h=-1;try{let t,n=null,u=!1;do{if(i.available()<4)t=Ho[s(328)];else{const e=i[s(348)](4);t=Ho.forBits(e)}switch(t){case Ho[s(328)]:break;case Ho[s(314)]:case Ho[s(321)]:u=!0;break;case Ho[s(352)]:if(i[s(330)]()<16)throw new vs;c=i[s(348)](8),h=i[s(348)](8);break;case Ho.ECI:const l=_o[s(336)](i);if(n=Bs[s(353)](l),null===n)throw new vs;break;case Ho[s(329)]:const p=i[s(348)](4),f=i.readBits(t[s(349)](e));p===_o[s(332)]&&_o.decodeHanziSegment(i,o,f);break;default:const d=i[s(348)](t[s(349)](e));switch(t){case Ho.NUMERIC:_o[s(315)](i,o,d);break;case Ho[s(324)]:_o[s(340)](i,o,d,u);break;case Ho[s(318)]:_o[s(344)](i,o,d,n,a,r);break;case Ho[s(338)]:_o[s(317)](i,o,d);break;default:throw new vs}}}while(t!==Ho[s(328)])}catch(t){throw new vs}return new Uo(t,o[s(312)](),0===a[s(313)]?null:a,null===n?null:n.toString(),c,h)}static[Ko(309)](t,e,n){const r=Ko;if(13*n>t[r(330)]())throw new vs;const s=new Uint8Array(2*n);let i=0;for(;n>0;){const e=t[r(348)](13);let o=e/96<<8&4294967295|e%96;o+=o<959?41377:42657,s[i]=o>>8&255,s[i+1]=255&o,i+=2,n--}try{e[r(311)](Ps[r(335)](s,Ls[r(333)]))}catch(t){throw new vs(t)}}static decodeKanjiSegment(t,e,n){const r=Ko;if(13*n>t.available())throw new vs;const s=new Uint8Array(2*n);let i=0;for(;n>0;){const e=t[r(348)](13);let o=e/192<<8&4294967295|e%192;o+=o<7936?33088:49472,s[i]=o>>8,s[i+1]=o,i+=2,n--}try{e.append(Ps[r(335)](s,Ls[r(323)]))}catch(t){throw new vs(t)}}static[Ko(344)](t,e,n,r,s,i){const o=Ko;if(8*n>t[o(330)]())throw new vs;const a=new Uint8Array(n);for(let e=0;e<n;e++)a[e]=t[o(348)](8);let c;c=null===r?Ls.guessEncoding(a,i):r[o(316)]();try{e[o(311)](Ps[o(335)](a,c))}catch(t){throw new vs(t)}s[o(327)](a)}static[Ko(325)](t){if(t>=_o[Ko(345)].length)throw new vs;return _o.ALPHANUMERIC_CHARS[t]}static[Ko(340)](t,e,n,r){const s=Ko,i=e[s(313)]();for(;n>1;){if(t[s(330)]()<11)throw new vs;const r=t[s(348)](11);e[s(311)](_o[s(325)](Math[s(337)](r/45))),e[s(311)](_o.toAlphaNumericChar(r%45)),n-=2}if(1===n){if(t[s(330)]()<6)throw new vs;e[s(311)](_o[s(325)](t[s(348)](6)))}if(r)for(let t=i;t<e.length();t++)"%"===e[s(342)](t)&&(t<e.length()-1&&"%"===e.charAt(t+1)?e.deleteCharAt(t+1):e[s(346)](t,String.fromCharCode(29)))}static[Ko(315)](t,e,n){const r=Ko;for(;n>=3;){if(t[r(330)]()<10)throw new vs;const s=t.readBits(10);if(s>=1e3)throw new vs;e[r(311)](_o.toAlphaNumericChar(Math[r(337)](s/100))),e[r(311)](_o[r(325)](Math[r(337)](s/10)%10)),e[r(311)](_o.toAlphaNumericChar(s%10)),n-=3}if(2===n){if(t[r(330)]()<7)throw new vs;const n=t[r(348)](7);if(n>=100)throw new vs;e[r(311)](_o[r(325)](Math[r(337)](n/10))),e[r(311)](_o[r(325)](n%10))}else if(1===n){if(t[r(330)]()<4)throw new vs;const n=t.readBits(4);if(n>=10)throw new vs;e.append(_o.toAlphaNumericChar(n))}}static[Ko(336)](t){const e=Ko,n=t.readBits(8);if(!(128&n))return 127&n;if(128==(192&n)){return(63&n)<<8&4294967295|t[e(348)](8)}if(192==(224&n)){return(31&n)<<16&4294967295|t.readBits(16)}throw new vs}}function $o(){const t=["decodeKanjiSegment","BYTE","384CrjRnE","31072MJXmNG","FNC1_SECOND_POSITION","0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ $%*+-./:","SHIFT_JIS","ALPHANUMERIC","toAlphaNumericChar","129imkyOn","push","TERMINATOR","HANZI","available","5fMsCGN","GB2312_SUBSET","GB2312","363224ZVBfZb","decode","parseECIValue","floor","KANJI","7812pvxVdR","decodeAlphanumericSegment","3289VGqRID","charAt","710619VdiuLz","decodeByteSegment","ALPHANUMERIC_CHARS","setCharAt","2145450dcPAIU","readBits","getCharacterCountBits","1862433JByJhr","10pluXTp","STRUCTURED_APPEND","getCharacterSetECIByValue","70nRWUHG","decodeHanziSegment","2TqVpEG","append","toString","length","FNC1_FIRST_POSITION","decodeNumericSegment","getName"];return($o=function(){return t})()}_o.ALPHANUMERIC_CHARS=Ko(322),_o[Ko(332)]=1;const ta=ea;function ea(t,e){const n=na();return(ea=function(t,e){return n[t-=224]})(t,e)}function na(){const t=["mirrored","1360640LKEwNz","isMirrored","99916mUFaDC","2680686pPEATU","415502EbdONb","771622rURtMn","58173VXxqog","5995374JZtVDQ"];return(na=function(){return t})()}!function(){const t=ea,e=na();for(;;)try{if(235410===-parseInt(t(228))/1+-parseInt(t(229))/2+-parseInt(t(230))/3+parseInt(t(226))/4+-parseInt(t(224))/5+parseInt(t(227))/6+parseInt(t(231))/7)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class ra{constructor(t){this[ea(232)]=t}[ta(225)](){return this.mirrored}applyMirroredCorrection(t){if(!this.mirrored||null===t||t.length<3)return;const e=t[0];t[0]=t[2],t[2]=e}}const sa=ia;function ia(t,e){const n=oa();return(ia=function(t,e){return n[t-=310]})(t,e)}function oa(){const t=["935192fGCmhz","readCodewords","999267NLIBlz","21suZPIE","length","decodeBitMatrixParser","mirror","rsDecoder","correctErrors","207525JbBJjO","413120EIIccQ","getCodewords","208536UryfNK","11573433pnrILR","getDataBlocks","setMirror","decode","parseFromBooleanArray","40WRJQcW","184948Lgshze","getErrorCorrectionLevel","readFormatInformation","decodeBooleanArray","decodeBitMatrix","setOther"];return(oa=function(){return t})()}!function(){const t=ia,e=oa();for(;;)try{if(196534===-parseInt(t(316))/1+parseInt(t(317))/2+-parseInt(t(334))/3+parseInt(t(326))/4*(-parseInt(t(325))/5)+-parseInt(t(319))/6+-parseInt(t(310))/7*(parseInt(t(332))/8)+parseInt(t(320))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class aa{constructor(){this[ia(314)]=new Ki(Ji.QR_CODE_FIELD_256)}[sa(329)](t,e){const n=sa;return this[n(330)](ci[n(324)](t),e)}[sa(330)](t,e){const n=sa,r=new Ro(t);let s=null;try{return this.decodeBitMatrixParser(r,e)}catch(t){s=t}try{r.remask(),r[n(322)](!0),r.readVersion(),r.readFormatInformation(),r[n(313)]();const t=this[n(312)](r,e);return t[n(331)](new ra(!0)),t}catch(t){if(null!==s)throw s;throw t}}decodeBitMatrixParser(t,e){const n=sa,r=t.readVersion(),s=t[n(328)]()[n(327)](),i=t[n(333)](),o=Vo[n(321)](i,r,s);let a=0;for(const t of o)a+=t.getNumDataCodewords();const c=new Uint8Array(a);let h=0;for(const t of o){const e=t[n(318)](),r=t.getNumDataCodewords();this[n(315)](e,r);for(let t=0;t<r;t++)c[h++]=e[t]}return _o[n(323)](c,r,s,e)}[sa(315)](t,e){const n=sa,r=new Int32Array(t);try{this[n(314)].decode(r,t[n(311)]-e)}catch(t){throw new ki}for(let n=0;n<e;n++)t[n]=r[n]}}function ca(t,e){const n=ha();return(ca=function(t,e){return n[t-=400]})(t,e)}function ha(){const t=["MIN_SAFE_INTEGER","1094095BklXif","197235CvkIXE","769237iGMKmD","1654098RfBQMi","12zEaLoZ","2HLLuxv","12022582PIdKrU","938142XXPxya","sqrt","8069550kaNWMo","length","MAX_SAFE_INTEGER","sum","48Ctdrvj","40QlaGPS","distance","round","16HAluHj"];return(ha=function(){return t})()}const ua=ca;!function(){const t=ca,e=ha();for(;;)try{if(828244===-parseInt(t(416))/1*(-parseInt(t(402))/2)+-parseInt(t(417))/3*(parseInt(t(414))/4)+-parseInt(t(406))/5+parseInt(t(400))/6+parseInt(t(418))/7*(parseInt(t(410))/8)+parseInt(t(404))/9*(-parseInt(t(411))/10)+parseInt(t(403))/11*(parseInt(t(401))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class la{constructor(){}static[ua(413)](t){const e=ua;return isNaN(t)?0:t<=Number[e(415)]?Number[e(415)]:t>=Number[e(408)]?Number[e(408)]:t+(t<0?-.5:.5)|0}static[ua(412)](t,e,n,r){const s=t-n,i=e-r;return Math[ua(405)](s*s+i*i)}static[ua(409)](t){let e=0;for(let n=0,r=t[ua(407)];n!==r;n++){e+=t[n]}return e}}var pa=da;function fa(){var t=["points","986406XuNyGS","7953824upyjoG","222bPWUfz","2167254dzOYfD","4163CHmspD","2019985HXoGTq","getPoints","bits","5036451GZXvCR","getBits","996240GtggyI"];return(fa=function(){return t})()}function da(t,e){var n=fa();return(da=function(t,e){return n[t-=208]})(t,e)}!function(){for(var t=da,e=fa();;)try{if(406680===parseInt(t(217))/1*(-parseInt(t(215))/2)+-parseInt(t(213))/3+parseInt(t(211))/4+-parseInt(t(218))/5+-parseInt(t(216))/6+parseInt(t(209))/7+parseInt(t(214))/8)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Ia{constructor(t,e){var n=da;this[n(208)]=t,this[n(212)]=e}[pa(210)](){return this[pa(208)]}[pa(219)](){return this[pa(212)]}}function ma(t,e){const n=wa();return(ma=function(t,e){return n[t-=442]})(t,e)}!function(){const t=ma,e=wa();for(;;)try{if(496084===-parseInt(t(454))/1+parseInt(t(452))/2*(parseInt(t(442))/3)+-parseInt(t(447))/4*(parseInt(t(445))/5)+parseInt(t(444))/6*(parseInt(t(455))/7)+parseInt(t(446))/8+-parseInt(t(443))/9+-parseInt(t(453))/10*(-parseInt(t(450))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class ga{static checkAndNudgePoints(t,e){const n=ma,r=t[n(451)](),s=t.getHeight();let i=!0;for(let t=0;t<e[n(449)]&&i;t+=2){const o=Math.floor(e[t]),a=Math[n(448)](e[t+1]);if(o<-1||o>r||a<-1||a>s)throw new zr;i=!1,-1===o?(e[t]=0,i=!0):o===r&&(e[t]=r-1,i=!0),-1===a?(e[t+1]=0,i=!0):a===s&&(e[t+1]=s-1,i=!0)}i=!0;for(let t=e[n(449)]-2;t>=0&&i;t-=2){const o=Math[n(448)](e[t]),a=Math[n(448)](e[t+1]);if(o<-1||o>r||a<-1||a>s)throw new zr;i=!1,-1===o?(e[t]=0,i=!0):o===r&&(e[t]=r-1,i=!0),-1===a?(e[t+1]=0,i=!0):a===s&&(e[t+1]=s-1,i=!0)}}}function wa(){const t=["3xnrEkO","4274019pHpqRX","132VOcjze","5FFvkpj","2891112soTeWz","3697156wkinVY","floor","length","22412753ITgSlZ","getWidth","27942JjsVXA","10ZHAfnH","732713gkdVsd","68439IbTnNl"];return(wa=function(){return t})()}const ya=ba;function ba(t,e){const n=ka();return(ba=function(t,e){return n[t-=359]})(t,e)}function ka(){const t=["a22","a32","2979370nsXjEi","a31","2658667dmmFpY","a13","1166376KdeJfg","quadrilateralToQuadrilateral","9zOabde","squareToQuadrilateral","217206vkFnEC","422nwdYsT","quadrilateralToSquare","a11","a12","270102KMYVLf","1791mAtEUQ","a21","a23","30VPiDbE","times","length","buildAdjoint","transformPoints","a33","transformPointsWithValues","16eLwvka","648438OSnqmS"];return(ka=function(){return t})()}!function(){const t=ba,e=ka();for(;;)try{if(215216===parseInt(t(376))/1*(parseInt(t(371))/2)+parseInt(t(370))/3*(parseInt(t(386))/4)+-parseInt(t(379))/5*(parseInt(t(375))/6)+-parseInt(t(359))/7+-parseInt(t(366))/8+parseInt(t(368))/9*(parseInt(t(362))/10)+-parseInt(t(364))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Aa{constructor(t,e,n,r,s,i,o,a,c){const h=ba;this.a11=t,this[h(377)]=e,this[h(363)]=n,this[h(374)]=r,this[h(360)]=s,this[h(361)]=i,this[h(365)]=o,this[h(378)]=a,this[h(384)]=c}static[ya(367)](t,e,n,r,s,i,o,a,c,h,u,l,p,f,d,I){const m=ya,g=Aa.quadrilateralToSquare(t,e,n,r,s,i,o,a);return Aa[m(369)](c,h,u,l,p,f,d,I)[m(380)](g)}[ya(383)](t){const e=ya,n=t.length,r=this[e(373)],s=this.a12,i=this[e(365)],o=this[e(377)],a=this[e(360)],c=this[e(378)],h=this[e(363)],u=this.a32,l=this[e(384)];for(let e=0;e<n;e+=2){const n=t[e],p=t[e+1],f=i*n+c*p+l;t[e]=(r*n+o*p+h)/f,t[e+1]=(s*n+a*p+u)/f}}[ya(385)](t,e){const n=ya,r=this.a11,s=this.a12,i=this[n(365)],o=this[n(377)],a=this.a22,c=this[n(378)],h=this[n(363)],u=this[n(361)],l=this[n(384)],p=t[n(381)];for(let n=0;n<p;n++){const p=t[n],f=e[n],d=i*p+c*f+l;t[n]=(r*p+o*f+h)/d,e[n]=(s*p+a*f+u)/d}}static[ya(369)](t,e,n,r,s,i,o,a){const c=t-n+s-o,h=e-r+i-a;if(0===c&&0===h)return new Aa(n-t,s-n,t,r-e,i-r,e,0,0,1);{const u=n-s,l=o-s,p=r-i,f=a-i,d=u*f-l*p,I=(c*f-l*h)/d,m=(u*h-c*p)/d;return new Aa(n-t+I*n,o-t+m*o,t,r-e+I*r,a-e+m*a,e,I,m,1)}}static[ya(372)](t,e,n,r,s,i,o,a){return Aa[ya(369)](t,e,n,r,s,i,o,a).buildAdjoint()}[ya(382)](){const t=ya;return new Aa(this.a22*this[t(384)]-this[t(378)]*this[t(361)],this.a23*this[t(363)]-this[t(377)]*this[t(384)],this.a21*this[t(361)]-this[t(360)]*this.a31,this.a13*this[t(361)]-this[t(374)]*this[t(384)],this[t(373)]*this.a33-this[t(365)]*this[t(363)],this[t(374)]*this[t(363)]-this[t(373)]*this[t(361)],this[t(374)]*this[t(378)]-this[t(365)]*this[t(360)],this[t(365)]*this[t(377)]-this[t(373)]*this[t(378)],this[t(373)]*this[t(360)]-this[t(374)]*this[t(377)])}[ya(380)](t){const e=ya;return new Aa(this[e(373)]*t[e(373)]+this[e(377)]*t[e(374)]+this[e(363)]*t[e(365)],this[e(373)]*t.a21+this[e(377)]*t.a22+this[e(363)]*t[e(378)],this[e(373)]*t[e(363)]+this[e(377)]*t[e(361)]+this[e(363)]*t[e(384)],this[e(374)]*t.a11+this.a22*t.a12+this.a32*t.a13,this[e(374)]*t[e(377)]+this[e(360)]*t[e(360)]+this[e(361)]*t[e(378)],this[e(374)]*t[e(363)]+this[e(360)]*t[e(361)]+this[e(361)]*t[e(384)],this.a13*t.a11+this[e(378)]*t[e(374)]+this.a33*t[e(365)],this[e(365)]*t[e(377)]+this[e(378)]*t[e(360)]+this[e(384)]*t[e(378)],this[e(365)]*t[e(363)]+this[e(378)]*t[e(361)]+this[e(384)]*t[e(384)])}}const Sa=Oa;function Ca(){const t=["transformPoints","1469594hVhOaK","sampleGridWithTransform","quadrilateralToQuadrilateral","519693aGfubu","9300zRUNmB","233849nlxpHu","276JAOGvJ","2002068fawFba","checkAndNudgePoints","sampleGrid","get","1286272JQHPLE","95736eRGWMV","2dWDjoO","floor"];return(Ca=function(){return t})()}function Oa(t,e){const n=Ca();return(Oa=function(t,e){return n[t-=372]})(t,e)}!function(){const t=Oa,e=Ca();for(;;)try{if(121528===parseInt(t(380))/1+parseInt(t(372))/2*(-parseInt(t(378))/3)+-parseInt(t(381))/4*(parseInt(t(379))/5)+parseInt(t(387))/6+-parseInt(t(375))/7+parseInt(t(386))/8+parseInt(t(382))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Za extends ga{[Sa(384)](t,e,n,r,s,i,o,a,c,h,u,l,p,f,d,I,m,g,w){const y=Sa,b=Aa[y(377)](r,s,i,o,a,c,h,u,l,p,f,d,I,m,g,w);return this[y(376)](t,e,n,b)}[Sa(376)](t,e,n,r){const s=Sa;if(e<=0||n<=0)throw new zr;const i=new ci(e,n),o=new Float32Array(2*e);for(let e=0;e<n;e++){const n=o.length,a=e+.5;for(let t=0;t<n;t+=2)o[t]=t/2+.5,o[t+1]=a;r[s(374)](o),ga[s(383)](t,o);try{for(let r=0;r<n;r+=2)t[s(385)](Math.floor(o[r]),Math[s(373)](o[r+1]))&&i.set(r/2,e)}catch(t){throw new zr}}return i}}var va=Ea;function Ma(){var t=["414468AdVTBn","gridSampler","12UCILjb","10254024IAmLZv","6703980nNQTNN","1017ExBEnn","setGridSampler","7946cYkaJw","5025517dWmUxX","getInstance","5973576SQpKNd","1510266xMEHrk"];return(Ma=function(){return t})()}!function(){for(var t=Ea,e=Ma();;)try{if(772397===parseInt(t(175))/1+parseInt(t(171))/2*(parseInt(t(169))/3)+-parseInt(t(164))/4+parseInt(t(168))/5+-parseInt(t(166))/6*(parseInt(t(172))/7)+-parseInt(t(174))/8+-parseInt(t(167))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Ta{static[va(170)](t){Ta.gridSampler=t}static[va(173)](){return Ta[va(165)]}}function Ea(t,e){var n=Ma();return(Ea=function(t,e){return n[t-=164]})(t,e)}function Wa(){var t=["MAX_SAFE_INTEGER","1113414ErwCrP","4119192GneGmm","2477421HiPLVE","3986529haxixn","6663118dQOtbH","4aKVkbm","13197400bKhfDM","floatToIntBits","188KwYRss","5SDryjo","MAX_VALUE","40EIQqzl","8764dZLvxf"];return(Wa=function(){return t})()}Ta[va(165)]=new Za;var Ra=ja;function ja(t,e){var n=Wa();return(ja=function(t,e){return n[t-=173]})(t,e)}!function(){for(var t=ja,e=Wa();;)try{if(829501===parseInt(t(180))/1*(parseInt(t(184))/2)+parseInt(t(175))/3*(parseInt(t(177))/4)+parseInt(t(181))/5*(-parseInt(t(186))/6)+-parseInt(t(173))/7+parseInt(t(183))/8*(parseInt(t(174))/9)+-parseInt(t(178))/10+-parseInt(t(176))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Ba{static[Ra(179)](t){return t}}function Va(t,e){const n=Na();return(Va=function(t,e){return n[t-=460]})(t,e)}function Na(){const t=["5667zFBEZK","distance","29120ZhOUCJ","crossProductZ","10017XossgW","3984216dggTps","15mcFYQk","1285026VjvLow","9310770WWpTYF","toString","floatToIntBits","equals","731329NZtBuR","hashCode","24680wrqZgl","250Ufqjoh"];return(Na=function(){return t})()}Ba[Ra(182)]=Number[Ra(185)];const Ja=Va;!function(){const t=Va,e=Na();for(;;)try{if(778718===parseInt(t(468))/1+-parseInt(t(471))/2*(parseInt(t(472))/3)+parseInt(t(474))/4+-parseInt(t(462))/5*(parseInt(t(463))/6)+-parseInt(t(464))/7+-parseInt(t(461))/8+parseInt(t(460))/9*(parseInt(t(470))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Ya{constructor(t,e){this.x=t,this.y=e}getX(){return this.x}getY(){return this.y}[Ja(467)](t){if(t instanceof Ya){const e=t;return this.x===e.x&&this.y===e.y}return!1}[Ja(469)](){const t=Ja;return 31*Ba[t(466)](this.x)+Ba[t(466)](this.y)}[Ja(465)](){return"("+this.x+","+this.y+")"}static orderBestPatterns(t){const e=Ja,n=this[e(473)](t[0],t[1]),r=this[e(473)](t[1],t[2]),s=this[e(473)](t[0],t[2]);let i,o,a;if(r>=n&&r>=s?(o=t[0],i=t[1],a=t[2]):s>=r&&s>=n?(o=t[1],i=t[0],a=t[2]):(o=t[2],i=t[0],a=t[1]),this[e(475)](i,o,a)<0){const t=i;i=a,a=t}t[0]=i,t[1]=o,t[2]=a}static distance(t,e){return la.distance(t.x,t.y,e.x,e.y)}static crossProductZ(t,e,n){const r=e.x,s=e.y;return(n.x-r)*(t.y-s)-(n.y-s)*(t.x-r)}}const xa=Da;function Da(t,e){const n=Pa();return(Da=function(t,e){return n[t-=172]})(t,e)}!function(){const t=Da,e=Pa();for(;;)try{if(631130===-parseInt(t(176))/1*(-parseInt(t(186))/2)+-parseInt(t(187))/3*(-parseInt(t(185))/4)+parseInt(t(177))/5+parseInt(t(172))/6*(-parseInt(t(183))/7)+-parseInt(t(178))/8*(-parseInt(t(180))/9)+parseInt(t(188))/10+-parseInt(t(181))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Xa extends Ya{constructor(t,e,n){super(t,e),this.estimatedModuleSize=n}[xa(175)](t,e,n){const r=xa;if(Math[r(179)](e-this[r(182)]())<=t&&Math[r(179)](n-this[r(173)]())<=t){const e=Math[r(179)](t-this[r(184)]);return e<=1||e<=this[r(184)]}return!1}[xa(174)](t,e,n){const r=xa,s=(this[r(173)]()+e)/2,i=(this[r(182)]()+t)/2,o=(this.estimatedModuleSize+n)/2;return new Xa(s,i,o)}}function Pa(){const t=["126JpoRJg","getX","combineEstimate","aboutEquals","3174GjvqZN","3722215VteyjQ","297224jtMKVD","abs","9tSPrfi","9618048bgzCEy","getY","111454DOsUrm","estimatedModuleSize","56228hzLaQj","110TTEtpa","39bRjfTJ","7009530MJmEwf"];return(Pa=function(){return t})()}function Ua(t,e){const n=Fa();return(Ua=function(t,e){return n[t-=415]})(t,e)}const Ga=Ua;function Fa(){const t=["get","width","getHeight","combineEstimate","image","handlePossibleCenter","resultPointCallback","startY","moduleSize","32syKuQY","length","crossCheckStateCount","111339TkeISP","894QbONxF","240sLXPoc","12943QhgiMJ","centerFromEnd","10ryGWLU","possibleCenters","60yodKDL","2917959mSXjlE","545652IgdLzg","foundPatternCross","startX","12886LigWkJ","15804FCPMSb","floor","981951kRkXeU","aboutEquals","abs"];return(Fa=function(){return t})()}!function(){const t=Ua,e=Fa();for(;;)try{if(265478===-parseInt(t(438))/1*(-parseInt(t(423))/2)+parseInt(t(441))/3+-parseInt(t(439))/4*(-parseInt(t(433))/5)+parseInt(t(427))/6*(parseInt(t(429))/7)+parseInt(t(428))/8*(-parseInt(t(426))/9)+parseInt(t(431))/10*(-parseInt(t(434))/11)+parseInt(t(435))/12)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class La{constructor(t,e,n,r,s,i,o){const a=Ua;this[a(418)]=t,this[a(437)]=e,this[a(421)]=n,this[a(415)]=r,this.height=s,this[a(422)]=i,this.resultPointCallback=o,this.possibleCenters=[],this[a(425)]=new Int32Array(3)}find(){const t=Ua,e=this[t(437)],n=this.height,r=e+this.width,s=this[t(421)]+n/2,i=new Int32Array(3),o=this[t(418)];for(let a=0;a<n;a++){const n=s+(1&a?-Math[t(440)]((a+1)/2):Math[t(440)]((a+1)/2));i[0]=0,i[1]=0,i[2]=0;let c=e;for(;c<r&&!o.get(c,n);)c++;let h=0;for(;c<r;){if(o[t(444)](c,n))if(1===h)i[1]++;else if(2===h){if(this[t(436)](i)){const t=this.handlePossibleCenter(i,n,c);if(null!==t)return t}i[0]=i[2],i[1]=1,i[2]=0,h=1}else i[++h]++;else 1===h&&h++,i[h]++;c++}if(this[t(436)](i)){const e=this[t(419)](i,n,r);if(null!==e)return e}}if(0!==this[t(432)][t(424)])return this[t(432)][0];throw new zr}static centerFromEnd(t,e){return e-t[2]-t[1]/2}[Ga(436)](t){const e=Ga,n=this[e(422)],r=n/2;for(let s=0;s<3;s++)if(Math[e(443)](n-t[s])>=r)return!1;return!0}crossCheckVertical(t,e,n,r){const s=Ga,i=this[s(418)],o=i[s(416)](),a=this.crossCheckStateCount;a[0]=0,a[1]=0,a[2]=0;let c=t;for(;c>=0&&i.get(e,c)&&a[1]<=n;)a[1]++,c--;if(c<0||a[1]>n)return NaN;for(;c>=0&&!i[s(444)](e,c)&&a[0]<=n;)a[0]++,c--;if(a[0]>n)return NaN;for(c=t+1;c<o&&i[s(444)](e,c)&&a[1]<=n;)a[1]++,c++;if(c===o||a[1]>n)return NaN;for(;c<o&&!i[s(444)](e,c)&&a[2]<=n;)a[2]++,c++;if(a[2]>n)return NaN;const h=a[0]+a[1]+a[2];return 5*Math.abs(h-r)>=2*r?NaN:this[s(436)](a)?La[s(430)](a,c):NaN}[Ga(419)](t,e,n){const r=Ga,s=t[0]+t[1]+t[2],i=La[r(430)](t,n),o=this.crossCheckVertical(e,i,2*t[1],s);if(!isNaN(o)){const e=(t[0]+t[1]+t[2])/3;for(const t of this[r(432)])if(t[r(442)](e,o,i))return t[r(417)](o,i,e);const n=new Xa(i,o,e);this[r(432)].push(n),null!==this.resultPointCallback&&void 0!==this.resultPointCallback&&this[r(420)].foundPossibleResultPoint(n)}return null}}function qa(){const t=["1905Ziitrq","3750264XPAcDc","combineEstimate","getEstimatedModuleSize","getY","getX","246xkTvvj","28357zknZmG","abs","19708iGootl","19023300HTEBAs","2154KkGsEF","11188uXpHKJ","12842658paVsAq","933831ZXOOmF","estimatedModuleSize","count"];return(qa=function(){return t})()}function za(t,e){const n=qa();return(za=function(t,e){return n[t-=338]})(t,e)}const Ha=za;!function(){const t=za,e=qa();for(;;)try{if(771522===-parseInt(t(344))/1+parseInt(t(339))/2*(-parseInt(t(353))/3)+parseInt(t(342))/4*(parseInt(t(347))/5)+parseInt(t(341))/6*(parseInt(t(354))/7)+parseInt(t(348))/8+parseInt(t(343))/9+-parseInt(t(340))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Ka extends Ya{constructor(t,e,n,r){const s=za;super(t,e),this[s(345)]=n,this[s(346)]=r,void 0===r&&(this[s(346)]=1)}[Ha(350)](){return this[Ha(345)]}getCount(){return this[Ha(346)]}aboutEquals(t,e,n){const r=Ha;if(Math[r(338)](e-this[r(351)]())<=t&&Math[r(338)](n-this[r(352)]())<=t){const e=Math[r(338)](t-this.estimatedModuleSize);return e<=1||e<=this[r(345)]}return!1}[Ha(349)](t,e,n){const r=Ha,s=this[r(346)]??0,i=s+1,o=(s*this[r(352)]()+e)/i,a=(s*this[r(351)]()+t)/i,c=(s*this[r(345)]+n)/i;return new Ka(o,a,c,i)}}var Qa=$a;function _a(){var t=["6148158qCZWYe","241534ibHExM","1801035Alwrqb","getBottomLeft","3988255BLCJOv","bottomLeft","4177873rcCZhF","getTopLeft","6yhzLec","topLeft","31098488lLwVzY","topRight","2777180lrozBx"];return(_a=function(){return t})()}function $a(t,e){var n=_a();return($a=function(t,e){return n[t-=234]})(t,e)}!function(){for(var t=$a,e=_a();;)try{if(649576===parseInt(t(237))/1*(-parseInt(t(243))/2)+parseInt(t(244))/3+-parseInt(t(241))/4+-parseInt(t(246))/5+-parseInt(t(242))/6+-parseInt(t(235))/7+parseInt(t(239))/8)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class tc{constructor(t){var e=$a;this[e(234)]=t[0],this[e(238)]=t[1],this[e(240)]=t[2]}[Qa(245)](){return this[Qa(234)]}[Qa(236)](){return this[Qa(238)]}getTopRight(){return this[Qa(240)]}}const ec=nc;function nc(t,e){const n=rc();return(nc=function(t,e){return n[t-=395]})(t,e)}function rc(){const t=["sort","handlePossibleCenter","sqrt","2aJNwnb","7669370kCWbHf","3575898kOmZPI","get","image","CENTER_QUORUM","splice","haveMultiplyConfirmedCenters","36XhMlSy","crossCheckVertical","findRowSkip","getCount","combineEstimate","1803718ftHCkD","possibleCenters","getCrossCheckStateCount","1236552IBSeLE","crossCheckDiagonal","crossCheckStateCount","aboutEquals","length","foundPatternCross","abs","getEstimatedModuleSize","max","getX","resultPointCallback","1229659BVLlAd","MIN_SKIP","foundPossibleResultPoint","getWidth","getY","getHeight","floor","crossCheckHorizontal","15fcptCS","hasSkipped","PURE_BARCODE","find","2547090YXkKHJ","orderBestPatterns","selectBestPatterns","1903664ItRiIV","centerFromEnd","MAX_MODULES"];return(rc=function(){return t})()}!function(){const t=nc,e=rc();for(;;)try{if(832718===-parseInt(t(402))/1*(-parseInt(t(423))/2)+parseInt(t(410))/3*(parseInt(t(439))/4)+parseInt(t(414))/5+parseInt(t(425))/6+parseInt(t(436))/7+-parseInt(t(417))/8+-parseInt(t(431))/9*(parseInt(t(424))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class sc{constructor(t,e){const n=nc;this[n(427)]=t,this.resultPointCallback=e,this[n(437)]=[],this[n(441)]=new Int32Array(5),this.resultPointCallback=e}getImage(){return this[nc(427)]}getPossibleCenters(){return this[nc(437)]}[ec(413)](t){const e=ec,n=null!=t&&void 0!==t[e(426)](Os.TRY_HARDER),r=null!=t&&void 0!==t[e(426)](Os[e(412)]),s=this.image,i=s[e(407)](),o=s[e(405)]();let a=Math.floor(3*i/(4*sc[e(419)]));(a<sc[e(403)]||n)&&(a=sc[e(403)]);let c=!1;const h=new Int32Array(5);for(let t=a-1;t<i&&!c;t+=a){h[0]=0,h[1]=0,h[2]=0,h[3]=0,h[4]=0;let n=0;for(let i=0;i<o;i++)if(s[e(426)](i,t))!(1&~n)&&n++,h[n]++;else if(1&n)h[n]++;else if(4===n)if(sc.foundPatternCross(h)){if(!0!==this[e(421)](h,t,i,r)){h[0]=h[2],h[1]=h[3],h[2]=h[4],h[3]=1,h[4]=0,n=3;continue}if(a=2,!0===this[e(411)])c=this.haveMultiplyConfirmedCenters();else{const n=this[e(433)]();n>h[2]&&(t+=n-h[2]-a,i=o-1)}n=0,h[0]=0,h[1]=0,h[2]=0,h[3]=0,h[4]=0}else h[0]=h[2],h[1]=h[3],h[2]=h[4],h[3]=1,h[4]=0,n=3;else h[++n]++;if(sc[e(396)](h)){!0===this.handlePossibleCenter(h,t,o,r)&&(a=h[0],this.hasSkipped&&(c=this[e(430)]()))}}const u=this[e(416)]();return Ya[e(415)](u),new tc(u)}static[ec(418)](t,e){return e-t[4]-t[3]-t[2]/2}static[ec(396)](t){const e=ec;let n=0;for(let e=0;e<5;e++){const r=t[e];if(0===r)return!1;n+=r}if(n<7)return!1;const r=n/7,s=r/2;return Math[e(397)](r-t[0])<s&&Math.abs(r-t[1])<s&&Math.abs(3*r-t[2])<3*s&&Math[e(397)](r-t[3])<s&&Math[e(397)](r-t[4])<s}[ec(438)](){const t=this[ec(441)];return t[0]=0,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t}crossCheckDiagonal(t,e,n,r){const s=ec,i=this[s(438)]();let o=0;const a=this.image;for(;t>=o&&e>=o&&a[s(426)](e-o,t-o);)i[2]++,o++;if(t<o||e<o)return!1;for(;t>=o&&e>=o&&!a[s(426)](e-o,t-o)&&i[1]<=n;)i[1]++,o++;if(t<o||e<o||i[1]>n)return!1;for(;t>=o&&e>=o&&a[s(426)](e-o,t-o)&&i[0]<=n;)i[0]++,o++;if(i[0]>n)return!1;const c=a[s(407)](),h=a[s(405)]();for(o=1;t+o<c&&e+o<h&&a[s(426)](e+o,t+o);)i[2]++,o++;if(t+o>=c||e+o>=h)return!1;for(;t+o<c&&e+o<h&&!a.get(e+o,t+o)&&i[3]<n;)i[3]++,o++;if(t+o>=c||e+o>=h||i[3]>=n)return!1;for(;t+o<c&&e+o<h&&a.get(e+o,t+o)&&i[4]<n;)i[4]++,o++;if(i[4]>=n)return!1;const u=i[0]+i[1]+i[2]+i[3]+i[4];return Math.abs(u-r)<2*r&&sc[s(396)](i)}[ec(432)](t,e,n,r){const s=ec,i=this[s(427)],o=i[s(407)](),a=this[s(438)]();let c=t;for(;c>=0&&i[s(426)](e,c);)a[2]++,c--;if(c<0)return NaN;for(;c>=0&&!i[s(426)](e,c)&&a[1]<=n;)a[1]++,c--;if(c<0||a[1]>n)return NaN;for(;c>=0&&i[s(426)](e,c)&&a[0]<=n;)a[0]++,c--;if(a[0]>n)return NaN;for(c=t+1;c<o&&i[s(426)](e,c);)a[2]++,c++;if(c===o)return NaN;for(;c<o&&!i[s(426)](e,c)&&a[3]<n;)a[3]++,c++;if(c===o||a[3]>=n)return NaN;for(;c<o&&i[s(426)](e,c)&&a[4]<n;)a[4]++,c++;if(a[4]>=n)return NaN;const h=a[0]+a[1]+a[2]+a[3]+a[4];return 5*Math[s(397)](h-r)>=2*r?NaN:sc[s(396)](a)?sc[s(418)](a,c):NaN}[ec(409)](t,e,n,r){const s=ec,i=this[s(427)],o=i[s(405)](),a=this[s(438)]();let c=t;for(;c>=0&&i[s(426)](c,e);)a[2]++,c--;if(c<0)return NaN;for(;c>=0&&!i[s(426)](c,e)&&a[1]<=n;)a[1]++,c--;if(c<0||a[1]>n)return NaN;for(;c>=0&&i.get(c,e)&&a[0]<=n;)a[0]++,c--;if(a[0]>n)return NaN;for(c=t+1;c<o&&i[s(426)](c,e);)a[2]++,c++;if(c===o)return NaN;for(;c<o&&!i[s(426)](c,e)&&a[3]<n;)a[3]++,c++;if(c===o||a[3]>=n)return NaN;for(;c<o&&i[s(426)](c,e)&&a[4]<n;)a[4]++,c++;if(a[4]>=n)return NaN;const h=a[0]+a[1]+a[2]+a[3]+a[4];return 5*Math[s(397)](h-r)>=r?NaN:sc[s(396)](a)?sc[s(418)](a,c):NaN}[ec(421)](t,e,n,r){const s=ec,i=t[0]+t[1]+t[2]+t[3]+t[4];let o=sc[s(418)](t,n),a=this[s(432)](e,Math[s(408)](o),t[2],i);if(!isNaN(a)&&(o=this[s(409)](Math[s(408)](o),Math[s(408)](a),t[2],i),!isNaN(o)&&(!r||this[s(440)](Math[s(408)](a),Math[s(408)](o),t[2],i)))){const t=i/7;let e=!1;const n=this.possibleCenters;for(let r=0,i=n[s(395)];r<i;r++){const i=n[r];if(i[s(442)](t,a,o)){n[r]=i[s(435)](a,o,t),e=!0;break}}if(!e){const e=new Ka(o,a,t);n.push(e),null!==this[s(401)]&&void 0!==this.resultPointCallback&&this[s(401)][s(404)](e)}return!0}return!1}[ec(433)](){const t=ec;if(this[t(437)].length<=1)return 0;let e=null;for(const n of this.possibleCenters){const r=n?.[t(434)]();if(void 0!==r&&r>=sc[t(428)]){if(null!=e)return this[t(411)]=!0,Math[t(408)]((Math[t(397)](e[t(400)]()-n.getX())-Math[t(397)](e[t(406)]()-n.getY()))/2);e=n}}return 0}[ec(430)](){const t=ec;let e=0,n=0;const r=this[t(437)][t(395)];for(const r of this.possibleCenters){const s=r[t(434)]();void 0!==s&&s>=sc[t(428)]&&(e++,n+=r[t(398)]())}if(e<3)return!1;const s=n/r;let i=0;for(const e of this[t(437)])i+=Math[t(397)](e.getEstimatedModuleSize()-s);return i<=.05*n}[ec(416)](){const t=ec,e=this[t(437)][t(395)];if(e<3)throw new zr;const n=this.possibleCenters;let r;if(e>3){let s=0,i=0;for(const e of this.possibleCenters){const n=e[t(398)]();s+=n,i+=n*n}r=s/e;let o=Math[t(422)](i/e-r*r);n.sort(((e,n)=>{const s=t,i=Math.abs(n[s(398)]()-r),o=Math.abs(e[s(398)]()-r);return i<o?-1:i>o?1:0}));const a=Math[t(399)](.2*r,o);for(let e=0;e<n[t(395)]&&n[t(395)]>3;e++){const s=n[e];Math[t(397)](s[t(398)]()-r)>a&&(n.splice(e,1),e--)}}if(n[t(395)]>3){let e=0;for(const r of n)e+=r[t(398)]();r=e/n[t(395)],n[t(420)](((e,n)=>{const s=t;if(n[s(434)]()===e[s(434)]()){const t=Math[s(397)](n[s(398)]()-r),i=Math[s(397)](e[s(398)]()-r);return t<i?1:t>i?-1:0}return(n.getCount()??0)-(e[s(434)]()??0)})),n[t(429)](3)}return[n[0],n[1],n[2]]}}function ic(t,e){const n=ac();return(ic=function(t,e){return n[t-=445]})(t,e)}sc[ec(428)]=2,sc[ec(403)]=3,sc[ec(419)]=57;const oc=ic;function ac(){const t=["min","computeDimension","findAlignmentInRegion","image","getWidth","6665430rCSaVV","getY","532VQARgu","createTransform","Alignment bottom exceeds estimated module size.","calculateModuleSize","sizeOfBlackWhiteBlackRunBothWays","max","getProvisionalVersionForDimension","1898220CmRSoZ","floor","2982645sVYnXU","find","1737oeohqM","getX","No pattern found in proccess finder.","6oXKYZf","quadrilateralToQuadrilateral","getHeight","resultPointCallback","getAlignmentPatternCenters","sizeOfBlackWhiteBlackRun","getTopRight","904fToMOQ","abs","get","getBottomLeft","length","distance","Alignment top exceeds estimated module size.","processFinderPatternInfo","1343220TGkmMl","sampleGrid","round","3542RURMmY","74878qbkXdu","sampleGridWithTransform","Dimensions could be not found.","calculateModuleSizeOneWay"];return(ac=function(){return t})()}!function(){const t=ic,e=ac();for(;;)try{if(196963===-parseInt(t(456))/1*(parseInt(t(481))/2)+-parseInt(t(478))/3*(-parseInt(t(467))/4)+parseInt(t(452))/5+-parseInt(t(474))/6+-parseInt(t(455))/7*(-parseInt(t(488))/8)+-parseInt(t(476))/9+parseInt(t(465))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class cc{constructor(t){this.image=t}getImage(){return this[ic(463)]}getResultPointCallback(){return this[ic(484)]}detect(t){const e=ic;this[e(484)]=null==t?null:t[e(446)](Os.NEED_RESULT_POINT_CALLBACK);const n=new sc(this[e(463)],this[e(484)])[e(477)](t);return this[e(451)](n)}processFinderPatternInfo(t){const e=ic,n=t.getTopLeft(),r=t[e(487)](),s=t[e(447)](),i=this[e(470)](n,r,s);if(i<1)throw new zr(e(480));const o=cc[e(461)](n,r,s,i),a=Mo[e(473)](o),c=a.getDimensionForVersion()-7;let h=null;if(a[e(485)]()[e(448)]>0){const t=r[e(479)]()-n[e(479)]()+s[e(479)](),o=r[e(466)]()-n[e(466)]()+s[e(466)](),a=1-3/c,u=Math[e(475)](n[e(479)]()+a*(t-n[e(479)]())),l=Math[e(475)](n.getY()+a*(o-n[e(466)]()));for(let t=4;t<=16;t<<=1)try{h=this[e(462)](i,u,l,t);break}catch(t){if(!(t instanceof zr))throw t}}const u=cc.createTransform(n,r,s,h,o),l=cc[e(453)](this[e(463)],u,o);let p;return p=null===h?[s,n,r]:[s,n,r,h],new Ia(l,p)}static[oc(468)](t,e,n,r,s){const i=oc,o=s-3.5;let a,c,h,u;return null!==r?(a=r[i(479)](),c=r[i(466)](),h=o-3,u=h):(a=e.getX()-t[i(479)]()+n[i(479)](),c=e[i(466)]()-t[i(466)]()+n[i(466)](),h=o,u=o),Aa[i(482)](3.5,3.5,o,3.5,h,u,3.5,o,t[i(479)](),t[i(466)](),e[i(479)](),e[i(466)](),a,c,n[i(479)](),n[i(466)]())}static[oc(453)](t,e,n){const r=oc;return Ta.getInstance()[r(457)](t,n,n,e)}static[oc(461)](t,e,n,r){const s=oc,i=la[s(454)](Ya[s(449)](t,e)/r),o=la[s(454)](Ya[s(449)](t,n)/r);let a=Math[s(475)]((i+o)/2)+7;switch(3&a){case 0:a++;break;case 2:a--;break;case 3:throw new zr(s(458))}return a}calculateModuleSize(t,e,n){const r=oc;return(this[r(459)](t,e)+this[r(459)](t,n))/2}calculateModuleSizeOneWay(t,e){const n=oc,r=this.sizeOfBlackWhiteBlackRunBothWays(Math.floor(t[n(479)]()),Math[n(475)](t[n(466)]()),Math[n(475)](e[n(479)]()),Math[n(475)](e.getY())),s=this[n(471)](Math[n(475)](e[n(479)]()),Math[n(475)](e[n(466)]()),Math[n(475)](t[n(479)]()),Math[n(475)](t[n(466)]()));return isNaN(r)?s/7:isNaN(s)?r/7:(r+s)/14}[oc(471)](t,e,n,r){const s=oc;let i=this.sizeOfBlackWhiteBlackRun(t,e,n,r),o=1,a=t-(n-t);a<0?(o=t/(t-a),a=0):a>=this.image[s(464)]()&&(o=(this[s(463)][s(464)]()-1-t)/(a-t),a=this[s(463)][s(464)]()-1);let c=Math.floor(e-(r-e)*o);return o=1,c<0?(o=e/(e-c),c=0):c>=this.image[s(483)]()&&(o=(this[s(463)][s(483)]()-1-e)/(c-e),c=this[s(463)].getHeight()-1),a=Math[s(475)](t+(a-t)*o),i+=this.sizeOfBlackWhiteBlackRun(t,e,a,c),i-1}[oc(486)](t,e,n,r){const s=oc,i=Math[s(445)](r-e)>Math[s(445)](n-t);if(i){let s=t;t=e,e=s,s=n,n=r,r=s}const o=Math[s(445)](n-t),a=Math[s(445)](r-e);let c=-o/2;const h=t<n?1:-1,u=e<r?1:-1;let l=0;const p=n+h;for(let n=t,f=e;n!==p;n+=h){const h=i?f:n,p=i?n:f;if(1===l===this[s(463)].get(h,p)){if(2===l)return la[s(449)](n,f,t,e);l++}if(c+=a,c>0){if(f===r)break;f+=u,c-=o}}return 2===l?la[s(449)](n+h,r,t,e):NaN}[oc(462)](t,e,n,r){const s=oc,i=Math.floor(r*t),o=Math.max(0,e-i),a=Math.min(this.image.getWidth()-1,e+i);if(a-o<3*t)throw new zr(s(450));const c=Math[s(472)](0,n-i),h=Math[s(460)](this[s(463)][s(483)]()-1,n+i);if(h-c<3*t)throw new zr(s(469));return new La(this[s(463)],o,c,a-o,h-c,t,this[s(484)])[s(477)]()}}function hc(t,e){const n=lc();return(hc=function(t,e){return n[t-=226]})(t,e)}const uc=hc;function lc(){const t=["reset","STRUCTURED_APPEND_SEQUENCE","130iXnEoJ","getBlackMatrix","getStructuredAppendSequenceNumber","decode","getByteSegments","decodeBitMatrix","17688700jDgzBM","getBottomRightOnBit","get","hasStructuredAppend","NO_POINTS","log","STRUCTURED_APPEND_PARITY","getOther","detect","16084IfMGPZ","getTopLeftOnBit","applyMirroredCorrection","extractPureBits","getStructuredAppendParity","QR_CODE","putMetadata","getText","988805vANxHl","BYTE_SEGMENTS","5314374hausXa","ERROR_CORRECTION_LEVEL","3251128DxdyOS","round","decode2","1628046skCvGo","set","getPoints","getWidth","32TIxoBn","6aXMWhO","getBits","floor","2176664fysxip","decoder","moduleSize"];return(lc=function(){return t})()}!function(){const t=hc,e=lc();for(;;)try{if(643023===parseInt(t(246))/1*(parseInt(t(231))/2)+parseInt(t(261))/3+-parseInt(t(258))/4+parseInt(t(254))/5*(-parseInt(t(266))/6)+-parseInt(t(226))/7*(-parseInt(t(265))/8)+parseInt(t(256))/9+-parseInt(t(237))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class pc{constructor(){this[hc(227)]=new aa}getDecoder(){return this[hc(227)]}[uc(234)](t,e){const n=uc;let r,s;const i=e??(new Map)[n(262)](Os.TRY_HARDER,!0);try{const e=pc.extractPureBits(t[n(232)]());r=this[n(227)][n(236)](e,i),s=pc.NO_POINTS}catch(e){const o=new cc(t[n(232)]())[n(245)](i);r=this[n(227)][n(236)](o[n(267)](),i),s=o[n(263)]()}r[n(244)]()instanceof ra&&r[n(244)]().applyMirroredCorrection(s);const o=new li(r[n(253)](),r.getRawBytes(),void 0,s,$r[n(251)],void 0),a=r.getByteSegments();a&&o[n(252)](wi[n(255)],a);const c=r.getECLevel();return c&&o.putMetadata(wi.ERROR_CORRECTION_LEVEL,c),r[n(240)]()&&(o.putMetadata(wi[n(230)],r[n(233)]()),o[n(252)](wi[n(243)],r[n(250)]())),o}[uc(260)](t,e){const n=uc;let r,s;const i=null==e||null==e?(new Map).set(Os.TRY_HARDER,!0):void 0;console[n(242)]("hintsDef",i);const o=pc[n(249)](t[n(232)]());r=this.decoder[n(236)](o,i),s=pc[n(241)],r[n(244)]()instanceof ra&&r[n(244)]()[n(248)](s);const a=new li(r.getText(),r.getRawBytes(),void 0,s,$r[n(251)],void 0),c=r[n(235)]();null!==c&&a.putMetadata(wi[n(255)],c);const h=r.getECLevel();return null!==h&&a.putMetadata(wi[n(257)],h),r[n(240)]()&&(a[n(252)](wi.STRUCTURED_APPEND_SEQUENCE,r[n(233)]()),a[n(252)](wi[n(243)],r[n(250)]())),a}[uc(229)](){}static[uc(249)](t){const e=uc,n=t[e(247)](),r=t[e(238)]();if(null===n||null===r)throw new zr;const s=this.moduleSize(n,t);let i=n[1],o=r[1],a=n[0],c=r[0];if(a>=c||i>=o)throw new zr;if(o-i!=c-a&&(c=a+(o-i),c>=t[e(264)]()))throw new zr;const h=Math[e(259)]((c-a+1)/s),u=Math.round((o-i+1)/s);if(h<=0||u<=0)throw new zr;if(u!==h)throw new zr;const l=Math[e(268)](s/2);i+=l,a+=l;const p=a+Math.floor((h-1)*s)-c;if(p>0){if(p>l)throw new zr;a-=p}const f=i+Math[e(268)]((u-1)*s)-o;if(f>0){if(f>l)throw new zr;i-=f}const d=new ci(h,u);for(let n=0;n<u;n++){const r=i+Math[e(268)](n*s);for(let i=0;i<h;i++)t.get(a+Math.floor(i*s),r)&&d[e(262)](i,n)}return d}static[uc(228)](t,e){const n=uc,r=e.getHeight(),s=e[n(264)]();let i=t[0],o=t[1],a=!0,c=0;for(;i<s&&o<r;){if(a!==e[n(239)](i,o)){if(5==++c)break;a=!a}i++,o++}if(i===s||o===r)throw new zr;return(i-t[0])/7}}pc[uc(241)]=new Array;const fc=Ic;!function(){const t=Ic,e=mc();for(;;)try{if(994924===-parseInt(t(279))/1+-parseInt(t(285))/2*(-parseInt(t(288))/3)+-parseInt(t(276))/4*(-parseInt(t(287))/5)+parseInt(t(278))/6+-parseInt(t(291))/7+-parseInt(t(281))/8*(-parseInt(t(289))/9)+-parseInt(t(290))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class dc{constructor(t){if(this[Ic(272)]=t,null===t)throw new rs("Binarizer must be non-null.")}[fc(284)](){const t=fc;return this.binarizer[t(284)]()}[fc(286)](){return this.binarizer.getHeight()}getBlackRow(t,e){return this[fc(272)].getBlackRow(t,e)}getBlackMatrix(){const t=fc;return(null===this[t(292)]||void 0===this[t(292)])&&(this.matrix=this.binarizer[t(275)]()),this.matrix}[fc(280)](){const t=fc;return this.binarizer.getLuminanceSource()[t(280)]()}[fc(277)](t,e,n,r){const s=fc,i=this.binarizer.getLuminanceSource()[s(277)](t,e,n,r);return new dc(this[s(272)][s(273)](i))}[fc(283)](){const t=fc;return this[t(272)].getLuminanceSource()[t(283)]()}rotateCounterClockwise(){const t=fc,e=this[t(272)].getLuminanceSource()[t(293)]();return new dc(this[t(272)].createBinarizer(e))}[fc(294)](){const t=fc,e=this.binarizer[t(282)]()[t(294)]();return new dc(this[t(272)][t(273)](e))}[fc(274)](){const t=fc;try{return this[t(275)]()[t(274)]()}catch(t){return""}}}function Ic(t,e){const n=mc();return(Ic=function(t,e){return n[t-=272]})(t,e)}function mc(){const t=["rotateCounterClockwise","rotateCounterClockwise45","binarizer","createBinarizer","toString","getBlackMatrix","4EXetIs","crop","9380346axvnwG","1528269lEsIWE","isCropSupported","3545176EAonQq","getLuminanceSource","isRotateSupported","getWidth","562oaPMwa","getHeight","5227450wYnWEQ","20211vndQLp","27AFceIy","25283600zAiBLT","5459062CsBhtG","matrix"];return(mc=function(){return t})()}var gc=wc;function wc(t,e){var n=yc();return(wc=function(t,e){return n[t-=340]})(t,e)}function yc(){var t=["1191487ktVwuO","getHeight","72474uJUFib","761033ZlxYnJ","260bMQSPH","24304AihoUe","getLuminanceSource","27250SgXnwm","20NHyGpM","4522817WRVDsI","36MbQVLd","getWidth","102645TQbDSQ","24blrbaf","51ADmUkh","3RgkrFJ","source"];return(yc=function(){return t})()}!function(){for(var t=wc,e=yc();;)try{if(201990===parseInt(t(349))/1*(parseInt(t(341))/2)+-parseInt(t(348))/3*(parseInt(t(356))/4)+-parseInt(t(342))/5*(parseInt(t(353))/6)+parseInt(t(354))/7*(-parseInt(t(347))/8)+-parseInt(t(346))/9*(parseInt(t(355))/10)+-parseInt(t(351))/11+-parseInt(t(344))/12*(-parseInt(t(343))/13))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class bc{constructor(t){this[wc(350)]=t}[gc(340)](){return this[gc(350)]}[gc(345)](){var t=gc;return this.source[t(345)]()}[gc(352)](){var t=gc;return this[t(350)][t(352)]()}}function kc(){const t=["getWidth","initArrays","getBlackRow","luminances","getRow","LUMINANCE_SHIFT","5663512fbOHQV","LUMINANCE_BITS","getLuminanceSource","clear","set","LUMINANCE_BUCKETS","8478176BlVqIF","55412bWQDOp","getHeight","554352yRYIOc","7293735lCVXXz","EMPTY","floor","estimateBlackPoint","1206HUqYeG","getSize","buckets","createBinarizer","536500qPTIYH","1487803FTtFRk","length"];return(kc=function(){return t})()}const Ac=Sc;function Sc(t,e){const n=kc();return(Sc=function(t,e){return n[t-=444]})(t,e)}!function(){const t=Sc,e=kc();for(;;)try{if(830124===parseInt(t(459))/1+-parseInt(t(458))/2+parseInt(t(449))/3+parseInt(t(467))/4+-parseInt(t(450))/5+parseInt(t(454))/6*(-parseInt(t(447))/7)+parseInt(t(446))/8)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Cc extends bc{constructor(t){const e=Sc;super(t),this[e(464)]=Cc[e(451)],this.buckets=new Int32Array(Cc[e(445)])}[Ac(463)](t,e){const n=Ac,r=this[n(469)](),s=r[n(461)]();null==e||e[n(455)]()<s?e=new si(s):e[n(470)](),this[n(462)](s);const i=r[n(465)](t,this[n(464)]),o=this[n(456)];for(let t=0;t<s;t++)o[(255&i[t])>>Cc.LUMINANCE_SHIFT]++;const a=Cc.estimateBlackPoint(o);if(s<3)for(let t=0;t<s;t++)(255&i[t])<a&&e[n(444)](t);else{let t=255&i[0],r=255&i[1];for(let o=1;o<s-1;o++){const s=255&i[o+1];(4*r-t-s)/2<a&&e[n(444)](o),t=r,r=s}}return e}getBlackMatrix(){const t=Ac,e=this[t(469)](),n=e.getWidth(),r=e[t(448)](),s=new ci(n,r);this[t(462)](n);const i=this[t(456)];for(let s=1;s<5;s++){const o=Math[t(452)](r*s/5),a=e[t(465)](o,this[t(464)]),c=Math[t(452)](4*n/5);for(let e=Math[t(452)](n/5);e<c;e++){i[(255&a[e])>>Cc[t(466)]]++}}const o=Cc[t(453)](i),a=e.getMatrix();for(let t=0;t<r;t++){const e=t*n;for(let r=0;r<n;r++){(255&a[e+r])<o&&s.set(r,t)}}return s}[Ac(457)](t){return new Cc(t)}initArrays(t){const e=Ac;this[e(464)].length<t&&(this.luminances=new Uint8ClampedArray(t));const n=this[e(456)];for(let t=0;t<Cc[e(445)];t++)n[t]=0}static[Ac(453)](t){const e=t[Ac(460)];let n=0,r=0,s=0;for(let i=0;i<e;i++)t[i]>s&&(r=i,s=t[i]),t[i]>n&&(n=t[i]);let i=0,o=0;for(let n=0;n<e;n++){const e=n-r,s=t[n]*e*e;s>o&&(i=n,o=s)}if(r>i){const t=r;r=i,i=t}if(i-r<=e/16)throw new zr;let a=i-1,c=-1;for(let e=i-1;e>r;e--){const s=e-r,o=s*s*(i-e)*(n-t[e]);o>c&&(a=e,c=o)}return a<<Cc.LUMINANCE_SHIFT}}Cc[Ac(468)]=5,Cc[Ac(466)]=8-Cc[Ac(468)],Cc[Ac(445)]=1<<Cc[Ac(468)],Cc[Ac(451)]=Uint8ClampedArray.from([0]);const Oc=Zc;function Zc(t,e){const n=vc();return(Zc=function(t,e){return n[t-=397]})(t,e)}function vc(){const t=["calculateThresholdForBlock","getLuminanceSource","createBinarizer","13193960vOLTTN","5119496rwIPmy","BLOCK_SIZE_POWER","BLOCK_SIZE_MASK","27bUSOne","9EJRJDD","73148UQJlHQ","BLOCK_SIZE","MINIMUM_DIMENSION","matrix","5379720gqJfre","cap","3126629IwtDrs","1AhzKTF","set","1745912KHXvTE","MIN_DYNAMIC_RANGE","5FYDzvW","getBlackMatrix","calculateBlackPoints","1032220vYVLhy"];return(vc=function(){return t})()}!function(){const t=Zc,e=vc();for(;;)try{if(668021===-parseInt(t(407))/1*(-parseInt(t(414))/2)+-parseInt(t(398))/3*(parseInt(t(400))/4)+parseInt(t(411))/5*(-parseInt(t(404))/6)+parseInt(t(409))/7+-parseInt(t(419))/8*(parseInt(t(399))/9)+parseInt(t(418))/10+parseInt(t(406))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Mc extends Cc{constructor(t){const e=Zc;super(t),this[e(403)]=null}[Oc(412)](){const t=Oc;if(null!==this.matrix)return this.matrix;const e=this[t(416)](),n=e.getWidth(),r=e.getHeight();if(n>=Mc[t(402)]&&r>=Mc[t(402)]){const s=e.getMatrix();let i=n>>Mc[t(420)];n&Mc.BLOCK_SIZE_MASK&&i++;let o=r>>Mc[t(420)];r&Mc.BLOCK_SIZE_MASK&&o++;const a=Mc[t(413)](s,i,o,n,r),c=new ci(n,r);Mc[t(415)](s,i,o,n,r,a,c),this[t(403)]=c}else this[t(403)]=super[t(412)]();return this[t(403)]}[Oc(417)](t){return new Mc(t)}static[Oc(415)](t,e,n,r,s,i,o){const a=Oc,c=s-Mc[a(401)],h=r-Mc[a(401)];for(let s=0;s<n;s++){let u=s<<Mc[a(420)];u>c&&(u=c);const l=Mc[a(405)](s,2,n-3);for(let n=0;n<e;n++){let s=n<<Mc[a(420)];s>h&&(s=h);const c=Mc[a(405)](n,2,e-3);let p=0;for(let t=-2;t<=2;t++){const e=i[l+t];p+=e[c-2]+e[c-1]+e[c]+e[c+1]+e[c+2]}const f=p/25;Mc.thresholdBlock(t,s,u,f,r,o)}}}static[Oc(405)](t,e,n){return t<e?e:t>n?n:t}static thresholdBlock(t,e,n,r,s,i){const o=Oc;for(let a=0,c=n*s+e;a<Mc.BLOCK_SIZE;a++,c+=s)for(let s=0;s<Mc[o(401)];s++)(255&t[c+s])<=r&&i[o(408)](e+s,n+a)}static[Oc(413)](t,e,n,r,s){const i=Oc,o=s-Mc[i(401)],a=r-Mc.BLOCK_SIZE,c=new Array(n);for(let s=0;s<n;s++){c[s]=new Int32Array(e);let n=s<<Mc.BLOCK_SIZE_POWER;n>o&&(n=o);for(let o=0;o<e;o++){let e=o<<Mc[i(420)];e>a&&(e=a);let h=0,u=255,l=0;for(let s=0,o=n*r+e;s<Mc[i(401)];s++,o+=r){for(let e=0;e<Mc[i(401)];e++){const n=255&t[o+e];h+=n,n<u&&(u=n),n>l&&(l=n)}if(l-u>Mc[i(410)])for(s++,o+=r;s<Mc[i(401)];s++,o+=r)for(let e=0;e<Mc.BLOCK_SIZE;e++)h+=255&t[o+e]}let p=h>>2*Mc[i(420)];if(l-u<=Mc[i(410)]&&(p=u/2,s>0&&o>0)){const t=(c[s-1][o]+2*c[s][o-1]+c[s-1][o-1])/4;u<t&&(p=t)}c[s][o]=p}}return c}}Mc.BLOCK_SIZE_POWER=3,Mc[Oc(401)]=1<<Mc[Oc(420)],Mc[Oc(397)]=Mc[Oc(401)]-1,Mc[Oc(402)]=5*Mc[Oc(401)],Mc[Oc(410)]=24;const Tc=Rc;!function(){const t=Rc,e=Wc();for(;;)try{if(554967===parseInt(t(181))/1*(parseInt(t(168))/2)+-parseInt(t(180))/3+parseInt(t(177))/4+-parseInt(t(176))/5*(-parseInt(t(188))/6)+parseInt(t(189))/7*(-parseInt(t(184))/8)+-parseInt(t(179))/9*(-parseInt(t(185))/10)+-parseInt(t(170))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Ec{constructor(t,e){const n=Rc;this[n(186)]=t,this[n(171)]=e}[Tc(174)](){return this[Tc(186)]}[Tc(169)](){return this[Tc(171)]}[Tc(187)](){return!1}[Tc(182)](t,e,n,r){throw new Js(Tc(183))}[Tc(167)](){return!1}[Tc(175)](){throw new Js(Tc(172))}[Tc(190)](){throw new Js(Tc(191))}toString(){const t=Tc,e=new Uint8ClampedArray(this[t(186)]);let n=new Ks;for(let r=0;r<this[t(171)];r++){const s=this[t(178)](r,e);for(let e=0;e<this.width;e++){const r=255&s[e];let i;i=r<64?"#":r<128?"+":r<192?".":" ",n[t(173)](i)}n[t(173)]("\n")}return n.toString()}}function Wc(){const t=["rotateCounterClockwise45","This luminance source does not support rotation by 45 degrees.","isRotateSupported","360geEPVR","getHeight","7524979hDjdXD","height","This luminance source does not support rotation by 90 degrees.","append","getWidth","rotateCounterClockwise","5jBKSFe","1648044qQtqjT","getRow","63PRaJdq","2309736KyKwUI","2351wdqjQG","crop","This luminance source does not support cropping.","9640UKxhpA","823260BtQNtJ","width","isCropSupported","5226180MIEjPf","1589zmhobr"];return(Wc=function(){return t})()}function Rc(t,e){const n=Wc();return(Rc=function(t,e){return n[t-=167]})(t,e)}const jc=Bc;function Bc(t,e){const n=Vc();return(Bc=function(t,e){return n[t-=219]})(t,e)}function Vc(){const t=["crop","774770dmvyRH","138551YXRmep","1144GYyxLj","46519VRSVBZ","103064LeGVvV","3SYuijK","delegate","getWidth","invert","getHeight","getMatrix","isCropSupported","isRotateSupported","318VhzyAc","getRow","774jHbjrm","276XoVaSa","1937845jXSmCA","20030GpyaPZ","rotateCounterClockwise45","rotateCounterClockwise","857769uAgGOx","1060XndKKE"];return(Vc=function(){return t})()}!function(){const t=Bc,e=Vc();for(;;)try{if(792846===parseInt(t(220))/1+-parseInt(t(223))/2*(parseInt(t(228))/3)+-parseInt(t(225))/4*(-parseInt(t(241))/5)+-parseInt(t(236))/6*(-parseInt(t(224))/7)+parseInt(t(227))/8*(parseInt(t(238))/9)+-parseInt(t(221))/10*(-parseInt(t(226))/11)+-parseInt(t(239))/12*(parseInt(t(240))/13))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Nc extends Ec{constructor(t){const e=Bc;super(t.getWidth(),t[e(232)]()),this[e(229)]=t}[jc(237)](t,e){const n=this[jc(229)].getRow(t,e),r=this.getWidth();for(let t=0;t<r;t++)n[t]=255-(255&n[t]);return n}[jc(233)](){const t=jc,e=this[t(229)].getMatrix(),n=this[t(230)]()*this[t(232)](),r=new Uint8ClampedArray(n);for(let t=0;t<n;t++)r[t]=255-(255&e[t]);return r}[jc(234)](){const t=jc;return this[t(229)][t(234)]()}[jc(222)](t,e,n,r){return new Nc(this.delegate.crop(t,e,n,r))}[jc(235)](){return this.delegate.isRotateSupported()}[jc(231)](){return this[jc(229)]}[jc(219)](){const t=jc;return new Nc(this.delegate[t(219)]())}[jc(242)](){const t=jc;return new Nc(this[t(229)][t(242)]())}}const Jc=xc;function Yc(){const t=["40DifUFn","getMatrix","524166eOAKNb","602680rpNSWB","threshold","820604YboMuG","invert","getHeight","63tisNCI","1252811YcRrpG","1635GMKfkw","isRotateSupported","1333840FTioYK","delegate","crop","isCropSupported","rotateCounterClockwise45","12988VGLOXM","getWidth","2563437tzrzII","highContrast","rotateCounterClockwise"];return(Yc=function(){return t})()}function xc(t,e){const n=Yc();return(xc=function(t,e){return n[t-=300]})(t,e)}!function(){const t=xc,e=Yc();for(;;)try{if(842842===-parseInt(t(306))/1+-parseInt(t(304))/2+parseInt(t(320))/3+parseInt(t(318))/4*(parseInt(t(311))/5)+parseInt(t(303))/6+-parseInt(t(310))/7*(-parseInt(t(301))/8)+-parseInt(t(309))/9*(parseInt(t(313))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Dc extends Ec{constructor(t,e=128){const n=xc;super(t[n(319)](),t[n(308)]()),this.delegate=t,this[n(305)]=e}getRow(t,e){const n=xc,r=this[n(314)].getRow(t,e),s=this.getWidth();for(let t=0;t<s;t++)r[t]=r[t]<this[n(305)]?0:255;return r}[Jc(302)](){const t=Jc,e=this[t(314)].getMatrix(),n=this[t(319)]()*this[t(308)](),r=new Uint8ClampedArray(n);for(let t=0;t<n;t++)r[t]=e[t]<this.threshold?0:255;return r}[Jc(316)](){const t=Jc;return this.delegate[t(316)]()}[Jc(315)](t,e,n,r){const s=Jc;return new Dc(this[s(314)][s(315)](t,e,n,r),this.threshold)}[Jc(312)](){const t=Jc;return this[t(314)][t(312)]()}[Jc(300)](){const t=Jc;return new Dc(this[t(314)][t(300)](),this.threshold)}[Jc(317)](){const t=Jc;return new Dc(this[t(314)][t(317)](),this[t(305)])}[Jc(307)](){return new Nc(this)}[Jc(321)](){return this}}const Xc=Pc;function Pc(t,e){const n=Uc();return(Pc=function(t,e){return n[t-=362]})(t,e)}function Uc(){const t=["translate","length","675CMEupJ","22353WJaNdV","rotate","slice","width","canvas","drawImage","abs","3FPBbjA","14hwDQRW","buffer","isCropSupported","627576QABZrr","toGrayscaleBuffer","crop","1833GEYBvF","2988736BEOPVB","35zCWUPX","3210192iUbZTB","getTempCanvasElement","114160QVBOCn","getHeight","hightContrast","ceil","getWidth","tempCanvasElement","invert","height","isRotateSupported","data","213794HWmdca","4zidCKR","cos","rotateCounterClockwise45","Requested row is outside the image: ","12CrXXuP","ownerDocument","set","FRAME_INDEX","1007765TDBcAD","DEGREE_TO_RADIANS","getMatrix","sin","getContext"];return(Uc=function(){return t})()}!function(){const t=Pc,e=Uc();for(;;)try{if(848572===-parseInt(t(378))/1*(parseInt(t(362))/2)+-parseInt(t(385))/3*(-parseInt(t(393))/4)+-parseInt(t(394))/5*(-parseInt(t(389))/6)+parseInt(t(386))/7*(parseInt(t(395))/8)+-parseInt(t(377))/9*(-parseInt(t(397))/10)+-parseInt(t(370))/11*(parseInt(t(366))/12)+-parseInt(t(392))/13*(parseInt(t(407))/14))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Gc extends Ec{constructor(t,e=!1){const n=Pc;super(t[n(381)],t[n(404)]),this.canvas=t,this[n(402)]=null,this[n(387)]=Gc.makeBufferFromCanvasImageData(t,e)}static makeBufferFromCanvasImageData(t,e=!1){const n=Pc,r=t[n(374)]("2d").getImageData(0,0,t.width,t[n(404)]);return Gc[n(390)](r[n(406)],t.width,t.height,e)}static[Xc(390)](t,e,n,r=!1){const s=Xc,i=new Uint8ClampedArray(e*n);if(Gc[s(369)]=!Gc[s(369)],Gc[s(369)]||!r)for(let e=0,n=0,r=t[s(376)];e<r;e+=4,n++){let r;if(0===t[e+3])r=255;else{r=306*t[e]+601*t[e+1]+117*t[e+2]+512>>10}i[n]=r}else for(let e=0,n=0,r=t[s(376)];e<r;e+=4,n++){let r;if(0===t[e+3])r=255;else{r=306*t[e]+601*t[e+1]+117*t[e+2]+512>>10}i[n]=255-r}return i}getRow(t,e){const n=Xc;if(t<0||t>=this[n(398)]())throw new rs(n(365)+t);const r=this[n(401)](),s=t*r;return null===e?e=this[n(387)][n(380)](s,s+r):(e[n(376)]<r&&(e=new Uint8ClampedArray(r)),e[n(368)](this.buffer.slice(s,s+r))),e}[Xc(372)](){return this[Xc(387)]}[Xc(388)](){return!0}crop(t,e,n,r){return super[Xc(391)](t,e,n,r),this}[Xc(405)](){return!0}rotateCounterClockwise(){return this[Xc(379)](-90),this}[Xc(364)](){return this.rotate(-45),this}[Xc(396)](){const t=Xc;if(null===this[t(402)]){const e=this[t(382)][t(367)].createElement("canvas");e[t(381)]=this[t(382)].width,e[t(404)]=this[t(382)].height,this.tempCanvasElement=e}return this[t(402)]}[Xc(379)](t){const e=Xc,n=this.getTempCanvasElement(),r=n[e(374)]("2d"),s=t*Gc[e(371)],i=this[e(382)].width,o=this.canvas[e(404)],a=Math[e(400)](Math.abs(Math[e(363)](s))*i+Math[e(384)](Math[e(373)](s))*o),c=Math[e(400)](Math.abs(Math[e(373)](s))*i+Math[e(384)](Math[e(363)](s))*o);return n[e(381)]=a,n[e(404)]=c,r[e(375)](a/2,c/2),r.rotate(s),r[e(383)](this[e(382)],i/-2,o/-2),this[e(387)]=Gc.makeBufferFromCanvasImageData(n),this}[Xc(403)](){return new Nc(this)}[Xc(399)](t=128){return new Dc(this,t)}}Gc[Xc(371)]=Math.PI/180,Gc[Xc(369)]=!0;const Fc=qc;function Lc(){const t=["dHeight","hasNavigator","either imageElement with a src set or an url must be provided","decodeOnce","element with id '","hints","load","img","2968300oBJNeJ","1849441ykeIHp","isImageLoaded","' must be an ","timeBetweenScansMillis","complete","_hints","height","imageLoadedListener","mediaDevices","10MmqMVW","width","' not found","prepareImageElement","28651BIdqus","reset","isMediaDevicesSuported","naturalWidth","decode","style","2762456bMDsLn","getMediaElement","addEventListener","canvas","decodeFromImageElement","_destroyImageElement","18zMWFik","1452JDDfea","removeEventListener","12MOoUqW","4092896ZkyEdW","_timeBetweenDecodingAttempts"," element","122575wrFvxx","createElement","imageElement","toLowerCase","string","decodeFromImageUrl","enumerateDevices","getCaptureCanvasContext","undefined","_decodeOnLoadImage","timeBetweenDecodingAttempts","decodeBitmap","createBinaryBitmap","naturalHeight","createCaptureCanvas","reader","captureCanvas","drawImageOnCanvas","removeAttribute","nodeName","getCaptureCanvas","captureCanvasContext","515454jGOKhE","src","getElementById","An image element must be provided.","_destroyCaptureCanvas"];return(Lc=function(){return t})()}function qc(t,e){const n=Lc();return(qc=function(t,e){return n[t-=322]})(t,e)}!function(){const t=qc,e=Lc();for(;;)try{if(512419===-parseInt(t(365))/1*(parseInt(t(361))/2)+-parseInt(t(387))/3+-parseInt(t(362))/4+parseInt(t(332))/5+parseInt(t(359))/6*(parseInt(t(346))/7)+-parseInt(t(352))/8*(-parseInt(t(358))/9)+-parseInt(t(342))/10*(-parseInt(t(333))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class zc{get[Fc(325)](){return"undefined"!=typeof navigator}get[Fc(348)](){const t=Fc;return this[t(325)]&&!!navigator[t(341)]}get canEnumerateDevices(){const t=Fc;return!(!this[t(348)]||!navigator[t(341)][t(371)])}get[Fc(375)](){return this._timeBetweenDecodingAttempts}set[Fc(375)](t){this[Fc(363)]=t<0?0:t}set[Fc(329)](t){this._hints=t||null}get hints(){return this._hints}constructor(t,e=500,n){const r=Fc;this[r(380)]=t,this[r(336)]=e,this[r(338)]=n,this._timeBetweenDecodingAttempts=0}[Fc(353)](t,e){const n=Fc,r=document[n(389)](t);if(!r)throw new io(n(328)+t+n(344));if(r[n(384)][n(368)]()!==e.toLowerCase())throw new io(n(328)+t+n(335)+e+n(364));return r}decodeFromImage(t,e){const n=Fc;if(!t&&!e)throw new io(n(326));return e&&!t?this[n(370)](e):this[n(356)](t)}[Fc(356)](t){const e=Fc;if(!t)throw new io(e(322));this.reset();const n=this[e(345)](t);let r;return this[e(367)]=n,r=this[e(334)](n)?this[e(327)](n,!1,!0):this._decodeOnLoadImage(n),r}[Fc(370)](t){const e=Fc;if(!t)throw new io("An URL must be provided.");this[e(347)]();const n=this.prepareImageElement();this[e(367)]=n;const r=this[e(374)](n);return n.src=t,r}[Fc(374)](t){return new Promise(((e,n)=>{const r=qc;this[r(340)]=()=>this[r(327)](t,!1,!0).then(e,n),t[r(354)](r(330),this[r(340)])}))}[Fc(334)](t){const e=Fc;return!!t[e(337)]&&0!==t[e(349)]}[Fc(345)](t){const e=Fc;let n;return typeof t===e(373)&&(n=document.createElement(e(331)),n[e(343)]=200,n[e(339)]=200),typeof t===e(369)&&(n=this.getMediaElement(t,e(331))),t instanceof HTMLImageElement&&(n=t),n}[Fc(327)](t,e=!0,n=!0){const r=(s,i)=>{const o=qc;try{s(this[o(350)](t))}catch(t){if(e&&t instanceof zr||(t instanceof ki||t instanceof vs)&&n)return setTimeout(r,this._timeBetweenDecodingAttempts,s,i);i(t)}};return new Promise(((t,e)=>r(t,e)))}[Fc(350)](t){const e=this.createBinaryBitmap(t);return this.decodeBitmap(e)}[Fc(377)](t){const e=Fc;this.getCaptureCanvasContext(t),this[e(382)](t);const n=this[e(385)](t),r=new Gc(n),s=new Mc(r);return new dc(s)}[Fc(372)](t){const e=Fc;if(!this[e(386)]){const n=this[e(385)](t);let r;try{r=n.getContext("2d",{willReadFrequently:!0})}catch(t){r=n.getContext("2d")}this[e(386)]=r}return this[e(386)]}[Fc(385)](t){const e=Fc;if(!this[e(381)]){const n=this.createCaptureCanvas(t);this[e(381)]=n}return this[e(381)]}drawImageOnCanvas(t,e={sx:0,sy:0,sWidth:t[Fc(349)],sHeight:t.naturalHeight,dx:0,dy:0,dWidth:t[Fc(349)],dHeight:t.naturalHeight},n=this[Fc(386)]){const r=Fc;n.drawImage(t,e.sx,e.sy,e.sWidth,e.sHeight,e.dx,e.dy,e.dWidth,e[r(324)])}[Fc(376)](t){const e=Fc;try{return this[e(380)].decode(t,this[e(338)])}finally{this[e(380)][e(347)]()}}[Fc(379)](t){const e=Fc;if(typeof document===e(373))return this[e(323)](),null;const n=document[e(366)](e(355));let r,s;return typeof t!==e(373)&&t instanceof HTMLImageElement&&(r=t[e(349)]||t[e(343)],s=t[e(378)]||t[e(339)]),n[e(351)].width=r+"px",n[e(351)][e(339)]=s+"px",n[e(343)]=r,n[e(339)]=s,n}reset(){const t=Fc;this[t(357)](),this[t(323)]()}_destroyImageElement(){const t=Fc;this.imageElement&&(void 0!==this[t(340)]&&this.imageElement[t(360)](t(330),this[t(340)]),this[t(367)].src="",this.imageElement[t(383)](t(388)),this[t(367)]=void 0)}[Fc(323)](){const t=Fc;this[t(386)]=void 0,this[t(381)]=void 0}}const Hc=Kc;function Kc(t,e){const n=Qc();return(Kc=function(t,e){return n[t-=319]})(t,e)}function Qc(){const t=["reset","_hints","18LNjDFc","11594380wInBHn","onerror","11200105jdgstW","5165752HZaick","qrReader","7866ypjoil","src","decode","Bitmap cannot be null","onload","decodeBitmap","5995WRXrol","inProgressDecodes","951616qGLPov","6016632SoBlOF","5330124uuSKVY","3rPSvio","img","decodeFromImageUrl","Failed to load image"];return(Qc=function(){return t})()}!function(){const t=Kc,e=Qc();for(;;)try{if(978946===-parseInt(t(341))/1*(-parseInt(t(338))/2)+parseInt(t(340))/3+parseInt(t(328))/4+-parseInt(t(336))/5*(parseInt(t(330))/6)+-parseInt(t(327))/7+-parseInt(t(339))/8*(parseInt(t(324))/9)+parseInt(t(325))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();Hc(335),Hc(320),Hc(322);function _c(t,e){const n=th();return(_c=function(t,e){return n[t-=182]})(t,e)}const $c=_c;function th(){const t=["length","rotate","slice","rotateCounterClockwise","7074730UVaDyw","Requested row ","2lvbDXQ","7271560qwVvXK","getWidth","_width","crop","_height","isCropSupported","createFromRawRGBA","rotateCounterClockwise45","getHeight"," is outside the image","Rotation of ","81500QCCsFY","4821171mnvhhk","1433243veKqRR","Crop rectangle does not fit within image data.","RGBA data length does not match width*height*4.","1016096uMDRMo","30KWUSnk","buffer","rotateCounterClockwise45 is not implemented in this WASM-compatible version.","411696WeXFRf","set","801xJKMRQ","getMatrix"];return(th=function(){return t})()}!function(){const t=_c,e=th();for(;;)try{if(944242===parseInt(t(196))/1+parseInt(t(210))/2*(-parseInt(t(192))/3)+parseInt(t(211))/4+parseInt(t(208))/5+parseInt(t(197))/6*(-parseInt(t(193))/7)+parseInt(t(200))/8+-parseInt(t(202))/9*(parseInt(t(191))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();$c(186),$c(188),$c(203),$c(185),$c(183),$c(207),$c(187),$c(205);function eh(t,e){var n=nh();return(eh=function(t,e){return n[t-=249]})(t,e)}function nh(){var t=["34500grSCWO","7784565qrepbZ","38431096lWIMKT","2003550Hjvinm","18920POotbG","9WGHdAM","1477581XMAZqb","4362638haNfIZ"];return(nh=function(){return t})()}function rh(t,e){var n=sh();return(rh=function(t,e){return n[t-=289]})(t,e)}function sh(){var t=["438rWmIkO","1630256JFsxLM","18wWtwvc","587350NJozxH","22TVOPPZ","181433akDIdz","1028695CthRny","892971iuBNwq","284rAmmAF","8842ngXPgb"];return(sh=function(){return t})()}!function(){for(var t=eh,e=nh();;)try{if(847569===-parseInt(t(251))/1+parseInt(t(249))/2+-parseInt(t(250))/3*(-parseInt(t(253))/4)+-parseInt(t(254))/5+-parseInt(t(256))/6+-parseInt(t(252))/7+parseInt(t(255))/8)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),function(){for(var t=rh,e=sh();;)try{if(126126===parseInt(t(296))/1*(parseInt(t(291))/2)+parseInt(t(292))/3*(-parseInt(t(290))/4)+parseInt(t(298))/5+parseInt(t(294))/6*(parseInt(t(297))/7)+-parseInt(t(293))/8+-parseInt(t(289))/9+parseInt(t(295))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const ih=oh;function oh(t,e){const n=ah();return(oh=function(t,e){return n[t-=134]})(t,e)}function ah(){const t=["585zWidoG","getRow","buffer","18UEbhFu","Jimp failed to read image buffer:","getHeight","778017jUodsr","length","9mgJeFZ","error","292026iCjSCG","Crop rectangle does not fit within image data.","getWidth","jimp","8562110BfqcsM","12110xaWckt","toGrayscaleBuffer","getMatrix","5wdXMWd",") does not match dimensions (","invert","1987656tnIelS","slice","625676LhZbwo","Raw RGBA buffer size (","crop","Invalid image dimensions from Jimp","18277105Tnwlnd","data","height","bitmap","Failed to decode image buffer","set","x4 = ","create"];return(ah=function(){return t})()}!function(){const t=oh,e=ah();for(;;)try{if(623368===parseInt(t(166))/1+-parseInt(t(140))/2*(-parseInt(t(160))/3)+parseInt(t(148))/4*(-parseInt(t(143))/5)+-parseInt(t(163))/6*(parseInt(t(135))/7)+-parseInt(t(146))/8+parseInt(t(168))/9*(parseInt(t(139))/10)+-parseInt(t(152))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class ch extends Ec{constructor(t,e,n){const r=oh;super(t,e),this[r(162)]=n}static async[ih(159)](t,e,n,r,s=!1){const i=ih;let o,a,c;if(e)try{const{Jimp:e}=await import(i(138)),n=await e.read(t);if(a=n[i(155)].width,c=n.bitmap[i(154)],!a||!c)throw new Error(i(151));o=new Uint8ClampedArray(n[i(155)][i(153)])}catch(t){throw console[i(134)](i(164),t),new Error(i(156))}else{if(void 0===n||void 0===r)throw new Error("Width and height are required for raw RGBA buffer input");if(t[i(167)]!==n*r*4)throw new Error(i(149)+t[i(167)]+i(144)+n+"x"+r+i(158)+n*r*4+")");a=n,c=r,o=new Uint8ClampedArray(t)}const h=ch[i(141)](o,a,c,s);return new ch(a,c,h)}static toGrayscaleBuffer(t,e,n,r=!1){const s=ih,i=new Uint8ClampedArray(e*n);if(r)for(let e=0,n=0,r=t[s(167)];e<r;e+=4,n++){let r;if(0===t[e+3])r=255;else{r=306*t[e]+601*t[e+1]+117*t[e+2]+512>>10}i[n]=255-r}else for(let e=0,n=0,r=t[s(167)];e<r;e+=4,n++){let r;if(0===t[e+3])r=255;else{r=306*t[e]+601*t[e+1]+117*t[e+2]+512>>10}i[n]=r}return i}[ih(161)](t,e){const n=ih;if(t<0||t>=this[n(165)]())throw new rs("Requested row is outside the image: "+t);const r=this.getWidth(),s=t*r;return e?(e[n(167)]<r&&(e=new Uint8ClampedArray(r)),e[n(157)](this.buffer.slice(s,s+r))):e=this.buffer[n(147)](s,s+r),e}[ih(142)](){return this[ih(162)]}isCropSupported(){return!0}[ih(150)](t,e,n,r){const s=ih;if(t<0||e<0||t+n>this[s(137)]()||e+r>this[s(165)]())throw new rs(s(136));const i=new Uint8ClampedArray(n*r);for(let o=0;o<r;o++){const r=(e+o)*this[s(137)]()+t,a=o*n;i[s(157)](this[s(162)][s(147)](r,r+n),a)}return new ch(n,r,i)}isRotateSupported(){return!1}[ih(145)](){return new Nc(this)}}function hh(t,e){var n=uh();return(hh=function(t,e){return n[t-=487]})(t,e)}function uh(){var t=["7218MLSGsb","1435kUiRpu","1039560VRrePy","16GgQhsr","11468RTELrh","4vbKDBL","89256NUTKnU","624114FXlbfU","10FJJZeu","253242qzntTI","1909369uJEGAJ"];return(uh=function(){return t})()}function lh(){const t=["Failed to dynamically import Jimp for debugging:","10gRMqmq","write","Decoded result is empty","threshold","Failed to create binary bitmap","214382NVYpdJ","message","5216541xQdYtV","176qeHtYp","getText","Image preprocessing error:","69mDqovy","Validation process failed:","jimp","36UEooNs","SVG to Luminance conversion error:","Decoded result:","220XLMDhf","getWidth","Failed to preprocess image","toString","read","length","38980MjoVtV","4703664kAEJzZ","79284FagOUY","debug_","normal_attempt","Unknown error occurred during validation",".png","render","Inverted decode attempt failed:","763524PdcoyY","debug_preprocess_","Failed to decode QR code (both normal and inverted attempts failed)","random","default","inverted_attempt","Input SVG string is undefined","from","error","decode","inverted_","Inverted decode succeeded.","Decoded successfully","411186OKOykE","create","pixels","debug"];return(lh=function(){return t})()}!function(){for(var t=hh,e=uh();;)try{if(149420===parseInt(t(490))/1*(parseInt(t(489))/2)+parseInt(t(493))/3+-parseInt(t(488))/4*(parseInt(t(492))/5)+parseInt(t(495))/6*(-parseInt(t(496))/7)+parseInt(t(487))/8*(-parseInt(t(491))/9)+parseInt(t(497))/10+parseInt(t(494))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),function(){const t=fh,e=lh();for(;;)try{if(467997===parseInt(t(180))/1+-parseInt(t(160))/2*(parseInt(t(196))/3)+parseInt(t(202))/4*(-parseInt(t(158))/5)+-parseInt(t(159))/6+parseInt(t(190))/7*(parseInt(t(193))/8)+-parseInt(t(167))/9*(-parseInt(t(185))/10)+parseInt(t(192))/11*(parseInt(t(199))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();async function ph(t,e=!1){const n=fh;try{const{buffer:r,isPng:s,width:i,height:o}=function(t,e=!1){const n=fh;try{const r=new c(t,{fitTo:{mode:"zoom",value:2}})[n(165)](),{width:s,height:i}=r;if(e){const t=Buffer[n(174)](r[n(182)]);for(let e=0;e<t[n(157)];e+=4)t[e]=255-t[e],t[e+1]=255-t[e+1],t[e+2]=255-t[e+2];return{buffer:t,isPng:!1,width:s,height:i}}return{buffer:r.asPng(),isPng:!0,width:s,height:i}}catch(t){throw n(195),new Error(n(204))}}(t,e);return await ch[n(181)](r,s,i,o)}catch(t){throw n(200),new Error("Failed to convert SVG to luminance source")}}function fh(t,e){const n=lh();return(fh=function(t,e){return n[t-=155]})(t,e)}async function dh(t){const e=fh;try{return(t=>{const e=new Mc(t);return new dc(e)})(t)}catch(t){throw new Error(e(189))}}async function Ih(t,e){const n=fh,r=e[n(176)](t);if(!r[n(194)]())throw new Error(n(187));return r}const mh={validateZxing:async t=>{const e=fh;if(!t)return{isValid:!1,isInverted:!1,message:e(173)};try{const n=new pc,r=await ph(t,!1),s=await dh(r);let i;try{return i=await Ih(s,n),{isValid:!0,isInverted:!1,decodedText:i[e(194)](),message:e(179)}}catch(r){try{const r=await ph(t,!0),s=await dh(r);return i=await Ih(s,n),{isValid:!0,isInverted:!0,decodedText:i[e(194)](),message:e(178)}}catch(t){return e(166),{isValid:!1,isInverted:!1,message:e(169)}}}}catch(t){return e(197),{isValid:!1,isInverted:!1,message:t instanceof Error?t[e(191)]:e(163)}}}};function gh(t,e){const n=yh();return(gh=function(t,e){return n[t-=311]})(t,e)}var wh;function yh(){const t=["86ItLLgV","click","download","onabort","body","removeChild","onload","9659hhvQCs","83532pyBwtY",".svg","height","32oqBYEd","min","toLowerCase","500KkHiul","png","extension","190QSNNFV","svg","drawImage","893284unOnIT","10121517vSvCsp","createElement","48948KLpsOB","toDataURL","width","name","32088cMyqPL","13211zttvet","src","canvas","serialize","webp","3619131RUsFhN","4XAspnt","getContext"];return(yh=function(){return t})()}!function(){const t=gh,e=yh();for(;;)try{if(721539===parseInt(t(314))/1*(parseInt(t(323))/2)+-parseInt(t(320))/3*(-parseInt(t(321))/4)+parseInt(t(340))/5*(-parseInt(t(331))/6)+parseInt(t(343))/7*(parseInt(t(334))/8)+parseInt(t(344))/9+-parseInt(t(337))/10*(-parseInt(t(315))/11)+parseInt(t(346))/12*(-parseInt(t(330))/13))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),function(t){const e=gh;t[e(341)]=e(341),t.png=e(338),t.jpeg="jpeg",t[e(319)]=e(319)}(wh||(wh={}));const bh=Zh;!function(){const t=Zh,e=Sh();for(;;)try{if(861720===parseInt(t(378))/1+parseInt(t(414))/2*(-parseInt(t(429))/3)+-parseInt(t(370))/4+parseInt(t(432))/5*(-parseInt(t(374))/6)+-parseInt(t(419))/7*(parseInt(t(427))/8)+parseInt(t(435))/9+parseInt(t(426))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const kh=void 0,Ah="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSIjY2NjIi8+PHRleHQgeD0iNTAlIiB5PSI1MCUiIGRvbWluYW50LWJhc2VsaW5lPSJtaWRkbGUiIHRleHQtYW5jaG9yPSJtaWRkbGUiIGZpbGw9IiMwMDAiIGZvbnQtc2l6ZT0iMTYiPkxvZ28gbG9hZCBlcnJvcjwvdGV4dD48L3N2Zz4=";function Sh(){const t=["warn","initialize","isValid",'QR Code template "',"Valid license required for scanning validation.","message","error","isInitialized","QRCode.js (Server): Scanning validation requires a valid license.","6124MCYeea"," - ","Data URL conversion failed:","initializeIfNeeded","isBuffer","17206myCQiG","options","arrayBuffer","document","activateWithKey","catch","configureLicenseFetcher","28551720eqBWpf","5352GhNtuO","width","1482KGCKHl","reject","config","148875fTUDCW","useTemplate","createDocument","12375666TTGVSl","string","DOMParser",'QR Code style "',"instance","from","Content-Type","imageTools","replace","4846212jqaTUY","serialize",";base64,","validateZbar","30mofUjy","QRCode.js (Server): License state not yet initialized. Call QRCodeJs.initializeIfNeeded() or activate a license.","activateWithToken","Image size detection failed:","1148932cCDMNs","signal","Invalid style options provided to QRCodeBuilder:","statusText",'" not found. Ignoring.',"mime","height","application/xml","set","XMLSerializer","hls","useStyle","Image loading failed:","base64",'" not found. Using default basic template.',"validateScanning","get","validateZxing","license","setLicenseUrl","Zbar and Zxing validation threw an error: ","QRCode.js (Server): Background license initialization failed:","build","data:","getLicenseDetails","_hls","startsWith"];return(Sh=function(){return t})()}class Ch extends kr{static async[bh(417)](){return Tr[bh(439)].initialize()}static get hls(){const t=bh;return Tr.instance[t(412)]?Tr.instance[t(388)]:(Tr[t(439)].initialize().catch((t=>{console.error("QRCode.js (Server): Background license initialization failed:",t)})),!1)}_hls(){const t=bh;return Tr[t(439)].isInitialized?Tr.instance[t(388)]:(Tr[t(439)].initialize()[t(424)]((e=>{const n=t;console[n(411)](n(399),e)})),!1)}static[bh(402)](){const t=bh;return Tr[t(439)].isInitialized?Tr[t(439)][t(402)]():(Tr.instance[t(406)]().catch((e=>{const n=t;console[n(411)](n(399),e)})),null)}static[bh(425)](t){const e=bh;Tr[e(439)][e(425)](t)}static async token(t){const e=bh;return Tr[e(439)][e(376)](t)}static async[bh(396)](t){const e=bh;return Tr[e(439)][e(423)](t)}static[bh(397)](t){return Tr.setDefaultLicenseApiUrl(t),this}constructor(i){const o=bh,a=(new t)[o(434)](null,""),c=new Map,h=async t=>{const e=o;try{if(typeof t===e(436)){let n=c[e(394)](t);return n||(n=new Promise((async(n,s)=>{const i=e,o=new AbortController,a=setTimeout((()=>{o.abort(),s(new Error("Image load timed out"))}),15e3);try{const e=await fetch(t,{signal:o[i(379)]});if(!e.ok)throw new Error("HTTP "+e.status+i(415)+e[i(381)]);const s=Buffer[i(366)](await e[i(421)]()),c=await r(s);clearTimeout(a),n({contentType:e.headers[i(394)](i(367))||c?.[i(383)],data:s})}catch(t){clearTimeout(a),s(t)}})),c[e(386)](t,n),n)}{const n=Buffer[e(418)](t)?t:Buffer[e(366)](await t[e(421)]()),s=await r(n);return{contentType:s?.mime,data:n}}}catch(t){return console.error(e(390),t),{contentType:"image/svg+xml",data:Buffer[e(366)](Ah.split(",")[1],e(391))}}};global[o(387)]=e,global[o(437)]=n,super({...i,document:i[o(422)]||a,imageTools:i[o(368)]||{toDataURL:async t=>{const e=o;try{if("string"==typeof t&&t[e(404)](e(401)))return t;const{contentType:n,data:r}=await h(t);return e(401)+(n?.[e(369)](e(385),"image/svg+xml")||"image/png")+e(372)+r.toString(e(391))}catch(t){return console[e(411)](e(416),t),Ah}},getSize:async t=>{const e=o;try{const{data:n}=Buffer[e(418)](i.image)?{data:i.image}:await h(t),r=s(n);return{width:r[e(428)]||200,height:r[e(384)]||200}}catch(t){return console[e(411)](e(377),t),{width:200,height:200}}}}}),Tr[o(439)].isInitialized||Tr.instance[o(388)]?Tr[o(439)][o(412)]&&!Tr.instance.hls&&console[o(405)]("QRCode.js (Server): No valid license found. Some features may be limited."):console[o(405)](o(375))}async[bh(393)](){const t=bh;if(!this[t(403)]())return console[t(405)](t(413)),Promise[t(430)]({isValid:!1,message:t(409)});try{const e=await this[t(371)](),n=await xr[t(373)](e,!1);return n[t(407)]?n:await mh[t(395)](e)}catch(e){return console.warn(t(398)+(e instanceof Error?e[t(410)]:String(e))),Promise[t(430)]({isValid:!1,message:e instanceof Error?e[t(410)]:"Zbar and Zxing validation failed with an error"})}}static[bh(433)](t){return new Oh(t)}static useStyle(t){const e=bh;return(new Oh)[e(389)](t)}}class Oh{constructor(t){const e=bh;let n=kn;if(typeof t===e(436)){const r=t;vn[r]?n=vn[r]:console[e(405)](e(408)+r+e(392))}else t&&(n=t);this[e(431)]=Et({},n)}[bh(433)](t){const e=bh;let n={};if(typeof t===e(436)){const r=t;vn[r]?n=vn[r]:console.warn(e(408)+r+'" not found in useTemplate chain. Ignoring.')}else n=t;return this[e(431)]=Et(n,this[e(431)]),this}[bh(389)](t){const e=bh;let n=null;if(typeof t===e(436)){const r=t;if(!Jn[r])return console[e(405)](e(438)+r+e(382)),this;n=Jn[r]}else n=t;if(n){const{isValid:t,errors:r}=je(n);!t&&console[e(405)](e(380),r);const s=We(n);this[e(431)]=Et(this[e(431)],s)}return this}[bh(420)](t){const e=bh;return this[e(431)]=Et(this.config,t),new Ch(this[e(431)])}[bh(400)](){return new Ch(this[bh(431)])}}function Zh(t,e){const n=Sh();return(Zh=function(t,e){return n[t-=366]})(t,e)}class vh extends Ch{[bh(403)](){return!0}constructor(t){super(t)}}export{le as CornerDotType,de as CornerSquareType,ce as DotType,gt as ErrorCorrectionLevel,Me as ErrorCorrectionPercents,wh as FileExtension,ie as GradientType,be as ImageMode,yt as Mode,Ch as QRCodeJs,ge as ShapeType,mt as TypeNumber,vh as _,kh as browserUtils};
|
1
|
+
import{fileTypeFromBuffer as t}from"file-type";import e from"image-size";import{importSPKI as i,jwtVerify as o,errors as n}from"jose";const r={width:300,height:300,margin:0};class s{constructor(){this.buffer=[],this.length=0}getBuffer(){return this.buffer}getLengthInBits(){return this.length}toString(){let t="";for(let e=0;e<this.getLengthInBits();e+=1)t+=this.getBit(e)?"1":"0";return t}getBit(t){return 1==(this.buffer[~~(t/8)]>>>7-t%8&1)}put(t,e){for(let i=0;i<e;i+=1)this.putBit(1==(t>>>e-i-1&1))}putBit(t){this.length==8*this.buffer.length&&this.buffer.push(0),t&&(this.buffer[~~(this.length/8)]|=128>>>this.length%8),this.length+=1}}var a,l,h;!function(t){t[t.L=1]="L",t[t.M=0]="M",t[t.Q=3]="Q",t[t.H=2]="H"}(a||(a={}));class d{constructor(){throw new Error("error")}static glog(t){if(t<1)throw new Error("log("+t+")");return d.LOG_TABLE[t]}static gexp(t){for(;t<0;)t+=255;for(;t>=256;)t-=255;return d.EXP_TABLE[t]}}d.initialize=(()=>{d.EXP_TABLE=[],d.LOG_TABLE=[];for(let t=0;t<256;t+=1)d.EXP_TABLE.push(t<8?1<<t:d.EXP_TABLE[t-4]^d.EXP_TABLE[t-5]^d.EXP_TABLE[t-6]^d.EXP_TABLE[t-8]),d.LOG_TABLE.push(0);for(let t=0;t<255;t+=1)d.LOG_TABLE[d.EXP_TABLE[t]]=t})();class c{constructor(t,e=0){let i=0;for(;i<t.length&&0==t[i];)i+=1;this.num=[];const o=t.length-i;for(let e=0;e<o;e+=1)this.num.push(t[i+e]);for(let t=0;t<e;t+=1)this.num.push(0)}getAt(t){return this.num[t]}getLength(){return this.num.length}toString(){let t="";for(let e=0;e<this.getLength();e+=1)e>0&&(t+=","),t+=this.getAt(e);return t.toString()}toLogString(){let t="";for(let e=0;e<this.getLength();e+=1)e>0&&(t+=","),t+=d.glog(this.getAt(e));return t.toString()}multiply(t){const e=[],i=this.getLength()+t.getLength()-1;for(let t=0;t<i;t+=1)e.push(0);for(let i=0;i<this.getLength();i+=1)for(let o=0;o<t.getLength();o+=1)e[i+o]^=d.gexp(d.glog(this.getAt(i))+d.glog(t.getAt(o)));return new c(e)}mod(t){if(this.getLength()-t.getLength()<0)return this;const e=d.glog(this.getAt(0))-d.glog(t.getAt(0)),i=[];for(let t=0;t<this.getLength();t+=1)i.push(this.getAt(t));for(let o=0;o<t.getLength();o+=1)i[o]^=d.gexp(d.glog(t.getAt(o))+e);return new c(i).mod(t)}}!function(t){t[t.MODE_NUMBER=1]="MODE_NUMBER",t[t.MODE_ALPHA_NUM=2]="MODE_ALPHA_NUM",t[t.MODE_8BIT_BYTE=4]="MODE_8BIT_BYTE",t[t.MODE_KANJI=8]="MODE_KANJI"}(l||(l={}));class u{constructor(t,e){this.mode=t,this.data=e}getMode(){return this.mode}getData(){return this.data}getLengthInBits(t){if(1<=t&&t<10)switch(this.mode){case l.MODE_NUMBER:return 10;case l.MODE_ALPHA_NUM:return 9;case l.MODE_8BIT_BYTE:case l.MODE_KANJI:return 8;default:throw new Error("mode:"+this.mode)}else if(t<27)switch(this.mode){case l.MODE_NUMBER:return 12;case l.MODE_ALPHA_NUM:return 11;case l.MODE_8BIT_BYTE:return 16;case l.MODE_KANJI:return 10;default:throw new Error("mode:"+this.mode)}else{if(!(t<41))throw new Error("typeNumber:"+t);switch(this.mode){case l.MODE_NUMBER:return 14;case l.MODE_ALPHA_NUM:return 13;case l.MODE_8BIT_BYTE:return 16;case l.MODE_KANJI:return 12;default:throw new Error("mode:"+this.mode)}}}}class p extends u{constructor(t,e){super(l.MODE_8BIT_BYTE,t),this.stringToBytes=e}write(t){this.stringToBytes(this.getData()).forEach((e=>t.put(e,8)))}getLength(){return this.stringToBytes(this.getData()).length}}class m extends u{constructor(t){super(l.MODE_ALPHA_NUM,t)}write(t){const e=this.getData();let i=0;for(;i+1<e.length;)t.put(45*m.getCode(e.charAt(i))+m.getCode(e.charAt(i+1)),11),i+=2;i<e.length&&t.put(m.getCode(e.charAt(i)),6)}getLength(){return this.getData().length}static getCode(t){if("0"<=t&&t<="9")return t.charCodeAt(0)-"0".charCodeAt(0);if("A"<=t&&t<="Z")return t.charCodeAt(0)-"A".charCodeAt(0)+10;switch(t){case" ":return 36;case"$":return 37;case"%":return 38;case"*":return 39;case"+":return 40;case"-":return 41;case".":return 42;case"/":return 43;case":":return 44;default:throw new Error("illegal char :"+t)}}}class g extends u{constructor(t,e){super(l.MODE_KANJI,t),this.stringToBytes=e}write(t){const e=this.stringToBytes(this.getData());let i=0;for(;i+1<e.length;){let o=(255&e[i])<<8|255&e[i+1];if(33088<=o&&o<=40956)o-=33088;else{if(!(57408<=o&&o<=60351))throw new Error("illegal char at "+(i+1)+"/"+o);o-=49472}o=192*(o>>>8&255)+(255&o),t.put(o,13),i+=2}if(i<e.length)throw new Error("illegal char at "+(i+1))}getLength(){return this.stringToBytes(this.getData()).length/2}}class f extends u{constructor(t){super(l.MODE_NUMBER,t)}write(t){const e=this.getData();let i=0;for(;i+2<e.length;)t.put(f.strToNum(e.substring(i,i+3)),10),i+=3;i<e.length&&(e.length-i==1?t.put(f.strToNum(e.substring(i,i+1)),4):e.length-i==2&&t.put(f.strToNum(e.substring(i,i+2)),7))}getLength(){return this.getData().length}static strToNum(t){let e=0;for(let i=0;i<t.length;i+=1)e=10*e+f.chatToNum(t.charAt(i));return e}static chatToNum(t){if("0"<=t&&t<="9")return t.charCodeAt(0)-"0".charCodeAt(0);throw new Error("illegal char :"+t)}}!function(t){t[t.PATTERN000=0]="PATTERN000",t[t.PATTERN001=1]="PATTERN001",t[t.PATTERN010=2]="PATTERN010",t[t.PATTERN011=3]="PATTERN011",t[t.PATTERN100=4]="PATTERN100",t[t.PATTERN101=5]="PATTERN101",t[t.PATTERN110=6]="PATTERN110",t[t.PATTERN111=7]="PATTERN111"}(h||(h={}));class b{constructor(){throw new Error("error")}static getPatternPosition(t){return b.PATTERN_POSITION_TABLE[t-1]}static getMaxLength(t,e,i){const o=t-1;let n=0,r=0;switch(i){case a.L:n=0;break;case a.M:n=1;break;case a.Q:n=2;break;case a.H:n=3;break;default:throw new Error("e:"+i)}switch(e){case l.MODE_NUMBER:r=0;break;case l.MODE_ALPHA_NUM:r=1;break;case l.MODE_8BIT_BYTE:r=2;break;case l.MODE_KANJI:r=3;break;default:throw new Error("m:"+e)}return b.MAX_LENGTH[o][n][r]}static getErrorCorrectPolynomial(t){let e=new c([1]);for(let i=0;i<t;i+=1)e=e.multiply(new c([1,d.gexp(i)]));return e}static getMaskFunc(t){switch(t){case h.PATTERN000:return(t,e)=>(t+e)%2==0;case h.PATTERN001:return(t,e)=>t%2==0;case h.PATTERN010:return(t,e)=>e%3==0;case h.PATTERN011:return(t,e)=>(t+e)%3==0;case h.PATTERN100:return(t,e)=>(~~(t/2)+~~(e/3))%2==0;case h.PATTERN101:return(t,e)=>t*e%2+t*e%3==0;case h.PATTERN110:return(t,e)=>(t*e%2+t*e%3)%2==0;case h.PATTERN111:return(t,e)=>(t*e%3+(t+e)%2)%2==0;default:throw new Error("mask:"+t)}}static getLostPoint(t){const e=t.getModuleCount();let i=0;for(let o=0;o<e;o+=1)for(let n=0;n<e;n+=1){let r=0;const s=t.isDark(o,n);for(let i=-1;i<=1;i+=1)if(!(o+i<0||e<=o+i))for(let a=-1;a<=1;a+=1)n+a<0||e<=n+a||0==i&&0==a||s==t.isDark(o+i,n+a)&&(r+=1);r>5&&(i+=3+r-5)}for(let o=0;o<e-1;o+=1)for(let n=0;n<e-1;n+=1){let e=0;t.isDark(o,n)&&(e+=1),t.isDark(o+1,n)&&(e+=1),t.isDark(o,n+1)&&(e+=1),t.isDark(o+1,n+1)&&(e+=1),0!=e&&4!=e||(i+=3)}for(let o=0;o<e;o+=1)for(let n=0;n<e-6;n+=1)t.isDark(o,n)&&!t.isDark(o,n+1)&&t.isDark(o,n+2)&&t.isDark(o,n+3)&&t.isDark(o,n+4)&&!t.isDark(o,n+5)&&t.isDark(o,n+6)&&(i+=40);for(let o=0;o<e;o+=1)for(let n=0;n<e-6;n+=1)t.isDark(n,o)&&!t.isDark(n+1,o)&&t.isDark(n+2,o)&&t.isDark(n+3,o)&&t.isDark(n+4,o)&&!t.isDark(n+5,o)&&t.isDark(n+6,o)&&(i+=40);let o=0;for(let i=0;i<e;i+=1)for(let n=0;n<e;n+=1)t.isDark(n,i)&&(o+=1);return i+=10*(Math.abs(100*o/e/e-50)/5),i}static getBCHTypeInfo(t){let e=t<<10;for(;b.getBCHDigit(e)-b.getBCHDigit(b.G15)>=0;)e^=b.G15<<b.getBCHDigit(e)-b.getBCHDigit(b.G15);return(t<<10|e)^b.G15_MASK}static getBCHTypeNumber(t){let e=t<<12;for(;b.getBCHDigit(e)-b.getBCHDigit(b.G18)>=0;)e^=b.G18<<b.getBCHDigit(e)-b.getBCHDigit(b.G18);return t<<12|e}static getBCHDigit(t){let e=0;for(;0!=t;)e+=1,t>>>=1;return e}}b.PATTERN_POSITION_TABLE=[[],[6,18],[6,22],[6,26],[6,30],[6,34],[6,22,38],[6,24,42],[6,26,46],[6,28,50],[6,30,54],[6,32,58],[6,34,62],[6,26,46,66],[6,26,48,70],[6,26,50,74],[6,30,54,78],[6,30,56,82],[6,30,58,86],[6,34,62,90],[6,28,50,72,94],[6,26,50,74,98],[6,30,54,78,102],[6,28,54,80,106],[6,32,58,84,110],[6,30,58,86,114],[6,34,62,90,118],[6,26,50,74,98,122],[6,30,54,78,102,126],[6,26,52,78,104,130],[6,30,56,82,108,134],[6,34,60,86,112,138],[6,30,58,86,114,142],[6,34,62,90,118,146],[6,30,54,78,102,126,150],[6,24,50,76,102,128,154],[6,28,54,80,106,132,158],[6,32,58,84,110,136,162],[6,26,54,82,110,138,166],[6,30,58,86,114,142,170]],b.MAX_LENGTH=[[[41,25,17,10],[34,20,14,8],[27,16,11,7],[17,10,7,4]],[[77,47,32,20],[63,38,26,16],[48,29,20,12],[34,20,14,8]],[[127,77,53,32],[101,61,42,26],[77,47,32,20],[58,35,24,15]],[[187,114,78,48],[149,90,62,38],[111,67,46,28],[82,50,34,21]],[[255,154,106,65],[202,122,84,52],[144,87,60,37],[106,64,44,27]],[[322,195,134,82],[255,154,106,65],[178,108,74,45],[139,84,58,36]],[[370,224,154,95],[293,178,122,75],[207,125,86,53],[154,93,64,39]],[[461,279,192,118],[365,221,152,93],[259,157,108,66],[202,122,84,52]],[[552,335,230,141],[432,262,180,111],[312,189,130,80],[235,143,98,60]],[[652,395,271,167],[513,311,213,131],[364,221,151,93],[288,174,119,74]]],b.G15=1335,b.G18=7973,b.G15_MASK=21522;class O{constructor(t,e){this.totalCount=t,this.dataCount=e}getDataCount(){return this.dataCount}getTotalCount(){return this.totalCount}static getRSBlocks(t,e){const i=O.getRsBlockTable(t,e),o=i.length/3,n=[];for(let t=0;t<o;t+=1){const e=i[3*t+0],o=i[3*t+1],r=i[3*t+2];for(let t=0;t<e;t+=1)n.push(new O(o,r))}return n}static getRsBlockTable(t,e){switch(e){case a.L:return O.RS_BLOCK_TABLE[4*(t-1)+0];case a.M:return O.RS_BLOCK_TABLE[4*(t-1)+1];case a.Q:return O.RS_BLOCK_TABLE[4*(t-1)+2];case a.H:return O.RS_BLOCK_TABLE[4*(t-1)+3]}throw new Error("tn:"+t+"/ecl:"+e)}}O.RS_BLOCK_TABLE=[[1,26,19],[1,26,16],[1,26,13],[1,26,9],[1,44,34],[1,44,28],[1,44,22],[1,44,16],[1,70,55],[1,70,44],[2,35,17],[2,35,13],[1,100,80],[2,50,32],[2,50,24],[4,25,9],[1,134,108],[2,67,43],[2,33,15,2,34,16],[2,33,11,2,34,12],[2,86,68],[4,43,27],[4,43,19],[4,43,15],[2,98,78],[4,49,31],[2,32,14,4,33,15],[4,39,13,1,40,14],[2,121,97],[2,60,38,2,61,39],[4,40,18,2,41,19],[4,40,14,2,41,15],[2,146,116],[3,58,36,2,59,37],[4,36,16,4,37,17],[4,36,12,4,37,13],[2,86,68,2,87,69],[4,69,43,1,70,44],[6,43,19,2,44,20],[6,43,15,2,44,16],[4,101,81],[1,80,50,4,81,51],[4,50,22,4,51,23],[3,36,12,8,37,13],[2,116,92,2,117,93],[6,58,36,2,59,37],[4,46,20,6,47,21],[7,42,14,4,43,15],[4,133,107],[8,59,37,1,60,38],[8,44,20,4,45,21],[12,33,11,4,34,12],[3,145,115,1,146,116],[4,64,40,5,65,41],[11,36,16,5,37,17],[11,36,12,5,37,13],[5,109,87,1,110,88],[5,65,41,5,66,42],[5,54,24,7,55,25],[11,36,12,7,37,13],[5,122,98,1,123,99],[7,73,45,3,74,46],[15,43,19,2,44,20],[3,45,15,13,46,16],[1,135,107,5,136,108],[10,74,46,1,75,47],[1,50,22,15,51,23],[2,42,14,17,43,15],[5,150,120,1,151,121],[9,69,43,4,70,44],[17,50,22,1,51,23],[2,42,14,19,43,15],[3,141,113,4,142,114],[3,70,44,11,71,45],[17,47,21,4,48,22],[9,39,13,16,40,14],[3,135,107,5,136,108],[3,67,41,13,68,42],[15,54,24,5,55,25],[15,43,15,10,44,16],[4,144,116,4,145,117],[17,68,42],[17,50,22,6,51,23],[19,46,16,6,47,17],[2,139,111,7,140,112],[17,74,46],[7,54,24,16,55,25],[34,37,13],[4,151,121,5,152,122],[4,75,47,14,76,48],[11,54,24,14,55,25],[16,45,15,14,46,16],[6,147,117,4,148,118],[6,73,45,14,74,46],[11,54,24,16,55,25],[30,46,16,2,47,17],[8,132,106,4,133,107],[8,75,47,13,76,48],[7,54,24,22,55,25],[22,45,15,13,46,16],[10,142,114,2,143,115],[19,74,46,4,75,47],[28,50,22,6,51,23],[33,46,16,4,47,17],[8,152,122,4,153,123],[22,73,45,3,74,46],[8,53,23,26,54,24],[12,45,15,28,46,16],[3,147,117,10,148,118],[3,73,45,23,74,46],[4,54,24,31,55,25],[11,45,15,31,46,16],[7,146,116,7,147,117],[21,73,45,7,74,46],[1,53,23,37,54,24],[19,45,15,26,46,16],[5,145,115,10,146,116],[19,75,47,10,76,48],[15,54,24,25,55,25],[23,45,15,25,46,16],[13,145,115,3,146,116],[2,74,46,29,75,47],[42,54,24,1,55,25],[23,45,15,28,46,16],[17,145,115],[10,74,46,23,75,47],[10,54,24,35,55,25],[19,45,15,35,46,16],[17,145,115,1,146,116],[14,74,46,21,75,47],[29,54,24,19,55,25],[11,45,15,46,46,16],[13,145,115,6,146,116],[14,74,46,23,75,47],[44,54,24,7,55,25],[59,46,16,1,47,17],[12,151,121,7,152,122],[12,75,47,26,76,48],[39,54,24,14,55,25],[22,45,15,41,46,16],[6,151,121,14,152,122],[6,75,47,34,76,48],[46,54,24,10,55,25],[2,45,15,64,46,16],[17,152,122,4,153,123],[29,74,46,14,75,47],[49,54,24,10,55,25],[24,45,15,46,46,16],[4,152,122,18,153,123],[13,74,46,32,75,47],[48,54,24,14,55,25],[42,45,15,32,46,16],[20,147,117,4,148,118],[40,75,47,7,76,48],[43,54,24,22,55,25],[10,45,15,67,46,16],[19,148,118,6,149,119],[18,75,47,31,76,48],[34,54,24,34,55,25],[20,45,15,61,46,16]];const k=Array(41).fill(0).map(((t,e)=>e));var w,y;!function(t){t.L="L",t.M="M",t.Q="Q",t.H="H"}(w||(w={})),function(t){t.numeric="numeric",t.alphanumeric="alphanumeric",t.byte="byte",t.kanji="kanji",t.unicode="unicode"}(y||(y={}));class Z{constructor(t=0,e=w.L){this.modules=[],this.moduleCount=0,this.typeNumber=t,this.errorCorrectLevel=a[e],this.qrDataList=[]}getTypeNumber(){return this.typeNumber}setTypeNumber(t){this.typeNumber=t}getErrorCorrectLevel(){return this.errorCorrectLevel}setErrorCorrectLevel(t){this.errorCorrectLevel=t}clearData(){this.qrDataList=[]}addData(t,e=y.byte){if(t instanceof u)this.qrDataList.push(t);else{if("string"!=typeof t)throw new Error(typeof t);switch(e){case y.numeric:this.qrDataList.push(new f(t));break;case y.alphanumeric:this.qrDataList.push(new m(t));break;case y.byte:this.qrDataList.push(new p(t,Z.stringToBytesFuncs.default));break;case y.unicode:this.qrDataList.push(new p(t,Z.stringToBytesFuncs.UTF8));break;case y.kanji:this.qrDataList.push(new g(t,Z.stringToBytesFuncs.SJIS));break;default:throw new Error("mode:"+e)}}}isDark(t,e){return!(!this.modules[t]||null==this.modules[t][e])&&this.modules[t][e]}getModuleCount(){return this.moduleCount}make(){if(this.typeNumber<1){let t=1;for(;t<40;t++){const e=O.getRSBlocks(t,this.errorCorrectLevel),i=new s;this.qrDataList.forEach((e=>{i.put(e.getMode(),4),i.put(e.getLength(),e.getLengthInBits(t)),e.write(i)}));const o=e.reduce(((t,e)=>t+e.getDataCount()),0);if(i.getLengthInBits()<=8*o)break}this.typeNumber=t}this.makeImpl(!1,this.getBestMaskPattern())}getBestMaskPattern(){let t=0,e=0;for(let i=0;i<8;i+=1){this.makeImpl(!0,i);const o=b.getLostPoint(this);(0==i||t>o)&&(t=o,e=i)}return e}makeImpl(t,e){this.moduleCount=4*this.typeNumber+17,this.modules=[];for(let t=0;t<this.moduleCount;t+=1){this.modules.push([]);for(let e=0;e<this.moduleCount;e+=1)this.modules[t].push(null)}this.setupPositionProbePattern(0,0),this.setupPositionProbePattern(this.moduleCount-7,0),this.setupPositionProbePattern(0,this.moduleCount-7),this.setupPositionAdjustPattern(),this.setupTimingPattern(),this.setupTypeInfo(t,e),this.typeNumber>=7&&this.setupTypeNumber(t);const i=Z.createData(this.typeNumber,this.errorCorrectLevel,this.qrDataList);this.mapData(i,e)}mapData(t,e){let i=-1,o=this.moduleCount-1,n=7,r=0;const s=b.getMaskFunc(e);for(let e=this.moduleCount-1;e>0;e-=2)for(6==e&&(e-=1);;){for(let i=0;i<2;i+=1)if(null==this.modules[o][e-i]){let a=!1;r<t.length&&(a=1==(t[r]>>>n&1));s(o,e-i)&&(a=!a),this.modules[o][e-i]=a,n-=1,-1==n&&(r+=1,n=7)}if(o+=i,o<0||this.moduleCount<=o){o-=i,i=-i;break}}}setupPositionAdjustPattern(){const t=b.getPatternPosition(this.typeNumber);t.forEach((e=>{t.forEach((t=>{if(null==this.modules[e][t])for(let i=-2;i<=2;i+=1)for(let o=-2;o<=2;o+=1)this.modules[e+i][t+o]=-2==i||2==i||-2==o||2==o||0==i&&0==o}))}))}setupPositionProbePattern(t,e){for(let i=-1;i<=7;i+=1)for(let o=-1;o<=7;o+=1)t+i<=-1||this.moduleCount<=t+i||e+o<=-1||this.moduleCount<=e+o||(this.modules[t+i][e+o]=0<=i&&i<=6&&(0==o||6==o)||0<=o&&o<=6&&(0==i||6==i)||2<=i&&i<=4&&2<=o&&o<=4)}setupTimingPattern(){for(let t=8;t<this.moduleCount-8;t+=1)null==this.modules[t][6]&&(this.modules[t][6]=t%2==0);for(let t=8;t<this.moduleCount-8;t+=1)null==this.modules[6][t]&&(this.modules[6][t]=t%2==0)}setupTypeNumber(t){const e=b.getBCHTypeNumber(this.typeNumber);for(let i=0;i<18;i+=1)this.modules[~~(i/3)][i%3+this.moduleCount-8-3]=!t&&1==(e>>i&1);for(let i=0;i<18;i+=1)this.modules[i%3+this.moduleCount-8-3][~~(i/3)]=!t&&1==(e>>i&1)}setupTypeInfo(t,e){const i=this.errorCorrectLevel<<3|e,o=b.getBCHTypeInfo(i);for(let e=0;e<15;e+=1){const i=!t&&1==(o>>e&1);e<6?this.modules[e][8]=i:e<8?this.modules[e+1][8]=i:this.modules[this.moduleCount-15+e][8]=i}for(let e=0;e<15;e+=1){const i=!t&&1==(o>>e&1);e<8?this.modules[8][this.moduleCount-e-1]=i:e<9?this.modules[8][15-e-1+1]=i:this.modules[8][15-e-1]=i}this.modules[this.moduleCount-8][8]=!t}static createData(t,e,i){const o=O.getRSBlocks(t,e),n=new s;i.forEach((e=>{n.put(e.getMode(),4),n.put(e.getLength(),e.getLengthInBits(t)),e.write(n)}));const r=o.reduce(((t,e)=>t+e.getDataCount()),0);if(n.getLengthInBits()>8*r)throw new Error("code length overflow. ("+n.getLengthInBits()+">"+8*r+")");for(n.getLengthInBits()+4<=8*r&&n.put(0,4);n.getLengthInBits()%8!=0;)n.putBit(!1);for(;!(n.getLengthInBits()>=8*r||(n.put(Z.PAD0,8),n.getLengthInBits()>=8*r));)n.put(Z.PAD1,8);return Z.createBytes(n,o)}static createBytes(t,e){let i=0,o=0,n=0;const r=new Array(e.length).map((t=>[])),s=new Array(e.length).map((t=>[]));function a(t){const e=[];for(let i=0;i<t;i+=1)e.push(0);return e}for(let l=0;l<e.length;l+=1){const h=e[l].getDataCount(),d=e[l].getTotalCount()-h;o=Math.max(o,h),n=Math.max(n,d),r[l]=a(h);for(let e=0;e<r[l].length;e+=1)r[l][e]=255&t.getBuffer()[e+i];i+=h;const u=b.getErrorCorrectPolynomial(d),p=new c(r[l],u.getLength()-1).mod(u);s[l]=a(u.getLength()-1);for(let t=0;t<s[l].length;t+=1){const e=t+p.getLength()-s[l].length;s[l][t]=e>=0?p.getAt(e):0}}const l=a(e.reduce(((t,e)=>t+e.getTotalCount()),0));let h=0;for(let t=0;t<o;t+=1)for(let i=0;i<e.length;i+=1)t<r[i].length&&(l[h]=r[i][t],h+=1);for(let t=0;t<n;t+=1)for(let i=0;i<e.length;i+=1)t<s[i].length&&(l[h]=s[i][t],h+=1);return l}}Z.stringToBytesFuncs={default(t){const e=[];for(let i=0;i<t.length;i+=1){const o=t.charCodeAt(i);e.push(255&o)}return e}},Z.PAD0=236,Z.PAD1=17;const S=t=>!!t&&"object"==typeof t&&!Array.isArray(t);function A(t,e=!1){const i=t.split("").reverse().join("");return e?i.toLocaleUpperCase():i}function C(t,...e){if(!e.length)return t;const i=e.shift();return void 0!==i&&S(t)&&S(i)?(t={...t},Object.keys(i).forEach((e=>{const o=t[e],n=i[e];Array.isArray(o)&&Array.isArray(n)?t[e]=n:S(o)&&S(n)?t[e]=C({...o},n):t[e]=n})),C(t,...e)):t}const j=A("rq",!0)+A("-",!0)+A("talp",!0)+A("mrof",!0),I=A("a".repeat(6)+"#",!0),W="top",Y="bottom",J="left",V="right";const v=t=>"number"==typeof t?t:parseInt(t.replace("%",""),10),T=(t,e="0%")=>t?t.endsWith("%")?t:t+"%":e,q="text",X="image",M={disabled:!1,enableText:!0,type:"text",value:j},G=(t,e)=>!t?.decorations?.[e]?.disabled,R=(t,e,i)=>!i||!t?.decorations?.[e]?.disabled,B=t=>{if("string"==typeof t)return t;if(!t)return"";const{fontFace:e="Helvetica",fontSize:i=20,fontColor:o="#000000",letterSpacing:n=0,fontWeight:r="normal"}=t;return`font-weight: ${r}; font-size: ${i}px; font-family: ${e}; fill: ${o}; letter-spacing: ${n}px;`};M.style={fontFace:"Helvetica",fontSize:20,fontColor:I,letterSpacing:2};const D={...M};const x=({document:t,position:e,rotate:i,flip:o,thickness:n,height:r,width:s,round:a,offset:l=0,curveAdjustment:h=0,curveRadius:d,outerBorderPadding:c=0,instanceId:u})=>{const p=Math.min(s,r),m=t.createElementNS("http://www.w3.org/2000/svg","path"),g=(t=>{if(t>=50)return 1;const e=[{R:0,P:0},{R:5,P:0},{R:10,P:.12},{R:15,P:.2},{R:20,P:.32},{R:25,P:.44},{R:30,P:.56},{R:35,P:.65},{R:40,P:.78},{R:45,P:.9},{R:50,P:1}],i=e.find((e=>t<=e.R))||e[0],o=e.find((e=>t>e.R))||e[e.length-1],{R:n,P:r}=i,{R:s,P:a}=o;return r+(t-n)/(s-n)*(a-r)})("string"==typeof a?v(a):a),f=void 0!==d?function(t){let e;return e="number"==typeof t?t:"string"==typeof t?(t.includes("%"),parseFloat(t)):0,e=Math.min(Math.max(e,0),50),.5+e/50*.5}(d):g,b=(p-n-2*c-10*h*2)/2*f,O=((t,e,i,o)=>{const n=i/2,r=o/2;let s="";return t&&(s+=`rotate(${t}, ${n}, ${r})`),e&&(s+=`translate(${n}, ${r}) scale(1, -1) translate(${-n}, ${-r})`),s.trim()})(i,o,s,r);m.setAttribute("id",`${e}-text-path-${u}`),m.setAttribute("transform",O);const{startX:k,startY:w,pathWidth:y}=((t,e,i,o,n={})=>{let r=e/2,s=e/2+o,a=t-e;return i&&(a-=2*i,r+=i,s+=i),r+=n.left||0,s+=n.top||0,{startX:r,startY:s,pathWidth:a}})(p,n,c,l);return m.setAttribute("d",((t,e,i,o)=>`M${t},${e+o} a${o},${o} 0 0 1 ${o},${-o} h${i-2*o} a${o},${o} 0 0 1 ${o},${o}`)(k,w,y,b)),m},L=({document:t,thickness:e,value:i,svg:o,position:n,height:r,width:s,round:a,style:l,offset:h=0,curveAdjustment:d=0,curveDisabled:c=!1,outerBorderPadding:u=0,curveRadius:p,instanceId:m,noBorderThickness:g,enabledBorders:f})=>{let b=0,O=!1;if(n===V?b=90:n===Y?O=!c:n===J&&(b=270),c){const a=t.createElementNS("http://www.w3.org/2000/svg","text");let d=s/2,c=(r-Math.min(s,r)+e)/2+2*u+h-(r-s>0?0:(s-r)/2);if(n===Y?c=r-2*u-e/2-h:n===W&&(c=2*u+e/2+h),n===W||n===Y){let t=0;!f[J]&&f[V]?t=-(e-g)/2:f[J]&&!f[V]&&(t=(e-g)/2),d+=t}else if(n===J||n===V){let t=0;!f[W]&&f[Y]?t=n===J?(e-g)/2:-(e-g)/2:f[W]&&!f[Y]&&(t=n===J?-(e-g)/2:(e-g)/2),d+=t}let p="";0!==b&&(p+=`rotate(${b}, ${s/2}, ${r/2})`),a.setAttribute("x",d.toString()),a.setAttribute("y",c.toString()),a.setAttribute("text-anchor","middle"),a.setAttribute("dominant-baseline","middle"),p&&a.setAttribute("transform",p.trim()),a.textContent=i;const m=B(l);a.setAttribute("style",m),o.appendChild(a)}else{let c=o.getElementsByTagName("defs")[0];c||(c=t.createElementNS("http://www.w3.org/2000/svg","defs"),o.appendChild(c));const k=x({document:t,position:n,rotate:b,flip:O,thickness:e,height:r,width:s,round:a,offset:h,curveAdjustment:d,enabledBorders:f,outerBorderPadding:u,curveRadius:p,noBorderThickness:g,instanceId:m}),{x:w,y}=function(t,e,i,o){let n=0,r=0;const s=(e-i)/2;return o.left&&o.right&&o.top&&o.bottom?(n=0,r=0):"top"===t||"bottom"===t?!o.left&&o.right?n=-s:(o.left&&!o.right||o.left&&o.right)&&(n=s):"left"!==t&&"right"!==t||(!o.top&&o.bottom?o.left&&o.right?(n="left"===t?2*+s:0,r=-s):n="left"===t?+s:-s:o.top&&!o.bottom?o.left&&o.right?(n="left"===t?0:2*s,r=-s):n=0:o.top&&o.bottom?r=o.left&&o.right?2*+s:+s:(n=o.left&&o.right?2*+s:+s,r=o.left&&o.right?2*-s:-s)),{x:n,y:r}}(n,e,g,f);if(0!==w||0!==y){const t=`${k.getAttribute("transform")||""} translate(${w}, ${y})`.trim();k.setAttribute("transform",t)}c.appendChild(k),o.appendChild((({document:t,value:e,position:i,style:o,instanceId:n})=>{const r=t.createElementNS("http://www.w3.org/2000/svg","text"),s=t.createElementNS("http://www.w3.org/2000/svg","textPath");s.setAttribute("href",`#${i}-text-path-${n}`),s.setAttribute("text-anchor","middle"),s.setAttribute("startOffset","50%"),s.textContent=e,s.setAttribute("alignment-baseline","middle");const a=B(o);return r.setAttribute("style",a),r.appendChild(s),r})({document:t,position:n,rotate:b,value:i,style:l,instanceId:m}))}},P=({document:t,thickness:e,value:i,svg:o,position:n,height:r,width:s,offset:a=0,style:l})=>{const h=t.createElementNS("http://www.w3.org/2000/svg","image"),d=Math.min(s,r);let c=(s-d+e)/2,u=(r-d+e)/2+a;n===W?c+=(d-e)/2:n===V?(c+=d-e,u+=(d-e)/2):n===Y?(c+=(d-e)/2,u+=d-e):n===J&&(u+=(d-e)/2),h.setAttribute("href",i||""),h.setAttribute("x",`${c}`),h.setAttribute("y",`${u}`),h.setAttribute("style",l?.toString()||""),o.appendChild(h)},F=t=>(e,i,o,n,r,s,a,l,h)=>{const{instanceId:d}=i,c=o,u=o,p=Math.min(c,u),m=T(t.radius),g=m&&v(m)>0?v(m)/100*p:0,f=T(t?.inner?.radius,g),b=Math.min(Math.max(t.inner?.scale??1,0),1.5),O=t.inner?.horizontalOffset??0,k=t.inner?.verticalOffset??0,w=t.thickness,y=t.color??"#000000",Z=t.borderOuter?t.borderOuter.thickness/2:0,S=t.borderInner?t.borderInner.thickness/2:0,A=i.document,C=r.left+r.right,j=r.top+r.bottom,I=n(w,g),Y={top:G(t,"top"),right:G(t,"right"),bottom:R(t,"bottom",h()),left:G(t,"left")},M=A.createElementNS("http://www.w3.org/2000/svg","rect"),B={x:s.left/2,y:s.top/2,width:p+C-s.left,height:p+j-s.top,fill:y,rx:m??g};Object.entries(B).forEach((([t,e])=>{M.setAttribute(t,e.toString())}));const x=A.createElementNS("http://www.w3.org/2000/svg","rect"),F=g>=200?"50%":g,U=c+C-(r.left+r.right+a.left+a.right+s.left+s.right),N=u+j-(r.top+r.bottom+a.top+a.bottom+s.top+s.bottom),E=U*b,z=N*b,K=(U-E)/2-O,H=(N-z)/2-k,Q={x:r.left+a.left+s.left+K,y:r.top+a.top+s.top+H,width:E,height:z,fill:I?.getAttribute("fill")||"#ffffff",rx:f??F};Object.entries(Q).forEach((([t,e])=>x.setAttribute(t,e.toString()))),I&&(({strokePath:t,backgroundMaskGroup:e,svgElement:i,color:o})=>{t.setAttribute("fill",e?.getAttribute("fill")||o),e.setAttribute("fill","none"),e.setAttribute("stroke-width","0"),i.insertBefore(e,i.firstChild)})({strokePath:x,backgroundMaskGroup:I,svgElement:e,color:y});let $=e.getElementsByTagName("defs")[0];$||($=A.createElementNS("http://www.w3.org/2000/svg","defs"),e.insertBefore($,e.firstChild));const _=A.createElementNS("http://www.w3.org/2000/svg","mask");_.setAttribute("id",`qr-mask-${d}`),_.setAttribute("maskUnits","userSpaceOnUse");const tt=A.createElementNS("http://www.w3.org/2000/svg","rect");if(tt.setAttribute("fill","white"),Object.entries(Q).forEach((([t,e])=>{"fill"!==t&&tt.setAttribute(t,e.toString())})),$.appendChild(_),_.appendChild(tt),e.insertBefore(x,e.firstChild?.nextSibling),e.insertBefore(M,e.firstChild),t.borderOuter&&t.borderOuter.thickness>0){const i=A.createElementNS("http://www.w3.org/2000/svg","rect"),o={x:s.left/2,y:s.top/2,width:c+C-s.left,height:u+j-s.top,fill:"none",rx:m??g,stroke:t.borderOuter.color,"stroke-width":t.borderOuter.thickness};Object.entries(o).forEach((([t,e])=>i.setAttribute(t,e.toString()))),e.insertBefore(i,e.firstChild?.nextSibling)}if(I){if(Array.from(e.getElementsByTagName("rect"))[0]){const t=e.firstChild;t?e.insertBefore(I,t):e.appendChild(I)}}if(t.borderInner&&t.borderInner.thickness>0){const i=A.createElementNS("http://www.w3.org/2000/svg","rect"),o={x:r.left+a.left+s.left+K,y:r.top+a.top+s.top+H,width:E,height:z,fill:"none",stroke:t.borderInner.color,"stroke-width":a.left,rx:f??F};Object.entries(o).forEach((([t,e])=>i.setAttribute(t,e.toString()))),e.appendChild(i)}let et={...D};if(!h()){const e=((t,e=[W,J,V])=>{for(const i of e){const e=t.decorations?.[i];if(e&&e.enableText&&!e.disabled&&e.type===q&&e.style)return e.style}})(t);e&&(et={...et,style:e})}const it=h()?t:{...t,decorations:{...t.decorations,bottom:{...t.decorations?.bottom||{},...et,disabled:!1,enableText:!0}}};for(const t in it.decorations){const i=it.decorations[t];if(!i?.enableText||!Y[t])continue;const o=i.type===X?P:i.type===q?L:void 0;o&&o({document:A,svg:e,position:t,thickness:it.thickness,value:i.value,style:i.style,offset:i.offset,curveAdjustment:i.curveAdjustment,curveDisabled:i.curveDisabled,height:u+j,width:c+C,enabledBorders:Y,outerBorderPadding:Z,innerBorderPadding:S,round:m,curveRadius:i.curveRadius,instanceId:d,noBorderThickness:l})}};var U,N,E,z,K,H;function Q(t){const e={...t};if(!e.colorStops||!e.colorStops.length)throw new Error("Field 'colorStops' is required in gradient");return e.rotation?e.rotation=Number(e.rotation):e.rotation=0,e.colorStops=e.colorStops.map((t=>({...t,offset:Number(t.offset)}))),e}function $(t){const e={...t};return e.imageOptions={...e.imageOptions,imageSize:Math.min(1,Number(e.imageOptions?.imageSize))||1,margin:Number(e.imageOptions?.margin)||0},e.imageOptions.mode==H.overlay&&(e.imageOptions.margin=0),e.imageOptions?.fill?.gradient&&(e.imageOptions.fill.gradient=Q(e.imageOptions.fill.gradient)),e.dotsOptions={...e.dotsOptions},e.dotsOptions.gradient&&(e.dotsOptions.gradient=Q(e.dotsOptions.gradient)),e.dotsOptions.size=Math.round(Math.max(0,e.dotsOptions.size)||10),e.cornersSquareOptions&&(e.cornersSquareOptions={...e.cornersSquareOptions},e.cornersSquareOptions.gradient&&(e.cornersSquareOptions.gradient=Q(e.cornersSquareOptions.gradient))),e.cornersDotOptions&&(e.cornersDotOptions={...e.cornersDotOptions},e.cornersDotOptions.gradient&&(e.cornersDotOptions.gradient=Q(e.cornersDotOptions.gradient))),e.backgroundOptions&&(e.backgroundOptions={...e.backgroundOptions},e.backgroundOptions.gradient&&(e.backgroundOptions.gradient=Q(e.backgroundOptions.gradient))),"undefined"==typeof document||e.document||(e.document=document),e}!function(t){t.radial="radial",t.linear="linear"}(U||(U={})),function(t){t.dot="dot",t.randomDot="random-dot",t.rounded="rounded",t.extraRounded="extra-rounded",t.verticalLine="vertical-line",t.horizontalLine="horizontal-line",t.classy="classy",t.classyRounded="classy-rounded",t.square="square",t.smallSquare="small-square",t.tinySquare="tiny-square",t.star="star",t.plus="plus",t.diamond="diamond"}(N||(N={})),function(t){t.dot="dot",t.square="square",t.heart="heart",t.rounded="rounded",t.classy="classy",t.outpoint="outpoint",t.inpoint="inpoint"}(E||(E={})),function(t){t.dot="dot",t.square="square",t.rounded="rounded",t.classy="classy",t.outpoint="outpoint",t.inpoint="inpoint"}(z||(z={})),function(t){t.square="square",t.circle="circle"}(K||(K={})),function(t){t.center="center",t.overlay="overlay",t.background="background"}(H||(H={}));const _={[w.L]:.07,[w.M]:.15,[w.Q]:.25,[w.H]:.3};function tt(t){const e={};return(t.primaryColor||t.dotsGradient)&&(e.dotsOptions={...e.dotsOptions,...t.primaryColor&&{color:t.primaryColor},...t.dotsGradient&&{gradient:t.dotsGradient}}),(t.secondaryColor||t.cornersGradient)&&(e.cornersSquareOptions={...e.cornersSquareOptions,...t.secondaryColor&&{color:t.secondaryColor},...t.cornersGradient&&{gradient:t.cornersGradient}},e.cornersDotOptions={...e.cornersDotOptions,...t.secondaryColor&&{color:t.secondaryColor}}),(t.thirdColor||t.cornersDotGradient)&&(e.cornersDotOptions={...e.cornersDotOptions,...t.thirdColor&&{color:t.thirdColor},...t.cornersDotGradient&&{gradient:t.cornersDotGradient}}),(t.backgroundColor||t.backgroundGradient)&&(e.backgroundOptions={...e.backgroundOptions,...t.backgroundColor&&{color:t.backgroundColor},...t.backgroundGradient&&{gradient:t.backgroundGradient}}),t.dotShape&&(e.dotsOptions={...e.dotsOptions,type:t.dotShape}),t.cornerSquareShape&&(e.cornersSquareOptions={...e.cornersSquareOptions,type:t.cornerSquareShape}),t.cornerDotShape&&(e.cornersDotOptions={...e.cornersDotOptions,type:t.cornerDotShape}),t.logo&&(e.image=t.logo),(void 0!==t.logoSize||t.logoMode||void 0!==t.logoMargin||t.logoFillColor||t.logoFillGradient)&&(e.imageOptions={...e.imageOptions,...void 0!==t.logoSize&&{imageSize:t.logoSize},...t.logoMode&&{mode:t.logoMode},...void 0!==t.logoMargin&&{margin:t.logoMargin},fill:{...e.imageOptions?.fill,...t.logoFillColor&&{color:t.logoFillColor},...t.logoFillGradient&&{gradient:t.logoFillGradient}}}),(t.borderColor||void 0!==t.borderThickness||void 0!==t.borderRadius||t.borderTextTop||t.borderTextRight||t.borderTextBottom||t.borderTextLeft||t.borderFontFace||void 0!==t.borderFontSize||t.borderFontColor||void 0!==t.borderLetterSpacing||t.borderFontWeight)&&(e.borderOptions={...e.borderOptions,hasBorder:!0,...t.borderColor&&{color:t.borderColor},...void 0!==t.borderThickness&&{thickness:t.borderThickness},...void 0!==t.borderRadius&&{radius:String(t.borderRadius)},...t.borderFontFace&&{fontFace:t.borderFontFace},...void 0!==t.borderFontSize&&{fontSize:t.borderFontSize},...t.borderFontColor&&{fontColor:t.borderFontColor},...void 0!==t.borderLetterSpacing&&{letterSpacing:t.borderLetterSpacing},...t.borderFontWeight&&{fontWeight:t.borderFontWeight},decorations:{...e.borderOptions?.decorations,...t.borderTextTop&&{top:{...e.borderOptions?.decorations?.top||{},text:t.borderTextTop}},...t.borderTextRight&&{right:{...e.borderOptions?.decorations?.right||{},text:t.borderTextRight}},...t.borderTextBottom&&{bottom:{...e.borderOptions?.decorations?.bottom||{},text:t.borderTextBottom}},...t.borderTextLeft&&{left:{...e.borderOptions?.decorations?.left||{},text:t.borderTextLeft}}}}),e}function et(t){const e=[];return void 0!==t.logoSize&&("number"!=typeof t.logoSize||t.logoSize<0||t.logoSize>1)&&e.push("logoSize must be a number between 0 and 1."),{isValid:0===e.length,errors:e}}class it{constructor(){}close(){}}class ot extends it{constructor(t){super(),this.istream=t,this.buffer=0,this.buflen=0}readByte(){for(;this.buflen<8;){const t=this.istream.readByte();if(-1==t){if(0==this.buflen)return-1;throw new Error("unexpected end of file./"+this.buflen)}if(t=="=".charCodeAt(0))return this.buflen=0,-1;ot.isWhitespace(t)||(this.buffer=this.buffer<<6|ot.decode(t),this.buflen+=6)}const t=this.buffer>>>this.buflen-8&255;return this.buflen-=8,t}static isWhitespace(t){return t=="\v".charCodeAt(0)||t=="\t".charCodeAt(0)||t=="\r".charCodeAt(0)||t=="\n".charCodeAt(0)}static decode(t){if("A".charCodeAt(0)<=t&&t<="Z".charCodeAt(0))return t-"A".charCodeAt(0);if("a".charCodeAt(0)<=t&&t<="z".charCodeAt(0))return t-"a".charCodeAt(0)+26;if("0".charCodeAt(0)<=t&&t<="9".charCodeAt(0))return t-"0".charCodeAt(0)+52;if(t=="+".charCodeAt(0))return 62;if(t=="/".charCodeAt(0))return 63;throw new Error("c:"+t)}}class nt extends it{constructor(t){super(),this.bytes=t,this.pos=0}readByte(){if(this.pos<this.bytes.length){const t=this.bytes[this.pos];return this.pos+=1,t}return-1}}(function(t,e){const i=(()=>{const i=new ot(new nt(function(t){const e=[];for(let i=0;i<t.length;i+=1)e.push(t.charCodeAt(i));return e}(t))),o=()=>{const t=i.readByte();if(-1==t)throw new Error("eof");return t};let n=0;const r={};for(;;){const t=i.readByte();if(-1==t)break;const e=o(),s=o()<<8|o();r[String.fromCharCode(t<<8|e)]=s,n+=1}if(n!=e)throw new Error(n+"!="+e);return r})(),o="?".charCodeAt(0)})("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MIWC4zCGguQwh4LlMIiC5jCJgucwioLoMIuC6TCMguowjYLrMI6C7DCPgu0wkILuMJGC7zCSgvAwk4LxMJuBSjCcgUswnYFUMJ6BVTChg0AwooNBMKODQjCkg0MwpYNEMKaDRTCng0YwqINHMKmDSDCqg0kwq4NKMKyDSzCtg0wwroNNMK+DTjCwg08wsYNQMLKDUTCzg1IwtINTMLWDVDC2g1Uwt4NWMLiDVzC5g1gwuoNZMLuDWjC8g1swvYNcML6DXTC/g14wwINfMMGDYDDCg2Eww4NiMMSDYzDFg2QwxoNlMMeDZjDIg2cwyYNoMMqDaTDLg2owzINrMM2DbDDOg20wz4NuMNCDbzDRg3Aw0oNxMNODcjDUg3Mw1YN0MNaDdTDXg3Yw2IN3MNmDeDDag3kw24N6MNyDezDdg3ww3oN9MN+DfjDgg4Aw4YOBMOKDgjDjg4Mw5IOEMOWDhTDmg4Yw54OHMOiDiDDpg4kw6oOKMOuDizDsg4ww7YONMO6DjjDvg48w8IOQMPGDkTDyg5Iw84OTMPSDlDD1g5Uw9oOWMPuBRTD8gVsw/YFSMP6BU04AiOpOAZKaTgOOtU4HlpxOCI/kTgmOT04Kj+NOC4m6Tg2Vc04Ol15OEJigThGJTk4Uio5OFZihThaQok4XmcBOGIt1ThmVuE4ej+VOIZe8TiaVwE4qmKJOLZKGTjGYo04yi/hONpikTjiK2045kk9OO47lTjyYpU4/mKZOQpinTkOUVE5Fi3ZOS5RWTk2T4U5OjMFOT5ZSTlXlaE5WmKhOV4/mTliYqU5ZibNOXYvjTl6M7k5fludOYpukTnGXkE5zk/tOfoqjToCLVE6CmKpOhZirToaXuU6Il1xOiZGIToqYrU6LjpZOjJPxTo6YsE6RiV1OkozdTpSM3E6ViOROmJhqTpmYaU6bjbFOnIifTp6YsU6fmLJOoJizTqGWU06imLROpIzwTqWI5U6mlpJOqIucTquLnU6si55OrZLgTq6Xuk6wmLVOs5i2TraYt066kGxOwI9ZTsGQbU7CmLxOxJi6TsaYu07Hi3dOyo2hTsuJ7k7NmLlOzpi4Ts+Vp07UjmVO1Y5kTtaRvE7XmL1O2JV0TtmQ5U7dgVdO3pi+Tt+YwE7jkeNO5JffTuWIyE7tmL9O7om8TvCLwk7ykodO9oyPTveYwU77lENPAYrpTwmYwk8KiMlPDYzeTw6K6k8PlZpPEJSwTxGLeE8aie9PHJjlTx2TYE8vlIxPMJjETzSUuk82l+BPOJBMTzqOZk88jpdPPYm+T0OSz09GkkFPR5jIT02Iyk9OkuFPT49aT1CNsk9Rl0NPU5HMT1WJvU9XmMdPWZddT1qYw09bmMVPXI3sT12Yxk9em0NPaZjOT2+Y0U9wmM9Pc4nAT3WVuU92mMlPe5jNT3yM8U9/jmdPg4qkT4aY0k+ImMpPi5fhT42OmE+PmMtPkZjQT5aY00+YmMxPm4ufT52Iy0+gi6BPoYm/T6ubRE+tlplPrpWOT6+M8k+1kE5Ptpe1T7+V1k/CjFdPw5GjT8SJ4k/Kj3JPzpjXT9CY3E/RmNpP1JjVT9eRrU/YmNhP2pjbT9uY2U/dldtP35jWT+GQTU/jlpNP5JjdT+WY3k/uj0NP75jrT/OUb0/1lVVP9pjmT/iV7k/6ibRP/pjqUAWY5FAGmO1QCZFxUAuMwlANlHtQD+DFUBGY7FASk3xQFJjhUBaM9FAZjPNQGpjfUB+O2FAhmOdQI5XtUCSSbFAlmONQJoyRUCiY4FApmOhQKpjiUCuXz1AsmOlQLZhgUDaL5FA5jJBQQ5juUEeY71BImPNQSYjMUE+VzlBQmPJQVZjxUFaY9VBamPRQXJLiUGWMklBsmPZQco7DUHSRpFB1kuNQdov0UHiY91B9i1VQgJj4UIWY+lCNllRQkYyGUJiOUFCZlPVQmpj5UKyNw1Ctl2JQspj8ULOZQlC0mPtQtY3CULePnVC+jFhQwplDUMWLzVDJmUBQyplBUM2TrVDPkZxQ0YuhUNWWbFDWmURQ2pe7UN6ZRVDjmUhQ5ZlGUOeRbVDtmUdQ7plJUPWZS1D5mUpQ+5XGUQCLVlEBmU1RAplOUQSJrVEJmUxREo7yURSZUVEVmVBRFplPURiY1FEamVJRH4+eUSGZU1Eql0RRMpbXUTeZVVE6mVRRO5lXUTyZVlE/mVhRQJlZUUGI8lFDjLNRRIxaUUWPW1FGkptRR4uiUUiQ5lFJjPVRS42OUUyZW1FNlsZRTpNlUVCOmVFSmVpRVJlcUVqTfVFcipVRYpldUWWT/FFokVNRaZlfUWqZYFFrlKpRbIz2UW2YWlFumWFRcYukUXWVulF2kbRRd4vvUXiTVFF8jJNRgJliUYKZY1GFk+BRhol+UYmZZlGKjftRjJllUY2NxFGPmWdRkOPsUZGZaFGSlmBRk5lpUZWZalGWmWtRl4/nUZmOylGgiqVRopluUaSZbFGllrtRppltUaiVeVGpmW9RqplwUauZcVGsk35RsJl1UbGZc1GymXRRs5lyUbSN4VG1mXZRtpboUbeX4lG9mXdRxJCmUcWZeFHGj3lRyZl5UcuSnFHMl71RzZOAUdaZw1HbmXpR3OqjUd2Lw1HgmXtR4ZZ9UeaPiFHnkfpR6Zl9UeqT4lHtmX5R8JmAUfGKTVH1mYFR9oulUfiTylH5iZpR+o9vUf2Un1H+mYJSAJOBUgOQblIEmYNSBpWqUgeQ2FIIiqBSCoqnUguZhFIOmYZSEYxZUhSZhVIXl/FSHY+JUiSUu1IllcpSJ5mHUimXmFIqmYhSLpmJUjCTnlIzmYpSNpCnUjeN/FI4jJRSOZmLUjqOaFI7jY9SQ5LkUkSZjVJHkaVSSo3tUkuZjlJMmY9STZFPUk+ZjFJUmZFSVpZVUluNhFJemZBSY4yVUmSN3FJllI1SaZmUUmqZklJvlZtScI/oUnGZm1JyioRSc5mVUnSZk1J1kW5SfZmXUn+ZllKDimNSh4yAUoiZnFKJl6tSjZmYUpGZnVKSmZpSlJmZUpuXzVKfjPdSoInBUqOX8lKpj5VSqpN3UquNhVKsmaBSrZmhUrGX41K0mEpStZmjUrmM+FK8maJSvopOUsGZpFLDlnVSxZK6UseXRVLJlddSzZmlUtLo01LVk65S15mmUtiKqFLZlrFS3Y+fUt6Zp1LfleVS4JmrUuKQqFLjmahS5IvOUuaZqVLniqlS8oxNUvOZrFL1ma1S+JmuUvmZr1L6jtlS/oz5Uv+W3FMBluZTApP1UwWV71MGmbBTCJmxUw2Zs1MPmbVTEJm0UxWZtlMWibtTF5ZrUxmN+lMambdTHZF4UyCPoFMhi6dTI5m4UyqU2VMvmblTMZm6UzOZu1M4mbxTOZVDUzqL5lM7iONTP5O9U0CZvVNBj1xTQ5DnU0WZv1NGmb5TR4+hU0iM31NJmcFTSpS8U02ZwlNRlNpTUpGyU1OR7FNUi6ZTV5PsU1iSUFNalI5TXJZtU16ZxFNgkOhTZoxUU2mZxVNumcZTb4lLU3CI81NxiutTc5GmU3SLcFN1l5FTd5nJU3iJtVN7mchTf4uoU4KZylOElu9TlpnLU5iX0FOajPpTn4y0U6CZzFOlmc5TppnNU6iQflOpiVhTrYl9U66Zz1OwmdBTs4y1U7aZ0VO7i45Two5RU8OZ0lPIlpRTyY2zU8qLeVPLl0ZTzJFvU82UvVPOjvtT1I9mU9aO5lPXjvNT2Y+WU9uUvlPfmdVT4YliU+KRcFPjjPtT5IzDU+WL5VPomdlT6ZJAU+qR/FPri6lT7I+iU+2Z2lPumdhT74nCU/CR5FPxjrZT8o5qU/OJRVP2ipBT942GU/iOaVP6mdtUAZncVAOLaFQEimVUCI2HVAmLZ1QKkt1UC4lEVAyTr1QNlrxUDo1AVA+XmVQQk2ZUEYz8VBuMTlQdmeVUH4vhVCCWaVQmlNtUKZnkVCuK3FQsmd9ULZngVC6Z4lQ2meNUOIt6VDmQgVQ7latUPJnhVD2Z3VQ+jOFUQJneVEKYQ1RGlfBUSJLmVEmM4FRKjZBUTpnmVFGT21RfmepUaI78VGqO9FRwme1UcZnrVHOWoVR1mehUdpnxVHeZ7FR7me9UfIzEVH2WvVSAmfBUhJnyVIaZ9FSLje5UjJhhVI6Z6VSPmedUkJnzVJKZ7lSimfZUpJpCVKWZ+FSomfxUq5pAVKyZ+VSvml1Uso3nVLOKUFS4mfdUvJpEVL2I9FS+mkNUwIijVMGVaVTCmkFUxJn6VMeZ9VTImftUyY3GVNiaRVThiPVU4ppOVOWaRlTmmkdU6I+jVOmWiVTtmkxU7ppLVPKTTlT6mk1U/ZpKVQSJU1UGjbRVB5BPVQ+aSFUQk4JVFJpJVRaIoFUumlNVL5dCVTGPpVUzmllVOJpYVTmaT1U+kcFVQJpQVUSR7VVFmlVVRo+kVUyaUlVPluJVU4xbVVaaVlVXmldVXJpUVV2aWlVjmlFVe5pgVXyaZVV+mmFVgJpcVYOaZlWEkVBVh5poVYmNQVWKml5Vi5KdVZiaYlWZmltVmoqrVZyK7FWdioVVnppjVZ+aX1WnjJZVqJppVamaZ1WqkXJVq4tpVayLqlWummRVsIvyVbaJY1XEmm1VxZprVceapVXUmnBV2ppqVdyablXfmmxV445rVeSab1X3mnJV+Zp3Vf2adVX+mnRWBpJRVgmJw1YUmnFWFppzVhePplYYiVJWG5p2VimJ3FYvmoJWMY/6VjKafVY0mntWNpp8VjiaflZCiVxWTJFYVk6aeFZQmnlWW4qaVmSagVZoiu1WapqEVmuagFZsmoNWdJWsVniT01Z6lLZWgJqGVoaahVaHimRWipqHVo+ailaUmolWoJqIVqKUWFalmotWrpqMVrSajla2mo1WvJqQVsCak1bBmpFWwpqPVsOaklbImpRWzpqVVtGallbTmpdW15qYVtiZZFbajvpW245sVt6J8VbgiPZW45JjVu6amVbwjaJW8ojNVvOQfVb5mppW+ozFVv2NkVb/mpxXAJqbVwOV3lcEmp1XCJqfVwmanlcLmqBXDZqhVw+Ml1cSiYBXE5qiVxaapFcYmqNXHJqmVx+TeVcmmqdXJ4izVyiN3VctjFxXMJJuVzeaqFc4mqlXO5qrV0CarFdCjeJXR4vPV0qWVldOmqpXT5qtV1CNv1dRjUJXYZqxV2SNo1dmklJXaZquV2qS2Fd/mrJXgpCCV4iasFeJmrNXi4xeV5OatFegmrVXoo1DV6OKX1ekmrdXqpq4V7CauVezmrZXwJqvV8OaulfGmrtXy5aEV86P6VfSmr1X05q+V9SavFfWmsBX3JRXV9+I5lfglXVX45rBV/SP+1f3jrdX+ZR8V/qK7lf8jelYAJZ4WAKTsFgFjJhYBpHNWAqav1gLmsJYFZHCWBmaw1gdmsRYIZrGWCSS51gqiqxYL+qfWDCJgVgxlfFYNI/qWDWTZ1g6jeRYPZrMWECVu1hBl9tYSonyWEuayFhRkVlYUprLWFSTg1hXk2hYWJOEWFmUt1hakstYXo3HWGKax1hpiZZYa5NVWHCayVhymsVYdZBvWHmazVh+j21Yg4urWIWazliTleZYl5GdWJySxFifmtBYqJZuWKua0ViumtZYs5WtWLia1Vi5ms9YuprSWLua1Fi+jaRYwZXHWMWa11jHkmRYyonzWMyP61jRmtlY05rYWNWNiFjXmtpY2JrcWNma21jcmt5Y3prTWN+a4Fjkmt9Y5ZrdWOuObVjskHBY7pFzWO+a4VjwkLpY8YjrWPKUhFj3ktlY+ZrjWPqa4lj7muRY/JrlWP2a5lkCmudZCZXPWQqa6FkPicRZEJrpWRWXW1kWik9ZGJnHWRmPZ1kakb1ZG5rqWRyW6VkilrJZJZrsWSeR5Vkpk1ZZKpG+WSuVdlksmu1ZLZruWS6Jm1kxjrhZMprvWTeIzlk4mvBZPprxWUSJgllHiu9ZSJPeWUmV8llOmvVZT5F0WVCa9FlRjF9ZVJZ6WVWa81lXk4VZWJr3WVqa9llgmvlZYpr4WWWJnFlnmvpZaI+nWWma/FlqkkRZbJr7WW6VsVlzj5dZdJN6WXibQFl9jURZgZtBWYKUQFmDlNxZhJbPWYqURFmNm0pZk4tXWZaXZFmZlq1Zm5uqWZ2bQlmjm0VZpZHDWaiWV1msk2lZsptGWbmWhVm7jchZvo+oWcabR1nJjm9Zy45uWdCIt1nRjMZZ05CpWdSIz1nZm0tZ2ptMWdybSVnliVdZ5oqtWeibSFnqlsNZ65VQWfaIpln7iPdZ/45wWgGI0FoDiKFaCZtRWhGbT1oYlrpaGptSWhybUFofm05aIJBQWiWbTVopldhaL4ziWjWbVlo2m1daPI+pWkCbU1pBmEtaRpRrWkmbVVpajaVaYptYWmaVd1pqm1labJtUWn+WuVqSlH1amptaWpuVUVq8m1tavZtfWr6bXFrBicVawpteWsmOuVrLm11azIyZWtCba1rWm2Ra15thWuGShFrjm2Ba5ptiWumbY1r6m2Va+5tmWwmK8FsLm2hbDJtnWxabaVsij+xbKptsWyyS2lswiWRbMptqWzabbVs+m25bQJtxW0Obb1tFm3BbUI5xW1GbcltUjUVbVZtzW1eOmltYkbZbWpt0W1ubdVtcjnlbXY1GW1+W0Ftji0dbZIzHW2WbdltmindbaZt3W2uRt1twm3hbcZuhW3ObeVt1m3pbeJt7W3qbfVuAm35bg5uAW4WR7luHiUZbiI7nW4mIwFuLkXZbjIquW42Os1uPjUdblZOGW5ePQFuYiq9bmZKIW5qS6FubiLZbnItYW52V81ufjsBbootxW6OQ6VukjrpbpZdHW6abgVuui3tbsI3JW7OKUVu0iYNbtY+qW7aJxlu4m4JbuZdlW7+PaFvCjuJbw5uDW8SK8VvFk9BbxpanW8ebhFvJm4VbzJV4W9Cbh1vSiqZb04v1W9SbhlvbirBb3ZBRW96bi1vfjkBb4YnHW+Kbilvkm4hb5ZuMW+abiVvnlEpb6J7LW+mQUlvrm41b7pe+W/Cbjlvzm5Bb9ZKeW/abj1v4kKFb+o6bW/6Rzlv/jvVcAZWVXAKQ6lwEjstcBZuRXAaPq1wHm5JcCJuTXAmI0VwKkbhcC5BxXA2blFwOk7FcD4+sXBGPrVwTm5VcFpDrXBqPrlwgm5ZcIpuXXCSW3lwom5hcLYvEXDGPQVw4m5lcOZuaXDqO2lw7kEtcPJPyXD2Qc1w+lPZcP5RBXECLx1xBm5tcRYuPXEabnFxIi/xcSpPNXEuJrlxNjnJcTpudXE+boFxQm59cUYv7XFObnlxVk1dcXpGuXGCTalxhjsZcZJF3XGWXmlxsm6JcbpujXG+T1FxxjlJcdpulXHmbplyMm6dckIryXJGbqFyUm6lcoYmqXKiRWlypiuJcq5urXKyWplyxkdBcs4p4XLabrVy3m69cuIrdXLubrFy8m65cvpuxXMWbsFzHm7Jc2ZuzXOCTu1zhi6xc6InjXOmbtFzqm7lc7Zu3XO+V9VzwlfRc9pOHXPqbtlz7j3Nc/Zu1XQeQkl0Lm7pdDo3oXRGbwF0Um8FdFZu7XRaKUl0Xm7xdGJvFXRmbxF0am8NdG5u/XR+bvl0im8JdKZX2XUubyV1Mm8ZdTpvIXVCXkl1Sm8ddXJu9XWmQk11sm8pdb421XXOby112m8xdgpvPXYSbzl2Hm81di5OIXYybuF2Qm9VdnZvRXaKb0F2sm9JdrpvTXbeb1l26l+RdvJvXXb2b1F3Jm9hdzIreXc2b2V3Sm9td05vaXdab3F3bm91d3ZDsXd6PQl3hj4Rd45GDXeWNSF3mjbZd541JXeiLkF3rm95d7o23XfGMyF3ym99d85akXfSUYl31m+Bd941KXfuKql39kkZd/ovQXgKOc14DlXpeBpS/Xgub4V4MivNeEZvkXhaSn14Zm+NeGpviXhub5V4dkuleJZCDXiuOdF4tkMheL5HRXjCLQV4zkqBeNpvmXjeb5144j+1ePZZYXkCb6l5Dm+leRJvoXkWVnV5Hm/FeTJZ5Xk6b615Um+1eVZaLXleb7F5fm+5eYZSmXmKb715jlbxeZJvwXnKKsV5zlb1edJROXnWb8l52m/NeeI1LXnmKsl56m/Ree4y2XnyXY159l0hefor0Xn+b9l6BkqFeg41MXoSPr16HlN1eio+wXo+PmF6VkupelpX3XpeTWF6ajU1enJV7XqCb916mk3hep43AXquMyV6tkutetYjBXraPjl63jU5euJdmXsGb+F7Cm/lew5RwXsib+l7Jl/VeyphMXs+b/F7Qm/te04pmXtacQF7anENe25xEXt2cQl7flV9e4I+xXuGcRl7inEVe45xBXuicR17pnEhe7JxJXvCcTF7xnEpe85xLXvScTV72iYRe95LsXvicTl76jJpe+4n0XvyUVV7+nE9e/5P5XwGV2V8DnFBfBJhNXwmcUV8Klb5fC5xUXwyYn18NmK9fD46uXxCT818RnFVfE4t8XxSSol8ViPhfFpxWXxeVpF8YjU9fG5JvXx+S7V8llu1fJoy3XyeMyl8pnFdfLZxYXy+cXl8xjuNfNZKjXzeLrV84nFlfPJVKXz6SZV9BnFpfSJxbX0qLrl9MnFxfTpxdX1GcX19Tk5ZfVpxgX1ecYV9ZnGJfXJxTX12cUl9hnGNfYoxgX2aVRl9pjcpfapVWX2uSpF9slWpfbZxkX3CPsl9xiWVfc5xlX3ecZl95lvBffJTeX3+caV+AiZ1fgZCqX4KcaF+DnGdfhIxhX4WR0l+HnG1fiJxrX4qcal+Ll6VfjIzjX5CPmV+RnGxfkpNrX5OPXV+Xk75fmJxwX5mcb1+enG5foJxxX6GM5F+onHJfqZWcX6qPel+tnHNfrpT3X7OTv1+0kqVfuZNPX7ycdF+9i0pfw5BTX8WVS1/MivVfzZRFX9acdV/XjnVf2JZZX9mWWl/ciZ5f3Zx6X+CSiV/knHdf64n1X/Ccq1/xnHlf9ZRPX/iceF/7nHZf/Y2aX/+cfGAOnINgD5yJYBCcgWASk3tgFZyGYBaVfGAZnIBgG5yFYByX5WAdjnZgIJHTYCGcfWAli31gJpyIYCeQq2AoiYVgKZyCYCqJ9mArnIdgL4uvYDGchGA6nIpgQZyMYEKclmBDnJRgRpyRYEqckGBLl/ZgTZySYFCLsGBSjVBgVY+aYFmcmWBanItgX5yPYGCcfmBiifhgY5yTYGSclWBlknBgaI2mYGmJtmBqnI1ga5yYYGycl2Bti7Fgb5GnYHCKhmB1jGJgd5yOYIGcmmCDnJ1ghJyfYImOu2CLnKVgjJLuYI2cm2CSnKNglIn3YJacoWCXnKJgmpyeYJucoGCfjOVgoJdJYKOKs2CmiXhgp5ykYKmUWWCqiKtgspTfYLOce2C0nKpgtZyuYLaW42C4nKdgvJOJYL2crGDFj+5gxpytYMeT1WDRmGZg05ypYNicr2DajZtg3JDJYN+I0mDgnKhg4ZymYOOReWDnnJxg6I5TYPCRxGDxnLtg85F6YPSctmD2nLNg95y0YPmO5GD6nLdg+5y6YQCctWEBj0RhA5y4YQacsmEIlvphCZb5YQ2cvGEOnL1hD4jTYRWcsWEai/BhG4ikYR+KtGEhnLlhJ5zBYSicwGEsnMVhNJzGYTycxGE9nMdhPpy/YT+cw2FCnMhhRJzJYUecvmFIjpxhSpzCYUuR1GFMjVFhTZywYU6QVGFTnNZhVZXnYViczGFZnM1hWpzOYV2c1WFfnNRhYpadYWOKtWFlnNJhZ4xkYWiKU2FrnM9hbpe2YW+c0WFwiNRhcZzTYXOcymF0nNBhdZzXYXaMY2F3nMthfpd8YYKXSmGHnNphipzeYY6RnmGQl/dhkZzfYZSc3GGWnNlhmZzYYZqc3WGkla5hp5OyYamMZWGrnOBhrJzbYa6c4WGyjJthtomvYbqc6WG+irZhw5znYcac6GHHjadhyJzmYcmc5GHKnONhy5zqYcyc4mHNnOxh0In5YeOc7mHmnO1h8pKmYfSc8WH2nO9h95zlYfiMnGH6nPBh/Jz0Yf2c82H+nPVh/5zyYgCc9mIInPdiCZz4YgqV6GIMnPpiDZz5Yg6PXmIQkKxiEYnkYhKJ+mIUnPtiFoi9YhqQymIbnPxiHebBYh6dQGIfjIFiIZ1BYiaQ7WIqnUJiLp1DYi+LWWIwnURiMp1FYjOdRmI0kdViOIzLYjuW32I/lltiQI+KYkGdR2JHkO5iSOe7YkmU4GJLjuhiTY3LYk6dSGJTkcViVZWlYliR72JbnUtiXp1JYmCdTGJjnUpiaJ1NYm6Vr2JxiLVidpV9YnmU4WJ8nU5ifp1RYn+Ps2KAi1pigp1PYoOdVmKEj7RiiZ1QYoqUY2KRl31ikp1SYpOdU2KUnVdilZOKYpadVGKXjVJimJDcYpudZWKclLJinpHwYquU4mKsnatisZX4YrWS72K5lpViu51aYryJn2K9kopiwp1jYsWSU2LGnV1ix51kYsidX2LJnWZiyp1iYsydYWLNlI9iz51bYtCJ+2LRnVli0ouRYtOR8WLUnVVi151YYtiNU2LZkNli24+1YtydYGLdlHFi4IuSYuGKZ2Lsiodi7ZBAYu6daGLvnW1i8Z1pYvOMnWL1nW5i9o5BYveNiWL+j0Vi/51cYwGOnWMCnWtjB453YwidbGMJiMJjDJ1nYxGSp2MZi5NjH4uyYyedamMoiKVjK43BYy+QVWM6kvBjPZTSYz6dcGM/kX1jSZGoY0yOSmNNnXFjT51zY1Cdb2NVld9jV5K7Y1yRe2NnlfljaI7MY2mdgGNrnX5jbpCYY3KMnmN2nXhjd4+3Y3qT5mN7lFBjgJ12Y4ORfGOIjvZjiZ17Y4yPtmOOnXVjj516Y5KUcmOWnXRjmIxAY5uKfGOfnXxjoJepY6GNzGOiklRjo515Y6WQ2mOnjVRjqJCEY6mJhmOqkVtjq513Y6yLZGOyjGZjtJLNY7WdfWO7kX5jvp2BY8Cdg2PDkbVjxJ2JY8adhGPJnYZjz5VgY9CS8WPSnYdj1pdLY9qXZ2Pbirdj4YisY+OdhWPpnYJj7or2Y/SJh2P2nYhj+pdoZAadjGQNkblkD52TZBOdjWQWnYpkF52RZBydcmQmnY5kKJ2SZCyUwGQtk4tkNJ2LZDadj2Q6jGdkPo3vZEKQ22ROnZdkWJNFZGedlGRploBkb52VZHadlmR4lsxkepCgZIOMgmSInZ1kko5UZJOdmmSVnZlkmpRRZJ6Ts2Skk1BkpZ2bZKmdnGSrlY9krZRkZK6OQmSwkO9kspZvZLmKaGS7naNkvJ2eZMGXaWTCnaVkxZ2hZMedomTNkYBk0p2gZNSdXmTYnaRk2p2fZOCdqWThnapk4pNGZOOdrGTmjkNk552nZOyLW2Tvna1k8Z2mZPKdsWT0nbBk9p2vZPqdsmT9nbRk/o/vZQCds2UFnbdlGJ21ZRydtmUdnZBlI525ZSSduGUqnZhlK526ZSydrmUvjnhlNJ27ZTWdvGU2nb5lN529ZTidv2U5ifxlO41VZT6V+mU/kK1lRYzMZUidwWVNncRlT5VxZVGLfmVVncNlVp3CZVeUc2VYncVlWYuzZV2dx2VencZlYoq4ZWOOVWVmk9ZlbIxoZXCQlGVynchldJCuZXWTR2V3lX5leJ3JZYKdymWDnctlh5W2ZYibfGWJkMRljJVrZY6N1mWQlONlkZTBZZeTbGWZl79lm53NZZyOzmWfnc5loYi0ZaSL0mWlkMtlp5WAZaudz2WsjmFlrZJmZa+OemWwkFZlt53QZbmV+2W8iZdlvY57ZcGd02XDndFlxJ3UZcWXt2XGndJly5D5Zcyd1WXPkbBl0p3WZdeK+GXZndhl253XZeCd2WXhndpl4or5ZeWT+mXmklVl54uMZeiOfGXpkYFl7I97Ze2IrmXxndtl+omgZfud32YCjVZmA53eZgaNqWYHj7hmCp3dZgyPuWYOlr5mD42oZhOI1WYUkMxmHJ3kZh+Qr2YgiWZmJY90ZieWhmYojfBmLY+6Zi+QpWY0neNmNZ3hZjad4mY8kotmP55FZkGd6GZCjp5mQ41XZkSd5mZJnedmS5BXZk+d5WZSjk5mXZ3qZl6d6WZfne5mYp3vZmSd62ZmikFmZ53sZmid7WZplNNmbpWBZm+MaWZwnfBmdJCwZnaPu2Z6knFmgYvFZoOd8WaEnfVmh4nJZoid8maJnfRmjp3zZpGPi2aWkmdml4jDZpid9madnfdmopKoZqaX72arjmJmrpXpZrSWXGa4nkFmuZ35Zryd/Ga+nftmwZ34ZsSeQGbHk9xmyZ36ZtaeQmbZj4xm2p5DZtyXambdlJhm4J5EZuaeRmbpnkdm8J5IZvKLyGbziWdm9I1YZvWeSWb3nkpm+I+RZvmRgmb8mdZm/ZFdZv6RXGb/kdZnAI3FZwOY8GcIjI5nCZdMZwuV/GcNlZ5nD55LZxSN8WcVkr1nFp5MZxeYTmcbll1nHZKpZx6eTWcfivpnJp5OZyeeT2colthnKpaiZyuWlmcslntnLY5EZy6eUWcxjulnNJZwZzaeU2c3nlZnOJ5VZzqK92c9i4BnP55SZ0GeVGdGnldnSZCZZ06Xm2dPiMdnUI3eZ1GRumdTjttnVo/xZ1meWmdck21nXp5YZ1+RqWdgnllnYY/wZ2KW22djnltnZJ5cZ2WXiGdqnmFnbY1ZZ2+UdGdwnl5ncZOMZ3Kd3GdzneBndYtuZ3eUZmd8nmBnfo+8Z3+UwmeFnmZnh5T4Z4meXWeLnmNnjJ5iZ5CQzWeVlo1nl5fRZ5qWh2ecicpnnY59Z6CYZ2ehnmVnopCVZ6aeZGepnl9nr4zNZ7Oea2e0nmlntonLZ7eeZ2e4nm1nuZ5zZ8GRxmfElb9nxp51Z8qVQWfOnnRnz5SQZ9CWXmfRirln05D1Z9SPX2fYktFn2pdNZ92ecGfenm9n4p5xZ+SebmfnnnZn6Z5sZ+yeamfunnJn755oZ/GSjGfzlvZn9I7EZ/WN8mf7jbhn/paPZ/+KYGgCksxoA5PIaASJaGgTkPBoFpCyaBeMSWgennhoIY1aaCKKnGgpnnpoKoqUaCuegWgynn1oNJDxaDiKamg5japoPIppaD2NzWhAnntoQYyFaEKMamhDk41oRp55aEiIxGhNnnxoTp5+aFCLy2hRjEtoU4q6aFSLamhZnoJoXI33aF2WkWhfjlZoY56DaGeVT2h0no9odomxaHeehGh+npVof56FaIGXwGiDnoxohZR+aI2elGiPnodok4iyaJSeiWiXjVtom56LaJ2eimifnoZooJ6RaKKPvWimmutop4zmaKiXnGitnohor5LyaLCKQmixjatos56AaLWekGi2ioFouZ6OaLqekmi8k45oxIr8aMaesGjJlsdoyp6XaMuK+2jNnp5o0pZfaNSen2jVnqFo156laNiemWjakklo35OPaOCeqWjhnpxo456maOeeoGjukFho756qaPKQsWj5nqho+oq7aQCYb2kBnpZpBJ6kaQWI1mkInphpC5a4aQyenWkNkEFpDpLFaQ+ek2kSnqNpGZCaaRqerWkbipFpHIyfaSGer2kinpppI56uaSWep2kmnptpKJ6raSqerGkwnr1pNJPMaTaeomk5nrlpPZ67aT+S1mlKl2tpU5WWaVSetmlVkchpWZ68aVqRXmlcnrNpXZ7AaV6ev2lgk+1pYZ6+aWKT6GlqnsJpa561aW2Lxmlunrhpb498aXOUgGl0nrppdYvJaXeesml4nrRpeZ6xaXyYT2l9inlpfp63aYGewWmCilRpio3laY6JfGmRntJplJhQaZWe1WmbkFlpnJ7UaaCe02mnntBprp7EabGe4WmynsNptJ7Wabuezmm+nslpv57GacGex2nDns9px+qgacqezGnLjVxpzJLGac2RhGnOnspp0J7FadOeyGnYl2xp2ZaKad2ezWnentdp557faeie2GnrnuVp7Z7jafKe3mn5nt1p+5LOaf2RhWn/nttqAp7ZagWe4GoKnuZqC5Tzagye7GoSnudqE57qahSe5GoXkpRqGZVXahue2moenuJqH4++aiGWzWoinvZqI57paimMoGoqiaFqK4p+ai6e0Wo1j79qNp7uajie9Wo5jvdqOoqSaj2STWpEnutqR57wakie9GpLi7RqWItralme8mpfi0BqYZPJamKe8WpmnvNqcp7tanie72p/ioBqgJJoaoSe+mqNnvhqjoznapCe92qXn0BqnJ53aqCe+Wqinvtqo578aqqfS2qsn0dqrp6NarOfRmq4n0Vqu59CasGe6GrCn0Rqw59DatGfSWrTmEVq2p9MatuL+Wren0hq359KauiUpWrqn01q+p9RavufTmsEl5NrBZ9Pawqe3GsSn1JrFp9Tax2JVGsfn1VrIIyHayGOn2sji9NrJ4miazKXfms3n1drOJ9WazmfWWs6i1xrPYvUaz6KvGtDn1xrR59ba0mfXWtMicxrTpJWa1CfXmtTir1rVJ9ga1mfX2tbn2FrX59ia2GfY2tijn5rY5Cza2SNn2tmlZBraZXga2qYY2tvjpVrc43Oa3SX8Gt4n2RreZ9la3uOgGt/n2ZrgJ9na4OfaWuEn2hrhpZ3a4mPfWuKjupri45ja42famuVn2xrlpBCa5ifa2uen21rpJ9ua6qfb2urn3Brr59xa7Gfc2uyn3Jrs590a7SJo2u1kmlrt591a7qORWu7imtrvJ92a7+TYWvAmsprxYtCa8afd2vLn3hrzZXqa86WiGvSk8Vr0595a9SU5GvYlPlr25bRa9+femvrn3xr7J97a++ffmvzn31sCJ+BbA+OgWwRlq9sE5+CbBSfg2wXi0NsG5+EbCOfhmwkn4VsNJCFbDeVWGw4iWlsPpTDbECS82xBj2BsQouBbE6UxGxQjqxsVZ+IbFeKvmxaiZhsXZPwbF6fh2xfjV1sYJJybGKfiWxon5Fsap+KbHCRv2xyi4Jsc5+SbHqMiGx9i0Rsfp+QbIGfjmyCn4tsg5eAbIiSvmyMk9dsjZ+MbJCflGySn5Nsk4xCbJaJq2yZjblsmp+NbJufj2yhlnZsopHybKuWl2yun5xssZ+dbLOJzWy4laZsuZb7bLqfn2y7jqFsvI/AbL2fmGy+n55sv4mIbMGLtWzEn5VsxZ+abMmQ8mzKlJFszJTlbNOfl2zVlkBs15+ZbNmfomzbn6Bs3Z+bbOGWQWzilGds44uDbOWTRGzoko1s6p+jbO+foWzwkdds8Z+WbPOJam0Ll21tDJ+ubRKfrW0XkPRtGZ+qbRuXjG0ek7RtH5+kbSWSw20piWttKo1ebSufp20yj0ZtM5+sbTWfq202n6ZtOJ+pbTuKiG09n6htPpRobUGXrG1Ej/JtRZDzbVmftG1an7JtXJVsbWOfr21kn7FtZolZbWmNX21qmFFtbIpcbW6Vgm10l4Ftd4pDbXiQWm15n7NthZ+4bYiPwW2Ml09tjp+1bZOfsG2Vn7ZtmZfcbZuTk22ck8Btr4pVbbKJdG21n7xtuJ+/bbyXwW3Al4RtxZ/GbcafwG3Hn71ty5fS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hWmToIVqlZOFbeVKhXflUIV+5VGFgOVEhYSUloWH5U6FiOVGhYrlSIWQ5VKFkeVHhZTlS4WXiZKFmZPjhZvlTIWc5U+FpOVFhaaRRYWo5UmFqY5GhaqQZIWrjE+FrJbyha6W94Wvj5KFueVWhbrlVIXBmG2FyeVThc2XlYXP5VWF0OVXhdXlWIXc5VuF3eVZheSToYXl5VqF6ZTLherlTYX3j5OF+eVchfrlYYX7kZSF/uVghgLlQYYG5WKGB5FohgrlXYYL5V+GE+VehhafUIYXn0GGGuVkhiLlY4Ytl5aGL+G6hjDlZYY/5WaGTeVnhk6M1YZQi3OGVOVphlWZfIZai5WGXJe4hl6L8YZf5WqGZ+VrhmuSjoZx5WyGeZP4hnuIuIaKieGGi+VxhozlcoaT5W2GlY5chqPlboaklGGGqeVvhqrlcIar5XqGr+V0hrDld4a25XOGxOV1hsbldobHjtaGyeV4hsuSYIbNjHWGzophhtTle4bZil6G2+WBht7lfIbf5YCG5JS4hunlfYbs5X6G7ZVnhu6U2Ibv5YKG+JH7hvnljIb75YiG/onphwDlhocClkmHA+WHhwblhIcI5YWHCeWKhwrljYcN5YuHEeWJhxLlg4cYkneHGuWUhxyWqIcl5ZKHKeWThzTljoc35ZCHO+WRhz/lj4dJkOSHS5hYh0zlmIdO5ZmHU+Wfh1WQSYdX5ZuHWeWeh1/llodg5ZWHY+Wgh2aJ2odo5ZyHauWhh27lnYd05ZqHdpKxh3jll4d/lIiHguWlh42XWoef5aSHouWjh6vlrIev5aaHs+Wuh7qXhoe75bGHveWoh8DlqYfE5a2HxuWwh8flr4fL5aeH0OWqh9Llu4fg5bSH7+Wyh/Lls4f25biH9+W5h/mKSYf7i2GH/uW3iAXloogN5baIDuW6iA/ltYgR5byIFeW+iBblvYgh5cCIIuW/iCPleYgn5cSIMeXBiDblwog55cOIO+XFiECMjIhC5ceIROXGiEaPT4hMjXOITZ+liFLlyIhTj3CIV4pYiFnlyYhbiXGIXY/ViF7lyohhjXSIYuXLiGOI34holVyIa+XMiHCQiohy5dOIdeXQiHeSj4h95dGIfuXOiH+L3IiB5c2IguXUiIiMVYiLkdyIjeXaiJLl1oiWkbOIl+XViJnl2Iie5c+IouXZiKTl24irlO2IruXX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ljKWaJY7kWqWP4iilkCRyZZC6JiWRJWNlkvom5ZM6JmWTY1+lk/ompZQjMCWW5XDllzonZZd6J+WXuiell/ooJZiiUCWY5B3lmSPnJZliteWZuihlmqUhpZs6KOWcIlBlnLoopZzksKWdZfLlnaTqZZ36JyWeJeklnqMr5Z9l3qWhYv3loaXspaIjEeWipHglovkQJaN6KSWjopLlo+Qj5aUinWWleimlpfop5aY6KWWmYyElpuN25acj+GWoIlClqOX15an6KmWqOeslqroqJaw6KyWseiqlrLoq5a06K2WtuiulreX6pa46K+WueiwlruQx5a8lLmWwJCdlsGK5ZbEl1mWxYnrlsaPV5bHjNmWyeizlsvospbMjpOWzei0ls7osZbRjkeW1ei4ltblq5bZmdSW25CXltzotpbil6OW45PvluiJSpbqkOGW6460lvCVtZbyiV+W9pfrlveXi5b56LmW+5NklwCO+ZcE6LqXBui7lweQa5cI6LyXCpfslw3ot5cO6L6XD+jAlxHov5cT6L2XFujBlxnowpcckZqXHonglyTow5cnlraXKujElzDoxZcymEmXOJ5Qlznoxpc96MeXPujIl0LozJdE6MmXRujKl0joy5dJ6M2XUpDCl1aW9ZdZkMOXXOjOl16U8Zdg6M+XYepyl2KWypdk6NCXZujRl2jo0pdpinaXa+jUl22QeJdx6NWXdIxDl3no1pd66NqXfOjYl4Ho2ZeEipOXhejXl4bo25eL6NyXjYjGl4/o3ZeQ6N6XmI/il5zo35egi2aXo+jil6bo4Zeo6OCXq+aRl62V2pez6OOXtOjkl8Po5ZfG6OaXyOjnl8vo6JfTitiX3Ojpl+3o6pfulEKX8ujsl/OJuZf16O+X9ujul/uJQ5f/i7+YAZXFmAKSuJgDjaCYBY2AmAaPh5gIkHuYDOjxmA/o8JgQl2GYEYrmmBKU0JgTk9qYF5CcmBiXzJgajHqYIej0mCTo85gslmqYLZOqmDSJb5g36PWYOOjymDuVcJg8l4qYPej2mEbo95hL6PmYTJHomE2KephOinuYT+j4mFSK55hVjLCYWIromFuTXphel96YZ4zamGvo+phv6PuYcOj8mHHpQJhz6UKYdOlBmKiVl5iq6UOYr+lEmLHpRZi26UaYw+lImMTpR5jG6UmY25TymNzjypjfkEiY4otRmOnpSpjr6UuY7ZmqmO6fWpjvlNGY8oj5mPSIuZj8jpSY/ZZPmP6P/JkD6UyZBZbdmQnpTZkKl3uZDIlhmRCOYJkS6U6ZE4nsmRTpT5kY6VCZHelSmR7pU5kg6VWZIelRmSTpVJkoitmZLOlWmS7pV5k96ViZPulZmULpWplF6VyZSelbmUvpXplM6WGZUOldmVHpX5lS6WCZVelimVeLwJmWjvGZl+ljmZjpZJmZjYGZpellmaiKXZmslG6Zrelmma7pZ5mzknmZtJPpmbzpaJnBlJ2ZxJHKmcWJd5nGi+yZyIvtmdCSk5nR6W2Z0ovumdWJ7ZnY6WyZ2+lqmd3pa5nf6WmZ4ul3me3pbpnu6W+Z8elwmfLpcZn46XOZ++lymf+PeJoB6XSaBel2mg6LUpoP6XWaEpGbmhOMsZoZ6XiaKJHLmivpeZowk6uaN+l6mj7pgJpA6X2aQul8mkPpfppF6XuaTemCmlXpgZpX6YSaWovBmlvpg5pf6YWaYumGmmTpiJpl6YeaaemJmmrpi5pr6YqaqI2cmq3pjJqw6Y2auIpbmrzpjprA6Y+axJCRms/pkJrR6ZGa0+mSmtTpk5rYjYKa3umUmt/plZri6Zaa4+mXmubpmJrqlK+a6+mamu2VRZru6Zua7+mZmvHpnZr06Zya9+memvvpn5sG6aCbGOmhmxrpopsf6aObIumkmyPppZsl6aabJ+mnmyjpqJsp6ambKumqmy7pq5sv6aybMZ9UmzLprZs74vabPItTm0GKQJtCjbCbQ+mvm0TprptFlqObTemxm07psptP6bCbUemzm1SWgptY6bSbWoubm2+YRJt06bWbg+m3m46IvJuR6bibkpWpm5PptpuW6bmbl+m6m5/pu5ug6bybqOm9m6qWjpurjkybrY34m66RTpu06b6buenBm8Dpv5vG6cKbyYzvm8rpwJvP6cOb0enEm9LpxZvU6cmb1o5Jm9uR4pvh6cqb4unHm+Ppxpvk6cib6Ix+m/Dpzpvx6c2b8unMm/WIsZwE6dicBunUnAjp1ZwJ6dGcCunXnAzp05wNioKcEJhrnBLp1pwT6dKcFOnQnBXpz5wb6dqcIendnCTp3Jwl6ducLZVonC7p2ZwviPGcMOnenDLp4Jw5io+cOunLnDuJVpw+6eKcRunhnEfp35xIkkycUpaQnFeX2Jxa6eOcYOnknGfp5Zx26eaceOnnnOWSuZzn6eic6ZS1nOvp7Zzs6emc8OnqnPOWUJz0lsKc9pPOnQPp7p0G6e+dB5O8nQjp7J0J6eudDomonRLp950V6fadG4mVnR/p9J0j6fOdJunxnSiKm50q6fCdK46wnSyJp507jYOdPun6nT/p+Z1B6fidROn1nUbp+51I6fydUOpEnVHqQ51Z6kWdXIlMnV3qQJ1e6kGdYI2UnWGWt51k6kKdbJZRnW/qSp1y6kadeupLnYfqSJ2J6kedj4x7nZrqTJ2k6k2dqepOnavqSZ2v6fKdsupPnbSS35246lOduupUnbvqUp3B6lGdwupXncTqUJ3G6lWdz+pWndPqWZ3Z6lid5upbne3qXJ3v6l2d8phonfjqWp35kemd+o3rnf3qXp4a6l+eG+pgnh7qYZ516mKeeIyynnnqY5596mSef46tnoHqZZ6I6maei+pnnozqaJ6R6muekuppnpOYW56V6mqel5ftnp3qbJ6fl9mepeptnqaUnp6p6m6equpwnq3qcZ646m+euY2NnrqWy567loOevJv1nr6fgJ6/lpuexImpnszqc57Ni2+ezup0ns/qdZ7Q6nae0o2VntTqd57Y4NKe2ZbZntuR4Z7c6nie3ep6nt7qeZ7g6nue5ep8nujqfZ7v6n6e9OqAnvbqgZ736oKe+eqDnvvqhJ786oWe/eqGnwfqh58I6oifDpNDnxOM258V6oqfIJFsnyHqi58s6oyfO5VAnz7qjZ9K6o6fS+JWn07m2J9P6OufUuqPn1TqkJ9f6pKfYOqTn2HqlJ9il+6fY+qRn2bqlZ9n6pafauqYn2zql59y6pqfduqbn3fqmZ+Nl7Sfleqcn5zqnZ+d4nOfoOqe/wGBSf8DgZT/BIGQ/wWBk/8GgZX/CIFp/wmBav8KgZb/C4F7/wyBQ/8OgUT/D4Fe/xCCT/8RglD/EoJR/xOCUv8UglP/FYJU/xaCVf8Xglb/GIJX/xmCWP8agUb/G4FH/xyBg/8dgYH/HoGE/x+BSP8ggZf/IYJg/yKCYf8jgmL/JIJj/yWCZP8mgmX/J4Jm/yiCZ/8pgmj/KoJp/yuCav8sgmv/LYJs/y6Cbf8vgm7/MIJv/zGCcP8ygnH/M4Jy/zSCc/81gnT/NoJ1/zeCdv84gnf/OYJ4/zqCef87gW3/PIFf/z2Bbv8+gU//P4FR/0CBTf9BgoH/QoKC/0OCg/9EgoT/RYKF/0aChv9Hgof/SIKI/0mCif9Kgor/S4KL/0yCjP9Ngo3/ToKO/0+Cj/9QgpD/UYKR/1KCkv9TgpP/VIKU/1WClf9Wgpb/V4KX/1iCmP9Zgpn/WoKa/1uBb/9cgWL/XYFw/2EAof9iAKL/YwCj/2QApP9lAKX/ZgCm/2cAp/9oAKj/aQCp/2oAqv9rAKv/bACs/20Arf9uAK7/bwCv/3AAsP9xALH/cgCy/3MAs/90ALT/dQC1/3YAtv93ALf/eAC4/3kAuf96ALr/ewC7/3wAvP99AL3/fgC+/38Av/+AAMD/gQDB/4IAwv+DAMP/hADE/4UAxf+GAMb/hwDH/4gAyP+JAMn/igDK/4sAy/+MAMz/jQDN/44Azv+PAM//kADQ/5EA0f+SANL/kwDT/5QA1P+VANX/lgDW/5cA1/+YANj/mQDZ/5oA2v+bANv/nADc/50A3f+eAN7/nwDf/+OBUP/lgY8=",7070);const rt={shape:K.square,qrOptions:{typeNumber:k[0],errorCorrectionLevel:w.Q},cornersSquareOptions:{type:z.square},cornersDotOptions:{type:E.square},dotsOptions:{type:N.square}},st={shape:K.square,qrOptions:{typeNumber:k[0],mode:void 0,errorCorrectionLevel:w.Q},imageOptions:{mode:H.center,imageSize:.4,crossOrigin:void 0,margin:0,fill:{color:"rgba(255,255,255,1)"}},cornersSquareOptions:{type:z.dot,color:"#000000"},cornersDotOptions:{type:E.dot,color:"#000000"},dotsOptions:{type:N.verticalLine,color:"#000000",size:10},backgroundOptions:{color:"#FFFFFF"}},at={...st,dotsOptions:{...st.dotsOptions,type:N.rounded},cornersSquareOptions:{type:z.dot,color:"#000000"},cornersDotOptions:{type:E.dot,color:"#000000"}},lt={...st,dotsOptions:{...st.dotsOptions,type:N.dot},cornersSquareOptions:{type:z.dot,color:"#000000"},cornersDotOptions:{type:E.dot,color:"#000000"}},ht={...st,dotsOptions:{...st.dotsOptions,type:N.classy},cornersSquareOptions:{type:z.classy,color:"#000000"},cornersDotOptions:{type:E.classy,color:"#000000"}},dt={plain:rt,basic:st,rounded:at,dots:lt,classy:ht},ct=t=>"number"==typeof t&&!isNaN(t)&&isFinite(t),ut=(t,e)=>{const i=[];return Object.values(U).includes(t.type)||i.push({path:`${e}.type`,message:`Invalid gradient type. Must be one of: ${Object.values(U).join(", ")}`,value:t.type}),void 0===t.rotation||ct(t.rotation)||i.push({path:`${e}.rotation`,message:"Rotation must be a valid number",value:t.rotation}),!t.colorStops||!Array.isArray(t.colorStops)||t.colorStops.length<2?i.push({path:`${e}.colorStops`,message:"Gradient must have at least 2 color stops",value:t.colorStops}):t.colorStops.forEach(((t,o)=>{(!ct(t.offset)||t.offset<0||t.offset>1)&&i.push({path:`${e}.colorStops[${o}].offset`,message:"Color stop offset must be between 0 and 1",value:t.offset}),(t=>{if(new Set(["black","white","red","green","blue","yellow","purple","gray","grey","cyan","magenta","lime","pink","teal","brown","orange"]).has(t.toLowerCase()))return!0;if(/^#([A-Fa-f0-9]{3}){1,2}$/.test(t))return!0;if(/^#([A-Fa-f0-9]{4}){1,2}$/.test(t))return!0;if(/^rgb\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*\)$/.test(t)||/^rgba\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*,\s*([01]?\.?\d*)\)$/.test(t))return(t.match(/\d+/g)?.map(Number)||[]).every((t=>t>=0&&t<=255));return!1})(t.color)||i.push({path:`${e}.colorStops[${o}].color`,message:"Invalid color format",value:t.color})})),i};function pt(t){const e=[];let i={...st};return t.data&&"string"==typeof t.data||e.push({path:"data",message:"QR data is required and must be a string",value:t.data}),t.shape&&!Object.values(K).includes(t.shape)&&(e.push({path:"shape",message:`Invalid shape type. Must be one of: ${Object.values(K).join(", ")}`,value:t.shape}),t.shape=st.shape),t.qrOptions&&(t.qrOptions.typeNumber&&!Object.values(k).includes(t.qrOptions.typeNumber)&&(e.push({path:"qrOptions.typeNumber",message:"Invalid type number",value:t.qrOptions.typeNumber}),t.qrOptions.typeNumber=st.qrOptions?.typeNumber),t.qrOptions.errorCorrectionLevel&&!Object.values(w).includes(t.qrOptions.errorCorrectionLevel)&&(e.push({path:"qrOptions.errorCorrectionLevel",message:"Invalid error correction level",value:t.qrOptions.errorCorrectionLevel}),t.qrOptions.errorCorrectionLevel=st.qrOptions?.errorCorrectionLevel),t.qrOptions.mode&&!Object.values(y).includes(t.qrOptions.mode)&&(e.push({path:"qrOptions.mode",message:"Invalid mode",value:t.qrOptions.mode}),t.qrOptions.mode=st.qrOptions?.mode)),t.imageOptions&&(t.imageOptions.imageSize&&(!ct(t.imageOptions.imageSize)||t.imageOptions.imageSize<=0||t.imageOptions.imageSize>1)&&(e.push({path:"imageOptions.imageSize",message:"Image size must be between 0 and 1",value:t.imageOptions.imageSize}),t.imageOptions.imageSize=st.imageOptions?.imageSize),t.imageOptions.margin&&(!ct(t.imageOptions.margin)||t.imageOptions.margin<0)&&(e.push({path:"imageOptions.margin",message:"Margin must be a non-negative number",value:t.imageOptions.margin}),t.imageOptions.margin=st.imageOptions?.margin),t.imageOptions.mode&&!Object.values(H).includes(t.imageOptions.mode)&&(e.push({path:"imageOptions.mode",message:`Invalid image mode. Must be one of: ${Object.values(H).join(", ")}`,value:t.imageOptions.mode}),t.imageOptions.mode=st.imageOptions?.mode)),t.dotsOptions&&(t.dotsOptions.type&&!Object.values(N).includes(t.dotsOptions.type)&&(e.push({path:"dotsOptions.type",message:`Invalid dot type. Must be one of: ${Object.values(N).join(", ")}`,value:t.dotsOptions.type}),t.dotsOptions.type=st.dotsOptions?.type),t.dotsOptions.size&&(!ct(t.dotsOptions.size)||t.dotsOptions.size<=0)&&(e.push({path:"dotsOptions.size",message:"Dot size must be a positive number",value:t.dotsOptions.size}),t.dotsOptions.size=st.dotsOptions?.size),t.dotsOptions.gradient&&e.push(...ut(t.dotsOptions.gradient,"dotsOptions.gradient"))),t.cornersSquareOptions&&(t.cornersSquareOptions.type&&!Object.values(z).includes(t.cornersSquareOptions.type)&&(e.push({path:"cornersSquareOptions.type",message:`Invalid corner square type. Must be one of: ${Object.values(z).join(", ")}`,value:t.cornersSquareOptions.type}),t.cornersSquareOptions.type=st.cornersSquareOptions?.type),t.cornersSquareOptions.gradient&&e.push(...ut(t.cornersSquareOptions.gradient,"cornersSquareOptions.gradient"))),t.cornersDotOptions&&(t.cornersDotOptions.type&&!Object.values(E).includes(t.cornersDotOptions.type)&&(e.push({path:"cornersDotOptions.type",message:`Invalid corner dot type. Must be one of: ${Object.values(E).join(", ")}`,value:t.cornersDotOptions.type}),t.cornersDotOptions.type=st.cornersDotOptions?.type),t.cornersDotOptions.gradient&&e.push(...ut(t.cornersDotOptions.gradient,"cornersDotOptions.gradient"))),i={...i,...t},{warnings:e,validatedOptions:i}}const mt={classic:{primaryColor:"#000000",secondaryColor:"#000000",thirdColor:"#757575",backgroundColor:"#ffffff",dotShape:N.square,cornerSquareShape:z.square,cornerDotShape:E.square},modern:{primaryColor:"#4CAF50",secondaryColor:"#007fff",thirdColor:"#d81b60",backgroundColor:"#ffffff",dotShape:N.dot,cornerSquareShape:z.rounded,cornerDotShape:E.dot},rounded:{primaryColor:"#007bff",secondaryColor:"#4CAF50",thirdColor:"#d32f2f",backgroundColor:"#ffffff",dotShape:N.rounded,cornerSquareShape:z.rounded,cornerDotShape:E.dot},vibrant:{primaryColor:"#ff5722",secondaryColor:"#3f51b5",thirdColor:"#2e7d32",backgroundColor:"#ffffff",dotShape:N.rounded,cornerSquareShape:z.rounded,cornerDotShape:E.dot},pastel:{primaryColor:"#f8bbd0",secondaryColor:"#b2ebf2",thirdColor:"#00695c",backgroundColor:"#f5f5f5",dotShape:N.dot,cornerSquareShape:z.square,cornerDotShape:E.square},neon:{primaryColor:"#00e676",secondaryColor:"#ff1744",thirdColor:"#0288d1",backgroundColor:"#212121",dotShape:N.rounded,cornerSquareShape:z.rounded,cornerDotShape:E.dot},earthy:{primaryColor:"#795548",secondaryColor:"#4db6ac",thirdColor:"#8e24aa",backgroundColor:"#efebe9",dotShape:N.square,cornerSquareShape:z.square,cornerDotShape:E.square},sunset:{primaryColor:"#bf360c",secondaryColor:"#ab47bc",thirdColor:"#00796b",backgroundColor:"#fff3e0",dotShape:N.dot,cornerSquareShape:z.rounded,cornerDotShape:E.dot},oceanic:{primaryColor:"#0288d1",secondaryColor:"#26a69a",thirdColor:"#6a1b9a",backgroundColor:"#e0f7fa",dotShape:N.rounded,cornerSquareShape:z.square,cornerDotShape:E.dot},bold:{primaryColor:"#d50000",secondaryColor:"#6200ea",thirdColor:"#388e3c",backgroundColor:"#fafafa",dotShape:N.square,cornerSquareShape:z.rounded,cornerDotShape:E.square},limeGlow:{primaryColor:"#afb42b",secondaryColor:"#536dfe",thirdColor:"#c62828",backgroundColor:"#fffde7",dotShape:N.dot,cornerSquareShape:z.rounded,cornerDotShape:E.dot},twilight:{primaryColor:"#4527a0",secondaryColor:"#d84315",thirdColor:"#00796b",backgroundColor:"#eceff1",dotShape:N.rounded,cornerSquareShape:z.rounded,cornerDotShape:E.dot},meadow:{primaryColor:"#388e3c",secondaryColor:"#689f38",thirdColor:"#ad1457",backgroundColor:"#f1f8e9",dotShape:N.dot,cornerSquareShape:z.square,cornerDotShape:E.square},coral:{primaryColor:"#c2185b",secondaryColor:"#00838f",thirdColor:"#f57f17",backgroundColor:"#ffebee",dotShape:N.rounded,cornerSquareShape:z.rounded,cornerDotShape:E.dot},midnight:{primaryColor:"#5c6bc0",secondaryColor:"#fbc02d",thirdColor:"#00695c",backgroundColor:"#263238",dotShape:N.square,cornerSquareShape:z.square,cornerDotShape:E.square},citrus:{primaryColor:"#f57c00",secondaryColor:"#558b2f",thirdColor:"#6d4c41",backgroundColor:"#fff8e1",dotShape:N.dot,cornerSquareShape:z.rounded,cornerDotShape:E.dot},dusk:{primaryColor:"#6a1b9a",secondaryColor:"#e65100",thirdColor:"#2e7d32",backgroundColor:"#d7ccc8",dotShape:N.rounded,cornerSquareShape:z.square,cornerDotShape:E.dot},frost:{primaryColor:"#0277bd",secondaryColor:"#37474f",thirdColor:"#c2185b",backgroundColor:"#e1f5fe",dotShape:N.dot,cornerSquareShape:z.rounded,cornerDotShape:E.square},autumn:{primaryColor:"#d84315",secondaryColor:"#827717",thirdColor:"#4a148c",backgroundColor:"#efebe9",dotShape:N.square,cornerSquareShape:z.rounded,cornerDotShape:E.dot}},gt=/\.?0+$/;function ft(t){return t.toFixed(7).replace(gt,"")}function bt(t,...e){return t.reduce(((t,i,o)=>{let n="";return o&&(n=e[o-1]),"number"==typeof n&&(n=ft(n)),`${t}${n}${i}`}),"").trim().replace(/[\s\n\r]+/gim," ")}class Ot{get element(){return this._element}constructor(t,e){this.type=t,this.document=e}draw(t){let e;switch(this.type){case E.square:e=this.drawSquare;break;case E.heart:e=this.drawHeart;break;case E.rounded:e=this.drawRounded;break;case E.classy:e=this.drawClassy;break;case E.inpoint:e=this.drawInpoint;break;case E.outpoint:e=this.drawOutpoint;break;case E.dot:default:e=this.drawDot}e.call(this,t)}rotateFigure({x:t,y:e,size:i,rotation:o=0,draw:n}){const r=t+i/2,s=e+i/2;n(),this._element?.setAttribute("transform",`rotate(${ft(180*o/Math.PI)},${r},${s})`)}basicDot(t){const{size:e,x:i,y:o}=t;this.rotateFigure({...t,draw:()=>{this._element=this.document.createElementNS("http://www.w3.org/2000/svg","circle"),this._element.setAttribute("cx",ft(i+e/2)),this._element.setAttribute("cy",ft(o+e/2)),this._element.setAttribute("r",ft(e/2.1))}})}basicSquare(t){const{size:e,x:i,y:o}=t,n=e/11;this.rotateFigure({...t,draw:()=>{this._element=this.document.createElementNS("http://www.w3.org/2000/svg","rect"),this._element.setAttribute("x",ft(i+n)),this._element.setAttribute("y",ft(o+n)),this._element.setAttribute("width",ft(e-2*n)),this._element.setAttribute("height",ft(e-2*n))}})}basicHeart(t){const{size:e,x:i,y:o}=t;this._element=this.document.createElementNS("http://www.w3.org/2000/svg","path");let n=!1,r=0;this._element.setAttribute("d",["M",1,.3262506,"c",0,.0383376,-.0064626,.0758377,-.0193751,.1125001,"s",-.0356247,.076875,-.0681248,.1206252,"c",-.0325,.0437499,-.0762503,.0931247,-.1312501,.1481249,"C",.7262502,.7625008,.6566626,.8279132,.5724999,.9037505,"L",.5,.9687506,"L",.4275001,.9037505,"C",.3433374,.8279132,.2737499,.7625005,.21875,.7075007,"C",.1637501,.6525008,.1199999,.6031258,.0874999,.5593758,"S",.0322876,.4754133,.0193751,.4387506,"S",0,.3645881,0,.3262506,"c",0,-.0783374,.0262499,-.1437498,.07875,-.1962499,"s",.1179124,-.07875,.1962499,-.07875,"c",.0433376,0,.0845875,.0091625,.12375,.0274999,"S",.4716623,.1229131,.5,.1562506,"c",.0283374,-.0333375,.0620874,-.0591625,.1012502,-.0775,"c",.0391627,-.0183375,.0804126,-.0274999,.12375,-.0274999,"c",.0783374,0,.1437497,.0262499,.1962501,.07875,"S",1,.2479131,1,.3262506,"z"].map((t=>"string"==typeof t?(r=0,n=t.toUpperCase()==t,t):(r++,t*=e,n&&(t+=r%2==1?i:o),ft(t)))).join(" "))}basicRounded(t){const{size:e,x:i,y:o}=t;this.rotateFigure({...t,draw:()=>{this._element=this.document.createElementNS("http://www.w3.org/2000/svg","rect"),this._element.setAttribute("x",ft(i)),this._element.setAttribute("y",ft(o)),this._element.setAttribute("width",ft(e)),this._element.setAttribute("height",ft(e)),this._element.setAttribute("rx",ft(e/4)),this._element.setAttribute("ry",ft(e/4))}})}basicClassy(t){const{size:e,x:i,y:o}=t,n=e/7;this.rotateFigure({...t,draw:()=>{this._element=this.document.createElementNS("http://www.w3.org/2000/svg","path"),this._element.setAttribute("clip-rule","evenodd"),this._element.setAttribute("d",bt`M ${i} ${o+2.5*n} v ${2*n} a ${2.5*n} ${2.5*n}, 0, 0, 0, ${2.5*n} ${2.5*n} h ${4.5*n} v ${-4.5*n} a ${2.5*n} ${2.5*n}, 0, 0, 0, ${2.5*-n} ${2.5*-n} h ${-2*n} H ${i} z`)}})}basicInpoint(t){const{size:e,x:i,y:o}=t,n=e;this.rotateFigure({...t,draw:()=>{this._element=this.document.createElementNS("http://www.w3.org/2000/svg","path"),this._element.setAttribute("clip-rule","evenodd"),this._element.setAttribute("d",bt`M ${i} ${o+n/2} v ${n/4} a ${n/4}, ${n/4} 0 0 0 ${n/4}, ${n/4} h ${n/4*3} v ${-n/4*3} a ${n/4}, ${n/4} 0 0 0 ${-n/4}, ${-n/4} h ${-n/2} a ${n/4}, ${n/4} 0 0 0 ${-n/4}, ${n/4} z`)}})}drawDot({x:t,y:e,size:i,rotation:o}){this.basicDot({x:t,y:e,size:i,rotation:o})}drawSquare({x:t,y:e,size:i,rotation:o}){this.basicSquare({x:t,y:e,size:i,rotation:o})}drawHeart({x:t,y:e,size:i,rotation:o}){this.basicHeart({x:t,y:e,size:i,rotation:o})}drawRounded({x:t,y:e,size:i,rotation:o}){this.basicRounded({x:t,y:e,size:i,rotation:o})}drawClassy({x:t,y:e,size:i,rotation:o}){this.basicClassy({x:t,y:e,size:i,rotation:o})}drawInpoint({x:t,y:e,size:i,rotation:o}){this.basicInpoint({x:t,y:e,size:i,rotation:o})}drawOutpoint({x:t,y:e,size:i,rotation:o}){this.basicInpoint({x:t,y:e,size:i,rotation:(o||0)+Math.PI})}}class kt{get element(){return this._element}get fill(){return this._fill}constructor(t,e){this.type=t,this.document=e}draw(t){let e;switch(this.type){case z.square:e=this.drawSquare;break;case z.rounded:e=this.drawExtraRounded;break;case z.classy:e=this.drawClassy;break;case z.outpoint:e=this.drawOutpoint;break;case z.inpoint:e=this.drawInpoint;break;case z.dot:default:e=this.drawDot}e.call(this,t)}rotateFigure({x:t,y:e,size:i,rotation:o=0,draw:n}){const r=t+i/2,s=e+i/2;n(),this._element?.setAttribute("transform",`rotate(${ft(180*o/Math.PI)},${r},${s})`),this._fill?.setAttribute("transform",`rotate(${ft(180*o/Math.PI)},${r},${s})`)}basicDot(t){const{size:e,x:i,y:o}=t,n=e/8,r=.5*e,s=r-n;this.rotateFigure({...t,draw:()=>{this._element=this.document.createElementNS("http://www.w3.org/2000/svg","path"),this._element.setAttribute("clip-rule","evenodd"),this._element.setAttribute("d",bt`M ${i+e/2} ${o+(e/2-r)} a ${r} ${r} 0 1 0 0.1 0 z m 0 ${n} a ${s} ${s} 0 1 1 -0.1 0 Z`),this._fill=this.document.createElementNS("http://www.w3.org/2000/svg","path"),this._fill.setAttribute("clip-rule","evenodd"),this._fill.setAttribute("d",bt`M ${i+e/2} ${o+(e/2-(r+n))} a ${r+n} ${r+n} 0 1 0 0.1 0 z`)}})}basicSquare(t){const{size:e,x:i,y:o}=t,n=e/7;this.rotateFigure({...t,draw:()=>{this._element=this.document.createElementNS("http://www.w3.org/2000/svg","path"),this._element.setAttribute("clip-rule","evenodd"),this._element.setAttribute("d",bt`M ${i} ${o} v ${e} h ${e} v ${-e} z M ${i+n} ${o+n} h ${e-2*n} v ${e-2*n} h ${2*n-e} z`),this._fill=this.document.createElementNS("http://www.w3.org/2000/svg","path"),this._fill.setAttribute("clip-rule","evenodd"),this._fill.setAttribute("d",bt`M ${i-n} ${o-n} h ${e+2*n} v ${e+2*n} h ${-e-2*n} z`)}})}basicExtraRounded(t){const{size:e,x:i,y:o}=t,n=e/7;this.rotateFigure({...t,draw:()=>{this._element=this.document.createElementNS("http://www.w3.org/2000/svg","path"),this._element.setAttribute("clip-rule","evenodd"),this._element.setAttribute("d",bt`M ${i} ${o+2.5*n} v ${2*n} a ${2.5*n} ${2.5*n}, 0, 0, 0, ${2.5*n} ${2.5*n} h ${2*n} a ${2.5*n} ${2.5*n}, 0, 0, 0, ${2.5*n} ${2.5*-n} v ${-2*n} a ${2.5*n} ${2.5*n}, 0, 0, 0, ${2.5*-n} ${2.5*-n} h ${-2*n} a ${2.5*n} ${2.5*n}, 0, 0, 0, ${2.5*-n} ${2.5*n} z M ${i+2.5*n} ${o+n} h ${2*n} a ${1.5*n} ${1.5*n}, 0, 0, 1, ${1.5*n} ${1.5*n} v ${2*n} a ${1.5*n} ${1.5*n}, 0, 0, 1, ${1.5*-n} ${1.5*n} h ${-2*n} a ${1.5*n} ${1.5*n}, 0, 0, 1, ${1.5*-n} ${1.5*-n} v ${-2*n} a ${1.5*n} ${1.5*n}, 0, 0, 1, ${1.5*n} ${1.5*-n} z`),this._fill=this.document.createElementNS("http://www.w3.org/2000/svg","path"),this._fill.setAttribute("clip-rule","evenodd"),this._fill.setAttribute("d",bt`M ${i-n} ${o+2.5*n} v ${2*n} a ${3.5*n} ${3.5*n}, 0, 0, 0, ${3.5*n} ${3.5*n} h ${2*n} a ${3.5*n} ${3.5*n}, 0, 0, 0, ${3.5*n} ${3.5*-n} v ${-2*n} a ${3.5*n} ${3.5*n}, 0, 0, 0, ${3.5*-n} ${3.5*-n} h ${-2*n} a ${3.5*n} ${3.5*n}, 0, 0, 0, ${3.5*-n} ${3.5*n} z`)}})}basicClassy(t){const{size:e,x:i,y:o}=t,n=e/7;this.rotateFigure({...t,draw:()=>{this._element=this.document.createElementNS("http://www.w3.org/2000/svg","path"),this._element.setAttribute("clip-rule","evenodd"),this._element.setAttribute("d",bt`M ${i} ${o+2.5*n} v ${2*n} a ${2.5*n} ${2.5*n}, 0, 0, 0, ${2.5*n} ${2.5*n} h ${4.5*n} v ${-4.5*n} a ${2.5*n} ${2.5*n}, 0, 0, 0, ${2.5*-n} ${2.5*-n} h ${-2*n} H ${i} z M ${i+2.5*n} ${o+n} h ${2*n} a ${1.5*n} ${1.5*n}, 0, 0, 1, ${1.5*n} ${1.5*n} v ${3.5*n} h ${-3.5*n} a ${1.5*n} ${1.5*n}, 0, 0, 1, ${1.5*-n} ${1.5*-n} v ${-3.5*n} z`),this._fill=this.document.createElementNS("http://www.w3.org/2000/svg","path"),this._fill.setAttribute("clip-rule","evenodd"),this._fill.setAttribute("d",bt`M ${i+.5*n} ${o-n} h ${4*n} a ${3.5*n} ${3.5*n}, 0, 0, 1, ${3.5*n} ${3.5*n} v ${5.5*n} h ${-5.5*n} a ${3.5*n} ${3.5*n}, 0, 0, 1, ${3.5*-n} ${3.5*-n} v ${-5.5*n} z`)}})}basicInpoint(t){const{size:e,x:i,y:o}=t,n=e/7;this.rotateFigure({...t,draw:()=>{this._element=this.document.createElementNS("http://www.w3.org/2000/svg","path"),this._element.setAttribute("clip-rule","evenodd"),this._element.setAttribute("d",bt`M ${i} ${o+2.5*n} v ${2*n} a ${2.5*n} ${2.5*n}, 0, 0, 0, ${2.5*n} ${2.5*n} h ${4.5*n} v ${-4.5*n} a ${2.5*n} ${2.5*n}, 0, 0, 0, ${2.5*-n} ${2.5*-n} h ${-2*n} a ${2.5*n} ${2.5*n}, 0, 0, 0, ${2.5*-n} ${2.5*n} z M ${i+2.5*n} ${o+n} h ${2*n} a ${1.5*n} ${1.5*n}, 0, 0, 1, ${1.5*n} ${1.5*n} v ${3.5*n} h ${-3.5*n} a ${1.5*n} ${1.5*n}, 0, 0, 1, ${1.5*-n} ${1.5*-n} v ${-2*n} a ${1.5*n} ${1.5*n}, 0, 0, 1, ${1.5*n} ${1.5*-n} z`),this._fill=this.document.createElementNS("http://www.w3.org/2000/svg","path"),this._fill.setAttribute("clip-rule","evenodd"),this._fill.setAttribute("d",bt`M ${i+.5*n} ${o-n} h ${4*n} a ${3.5*n} ${3.5*n}, 0, 0, 1, ${3.5*n} ${3.5*n} v ${5.5*n} h ${-5.5*n} a ${3.5*n} ${3.5*n}, 0, 0, 1, ${3.5*-n} ${3.5*-n} v ${-2*n} a ${3.5*n} ${3.5*n}, 0, 0, 1, ${3.5*n} ${3.5*-n} z`)}})}drawDot({x:t,y:e,size:i,rotation:o}){this.basicDot({x:t,y:e,size:i,rotation:o})}drawSquare({x:t,y:e,size:i,rotation:o}){this.basicSquare({x:t,y:e,size:i,rotation:o})}drawExtraRounded({x:t,y:e,size:i,rotation:o}){this.basicExtraRounded({x:t,y:e,size:i,rotation:o})}drawClassy({x:t,y:e,size:i,rotation:o}){this.basicClassy({x:t,y:e,size:i,rotation:o})}drawInpoint({x:t,y:e,size:i,rotation:o}){this.basicInpoint({x:t,y:e,size:i,rotation:o})}drawOutpoint({x:t,y:e,size:i,rotation:o}){this.basicInpoint({x:t,y:e,size:i,rotation:(o||0)+Math.PI})}}class wt{get element(){return this._element}constructor(t,e){this.type=t,this.document=e}draw(t){let e;switch(this.type){case N.dot:e=this.drawDot;break;case N.randomDot:e=this.drawRandomDot;break;case N.classy:e=this.drawClassy;break;case N.classyRounded:e=this.drawClassyRounded;break;case N.rounded:e=this.drawRounded;break;case N.verticalLine:e=this.drawVerticalLine;break;case N.horizontalLine:e=this.drawHorizontalLine;break;case N.extraRounded:e=this.drawExtraRounded;break;case N.diamond:e=this.drawDiamond;break;case N.smallSquare:e=this.drawSmallSquare;break;case N.tinySquare:e=this.drawTinySquare;break;case N.star:e=this.drawStar;break;case N.plus:e=this.drawPlus;break;case N.square:default:e=this.drawSquare}e.call(this,t)}rotateFigure({x:t,y:e,size:i,rotation:o=0,draw:n}){const r=t+i/2,s=e+i/2;n(),this._element?.setAttribute("transform",`rotate(${ft(180*o/Math.PI)},${r},${s})`)}basicDot(t){const{size:e,x:i,y:o}=t;this.rotateFigure({...t,draw:()=>{this._element=this.document.createElementNS("http://www.w3.org/2000/svg","circle"),this._element.setAttribute("cx",ft(i+e/2)),this._element.setAttribute("cy",ft(o+e/2)),this._element.setAttribute("r",ft(e/2))}})}basicSquare(t){const{size:e,x:i,y:o}=t;this.rotateFigure({...t,draw:()=>{this._element=this.document.createElementNS("http://www.w3.org/2000/svg","rect"),this._element.setAttribute("x",ft(i)),this._element.setAttribute("y",ft(o)),this._element.setAttribute("width",ft(e)),this._element.setAttribute("height",ft(e))}})}basicSideRounded(t){const{size:e,x:i,y:o}=t;this.rotateFigure({...t,draw:()=>{this._element=this.document.createElementNS("http://www.w3.org/2000/svg","path"),this._element.setAttribute("d",bt`M ${i} ${o} v ${e} h ${e/2} a ${e/2} ${e/2}, 0, 0, 0, 0 ${-e} z`)}})}basicCornerRounded(t){const{size:e,x:i,y:o}=t;this.rotateFigure({...t,draw:()=>{this._element=this.document.createElementNS("http://www.w3.org/2000/svg","path"),this._element.setAttribute("d",bt`M ${i} ${o} v ${e} h ${e} v ${-e/2} a ${e/2} ${e/2}, 0, 0, 0, ${-e/2} ${-e/2} z`)}})}basicCornerExtraRounded(t){const{size:e,x:i,y:o}=t;this.rotateFigure({...t,draw:()=>{this._element=this.document.createElementNS("http://www.w3.org/2000/svg","path"),this._element.setAttribute("d",bt`M ${i} ${o} v ${e} h ${e} a ${e} ${e}, 0, 0, 0, ${-e} ${-e} z`)}})}basicCornersRounded(t){const{size:e,x:i,y:o}=t;this.rotateFigure({...t,draw:()=>{this._element=this.document.createElementNS("http://www.w3.org/2000/svg","path"),this._element.setAttribute("d",bt`M ${i} ${o} v ${e/2} a ${e/2} ${e/2}, 0, 0, 0, ${e/2} ${e/2} h ${e/2} v ${-e/2} a ${e/2} ${e/2}, 0, 0, 0, ${-e/2} ${-e/2} z`)}})}drawDot({x:t,y:e,size:i}){this.basicDot({x:t,y:e,size:i,rotation:0})}drawRandomDot({x:t,y:e,size:i}){const o=.25*Math.random()+.75;this.basicDot({x:t,y:e,size:i*o,rotation:0})}drawSquare({x:t,y:e,size:i}){this.basicSquare({x:t,y:e,size:i,rotation:0})}drawSmallSquare({x:t,y:e,size:i}){const o=i;i=.7*o,t+=.15*o,e+=.15*o,this.basicSquare({x:t,y:e,size:i,rotation:0})}drawTinySquare({x:t,y:e,size:i}){const o=i;i=.6*o,t+=.35*o,e+=.35*o,this.basicSquare({x:t,y:e,size:i,rotation:0})}drawDiamond({x:t,y:e,size:i}){this.basicSquare({x:t,y:e,size:i,rotation:Math.PI/4})}drawRounded({x:t,y:e,size:i,getNeighbor:o}){const n=o?+o(-1,0):0,r=o?+o(1,0):0,s=o?+o(0,-1):0,a=o?+o(0,1):0,l=n+r+s+a;if(0!==l)if(l>2||n&&r||s&&a)this.basicSquare({x:t,y:e,size:i,rotation:0});else{if(2===l){let o=0;return n&&s?o=Math.PI/2:s&&r?o=Math.PI:r&&a&&(o=-Math.PI/2),void this.basicCornerRounded({x:t,y:e,size:i,rotation:o})}if(1===l){let o=0;return s?o=Math.PI/2:r?o=Math.PI:a&&(o=-Math.PI/2),void this.basicSideRounded({x:t,y:e,size:i,rotation:o})}}else this.basicDot({x:t,y:e,size:i,rotation:0})}drawVerticalLine({x:t,y:e,size:i,getNeighbor:o}){const n=o?+o(-1,0):0,r=o?+o(1,0):0,s=o?+o(0,-1):0,a=o?+o(0,1):0;if(0===n+r+s+a||n&&!s&&!a||r&&!s&&!a)this.basicDot({x:t,y:e,size:i,rotation:0});else if(s&&a)this.basicSquare({x:t,y:e,size:i,rotation:0});else if(!s||a)if(!a||s);else{const o=-Math.PI/2;this.basicSideRounded({x:t,y:e,size:i,rotation:o})}else{const o=Math.PI/2;this.basicSideRounded({x:t,y:e,size:i,rotation:o})}}drawHorizontalLine({x:t,y:e,size:i,getNeighbor:o}){const n=o?+o(-1,0):0,r=o?+o(1,0):0,s=o?+o(0,-1):0,a=o?+o(0,1):0;if(0===n+r+s+a||s&&!n&&!r||a&&!n&&!r)this.basicDot({x:t,y:e,size:i,rotation:0});else if(n&&r)this.basicSquare({x:t,y:e,size:i,rotation:0});else if(!n||r)if(!r||n);else{const o=Math.PI;this.basicSideRounded({x:t,y:e,size:i,rotation:o})}else{const o=0;this.basicSideRounded({x:t,y:e,size:i,rotation:o})}}drawExtraRounded({x:t,y:e,size:i,getNeighbor:o}){const n=o?+o(-1,0):0,r=o?+o(1,0):0,s=o?+o(0,-1):0,a=o?+o(0,1):0,l=n+r+s+a;if(0!==l)if(l>2||n&&r||s&&a)this.basicSquare({x:t,y:e,size:i,rotation:0});else{if(2===l){let o=0;return n&&s?o=Math.PI/2:s&&r?o=Math.PI:r&&a&&(o=-Math.PI/2),void this.basicCornerExtraRounded({x:t,y:e,size:i,rotation:o})}if(1===l){let o=0;return s?o=Math.PI/2:r?o=Math.PI:a&&(o=-Math.PI/2),void this.basicSideRounded({x:t,y:e,size:i,rotation:o})}}else this.basicDot({x:t,y:e,size:i,rotation:0})}drawClassy({x:t,y:e,size:i,getNeighbor:o}){const n=o?+o(-1,0):0,r=o?+o(1,0):0,s=o?+o(0,-1):0,a=o?+o(0,1):0;0!==n+r+s+a?n||s?r||a?this.basicSquare({x:t,y:e,size:i,rotation:0}):this.basicCornerRounded({x:t,y:e,size:i,rotation:Math.PI/2}):this.basicCornerRounded({x:t,y:e,size:i,rotation:-Math.PI/2}):this.basicCornersRounded({x:t,y:e,size:i,rotation:Math.PI/2})}drawClassyRounded({x:t,y:e,size:i,getNeighbor:o}){const n=o?+o(-1,0):0,r=o?+o(1,0):0,s=o?+o(0,-1):0,a=o?+o(0,1):0;0!==n+r+s+a?n||s?r||a?this.basicSquare({x:t,y:e,size:i,rotation:0}):this.basicCornerExtraRounded({x:t,y:e,size:i,rotation:Math.PI/2}):this.basicCornerExtraRounded({x:t,y:e,size:i,rotation:-Math.PI/2}):this.basicCornersRounded({x:t,y:e,size:i,rotation:Math.PI/2})}drawStar({x:t,y:e,size:i}){this.rotateFigure({x:t,y:e,size:i,rotation:0,draw:()=>{this._element=this.document.createElementNS("http://www.w3.org/2000/svg","path");const o=t+i/2,n=e+i/2,r=1.3*i/2,s=.5*r;let a="";for(let t=0;t<10;t++){const e=t*Math.PI/5-Math.PI/2,i=t%2==0?r:s;a+=(0===t?"M":"L")+`${o+i*Math.cos(e)},${n+i*Math.sin(e)}`}a+="Z",this._element?.setAttribute("d",a)}})}drawPlus({x:t,y:e,size:i}){this.rotateFigure({x:t,y:e,size:i,rotation:0,draw:()=>{this._element=this.document.createElementNS("http://www.w3.org/2000/svg","path");const o=.35*i,n=.85*i,r=(i-n)/2,s=o/2,a=[`M ${t+i/2-s} ${e+r}`,`h ${o}`,`v ${n}`,"h "+-o,"z",`M ${t+r} ${e+i/2-s}`,`h ${n}`,`v ${o}`,"h "+-n,"z"].join(" ");this._element?.setAttribute("d",a)}})}}const yt={toDataURL:t=>"string"==typeof t&&t.startsWith("data:")?Promise.resolve(t):new Promise(((e,i)=>{if("string"==typeof t){const o=new XMLHttpRequest,n=()=>{o.abort()};o.onload=()=>{if(o.status<200||o.status>=300)return n(),void i(new Error(`Failed to load image: ${o.statusText}`));const t=new FileReader;t.onloadend=()=>{n(),e(t.result)},t.onerror=()=>{n(),i(new Error("Failed to read image blob"))},t.readAsDataURL(o.response)},o.onerror=o.ontimeout=o.onabort=()=>{n(),i(new Error("Image load aborted or failed"))};try{o.open("GET",t,!0),o.responseType="blob",o.timeout=1e4,o.send()}catch(t){n(),i(t)}}else{const o=new FileReader;o.onloadend=()=>{e(o.result)},o.onerror=()=>{i(new Error("Failed to read local image"))},o.readAsDataURL(t)}})).catch((t=>(console.error("Image loading error:",t),"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSIjY2NjIi8+PHRleHQgeD0iNTAlIiB5PSI1MCUiIGRvbWluYW50LWJhc2VsaW5lPSJtaWRkbGUiIHRleHQtYW5jaG9yPSJtaWRkbGUiIGZpbGw9IiMwMDAiIGZvbnQtc2l6ZT0iMTYiPkxvZ28gbG9hZCBlcnJvcjwvdGV4dD48L3N2Zz4="))),getSize:(t,e)=>new Promise(((i,o)=>{const n=new Image,r=setTimeout((()=>{o(new Error("Image loading timed out"))}),15e3);"string"==typeof e&&(n.crossOrigin=e);const s=()=>{clearTimeout(r),n.onload=n.onerror=n.onabort=null,n.src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="};n.onload=()=>{s(),i({width:n.width,height:n.height})},n.onerror=n.onabort=()=>{s(),o(new Error("Failed to load image"))};try{"string"==typeof t?n.src=t:yt.toDataURL(t).then((t=>{t?n.src=t:o(new Error("Invalid image source"))})).catch(o)}catch(t){s(),o(t)}})).catch((t=>(console.error("Image size detection error:",t),{width:200,height:200})))};function Zt(t){let e,i=[],o=1;if("#"===(t=t.toLowerCase())[0]){const e=t.slice(1),n=e.length;n<=4?(i=[parseInt(e[0]+e[0],16),parseInt(e[1]+e[1],16),parseInt(e[2]+e[2],16)],4===n&&(o=parseInt(e[3]+e[3],16)/255)):(i=[parseInt(e[0]+e[1],16),parseInt(e[2]+e[3],16),parseInt(e[4]+e[5],16)],8===n&&(o=parseInt(e[6]+e[7],16)/255)),i[0]||(i[0]=0),i[1]||(i[1]=0),i[2]||(i[2]=0)}else{if(!(e=/^((?:rgba?))\s*\(([^)]*)\)/.exec(t)))return{value:t,alpha:o};{const t=3;i=e[2].trim().split(/\s*[,/]\s*|\s+/),i=i.map(((t,e)=>{if("%"===t[t.length-1]){const i=parseFloat(t)/100;return 3===e?i:255*i}return"none"===t?0:parseFloat(t)})),o=i.length>t?i.pop():1}}return{value:"#"+i.map((t=>Math.max(0,Math.min(255,t)).toString(16).padStart(2,"0"))).join(""),alpha:Math.max(0,Math.min(1,o))}}const St=[[1,1,1,1,1,1,1],[1,0,0,0,0,0,1],[1,0,0,0,0,0,1],[1,0,0,0,0,0,1],[1,0,0,0,0,0,1],[1,0,0,0,0,0,1],[1,1,1,1,1,1,1]],At=[[0,0,0,0,0,0,0],[0,0,0,0,0,0,0],[0,0,1,1,1,0,0],[0,0,1,1,1,0,0],[0,0,1,1,1,0,0],[0,0,0,0,0,0,0],[0,0,0,0,0,0,0]];class Ct{constructor(t){this.roundValue=t=>"number"==typeof t?t:parseInt(t.replace("%",""),10)/100;const e=t.margin||0,i="circle"===t.shape?.1:.3,{bordersMain:o,bordersOuter:n,bordersInner:r}=t,s=Math.min(t.width,t.height),a=T(t.borderOptions?.radius),l=T(t.borderOptions?.inner?.radius,a),h=a&&v(a)>0?v(a)/100*s:0,d=(a&&v(l)>0?v(l)/100*s:0)??h,c=d>0&&t.borderOptions?.hasBorder?d*i:0;this._hls=t.hls,this.finalWidth=t.width+o.left+o.right+n.left+n.right+r.left+r.right,this.finalHeight=t.height+o.top+o.bottom+n.top+n.bottom+r.top+r.bottom;const u=o.left+o.right+n.left+n.right+r.left+r.right,p=o.top+o.bottom+n.top+n.bottom+r.top+r.bottom,m=t.borderOptions?.hasBorder?this.finalWidth-u-2*n.left-2*r.left-r.right-2*e-c:this.finalWidth-2*e,g=t.borderOptions?.hasBorder?this.finalHeight-p-2*n.top-2*r.top-r.top-2*e-c:this.finalHeight-2*e,f=m/t.width,b=g/t.height,O=Math.min(f,b),k=Math.min(Math.max(t.scale??1,0),1.5),w=Math.min(Math.max(t.borderOptions?.inner?.scale??1,0),1.5),y=t.borderOptions?.inner?.horizontalOffset||0,Z=t.borderOptions?.inner?.verticalOffset||0;t.scale=O*k*w||1,this.options=t,this.document=t.document,this.imageTools=t.imageTools||yt,this._element=this.document.createElementNS("http://www.w3.org/2000/svg","svg");const S=ft(t.width),A=ft(t.height);t.isResponsive||(this._element.setAttribute("width",S),this._element.setAttribute("height",A)),this._element.setAttribute("viewBox",`0 0 ${S} ${A}`),this.defs=this.document.createElementNS("http://www.w3.org/2000/svg","defs"),this._element.appendChild(this.defs),this._innerQrGroup=this.document.createElementNS("http://www.w3.org/2000/svg","g");let C=(m-t.width*t.scale)/2+e-y+c/2,j=(g-t.height*t.scale)/2+e-Z+c/2;if(t.borderOptions?.hasBorder){const e={top:G(t.borderOptions,"top"),right:G(t.borderOptions,"right"),bottom:R(t.borderOptions,"bottom",this._hls),left:G(t.borderOptions,"left")},i=t.borderOptions.thickness||0,o=t.borderOptions.borderOuter?.thickness||0,n=t.borderOptions.borderInner?.thickness||0,r=t.borderOptions.noBorderThickness||i/4;j+=((e.top?i:r)-(e.bottom?i:r))/2+o+n+n/2,C+=((e.left?i:r)-(e.right?i:r))/2+o+n+n/2}t.verticalOffset&&(j-=t.verticalOffset),t.horizontalOffset&&(C-=t.horizontalOffset),this._instanceId=Ct.instanceCount++,1===t.scale&&0===C&&0===j||this._innerQrGroup.setAttribute("transform",`translate(${C}, ${j}) scale(${t.scale})`),this._maskedQrGroup=this.document.createElementNS("http://www.w3.org/2000/svg","g"),this._maskedQrGroup.setAttribute("mask",`url(#qr-mask-${this._instanceId})`),this._maskedQrGroup.appendChild(this._innerQrGroup),this._element.appendChild(this._maskedQrGroup)}get element(){return this._element}get qrGroup(){return this._innerQrGroup||this._element}get width(){return this.finalWidth}get height(){return this.finalHeight}get svgSize(){return{width:this.options.width,height:this.options.height}}getElement(){return this._element}async drawQR(t){const e=t.getModuleCount(),i=parseInt(((e-17)/4).toFixed(0),10),o=this.options.dotsOptions.size;let n={hideXDots:0,hideYDots:0,width:0,height:0};if(this.qr=t,this.options.borderOptions?.hasBorder||this.drawBackground(),this.options.image){const t=await this.imageTools.getSize(this.options.image,this.options.imageOptions.crossOrigin),{imageOptions:r}=this.options;if(this.options.imageOptions.mode==H.background){const e=0,i=(this.finalWidth-2*e*o)*r.imageSize,s=(this.finalHeight-2*e*o)*r.imageSize;let{width:a,height:l}=t;l=l/a*i,a=i,l>s&&(a=a/l*s,l=s),n={hideXDots:0,hideYDots:0,width:a,height:l}}else{const r=this.options.imageOptions.imageSize*this.options.errorCorrectionPercent,s=b.getPatternPosition(i),a=Math.floor(r*(e*e-192-2*(e-16)-s.length**2*25));n=function({originalHeight:t,originalWidth:e,maxHiddenDots:i,maxHiddenAxisDots:o,dotSize:n,margin:r}){const s={x:0,y:0},a={x:0,y:0};if(t<=0||e<=0||i<=0||n<=0||4*r**2>i)return{height:0,width:0,hideYDots:0,hideXDots:0};o&&o%2==0&&(o=Math.max(1,o-1));const l=Math.max(e,t),h=Math.min(e,t);let d=0,c=(o||i)-2*r;do{const t=d+(c-d)/2;let e=Math.max(1,Math.ceil(t+2*r));e%2==0&&e++;let o=Math.max(1,Math.ceil(t*h/l+2*r));o%2==0&&o++,e*o>i?c=t:d=t}while(Math.abs(d-c)>.001);const u=d;let p=Math.max(1,Math.ceil(u+2*r));p%2==0&&p++;let m=Math.max(1,Math.ceil(u*h/l+2*r));m%2==0&&m++,e>t?(s.x=p,s.y=m):(s.x=m,s.y=p);const g=(s.x-2*r)*n,f=(s.y-2*r)*n;return a.x=g,a.y=g*t/e,a.y>f&&(a.y=f,a.x=f*e/t),{height:Math.round(a.y+2*r*n),width:Math.round(a.x+2*r*n),hideYDots:s.y,hideXDots:s.x}}({originalWidth:t.width,originalHeight:t.height,maxHiddenDots:a,maxHiddenAxisDots:e-14,dotSize:o,margin:this.options.imageOptions.margin})}}this.options.imageOptions.mode!=H.overlay&&this.options.image&&n.width>0&&n.height>0&&await this.drawImage({width:n.width,height:n.height,count:e,dotSize:o}),this.drawDots(((t,i)=>!(this.options.imageOptions.mode==H.center&&t>=(e-n.hideXDots)/2&&t<(e+n.hideXDots)/2&&i>=(e-n.hideYDots)/2&&i<(e+n.hideYDots)/2)&&!(t<8&&i<8||t>=e-8&&i<8||i>=e-8&&t<8))),this.options.imageOptions.mode==H.overlay&&this.options.image&&n.width>0&&n.height>0&&await this.drawImage({width:n.width,height:n.height,count:e,dotSize:o}),this.drawCorners()}drawBackground(){const t=this.options;if(this._element&&t.backgroundOptions){const e=t.backgroundOptions.gradient,i=t.backgroundOptions.color;this.createColor({options:e,color:i,additionalRotation:0,x:0,y:0,height:t.height,width:t.width,name:`background-color-${this._instanceId}`});const o=Math.min(t.width,t.height),n=this.document.createElementNS("http://www.w3.org/2000/svg","rect");[this.backgroundMask,this.backgroundMaskGroup]=this.createMask(`mask-background-color-${this._instanceId}`),this.defs.appendChild(this.backgroundMask);const r=t.backgroundOptions?.round||0,s=this.roundValue(r);n.setAttribute("x",ft((t.width-o)/2)),n.setAttribute("y",ft((t.height-o)/2)),n.setAttribute("width",ft(o)),n.setAttribute("height",ft(o)),n.setAttribute("rx",ft(o/2*s)),this.backgroundMaskGroup.appendChild(n)}}drawBackgroundForBorder(t,e){const i=this.options;if(i.backgroundOptions){const o=i.backgroundOptions.gradient,n=i.backgroundOptions.color||"#ffffff",r=Math.min(i.width,i.height)-2*t,s=(i.width-r)/2,a=(i.height-r)/2,l=e-t,h=this.createColor({options:o,borderOptions:i.borderOptions,color:n,additionalRotation:0,x:s,y:a,height:r,width:r,name:`background-color-${this._instanceId}`,returnSVGGroup:!0}),d=this.document.createElementNS("http://www.w3.org/2000/svg","rect");return[this.backgroundMask,this.backgroundMaskGroup]=this.createMask(`mask-background-color-${this._instanceId}`),this.defs.appendChild(this.backgroundMask),d.setAttribute("x",ft(s)),d.setAttribute("y",ft(a)),d.setAttribute("width",ft(r)),d.setAttribute("height",ft(r)),d.setAttribute("rx",ft(l)),this.backgroundMaskGroup.appendChild(d),h}}drawDots(t){if(!this.qr)throw new Error("QR code is not defined");const e=this.options,i=this.qr.getModuleCount();if(i>e.width||i>e.height)throw new Error("The canvas is too small");const o=e.dotsOptions.size;let n=Math.min(e.width,e.height);e.imageOptions.mode==H.background&&(n-=2*o*(e.imageOptions.margin||0));const r=Math.floor((e.width-i*o)/2);let s=Math.floor((e.height-i*o)/2);if(e.offset){const t=(e.height-i*o)/2;s+=Math.min(Math.abs(e.offset),t)*Math.sign(e.offset)}let a=new wt(e.dotsOptions.type,this.document);const l=new wt(N.tinySquare,this.document),h=new wt(N.square,this.document);[this.dotsMask,this.dotsMaskGroup]=this.createMask(`mask-dot-color-${this._instanceId}`),this.defs.appendChild(this.dotsMask),e.imageOptions.mode==H.background&&([this.lightDotsMask,this.lightDotsMaskGroup]=this.createMask(`mask-light-dot-color-${this._instanceId}`),this.defs.appendChild(this.lightDotsMask));let d=0,c=i;e.shape===K.circle?(d=Math.floor((n/o-i-2)/2),c=i+2*d):e.imageOptions.mode==H.background&&(d=1,c=i+2*d);const u=r-d*o,p=s-d*o,m=u,g=p,f=i+2*d,O=new Array(c),k=Math.floor(c/2);for(let o=0;o<c;o++){O[o]=new Array(c);for(let n=0;n<c;n++)if(o>d-1&&o<c-d&&n>d-1&&n<c-d){const e=o-d,i=n-d;t&&!t(e,i)?O[o][n]=void 0:O[o][n]=!!this.qr.isDark(i,e)}else e.shape===K.circle&&Math.sqrt((o-k)*(o-k)+(n-k)*(n-k))>k?O[o][n]=void 0:O[o][n]=o!=d-1&&o!=c-d&&n!=d-1&&n!=c-d?this.qr.isDark(n-2*d<0?n:n>=i?n-2*d:n-d,o-2*d<0?o:o>=i?o-2*d:o-d):(n==d-1&&(o<d+8||o>c-d-9)||n==c-d&&o<d+8||o==d-1&&(n<d+8||n>c-d-9)||o==c-d&&n<d+8)&&void 0}const w=(i-17)/4,y=b.getPatternPosition(w);for(let t=0;t<c;t++){const e=y.find((e=>t-d>e-3&&t-d<e+3));for(let i=0;i<c;i++){const n=y.find((t=>i-d>t-3&&i-d<t+3));null!=O[t][i]&&(this.lightDotsMask&&(a=e&&n&&(e!=y[0]&&n!=y[0]||n!=y[0]&&n!=y[y.length-1]||e!=y[0]&&e!=y[y.length-1])?h:l),O[t][i]?(a.draw({x:u+t*o,y:p+i*o,size:o,getNeighbor:(e,o)=>!0===O[t+e]?.[i+o]}),a.element&&this.dotsMaskGroup&&this.dotsMaskGroup.appendChild(a.element)):this.lightDotsMask&&(a.draw({x:u+t*o,y:p+i*o,size:o,getNeighbor:(e,o)=>!1===O[t+e]?.[i+o]}),a.element&&this.lightDotsMaskGroup&&this.lightDotsMaskGroup.appendChild(a.element)))}}this.lightDotsMask&&this.createColor({options:e.imageOptions.fill?.gradient,color:e.imageOptions.fill?.color,additionalRotation:0,x:m,y:g,height:f*o,width:f*o,name:`light-dot-color-${this._instanceId}`}),this.createColor({options:e.dotsOptions?.gradient,color:e.dotsOptions.color,additionalRotation:0,x:m,y:g,height:f*o,width:f*o,name:`dot-color-${this._instanceId}`})}drawCorners(){if(!this.qr)throw new Error("QR code is not defined");const t=this.qrGroup,e=this.options;if(!t)throw new Error("Element code is not defined");const i=this.qr.getModuleCount(),o=e.dotsOptions.size,n=7*o,r=3*o,s=Math.floor((e.width-i*o)/2);let a=Math.floor((e.height-i*o)/2);if(e.offset){const t=(e.height-i*o)/2,n=Math.min(Math.abs(e.offset),t)*Math.sign(e.offset);a+=n}[[0,0,0],[1,0,Math.PI/2],[0,1,-Math.PI/2]].forEach((([t,l,h])=>{const d=s+t*o*(i-7),c=a+l*o*(i-7);let u=this.dotsMask,p=this.dotsMaskGroup,m=this.dotsMask,g=this.dotsMaskGroup;if((e.cornersSquareOptions?.gradient||e.cornersSquareOptions?.color)&&([u,p]=this.createMask(`mask-corners-square-color-${t}-${l}-${this._instanceId}`),this.defs.appendChild(u),m=u,g=p,this.createColor({options:e.cornersSquareOptions?.gradient,color:e.cornersSquareOptions?.color,additionalRotation:h,x:d,y:c,height:n,width:n,name:`corners-square-color-${t}-${l}-${this._instanceId}`})),e.cornersSquareOptions?.type){const t=new kt(e.cornersSquareOptions.type,this.document);t.draw({x:d,y:c,size:n,rotation:h}),t.element&&p&&p.appendChild(t.element),t.fill&&this.lightDotsMaskGroup&&this.lightDotsMaskGroup.appendChild(t.fill)}else{const t=new wt(e.dotsOptions.type,this.document);for(let e=0;e<St.length;e++)for(let i=0;i<St[e].length;i++)St[e]?.[i]?(t.draw({x:d+e*o,y:c+i*o,size:o,getNeighbor:(t,o)=>!!St[e+t]?.[i+o]}),t.element&&p&&p.appendChild(t.element)):this.lightDotsMask&&!At[e]?.[i]&&(t.draw({x:d+e*o,y:c+i*o,size:o,getNeighbor:(t,o)=>!St[e+t]?.[i+o]&&!At[e+t]?.[i+o]}),t.element&&this.lightDotsMaskGroup&&this.lightDotsMaskGroup.appendChild(t.element));if(this.lightDotsMask)for(let e=-1;e<8;e++)for(let i=-1;i<8;i++)-1!=e&&7!=e&&-1!=i&&7!=i||(t.draw({x:d+e*o,y:c+i*o,size:o,getNeighbor:(t,o)=>{const n=e+t,r=i+o;return n>=-1&&n<=7&&r>=-1&&r<=7&&(-1==n||7==n||-1==r||7==r)}}),t.element&&this.lightDotsMaskGroup&&this.lightDotsMaskGroup.appendChild(t.element))}if((e.cornersDotOptions?.gradient||e.cornersDotOptions?.color)&&([m,g]=this.createMask(`mask-corners-dot-color-${t}-${l}-${this._instanceId}`),this.defs.appendChild(m),this.createColor({options:e.cornersDotOptions?.gradient,color:e.cornersDotOptions?.color,additionalRotation:h,x:d+2*o,y:c+2*o,height:r,width:r,name:`corners-dot-color-${t}-${l}-${this._instanceId}`})),e.cornersDotOptions?.type){const t=new Ot(e.cornersDotOptions.type,this.document);t.draw({x:d+2*o,y:c+2*o,size:r,rotation:h}),t.element&&g&&g.appendChild(t.element)}else{const t=new wt(e.dotsOptions.type,this.document);for(let e=0;e<At.length;e++)for(let i=0;i<At[e].length;i++)At[e]?.[i]&&(t.draw({x:d+e*o,y:c+i*o,size:o,getNeighbor:(t,o)=>!!At[e+t]?.[i+o]}),t.element&&g&&g.appendChild(t.element))}}))}async drawImage({width:t,height:e,count:i,dotSize:o}){const n=this.options,r=Math.floor((n.width-i*o)/2);let s=Math.floor((n.height-i*o)/2);if(n.offset){const t=(n.height-i*o)/2;s+=Math.min(Math.abs(n.offset),t)*Math.sign(n.offset)}let a=n.imageOptions.margin*o;n.imageOptions.mode==H.background&&(a=0);const l=r+a+(i*o-t)/2,h=s+a+(i*o-e)/2,d=t-2*a,c=e-2*a,u=await this.imageTools.toDataURL(n.image||"");let p=this.document.createElementNS("http://www.w3.org/2000/svg","image");if(p.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",u||""),u?.startsWith("data:image/svg+xml;")){let t=u.substring(19);const e=t.indexOf(","),i=t.substring(0,e);if(t=t.substring(e+1),"base64"===i)t="function"==typeof atob?atob(t):Buffer.from(t,"base64").toString("utf8");else t="";if(t){const e=(new DOMParser).parseFromString(t,"text/xml"),i=Array.from(e.getElementsByTagName("svg"));i.length&&(p=i[0],p.setAttribute("overflow","visible"))}}p&&u&&(p.setAttribute("x",ft(l)),p.setAttribute("y",ft(h)),p.setAttribute("width",`${ft(d)}px`),p.setAttribute("height",`${ft(c)}px`),this.qrGroup.appendChild(p))}createColor({options:t,borderOptions:e,color:i,additionalRotation:o,x:n,y:r,height:s,width:a,name:l,returnSVGGroup:h=!1}){const d=a>s?a:s,c=this.document.createElementNS("http://www.w3.org/2000/svg","rect");if(c.setAttribute("x",ft(n)),c.setAttribute("y",ft(r)),c.setAttribute("height",ft(s)),c.setAttribute("width",ft(a)),c.setAttribute("style",`mask:url(#mask-${l}-${this._instanceId})`),t){let i;if(t.type===U.radial){i=this.document.createElementNS("http://www.w3.org/2000/svg","radialGradient"),i.setAttribute("id",l+"-"+this._instanceId),i.setAttribute("gradientUnits","userSpaceOnUse");let t=n+a/2,o=r+s/2;if(e){const i=e.thickness/2,l=2;G(e,"top")&&!R(e,"bottom",this._hls)?o=r+i*l+s/2:!G(e,"top")&&R(e,"bottom",this._hls)&&(o=r-i*l+s/2),G(e,"right")&&!G(e,"left")?t=n-i*l+a/2:!G(e,"right")&&G(e,"left")&&(t=n+i*l+a/2)}i.setAttribute("fx",ft(t)),i.setAttribute("fy",ft(o)),i.setAttribute("cx",ft(n+a/2)),i.setAttribute("cy",ft(r+s/2)),i.setAttribute("r",ft(d/2))}else{const e=((t.rotation||0)+o)%(2*Math.PI),h=(e+2*Math.PI)%(2*Math.PI);let d=n+a/2,c=r+s/2,u=n+a/2,p=r+s/2;h>=0&&h<=.25*Math.PI||h>1.75*Math.PI&&h<=2*Math.PI?(d-=a/2,c-=s/2*Math.tan(e),u+=a/2,p+=s/2*Math.tan(e)):h>.25*Math.PI&&h<=.75*Math.PI?(c-=s/2,d-=a/2/Math.tan(e),p+=s/2,u+=a/2/Math.tan(e)):h>.75*Math.PI&&h<=1.25*Math.PI?(d+=a/2,c+=s/2*Math.tan(e),u-=a/2,p-=s/2*Math.tan(e)):h>1.25*Math.PI&&h<=1.75*Math.PI&&(c+=s/2,d+=a/2/Math.tan(e),p-=s/2,u-=a/2/Math.tan(e)),i=this.document.createElementNS("http://www.w3.org/2000/svg","linearGradient"),i.setAttribute("id",l+"-"+this._instanceId),i.setAttribute("gradientUnits","userSpaceOnUse"),i.setAttribute("x1",ft(d)),i.setAttribute("y1",ft(c)),i.setAttribute("x2",ft(u)),i.setAttribute("y2",ft(p))}t.colorStops.forEach((t=>{const e=this.document.createElementNS("http://www.w3.org/2000/svg","stop");e.setAttribute("offset",`${ft(100*t.offset)}%`);const o=Zt(t.color);e.setAttribute("stop-color",o.value),o.alpha<1&&e.setAttribute("stop-opacity",o.alpha.toFixed(7)),i.appendChild(e)})),c.setAttribute("fill",`url(#${l}-${this._instanceId})`),this.defs.appendChild(i)}else if(i){const t=Zt(i);c.setAttribute("fill",t.value),t.alpha<1&&c.setAttribute("opacity",t.alpha.toFixed(7))}if(h)return c;l.startsWith("background-color")?this._element.insertBefore(c,this._maskedQrGroup):this.qrGroup.appendChild(c)}createMask(t){const e=`${t}-${this._instanceId}`,i=this.options,o=this.document.createElementNS("http://www.w3.org/2000/svg","mask");o.setAttribute("id",e),o.setAttribute("maskUnits","userSpaceOnUse"),o.setAttribute("x","0"),o.setAttribute("y","0"),o.setAttribute("width",ft(i.width)),o.setAttribute("height",ft(i.height));const n=this.document.createElementNS("http://www.w3.org/2000/svg","g");return n.setAttribute("fill","#fff"),o.appendChild(n),[o,n]}}var jt;Ct.instanceCount=0,function(t){t.svg="svg",t.png="png",t.jpeg="jpeg",t.webp="webp"}(jt||(jt={})),Object.assign(Z.stringToBytesFuncs,{UTF8:t=>function(t){const e=[];for(let i=0;i<t.length;i++){let o=t.charCodeAt(i);o<128?e.push(o):o<2048?e.push(192|o>>6,128|63&o):o<55296||o>=57344?e.push(224|o>>12,128|o>>6&63,128|63&o):(i++,o=65536+((1023&o)<<10|1023&t.charCodeAt(i)),e.push(240|o>>18,128|o>>12&63,128|o>>6&63,128|63&o))}return e}(t)});let It=class t{get size(){return this.qrSVG?{width:this.qrSVG.width,height:this.qrSVG.height}:void 0}constructor(e,i=!1){const o=e;let n=st;if(t._selectedTemplate)if("string"==typeof t._selectedTemplate){const e=t._selectedTemplate;dt[e]?n=dt[e]:console.warn(`QR Code template "${e}" not found. Using default.`)}else n=t._selectedTemplate;let r={};if(t._selectedStyle){const{isValid:e,errors:i}=et(t._selectedStyle);e?r=tt(t._selectedStyle):console.warn("Invalid static style options ignored during instantiation:",i)}const s=C(n,r,o),{warnings:a,validatedOptions:l}=pt(s);this.options=$(l),a.length>0&&this._logValidationWarnings("QR Code Options Validation Warnings:",a),this.update()}static setTemplate(e){return"string"==typeof e?dt[e]?t._selectedTemplate=e:(console.warn(`QR Code template "${e}" not found. Resetting to default template.`),t._selectedTemplate=st):t._selectedTemplate=e,t}static setStyle(e){let i=null;if("string"==typeof e){const o=e;if(!mt[o])return console.warn(`QR Code style "${o}" not found in setStyle. Ignoring.`),t;i=mt[o]}else i=e;if(i){const{isValid:e,errors:o}=et(i);e||console.warn("Invalid style options provided to setStyle:",o),t._selectedStyle=i}else t._selectedStyle=null;return t}async update(t){this.container&&(this.container.innerHTML="");const{warnings:e}=pt(t||this.options);if(e.length>0&&this._logValidationWarnings("QR Code JS Options Update Validation Warnings:",e),this.options=t?$(C(this.options,t)):this.options,!this.options.data)return;this.options.stringToBytesFuncs&&(Object.assign(Z.stringToBytesFuncs,this.options.stringToBytesFuncs),delete this.options.stringToBytesFuncs),this.qr=new Z(this.options.qrOptions.typeNumber,this.options.qrOptions.errorCorrectionLevel);const i=this.options.qrOptions.mode||function(t){switch(!0){case/^[0-9]*$/.test(t):return y.numeric;case/^[0-9A-Z $%*+\-./:]*$/.test(t):return y.alphanumeric;case/[^\u0000-\u00ff]/.test(t):return y.unicode;default:return y.byte}}(this.options.data);this.qr.addData(this.options.data,i),this.qr.make(),await this._setupSvgAsync(),this.append(this.container)}append(t){if(t)return this.qrSVG?.element&&t.appendChild(this.qrSVG.element),this.container=t,this}async applyExtension(t){if(!t)throw new Error("Extension function should be defined.");this.extension=t,await this.update()}async deleteExtension(){this.extension=void 0,await this.update()}async serialize(t=!1){if(!this.qr)throw new Error("QR code is empty");if(this.qrSVG?.element||await this._setupSvgAsync(),this.svgDrawingPromise&&await this.svgDrawingPromise,!this.qrSVG?.element)return;let e=this.qrSVG.element;if(t){const t=this.qrSVG.element.cloneNode(!0);t.style.filter="invert(1)",e=t}let i=(new XMLSerializer).serializeToString(e);return i='<?xml version="1.0" standalone="no"?>\r\n'+i,i}async _setupSvgAsync(){if(!this.qr)return;let t=this.qr.getModuleCount();this.options.imageOptions.mode===H.background&&this.options.shape!==K.circle&&(t+=2);let e=Math.ceil((this.options.shape===K.circle?Math.sqrt(1.8):1.1)*t);e%2==0&&(e-=1);let i=0;this.options.imageOptions.mode===H.background&&(i+=this.options.imageOptions.margin||0);const o=Math.ceil(this.options.dotsOptions.size*(e+2*i)),n=this.options.borderOptions;let r=0,s=0;const a={top:0,right:0,bottom:0,left:0},l={top:0,right:0,bottom:0,left:0},h={top:0,right:0,bottom:0,left:0},d=n?.noBorderThickness||n?.thickness?n.thickness/4:0;if(n?.hasBorder){const t=n.borderOuter?.thickness?2*n.borderOuter?.thickness:0,e=n.borderInner?.thickness?2*n.borderInner?.thickness:0;t>0&&(l.top=t/2,l.bottom=t/2,l.left=t/2,l.right=t/2),e>0&&(h.top=e/2,h.bottom=e/2,h.left=e/2,h.right=e/2),G(n,"left")?(a.left=n.thickness,r+=n.thickness):(a.left=d,r+=d),G(n,"right")?(a.right=n.thickness,r+=n.thickness):(a.right=d,r+=d),G(n,"top")?(a.top=n.thickness,s+=n.thickness):(a.top=d,s+=d),R(n,"bottom",this._hls())?(a.bottom=n.thickness,s+=n.thickness):(a.bottom=d,s+=d)}const c=o+r,u=o+s;this.qrSVG=new Ct({...this.options,width:c,height:u,bordersMain:a,bordersOuter:l,bordersInner:h,errorCorrectionPercent:_[this.options.qrOptions.errorCorrectionLevel],hls:this._hls()}),this.svgDrawingPromise=this.qrSVG.drawQR(this.qr).then((()=>{this.qrSVG?.element&&(this.options.instanceId=this.qrSVG._instanceId,this.options.borderOptions?.hasBorder&&F(this.options.borderOptions)(this.qrSVG.element,this.options,o,this.qrSVG.drawBackgroundForBorder.bind(this.qrSVG),a,l,h,d,this._hls),this.extension?.(this.qrSVG.element,this.options))})).catch((t=>{console.error(t)}))}async _drawToCanvasForValidation(t){const{width:e=300,height:i=300}=this.qrSVG?.svgSize??t??r,o=e,n=i,s=document.createElement("canvas");s.width=o,s.height=n;const a=await this.serialize();if(!a)throw new Error("Failed to serialize SVG.");const l="data:image/svg+xml;base64,"+btoa(a);return new Promise(((t,e)=>{const i=new Image;i.width=o,i.height=n,i.crossOrigin="Anonymous",i.onload=()=>{const r=s.getContext("2d");if(!r)return e(new Error("Could not get canvas 2D context"));r.drawImage(i,0,0,o,n),t(s)},i.onerror=i.onabort=e,i.src=l}))}async drawToCanvas(t){const{width:e=300,height:i=300}=this.qrSVG?.svgSize??t??r,o=1*e,n=1*i,s=document.createElement("canvas");s.width=o,s.height=n;const a=(async()=>{try{const t=await this.serialize();if(!t)return void console.warn("SVG serialization returned empty.");const r="data:image/svg+xml;base64,"+btoa(t),a=new Image;a.width=o,a.height=n,await new Promise(((t,l)=>{a.onload=()=>{const r=Math.ceil(2*Math.max(e,i)/Math.max(a.width,a.height));let h;try{h=new OffscreenCanvas(a.width*r*2,a.height*r*2)}catch(t){h=document.createElement("canvas"),h.width=a.width*r*2,h.height=a.height*r*2}const d=h.getContext("2d");if(!d)return l(new Error("Could not get OffscreenCanvas 2D context"));d.drawImage(a,0,0,h.width,h.height);const c=s.getContext("2d");if(!c)return l(new Error("Could not get canvas 2D context"));c.drawImage(h,0,0,h.width,h.height,0,0,o,n),t()},a.onerror=t=>l(new Error(`Image load error: ${t}`)),a.onabort=()=>l(new Error("Image load aborted")),a.src=r}))}catch(t){throw console.error("Error drawing to canvas:",t),t}})();return{canvas:s,canvasDrawingPromise:a}}downloadURI(t,e){const i=document.createElement("a");i.download=e,i.href=t,document.body.appendChild(i),i.click(),document.body.removeChild(i)}async download(t,e){if("undefined"==typeof Blob)throw new Error("Cannot download in Node.js environment");let i=jt.png,o="qr";if(t&&(t.name&&(o=t.name),t.extension&&(i=t.extension)),"svg"===i.toLowerCase()){const t=await this.serialize();if(!t)return;const e="data:image/svg+xml;charset=utf-8,"+encodeURIComponent(t);this.downloadURI(e,`${o}.svg`)}else{const t=await this.drawToCanvas(e);if(!t)return;const{canvas:n,canvasDrawingPromise:r}=t;await r;const s=n.toDataURL(`image/${i}`);this.downloadURI(s,`${o}.${i}`)}}async createOptimizedQRCanvas(t){const{width:e=300,height:i=300}=this.qrSVG?.svgSize??t??r,o=document.createElement("canvas");o.width=e,o.height=i;const n=await this.serialize();if(!n)throw new Error("Failed to serialize SVG.");const s="data:image/svg+xml;base64,"+btoa(Array.from((new TextEncoder).encode(n)).map((t=>String.fromCharCode(t))).join(""));return new Promise(((t,n)=>{const r=new Image;r.width=e,r.height=i,r.crossOrigin="Anonymous",r.onload=()=>{const s=o.getContext("2d");if(!s)return n(new Error("Could not get canvas 2D context"));s.imageSmoothingEnabled=!1,s.drawImage(r,0,0,e,i),this.applyQRThreshold(o),t(o)},r.onerror=t=>n(new Error(`Image load error: ${t}`)),r.onabort=()=>n(new Error("Image load aborted")),r.src=s}))}applyQRThreshold(t){const e=t.getContext("2d");if(!e)return;const i=e.getImageData(0,0,t.width,t.height),o=i.data;for(let t=0;t<o.length;t+=4){const e=(o[t]+o[t+1]+o[t+2])/3<128?0:255;o[t]=o[t+1]=o[t+2]=e}e.putImageData(i,0,0)}_hls(){return!1}_logValidationWarnings(t,e){console.warn(t),e.forEach((t=>{console.warn(`option: ${t.path} - '${t.value}' : ${t.message}`)}))}};It.version="0.9.1",It._selectedTemplate=null,It._selectedStyle=null;class Wt{constructor(){this._hls=!1,this._decodedToken=null,this._licenseKey=null,this._storedToken=null,this._storedKey=null,this._isInitialized=!1,this._initPromise=null,this._licenseFetcher=async t=>{const e=Wt._defaultLicenseApiUrl;if(!e)throw new Error("LicenseManagerNode: API URL not set. Call LicenseManagerNode.setDefaultLicenseApiUrl() with an absolute URL.");try{const i=await fetch(e,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({licenseKey:t})});if(!i.ok){let t={};try{t=await i.json()}catch(t){}throw new Error(`Failed to fetch token: ${i.status} ${t?.error||i.statusText}`)}const o=await i.text();if(!o)throw new Error("Fetched token is empty.");return o}catch(t){throw console.error(`LicenseManagerNode: Default fetcher failed: ${t.message}`),new Error(`License fetcher failed: ${t.message}`)}}}static get instance(){return Wt._instance||(Wt._instance=new Wt),Wt._instance}static setDefaultLicenseApiUrl(t){"string"==typeof t&&t?(t.startsWith("http://")||t.startsWith("https://")||console.warn("LicenseManagerNode: URL provided to setDefaultLicenseApiUrl does not appear to be absolute. Relative URLs may not work reliably server-side."),Wt._defaultLicenseApiUrl=t):console.warn("LicenseManagerNode: Invalid URL provided to setDefaultLicenseApiUrl.")}get hls(){return this._hls}get isInitialized(){return this._isInitialized}getLicenseDetails(){return this._hls?this._decodedToken:null}get licenseKey(){return this._licenseKey}configureLicenseFetcher(t){if("function"!=typeof t)throw new Error("License fetcher must be a function that accepts a license key string and returns a Promise<string>.");this._licenseFetcher=t,this.resetInitialization(),this.resetLicenseState()}async initialize(){return this._isInitialized&&this._initPromise||this._initPromise||(this._initPromise=this._performInitialization()),this._initPromise}async _performInitialization(){if(this._hls)return this._isInitialized=!0,!0;this.resetLicenseState();const t=this._getStoredLicenseData(),e=t.token||null,i=t.key||null;if(this._licenseKey=i,!e)return this._isInitialized=!0,!1;const o=await this._validateAndStoreToken(e,i);if(o.isValid)return this._hls=!0,this._decodedToken=o.license,this._isInitialized=!0,!0;if(console.warn("LicenseManagerNode: Stored license token failed validation during initialization."),!i)return console.warn("LicenseManagerNode: Cannot refresh token: No license key found in storage."),this._isInitialized=!0,!1;console.warn("LicenseManagerNode: Attempting to refresh token using stored license key...");try{const t=await this.activateWithKey(i);return this._isInitialized=!0,t.isValid}catch(t){return console.error(`LicenseManagerNode: Auto-refresh attempt failed: ${t.message}`),this._licenseKey=i,this._isInitialized=!0,!1}}resetInitialization(){this._isInitialized=!1,this._initPromise=null}resetLicenseState(){this._hls=!1,this._decodedToken=null,this._licenseKey=null,this._storedToken=null,this._storedKey=null}async activateWithToken(t){let e;return this.resetInitialization(),null===t?(e=await this._validateAndStoreToken(null,this._licenseKey),this._hls=!1,this._decodedToken=null):"string"==typeof t&&t?(e=await this._validateAndStoreToken(t,null),this._hls=e.isValid,this._decodedToken=e.license,e.isValid?this._licenseKey=this._getStoredLicenseData().key||null:this._licenseKey=null):(console.warn("Invalid token string provided to activateWithToken()."),e=await this._validateAndStoreToken(null,null),this._hls=!1,this._decodedToken=null,this._licenseKey=null),this._isInitialized=!0,this._initPromise=Promise.resolve(this._hls),e}async activateWithKey(t){this.resetInitialization();let e={isValid:!1,token:null,license:null};if(t&&"string"==typeof t){this._licenseKey=t;let i=null,o=null;const n=this._getStoredLicenseData();if(i=n.token||null,o=n.key||null,i&&o===t?(e=await this._validateAndStoreToken(i,t),e.isValid||console.warn("LicenseManagerNode: Cached token validation failed. Attempting to fetch a new token...")):(e={isValid:!1,token:null,license:null},i&&o!==t&&console.warn("LicenseManagerNode: Cached token belongs to a different license key. Fetching new token...")),!e.isValid)try{const i=await this._licenseFetcher(t);e=await this._validateAndStoreToken(i,t),e.isValid||console.warn(`LicenseManagerNode: Fetched token for key ${t} failed validation.`)}catch(i){console.warn(`LicenseManagerNode: Failed to fetch license token for key ${t}: ${i.message}`),await this._validateAndStoreToken(null,t),e={isValid:!1,token:null,license:null}}this._hls=e.isValid,this._decodedToken=e.license}else console.warn("Invalid license key provided to activateWithKey()."),await this._validateAndStoreToken(null,null),this._hls=!1,this._decodedToken=null,this._licenseKey=null;return this._isInitialized=!0,this._initPromise=Promise.resolve(this._hls),e}_getStoredLicenseData(){return{token:this._storedToken??void 0,key:this._storedKey??void 0}}_setStoredLicenseData(t){this._storedToken=t.token??null,this._storedKey=t.key??null}async _validateAndStoreToken(t,e){const r=e??this._storedKey??void 0;if(!t)return this._setStoredLicenseData({key:r}),{isValid:!1,token:null,license:null};try{const e=await async function(t){try{const e=await i("-----BEGIN PUBLIC KEY----- MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0ZCmxp1vq4LJLviS9d2u Y5V9IykLzCrNcj8fCenqEyir5b4+FGE3hvLqp9zT+IYRF2cV2K0aGe9G0COFZsX2 E5ye1DguyvPQgRMPO8y7bxXJ3da1IP7Gs+/3gy4iuzRV4Uhy73jUVpqE/zZ2JAv/ sY36Rxmq4h7YE/F6YQk3DeZvnHjS7spUlp/+d3W67G8v2jiYWy3pO08Sn0rF2cjg XrJA5jcNr7ksER7AQcwayaLT4rAV4+EOcDYXL2egnqoTEmRzQYD2ReHBsO6jB0Ud bmsNepxbBdq/fBr+5HNj2tUJItarfH3BUVRFu/L1xP8wOEQa8wmPRwrJdPsI3bdk 7QIDAQAB -----END PUBLIC KEY-----","RS256"),{payload:r}=await o(t,e,{algorithms:["RS256"]});if(!r||"string"!=typeof r.sub)throw new n.JOSEError("Decoded token payload structure is invalid.");return r}catch(t){throw t}}(t);return this._setStoredLicenseData({token:t,key:r}),{isValid:!0,token:t,license:e}}catch(e){return console.warn(`LicenseManagerNode: License token validation failed: ${e.message}`),this._storedToken===t&&this._setStoredLicenseData({key:r}),{isValid:!1,token:null,license:null}}}}var Yt;Wt._instance=null,Wt._defaultLicenseApiUrl="/api/get-token",function(t){t.svg="svg",t.png="png",t.jpeg="jpeg",t.webp="webp"}(Yt||(Yt={}));let Jt=null;const Vt=void 0,vt="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSIjY2NjIi8+PHRleHQgeD0iNTAlIiB5PSI1MCUiIGRvbWluYW50LWJhc2VsaW5lPSJtaWRkbGUiIHRleHQtYW5jaG9yPSJtaWRkbGUiIGZpbGw9IiMwMDAiIGZvbnQtc2l6ZT0iMTYiPkxvZ28gbG9hZCBlcnJvcjwvdGV4dD48L3N2Zz4=";class Tt extends It{static async initializeIfNeeded(){return Wt.instance.initialize()}static get hls(){return Wt.instance.isInitialized?Wt.instance.hls:(Wt.instance.initialize().catch((t=>{console.error("QRCode.js (Server): Background license initialization failed:",t)})),!1)}_hls(){return Wt.instance.isInitialized?Wt.instance.hls:(Wt.instance.initialize().catch((t=>{console.error("QRCode.js (Server): Background license initialization failed:",t)})),!1)}static getLicenseDetails(){return Wt.instance.isInitialized?Wt.instance.getLicenseDetails():(Wt.instance.initialize().catch((t=>{console.error("QRCode.js (Server): Background license initialization failed:",t)})),null)}static configureLicenseFetcher(t){Wt.instance.configureLicenseFetcher(t)}static async token(t){return Wt.instance.activateWithToken(t)}static async license(t){return Wt.instance.activateWithKey(t)}static setLicenseUrl(t){return Wt.setDefaultLicenseApiUrl(t),this}static async initXmldom(){if(!Tt._xmldomSync){const t=await async function(){return Jt||(Jt=import("@xmldom/xmldom")),Jt}();Tt._xmldomSync=t}}constructor(i,o=!1){if(!Tt._xmldomSync)throw new Error("You must call QRCodeJs.initXmldom() before constructing QRCodeJs");const{DOMImplementation:n,DOMParser:r,XMLSerializer:s}=Tt._xmldomSync,a=(new n).createDocument(null,"");global.XMLSerializer=s,global.DOMParser=r;const l=new Map,h=async e=>{try{if("string"==typeof e){let i=l.get(e);return i||(i=new Promise((async(i,o)=>{const n=new AbortController,r=setTimeout((()=>{n.abort(),o(new Error("Image load timed out"))}),15e3);try{const o=await fetch(e,{signal:n.signal});if(!o.ok)throw new Error(`HTTP ${o.status} - ${o.statusText}`);const s=Buffer.from(await o.arrayBuffer()),a=await t(s);clearTimeout(r),i({contentType:o.headers.get("Content-Type")||a?.mime,data:s})}catch(t){clearTimeout(r),o(t)}})),l.set(e,i),i)}{const i=Buffer.isBuffer(e)?e:Buffer.from(await e.arrayBuffer()),o=await t(i);return{contentType:o?.mime,data:i}}}catch(t){return console.error("Image loading failed:",t),{contentType:"image/svg+xml",data:Buffer.from(vt.split(",")[1],"base64")}}};super({...i,document:i.document||a,imageTools:i.imageTools||{toDataURL:async t=>{try{if("string"==typeof t&&t.startsWith("data:"))return t;const{contentType:e,data:i}=await h(t);return`data:${e?.replace("application/xml","image/svg+xml")||"image/png"};base64,${i.toString("base64")}`}catch(t){return console.error("Data URL conversion failed:",t),vt}},getSize:async t=>{try{const{data:o}=Buffer.isBuffer(i.image)?{data:i.image}:await h(t),n=e(o);return{width:n.width||200,height:n.height||200}}catch(t){return console.error("Image size detection failed:",t),{width:200,height:200}}}}}),o||(Wt.instance.isInitialized||Wt.instance.hls?Wt.instance.isInitialized&&!Wt.instance.hls&&console.warn("QRCode.js (Server): No valid license found. Some features may be limited."):console.warn("QRCode.js (Server): License state not yet initialized. Call QRCodeJs.initializeIfNeeded() or activate a license."))}async validateScanning(){if(!this._hls())return console.warn("QRCode.js (Server): Scanning validation requires a valid license."),Promise.reject({isValid:!1,message:"Valid license required for scanning validation."});try{const t=await this.serialize(),{qrValidator:e}=await import("./chunks/scan-validator-node-BGUxkBJt.js"),i=await e.validateZbar(t,!1);if(i.isValid)return i;{console.debug("Zxing validation failed, trying Zbar...");const{qrValidatorZxing:e}=await import("./chunks/scan-validator-zxing-node-CV9K2v4n.js");return await e.validateZxing(t)}}catch(t){return console.warn(`Zbar and Zxing validation threw an error: ${t instanceof Error?t.message:String(t)}`),Promise.reject({isValid:!1,message:t instanceof Error?t.message:"Zbar and Zxing validation failed with an error"})}}static useTemplate(t){return new qt(t)}static useStyle(t){return(new qt).useStyle(t)}}Tt._xmldomSync=null,Tt._initPromise=null,Tt._initPromise=Tt.initXmldom();class qt{constructor(t){let e=st;if("string"==typeof t){const i=t;dt[i]?e=dt[i]:console.warn(`QR Code template "${i}" not found. Using default basic template.`)}else t&&(e=t);this.config=C({},e)}useTemplate(t){let e={};if("string"==typeof t){const i=t;dt[i]?e=dt[i]:console.warn(`QR Code template "${i}" not found in useTemplate chain. Ignoring.`)}else e=t;return this.config=C(e,this.config),this}useStyle(t){let e=null;if("string"==typeof t){const i=t;if(!mt[i])return console.warn(`QR Code style "${i}" not found. Ignoring.`),this;e=mt[i]}else e=t;if(e){const{isValid:t,errors:i}=et(e);t||console.warn("Invalid style options provided to QRCodeBuilder:",i);const o=tt(e);this.config=C(this.config,o)}return this}options(t){return this.config=C(this.config,t),new Tt(this.config)}build(){return new Tt(this.config)}}class Xt extends Tt{_hls(){return!0}constructor(t){super(t,!0)}}export{E as CornerDotType,z as CornerSquareType,N as DotType,w as ErrorCorrectionLevel,_ as ErrorCorrectionPercents,Yt as FileExtension,U as GradientType,H as ImageMode,y as Mode,Tt as QRCodeJs,K as ShapeType,k as TypeNumber,Xt as _,Vt as browserUtils};
|