@qr-platform/qr-code.js 0.8.24 → 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.
Files changed (186) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/docs/advanced-examples.md +84 -0
  3. package/docs/api-reference-guide.md +38 -0
  4. package/docs/documentation.md +182 -0
  5. package/docs/examples.md +145 -27
  6. package/docs/template-update-plan.md +53 -0
  7. package/docs/usage-guide.md +47 -0
  8. package/lib/chunks/scan-validator-node-BGUxkBJt.js +1 -0
  9. package/lib/chunks/scan-validator-zxing-node-CV9K2v4n.js +1 -0
  10. package/lib/core/qr-code-js.d.ts +10 -1
  11. package/lib/core/qr-styles.d.ts +4 -0
  12. package/lib/index.d.ts +34 -7
  13. package/lib/index.js +1 -1
  14. package/lib/node/core/qr-code-js.d.ts +61 -0
  15. package/lib/node/core/qr-constant.d.ts +9 -0
  16. package/lib/node/core/qr-options-validation.d.ts +13 -0
  17. package/lib/node/core/qr-styles.d.ts +4 -0
  18. package/lib/node/core/qr-svg.d.ts +76 -0
  19. package/lib/node/core/qr-templates.d.ts +10 -0
  20. package/lib/node/figures/corner-dot.d.ts +24 -0
  21. package/lib/node/figures/corner-square.d.ts +24 -0
  22. package/lib/node/figures/dot.d.ts +31 -0
  23. package/lib/node/index.d.ts +101 -0
  24. package/lib/node/lib/image/GIFImage.d.ts +19 -0
  25. package/lib/node/lib/io/Base64.d.ts +10 -0
  26. package/lib/node/lib/io/Base64DecodeInputStream.d.ts +15 -0
  27. package/lib/node/lib/io/Base64EncodeOutputStream.d.ts +17 -0
  28. package/lib/node/lib/io/ByteArrayInputStream.d.ts +12 -0
  29. package/lib/node/lib/io/ByteArrayOutputStream.d.ts +12 -0
  30. package/lib/node/lib/io/InputStream.d.ts +10 -0
  31. package/lib/node/lib/io/OutputStream.d.ts +12 -0
  32. package/lib/node/lib/qr-code.d.ts +5 -0
  33. package/lib/node/lib/qrcode/BitBuffer.d.ts +11 -0
  34. package/lib/node/lib/qrcode/ErrorCorrectLevel.d.ts +23 -0
  35. package/lib/node/lib/qrcode/MaskPattern.d.ts +39 -0
  36. package/lib/node/lib/qrcode/Mode.d.ts +23 -0
  37. package/lib/node/lib/qrcode/Polynomial.d.ts +15 -0
  38. package/lib/node/lib/qrcode/QR8BitByte.d.ts +13 -0
  39. package/lib/node/lib/qrcode/QRAlphaNum.d.ts +13 -0
  40. package/lib/node/lib/qrcode/QRCode.d.ts +22 -0
  41. package/lib/node/lib/qrcode/QRCodeMinimal.d.ts +58 -0
  42. package/lib/node/lib/qrcode/QRData.d.ts +17 -0
  43. package/lib/node/lib/qrcode/QRKanji.d.ts +13 -0
  44. package/lib/node/lib/qrcode/QRMath.d.ts +13 -0
  45. package/lib/node/lib/qrcode/QRNumber.d.ts +14 -0
  46. package/lib/node/lib/qrcode/QRUtil.d.ts +25 -0
  47. package/lib/node/lib/qrcode/RSBlock.d.ts +16 -0
  48. package/lib/node/lib/text/createStringToBytes.d.ts +9 -0
  49. package/lib/node/lib/text/stringToBytes_SJIS.d.ts +8 -0
  50. package/lib/node/lib/text/stringToBytes_UTF8.d.ts +7 -0
  51. package/lib/node/lib/zbar-wasm/index.d.ts +1 -0
  52. package/lib/node/lib/zxing-js/src/browser/BrowserCodeReader.d.ts +150 -0
  53. package/lib/node/lib/zxing-js/src/browser/BrowserQRCodeReader.d.ts +29 -0
  54. package/lib/node/lib/zxing-js/src/browser/HTMLCanvasElementLuminanceSource.d.ts +27 -0
  55. package/lib/node/lib/zxing-js/src/browser/HTMLVisualMediaElement.d.ts +4 -0
  56. package/lib/node/lib/zxing-js/src/browser.d.ts +3 -0
  57. package/lib/node/lib/zxing-js/src/core/ArgumentException.d.ts +7 -0
  58. package/lib/node/lib/zxing-js/src/core/ArithmeticException.d.ts +7 -0
  59. package/lib/node/lib/zxing-js/src/core/ArrayIndexOutOfBoundsException.d.ts +10 -0
  60. package/lib/node/lib/zxing-js/src/core/BarcodeFormat.d.ts +42 -0
  61. package/lib/node/lib/zxing-js/src/core/Binarizer.d.ts +53 -0
  62. package/lib/node/lib/zxing-js/src/core/BinaryBitmap.d.ts +78 -0
  63. package/lib/node/lib/zxing-js/src/core/ChecksumException.d.ts +8 -0
  64. package/lib/node/lib/zxing-js/src/core/DecodeHintType.d.ts +91 -0
  65. package/lib/node/lib/zxing-js/src/core/Exception.d.ts +17 -0
  66. package/lib/node/lib/zxing-js/src/core/FormatException.d.ts +8 -0
  67. package/lib/node/lib/zxing-js/src/core/HighContrastLuminanceSource.d.ts +27 -0
  68. package/lib/node/lib/zxing-js/src/core/IllegalArgumentException.d.ts +7 -0
  69. package/lib/node/lib/zxing-js/src/core/IllegalStateException.d.ts +7 -0
  70. package/lib/node/lib/zxing-js/src/core/IndexOutOfBoundsException.d.ts +7 -0
  71. package/lib/node/lib/zxing-js/src/core/InvertedLuminanceSource.d.ts +22 -0
  72. package/lib/node/lib/zxing-js/src/core/LuminanceSource.d.ts +84 -0
  73. package/lib/node/lib/zxing-js/src/core/NodeLuminanceSource.d.ts +33 -0
  74. package/lib/node/lib/zxing-js/src/core/NotFoundException.d.ts +8 -0
  75. package/lib/node/lib/zxing-js/src/core/NullPointerException.d.ts +7 -0
  76. package/lib/node/lib/zxing-js/src/core/OutOfMemoryError.d.ts +6 -0
  77. package/lib/node/lib/zxing-js/src/core/Reader.d.ts +49 -0
  78. package/lib/node/lib/zxing-js/src/core/ReaderException.d.ts +7 -0
  79. package/lib/node/lib/zxing-js/src/core/ReedSolomonException.d.ts +7 -0
  80. package/lib/node/lib/zxing-js/src/core/Result.d.ts +52 -0
  81. package/lib/node/lib/zxing-js/src/core/ResultMetadataType.d.ts +68 -0
  82. package/lib/node/lib/zxing-js/src/core/ResultPoint.d.ts +34 -0
  83. package/lib/node/lib/zxing-js/src/core/ResultPointCallback.d.ts +11 -0
  84. package/lib/node/lib/zxing-js/src/core/UniversalLuminanceSource.d.ts +46 -0
  85. package/lib/node/lib/zxing-js/src/core/UnsupportedOperationException.d.ts +7 -0
  86. package/lib/node/lib/zxing-js/src/core/common/BitArray.d.ts +111 -0
  87. package/lib/node/lib/zxing-js/src/core/common/BitMatrix.d.ts +98 -0
  88. package/lib/node/lib/zxing-js/src/core/common/BitSource.d.ts +38 -0
  89. package/lib/node/lib/zxing-js/src/core/common/CharacterSetECI.d.ts +89 -0
  90. package/lib/node/lib/zxing-js/src/core/common/DecoderResult.d.ts +64 -0
  91. package/lib/node/lib/zxing-js/src/core/common/DefaultGridSampler.d.ts +10 -0
  92. package/lib/node/lib/zxing-js/src/core/common/DetectorResult.d.ts +16 -0
  93. package/lib/node/lib/zxing-js/src/core/common/GlobalHistogramBinarizer.d.ts +29 -0
  94. package/lib/node/lib/zxing-js/src/core/common/GridSampler.d.ts +36 -0
  95. package/lib/node/lib/zxing-js/src/core/common/GridSamplerInstance.d.ts +18 -0
  96. package/lib/node/lib/zxing-js/src/core/common/HybridBinarizer.d.ts +54 -0
  97. package/lib/node/lib/zxing-js/src/core/common/PerspectiveTransform.d.ts +26 -0
  98. package/lib/node/lib/zxing-js/src/core/common/StringUtils.d.ts +48 -0
  99. package/lib/node/lib/zxing-js/src/core/common/detector/MathUtils.d.ts +36 -0
  100. package/lib/node/lib/zxing-js/src/core/common/reedsolomon/AbstractGenericGF.d.ts +34 -0
  101. package/lib/node/lib/zxing-js/src/core/common/reedsolomon/GenericGF.d.ts +58 -0
  102. package/lib/node/lib/zxing-js/src/core/common/reedsolomon/GenericGFPoly.d.ts +47 -0
  103. package/lib/node/lib/zxing-js/src/core/common/reedsolomon/ReedSolomonDecoder.d.ts +40 -0
  104. package/lib/node/lib/zxing-js/src/core/qrcode/QRCodeReader.d.ts +35 -0
  105. package/lib/node/lib/zxing-js/src/core/qrcode/decoder/BitMatrixParser.d.ts +58 -0
  106. package/lib/node/lib/zxing-js/src/core/qrcode/decoder/DataBlock.d.ts +28 -0
  107. package/lib/node/lib/zxing-js/src/core/qrcode/decoder/DataMask.d.ts +36 -0
  108. package/lib/node/lib/zxing-js/src/core/qrcode/decoder/DecodedBitStreamParser.d.ts +30 -0
  109. package/lib/node/lib/zxing-js/src/core/qrcode/decoder/Decoder.d.ts +44 -0
  110. package/lib/node/lib/zxing-js/src/core/qrcode/decoder/ECB.d.ts +12 -0
  111. package/lib/node/lib/zxing-js/src/core/qrcode/decoder/ECBlocks.d.ts +16 -0
  112. package/lib/node/lib/zxing-js/src/core/qrcode/decoder/ErrorCorrectionLevel.d.ts +38 -0
  113. package/lib/node/lib/zxing-js/src/core/qrcode/decoder/FormatInformation.d.ts +33 -0
  114. package/lib/node/lib/zxing-js/src/core/qrcode/decoder/Mode.d.ts +56 -0
  115. package/lib/node/lib/zxing-js/src/core/qrcode/decoder/QRCodeDecoderMetaData.d.ts +21 -0
  116. package/lib/node/lib/zxing-js/src/core/qrcode/decoder/Version.d.ts +44 -0
  117. package/lib/node/lib/zxing-js/src/core/qrcode/detector/AlignmentPattern.d.ts +21 -0
  118. package/lib/node/lib/zxing-js/src/core/qrcode/detector/AlignmentPatternFinder.d.ts +82 -0
  119. package/lib/node/lib/zxing-js/src/core/qrcode/detector/Detector.d.ts +87 -0
  120. package/lib/node/lib/zxing-js/src/core/qrcode/detector/FinderPattern.d.ts +26 -0
  121. package/lib/node/lib/zxing-js/src/core/qrcode/detector/FinderPatternFinder.d.ts +114 -0
  122. package/lib/node/lib/zxing-js/src/core/qrcode/detector/FinderPatternInfo.d.ts +16 -0
  123. package/lib/node/lib/zxing-js/src/core/util/Arrays.d.ts +45 -0
  124. package/lib/node/lib/zxing-js/src/core/util/Charset.d.ts +7 -0
  125. package/lib/node/lib/zxing-js/src/core/util/Float.d.ts +14 -0
  126. package/lib/node/lib/zxing-js/src/core/util/Integer.d.ts +19 -0
  127. package/lib/node/lib/zxing-js/src/core/util/StringBuilder.d.ts +21 -0
  128. package/lib/node/lib/zxing-js/src/core/util/StringEncoding.d.ts +51 -0
  129. package/lib/node/lib/zxing-js/src/core/util/System.d.ts +10 -0
  130. package/lib/node/lib/zxing-js/src/customTypings.d.ts +16 -0
  131. package/lib/node/lib/zxing-js/src/index.d.ts +5 -0
  132. package/lib/node/lib/zxing-js/src/node.d.ts +1 -0
  133. package/lib/node/license/LicenseManager.d.ts +69 -0
  134. package/lib/node/license/LicenseManagerNode.d.ts +64 -0
  135. package/lib/node/node.d.ts +88 -0
  136. package/lib/node/options-demo.d.ts +239 -0
  137. package/lib/node/plugins/QRBorderHelpers.d.ts +32 -0
  138. package/lib/node/plugins/QRBorderPlugin.d.ts +35 -0
  139. package/lib/node/plugins/QRValidatorZbar.d.ts +38 -0
  140. package/lib/node/plugins/QRValidatorZbarNode.d.ts +60 -0
  141. package/lib/node/plugins/QRValidatorZbarNodeSharp.d.ts +83 -0
  142. package/lib/node/templates/borders-inner-outter.d.ts +129 -0
  143. package/lib/node/templates/borders-inner-scale-offset.d.ts +497 -0
  144. package/lib/node/templates/borders-inner.d.ts +129 -0
  145. package/lib/node/templates/borders-no-license.d.ts +129 -0
  146. package/lib/node/templates/borders-outter.d.ts +129 -0
  147. package/lib/node/templates/borders-text-auto-curved.d.ts +129 -0
  148. package/lib/node/templates/borders-text-full-curved.d.ts +133 -0
  149. package/lib/node/templates/borders.d.ts +129 -0
  150. package/lib/node/templates/scales.d.ts +130 -0
  151. package/lib/node/templates/scan-validators/index.d.ts +1 -0
  152. package/lib/node/templates/scan-validators/tests/cases/basic-inverted.d.ts +9 -0
  153. package/lib/node/templates/scan-validators/tests/cases/basic-no-license.d.ts +3 -0
  154. package/lib/node/templates/scan-validators/tests/cases/basic.d.ts +3 -0
  155. package/lib/node/templates/scan-validators/tests/cases/colors-inverted.d.ts +2 -0
  156. package/lib/node/templates/scan-validators/tests/cases/colors.d.ts +58 -0
  157. package/lib/node/templates/scan-validators/tests/cases/out-of-borders-inverted.d.ts +9 -0
  158. package/lib/node/templates/scan-validators/tests/cases/out-of-borders.d.ts +9 -0
  159. package/lib/node/templates/scan-validators/tests/cases/position-inverted.d.ts +9 -0
  160. package/lib/node/templates/scan-validators/tests/cases/position.d.ts +3 -0
  161. package/lib/node/templates/scan-validators/tests/index.d.ts +27 -0
  162. package/lib/node/tools/browser-image-tools.d.ts +7 -0
  163. package/lib/node/tools/browser-utils.d.ts +18 -0
  164. package/lib/node/types/helper.d.ts +23 -0
  165. package/lib/node/types/style-options.d.ts +37 -0
  166. package/lib/node/utils/canvas-options.d.ts +7 -0
  167. package/lib/node/utils/color.d.ts +4 -0
  168. package/lib/node/utils/gradient.d.ts +26 -0
  169. package/lib/node/utils/image.d.ts +16 -0
  170. package/lib/node/utils/merge.d.ts +5 -0
  171. package/lib/node/utils/options.d.ts +220 -0
  172. package/lib/node/utils/qrcode.d.ts +8 -0
  173. package/lib/node/utils/scan-validator-node.d.ts +15 -0
  174. package/lib/node/utils/scan-validator-zxing-node.d.ts +18 -0
  175. package/lib/node/utils/scan-validators/abstract-scan-validator.d.ts +43 -0
  176. package/lib/node/utils/scan-validators/zbar-scan-validator.d.ts +8 -0
  177. package/lib/node/utils/scan-validators/zxing-canvas-scan-validator.d.ts +10 -0
  178. package/lib/node/utils/scan-validators/zxing-scan-validator.d.ts +8 -0
  179. package/lib/node/utils/style-mapper.d.ts +13 -0
  180. package/lib/node/utils/svg.d.ts +2 -0
  181. package/lib/node/utils/token-validator.d.ts +19 -0
  182. package/lib/node.d.ts +38 -10
  183. package/lib/node.js +1 -1
  184. package/lib/types/style-options.d.ts +37 -0
  185. package/lib/utils/style-mapper.d.ts +13 -0
  186. 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 p}from"ts-custom-error";function l(t,e){const n=d();return(l=function(t,e){return n[t-=372]})(t,e)}!function(){const t=l,e=d();for(;;)try{if(185838===parseInt(t(373))/1*(parseInt(t(382))/2)+-parseInt(t(378))/3+-parseInt(t(380))/4+-parseInt(t(383))/5+-parseInt(t(374))/6*(parseInt(t(375))/7)+-parseInt(t(381))/8+parseInt(t(379))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const f={width:300,height:300,margin:0};function d(){const t=["6jqtCbN","6oLuDvW","1666007iVBGHi","width","height","1105482yEgiub","11292948VrTsGe","953540sqLpHz","1854400yKrHlF","107466YSdfhv","1573260kKTKDi","margin"];return(d=function(){return t})()}const I=g;function m(){const t=["250095hwUATa","20AChiSY","5ThxNvP","getBuffer","6897666jPsyQO","toString","1052606DxoYHW","9164385WroMwb","put","push","getBit","length","5803567ocePgw","614140wyFnED","getLengthInBits","9756700TQtGhn","buffer","8sKaSee","putBit"];return(m=function(){return t})()}function g(t,e){const n=m();return(g=function(t,e){return n[t-=227]})(t,e)}!function(){const t=g,e=m();for(;;)try{if(738861===parseInt(t(228))/1+parseInt(t(240))/2+-parseInt(t(234))/3*(parseInt(t(235))/4)+parseInt(t(236))/5*(-parseInt(t(238))/6)+-parseInt(t(227))/7*(parseInt(t(232))/8)+parseInt(t(241))/9+parseInt(t(230))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class w{constructor(){const t=g;this[t(231)]=[],this[t(245)]=0}[I(237)](){return this[I(231)]}getLengthInBits(){return this[I(245)]}[I(239)](){const t=I;let e="";for(let n=0;n<this[t(229)]();n+=1)e+=this[t(244)](n)?"1":"0";return e}[I(244)](t){return 1==(this.buffer[~~(t/8)]>>>7-t%8&1)}[I(242)](t,e){const n=I;for(let r=0;r<e;r+=1)this[n(233)](1==(t>>>e-r-1&1))}[I(233)](t){const e=I;this[e(245)]==8*this.buffer[e(245)]&&this[e(231)][e(243)](0),t&&(this[e(231)][~~(this[e(245)]/8)]|=128>>>this[e(245)]%8),this[e(245)]+=1}}function y(){var t=["652TijQJr","1039905iRhQAR","1208114JduNYp","12KnIbZU","255076qWqzMC","2128uJukZx","9183TWpxEW","4690650FKmtWz","9GEOYgz","17192giYyMG","2639934gafJjp"];return(y=function(){return t})()}var b,k;function A(t,e){var n=y();return(A=function(t,e){return n[t-=394]})(t,e)}!function(){for(var t=A,e=y();;)try{if(411683===parseInt(t(398))/1+parseInt(t(396))/2+parseInt(t(400))/3*(parseInt(t(394))/4)+parseInt(t(395))/5*(parseInt(t(397))/6)+parseInt(t(403))/7*(-parseInt(t(399))/8)+parseInt(t(402))/9*(-parseInt(t(401))/10)+-parseInt(t(404))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),(k=b||(b={}))[k.L=1]="L",k[k.M=0]="M",k[k.Q=3]="Q",k[k.H=2]="H";const O=v;function C(){const t=["667252LLYFuO","75888ZXNupD","EXP_TABLE","push","LOG_TABLE","27ujxjoK","error","454060uXNxsy","9BKIWRB","4513370oXuRZt","glog","initialize","gexp","412637dmmnCm","1924797QrBUIW","3787808jZEPXP","20BTIDnd"];return(C=function(){return t})()}!function(){const t=v,e=C();for(;;)try{if(724717===parseInt(t(453))/1+parseInt(t(457))/2*(parseInt(t(465))/3)+parseInt(t(464))/4*(parseInt(t(456))/5)+parseInt(t(458))/6+-parseInt(t(454))/7+parseInt(t(455))/8+parseInt(t(462))/9*(-parseInt(t(466))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class S{constructor(){throw new Error(v(463))}static[O(467)](t){if(t<1)throw new Error("log("+t+")");return S.LOG_TABLE[t]}static[O(452)](t){const e=O;for(;t<0;)t+=255;for(;t>=256;)t-=255;return S[e(459)][t]}}function v(t,e){const n=C();return(v=function(t,e){return n[t-=451]})(t,e)}S[O(451)]=(()=>{const t=O;S.EXP_TABLE=[],S[t(461)]=[];for(let e=0;e<256;e+=1)S.EXP_TABLE[t(460)](e<8?1<<e:S[t(459)][e-4]^S[t(459)][e-5]^S[t(459)][e-6]^S[t(459)][e-8]),S.LOG_TABLE[t(460)](0);for(let e=0;e<255;e+=1)S[t(461)][S.EXP_TABLE[e]]=e})();const Z=M;function M(t,e){const n=T();return(M=function(t,e){return n[t-=292]})(t,e)}!function(){const t=M,e=T();for(;;)try{if(107997===-parseInt(t(305))/1*(parseInt(t(308))/2)+-parseInt(t(303))/3*(parseInt(t(311))/4)+-parseInt(t(295))/5+parseInt(t(292))/6+parseInt(t(310))/7+parseInt(t(298))/8*(-parseInt(t(309))/9)+-parseInt(t(299))/10*(-parseInt(t(302))/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(300)]&&0==t[r];)r+=1;this.num=[];const s=t[n(300)]-r;for(let e=0;e<s;e+=1)this[n(304)].push(t[r+e]);for(let t=0;t<e;t+=1)this.num[n(297)](0)}getAt(t){return this[M(304)][t]}getLength(){const t=M;return this.num[t(300)]}[Z(301)](){const t=Z;let e="";for(let n=0;n<this[t(307)]();n+=1)n>0&&(e+=","),e+=this[t(293)](n);return e[t(301)]()}toLogString(){const t=Z;let e="";for(let n=0;n<this.getLength();n+=1)n>0&&(e+=","),e+=S[t(294)](this.getAt(n));return e.toString()}multiply(t){const e=Z,n=[],r=this[e(307)]()+t[e(307)]()-1;for(let t=0;t<r;t+=1)n[e(297)](0);for(let r=0;r<this[e(307)]();r+=1)for(let s=0;s<t[e(307)]();s+=1)n[r+s]^=S[e(306)](S[e(294)](this[e(293)](r))+S[e(294)](t[e(293)](s)));return new E(n)}[Z(296)](t){const e=Z;if(this[e(307)]()-t[e(307)]()<0)return this;const n=S[e(294)](this[e(293)](0))-S[e(294)](t[e(293)](0)),r=[];for(let t=0;t<this[e(307)]();t+=1)r[e(297)](this[e(293)](t));for(let s=0;s<t[e(307)]();s+=1)r[s]^=S[e(306)](S.glog(t[e(293)](s))+n);return new E(r)[e(296)](t)}}function T(){const t=["5600ElPtdX","length","toString","6897VtDmWI","762muTIzK","num","23734gpAabx","gexp","getLength","14eJbiMA","9VnFEfo","544880iYRyBY","2804CvUCdB","1282518uNbOgx","getAt","glog","379430rmEzjX","mod","push","917104JMtkyW"];return(T=function(){return t})()}function R(t,e){var n=W();return(R=function(t,e){return n[t-=183]})(t,e)}function W(){var t=["15630tiDzOh","14UhEuOX","MODE_8BIT_BYTE","2nmgOSM","MODE_ALPHA_NUM","4049436FqlUHj","5xQMuAA","MODE_KANJI","1249299RSRMDn","MODE_NUMBER","2245832zRgrxZ","812691FmkKIs","246971LyFTGy","11038736OkIaZd","5643EMQzTB"];return(W=function(){return t})()}var j,B,Y;function N(){var t=["data","MODE_NUMBER","getData","MODE_KANJI","18689580srbzmz","12244071lTLGHV","MODE_8BIT_BYTE","789266acZGfl","getLengthInBits","205117nseqQo","mode","224454mliJbb","24PuRNDX","316272uhlTWY","7277376qooTct","mode:","MODE_ALPHA_NUM","getMode","15BnfqiO"];return(N=function(){return t})()}!function(){for(var t=R,e=W();;)try{if(783436===-parseInt(t(192))/1*(-parseInt(t(183))/2)+parseInt(t(188))/3+-parseInt(t(190))/4*(parseInt(t(186))/5)+-parseInt(t(185))/6*(-parseInt(t(196))/7)+-parseInt(t(193))/8+-parseInt(t(191))/9+-parseInt(t(195))/10*(-parseInt(t(194))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),(B=j||(j={}))[B[(Y=R)(189)]=1]="MODE_NUMBER",B[B[Y(184)]=2]="MODE_ALPHA_NUM",B[B[Y(197)]=4]=Y(197),B[B[Y(187)]=8]="MODE_KANJI";var V=U;function U(t,e){var n=N();return(U=function(t,e){return n[t-=171]})(t,e)}!function(){for(var t=U,e=N();;)try{if(913006===parseInt(t(174))/1+-parseInt(t(172))/2+-parseInt(t(178))/3*(-parseInt(t(177))/4)+parseInt(t(183))/5*(-parseInt(t(176))/6)+parseInt(t(189))/7+parseInt(t(179))/8+-parseInt(t(188))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class J{constructor(t,e){var n=U;this[n(175)]=t,this[n(184)]=e}[V(182)](){return this[V(175)]}[V(186)](){return this.data}[V(173)](t){var e=V;if(1<=t&&t<10)switch(this.mode){case j.MODE_NUMBER:return 10;case j[e(181)]:return 9;case j[e(171)]:case j[e(187)]:return 8;default:throw new Error(e(180)+this[e(175)])}else if(t<27)switch(this[e(175)]){case j[e(185)]:return 12;case j[e(181)]:return 11;case j[e(171)]:return 16;case j.MODE_KANJI:return 10;default:throw new Error(e(180)+this[e(175)])}else{if(!(t<41))throw new Error("typeNumber:"+t);switch(this[e(175)]){case j[e(185)]:return 14;case j.MODE_ALPHA_NUM:return 13;case j[e(171)]:return 16;case j.MODE_KANJI:return 12;default:throw new Error(e(180)+this.mode)}}}}function x(){const t=["3284946bMZSym","1564362wudMMk","put","620yXJEfs","MODE_8BIT_BYTE","write","4239zPYelG","167377YJcEvD","getData","3268465WUYLBB","588378YIwnud","15032lkoyeA","getLength","stringToBytes","6861PlJGOb"];return(x=function(){return t})()}const D=P;function P(t,e){const n=x();return(P=function(t,e){return n[t-=342]})(t,e)}!function(){const t=P,e=x();for(;;)try{if(327400===parseInt(t(355))/1+-parseInt(t(343))/2+-parseInt(t(347))/3*(parseInt(t(351))/4)+parseInt(t(342))/5+-parseInt(t(349))/6+-parseInt(t(348))/7+parseInt(t(344))/8*(parseInt(t(354))/9))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class X extends J{constructor(t,e){const n=P;super(j[n(352)],t),this[n(346)]=e}[D(353)](t){const e=D;this[e(346)](this[e(356)]()).forEach((n=>t[e(350)](n,8)))}[D(345)](){const t=D;return this[t(346)](this[t(356)]()).length}}const G=F;function F(t,e){const n=L();return(F=function(t,e){return n[t-=188]})(t,e)}function L(){const t=["140bXLRGw","500066nWKJvw","write","584822bIWCho","illegal char :","193234RtyNHq","getCode","642YEwDTN","charAt","624BDborQ","put","MODE_ALPHA_NUM","28296DMglYu","getData","158970mIBZBH","charCodeAt","3008ZjXUHY","4932CHZEbI","length"];return(L=function(){return t})()}!function(){const t=F,e=L();for(;;)try{if(295184===parseInt(t(197))/1+-parseInt(t(201))/2+parseInt(t(203))/3*(parseInt(t(205))/4)+parseInt(t(196))/5*(parseInt(t(189))/6)+-parseInt(t(199))/7+-parseInt(t(193))/8*(parseInt(t(194))/9)+parseInt(t(191))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class q extends J{constructor(t){super(j[F(188)],t)}[G(198)](t){const e=G,n=this[e(190)]();let r=0;for(;r+1<n[e(195)];)t[e(206)](45*q.getCode(n[e(204)](r))+q[e(202)](n[e(204)](r+1)),11),r+=2;r<n.length&&t[e(206)](q.getCode(n.charAt(r)),6)}getLength(){const t=G;return this.getData()[t(195)]}static[G(202)](t){const e=G;if("0"<=t&&t<="9")return t[e(192)](0)-"0"[e(192)](0);if("A"<=t&&t<="Z")return t[e(192)](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(200)+t)}}}function z(){const t=["13YZcdgu","length","8XioEtZ","getData","1527910uIRLba","54FPKgEE","illegal char at ","11512464CTgTwo","245512KELTAa","14170110DGWYnN","11GKkhDX","MODE_KANJI","1130390OVclZc","1ulYDsK","2141652ENfjYf","getLength","7dpJXkz","7041042EnOMEK","write","stringToBytes","put"];return(z=function(){return t})()}const K=H;function H(t,e){const n=z();return(H=function(t,e){return n[t-=343]})(t,e)}!function(){const t=H,e=z();for(;;)try{if(911253===-parseInt(t(353))/1*(-parseInt(t(344))/2)+parseInt(t(354))/3+-parseInt(t(363))/4*(-parseInt(t(352))/5)+parseInt(t(357))/6*(parseInt(t(356))/7)+-parseInt(t(348))/8*(-parseInt(t(345))/9)+parseInt(t(349))/10*(-parseInt(t(350))/11)+parseInt(t(347))/12*(-parseInt(t(361))/13))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Q extends J{constructor(t,e){const n=H;super(j[n(351)],t),this[n(359)]=e}[K(358)](t){const e=K,n=this[e(359)](this[e(343)]());let r=0;for(;r+1<n.length;){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("illegal char at "+(r+1)+"/"+s);s-=49472}s=192*(s>>>8&255)+(255&s),t[e(360)](s,13),r+=2}if(r<n.length)throw new Error(e(346)+(r+1))}[K(355)](){const t=K;return this.stringToBytes(this.getData())[t(362)]/2}}function _(t,e){const n=et();return(_=function(t,e){return n[t-=495]})(t,e)}const $=_;!function(){const t=_,e=et();for(;;)try{if(904511===-parseInt(t(509))/1*(-parseInt(t(506))/2)+parseInt(t(515))/3*(-parseInt(t(512))/4)+parseInt(t(503))/5*(-parseInt(t(497))/6)+-parseInt(t(510))/7*(-parseInt(t(508))/8)+-parseInt(t(516))/9*(parseInt(t(502))/10)+parseInt(t(498))/11+-parseInt(t(499))/12*(-parseInt(t(513))/13))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class tt extends J{constructor(t){super(j[_(501)],t)}write(t){const e=_,n=this[e(496)]();let r=0;for(;r+2<n[e(511)];)t.put(tt[e(504)](n[e(495)](r,r+3)),10),r+=3;r<n.length&&(n[e(511)]-r==1?t.put(tt.strToNum(n[e(495)](r,r+1)),4):n[e(511)]-r==2&&t[e(514)](tt[e(504)](n[e(495)](r,r+2)),7))}[$(507)](){const t=$;return this.getData()[t(511)]}static strToNum(t){const e=$;let n=0;for(let r=0;r<t.length;r+=1)n=10*n+tt[e(517)](t[e(500)](r));return n}static[$(517)](t){const e=$;if("0"<=t&&t<="9")return t[e(518)](0)-"0".charCodeAt(0);throw new Error(e(505)+t)}}function et(){const t=["269661dpaTzm","3726aLbnBe","chatToNum","charCodeAt","substring","getData","6kntEXg","9612493fvrhsu","132ttYfnf","charAt","MODE_NUMBER","8630HmFVSl","5792455UvIkOE","strToNum","illegal char :","64wSzolR","getLength","8fIUKpB","29225nHiSHU","4777129TkXTFK","length","52fRMkUI","1296815xGtSev","put"];return(et=function(){return t})()}function nt(t,e){var n=rt();return(nt=function(t,e){return n[t-=113]})(t,e)}function rt(){var t=["PATTERN010","1128eycFQn","573338FUeOQA","3OHOzYp","642645epNGbL","17897nShwKk","PATTERN111","PATTERN001","2SpsHFz","1389856AorLuN","671812IpZCSd","44538qXXYaH","2495066RitYBw","50YpmPCV","PATTERN000","PATTERN011","PATTERN101","PATTERN100","PATTERN110","70PMIkYV"];return(rt=function(){return t})()}var st,it,ot;!function(){for(var t=nt,e=rt();;)try{if(355864===-parseInt(t(124))/1*(parseInt(t(130))/2)+parseInt(t(125))/3*(parseInt(t(132))/4)+-parseInt(t(115))/5*(parseInt(t(113))/6)+parseInt(t(114))/7+-parseInt(t(131))/8+parseInt(t(126))/9*(parseInt(t(121))/10)+-parseInt(t(127))/11*(-parseInt(t(123))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),it=st||(st={}),ot=nt,it[it.PATTERN000=0]=ot(116),it[it[ot(129)]=1]=ot(129),it[it[ot(122)]=2]="PATTERN010",it[it[ot(117)]=3]=ot(117),it[it[ot(119)]=4]=ot(119),it[it.PATTERN101=5]=ot(118),it[it[ot(120)]=6]="PATTERN110",it[it[ot(128)]=7]=ot(128);const at=ht;function ct(){const t=["getLostPoint","PATTERN100","getBCHDigit","error","MAX_LENGTH","10ajfcjT","PATTERN_POSITION_TABLE","66ytibTI","2553024LYugxl","17984gxojLq","mask:","G15_MASK","getMaskFunc","PATTERN110","gexp","3472QhMIDP","getMaxLength","PATTERN000","PATTERN111","3157865PWUGsR","G18","28XvFDWJ","MODE_KANJI","isDark","MODE_8BIT_BYTE","multiply","PATTERN001","G15","getBCHTypeNumber","719446cVSrEk","61926HeWaZB","PATTERN101","6pzrZjM","PATTERN011","PATTERN010","3218895ZIvtVL","getBCHTypeInfo","129870dBnVaT"];return(ct=function(){return t})()}function ht(t,e){const n=ct();return(ht=function(t,e){return n[t-=488]})(t,e)}!function(){const t=ht,e=ct();for(;;)try{if(713241===-parseInt(t(506))/1+parseInt(t(505))/2+-parseInt(t(513))/3*(-parseInt(t(497))/4)+parseInt(t(495))/5*(parseInt(t(508))/6)+parseInt(t(491))/7*(parseInt(t(523))/8)+-parseInt(t(511))/9*(parseInt(t(519))/10)+-parseInt(t(521))/11*(parseInt(t(522))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class ut{constructor(){throw new Error(ht(517))}static getPatternPosition(t){return ut[ht(520)][t-1]}static[at(492)](t,e,n){const r=at,s=t-1;let i=0,o=0;switch(n){case b.L:i=0;break;case b.M:i=1;break;case b.Q:i=2;break;case b.H:i=3;break;default:throw new Error("e:"+n)}switch(e){case j.MODE_NUMBER:o=0;break;case j.MODE_ALPHA_NUM:o=1;break;case j[r(500)]:o=2;break;case j[r(498)]:o=3;break;default:throw new Error("m:"+e)}return ut[r(518)][s][i][o]}static getErrorCorrectPolynomial(t){const e=at;let n=new E([1]);for(let r=0;r<t;r+=1)n=n[e(501)](new E([1,S[e(490)](r)]));return n}static[at(488)](t){const e=at;switch(t){case st[e(493)]:return(t,e)=>(t+e)%2==0;case st[e(502)]:return(t,e)=>t%2==0;case st[e(510)]:return(t,e)=>e%3==0;case st[e(509)]:return(t,e)=>(t+e)%3==0;case st[e(515)]:return(t,e)=>(~~(t/2)+~~(e/3))%2==0;case st[e(507)]:return(t,e)=>t*e%2+t*e%3==0;case st[e(489)]:return(t,e)=>(t*e%2+t*e%3)%2==0;case st[e(494)]:return(t,e)=>(t*e%3+(t+e)%2)%2==0;default:throw new Error(e(524)+t)}}static[at(514)](t){const e=at,n=t.getModuleCount();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(499)](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(499)](s,i)&&(n+=1),t[e(499)](s+1,i)&&(n+=1),t.isDark(s,i+1)&&(n+=1),t[e(499)](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[e(499)](s,i)&&!t[e(499)](s,i+1)&&t.isDark(s,i+2)&&t[e(499)](s,i+3)&&t[e(499)](s,i+4)&&!t.isDark(s,i+5)&&t.isDark(s,i+6)&&(r+=40);for(let s=0;s<n;s+=1)for(let i=0;i<n-6;i+=1)t[e(499)](i,s)&&!t[e(499)](i+1,s)&&t.isDark(i+2,s)&&t.isDark(i+3,s)&&t[e(499)](i+4,s)&&!t[e(499)](i+5,s)&&t[e(499)](i+6,s)&&(r+=40);let s=0;for(let e=0;e<n;e+=1)for(let r=0;r<n;r+=1)t.isDark(r,e)&&(s+=1);return r+=10*(Math.abs(100*s/n/n-50)/5),r}static[at(512)](t){const e=at;let n=t<<10;for(;ut[e(516)](n)-ut[e(516)](ut.G15)>=0;)n^=ut[e(503)]<<ut[e(516)](n)-ut[e(516)](ut[e(503)]);return(t<<10|n)^ut[e(525)]}static[at(504)](t){const e=at;let n=t<<12;for(;ut[e(516)](n)-ut[e(516)](ut[e(496)])>=0;)n^=ut[e(496)]<<ut[e(516)](n)-ut[e(516)](ut.G18);return t<<12|n}static getBCHDigit(t){let e=0;for(;0!=t;)e+=1,t>>>=1;return e}}function pt(t,e){const n=dt();return(pt=function(t,e){return n[t-=137]})(t,e)}ut[at(520)]=[[],[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]],ut[at(518)]=[[[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]]],ut[at(503)]=1335,ut[at(496)]=7973,ut[at(525)]=21522;const lt=pt;!function(){const t=pt,e=dt();for(;;)try{if(564372===parseInt(t(153))/1*(parseInt(t(147))/2)+parseInt(t(138))/3*(parseInt(t(144))/4)+parseInt(t(143))/5*(-parseInt(t(152))/6)+-parseInt(t(141))/7+-parseInt(t(146))/8*(-parseInt(t(140))/9)+parseInt(t(148))/10+parseInt(t(137))/11*(-parseInt(t(149))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class ft{constructor(t,e){const n=pt;this[n(145)]=t,this[n(139)]=e}getDataCount(){return this[pt(139)]}[lt(154)](){return this[lt(145)]}static getRSBlocks(t,e){const n=ft[lt(142)](t,e),r=n.length/3,s=[];for(let t=0;t<r;t+=1){const e=n[3*t+0],r=n[3*t+1],i=n[3*t+2];for(let t=0;t<e;t+=1)s.push(new ft(r,i))}return s}static[lt(142)](t,e){const n=lt;switch(e){case b.L:return ft[n(151)][4*(t-1)+0];case b.M:return ft[n(151)][4*(t-1)+1];case b.Q:return ft.RS_BLOCK_TABLE[4*(t-1)+2];case b.H:return ft.RS_BLOCK_TABLE[4*(t-1)+3]}throw new Error("tn:"+t+n(150)+e)}}function dt(){const t=["5iuzDPP","1228iDcWFL","totalCount","7761368hwUmVb","10qQvXZI","6829890ejrGJf","38436gJVOUD","/ecl:","RS_BLOCK_TABLE","4744122McYzOj","103027PigthK","getTotalCount","3322jysXRP","7170VsQSYj","dataCount","9UIUiQq","4057620mmqxEj","getRsBlockTable"];return(dt=function(){return t})()}ft[lt(151)]=[[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 It=At;function mt(){const t=["unicode","getModuleCount","715410OHpedc","stringToBytesFuncs","getErrorCorrectLevel","make","getLength","5489812NtaTFv","byte","getTypeNumber","map","getRSBlocks","push","qrDataList","getDataCount","forEach","numeric","alphanumeric","setupTypeNumber","default","10KOFcOu","8frvcmV","getBestMaskPattern","PAD1","code length overflow. (","moduleCount","setupTypeInfo","PAD0","mod","kanji","reduce","1415965BcLBfr","isDark","getTotalCount","13021686VUkydT","getLengthInBits","createBytes","37544150HqkAro","createData","modules","write","getMode","getAt","clearData","typeNumber","max","mapData","addData","setupPositionProbePattern","getBCHTypeNumber","4095882VCEbGd","setupPositionAdjustPattern","string","length","284322eyFFQg","setupTimingPattern","errorCorrectLevel","makeImpl","mode:","put","18vWsDJC","getLostPoint"];return(mt=function(){return t})()}!function(){const t=At,e=mt();for(;;)try{if(734031===parseInt(t(136))/1*(-parseInt(t(164))/2)+-parseInt(t(146))/3+-parseInt(t(151))/4+parseInt(t(175))/5*(-parseInt(t(142))/6)+-parseInt(t(132))/7+-parseInt(t(165))/8*(-parseInt(t(178))/9)+parseInt(t(181))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const gt=Array(41).fill(0)[It(154)](((t,e)=>e));var wt,yt,bt;(yt=wt||(wt={})).L="L",yt.M="M",yt.Q="Q",yt.H="H",function(t){const e=It;t.numeric="numeric",t[e(161)]=e(161),t[e(152)]=e(152),t.kanji=e(173),t[e(144)]=e(144)}(bt||(bt={}));class kt{constructor(t=0,e=wt.L){const n=It;this[n(183)]=[],this[n(169)]=0,this.typeNumber=t,this.errorCorrectLevel=b[e],this[n(157)]=[]}[It(153)](){return this[It(188)]}setTypeNumber(t){this.typeNumber=t}[It(148)](){return this[It(138)]}setErrorCorrectLevel(t){this[It(138)]=t}[It(187)](){this[It(157)]=[]}[It(129)](t,e=bt[It(152)]){const n=It;if(t instanceof J)this[n(157)][n(156)](t);else{if(typeof t!==n(134))throw new Error(typeof t);switch(e){case bt[n(160)]:this.qrDataList[n(156)](new tt(t));break;case bt[n(161)]:this[n(157)][n(156)](new q(t));break;case bt[n(152)]:this[n(157)][n(156)](new X(t,kt[n(147)][n(163)]));break;case bt.unicode:this[n(157)][n(156)](new X(t,kt[n(147)].UTF8));break;case bt[n(173)]:this.qrDataList[n(156)](new Q(t,kt[n(147)].SJIS));break;default:throw new Error(n(140)+e)}}}[It(176)](t,e){const n=It;return!(!this[n(183)][t]||null==this[n(183)][t][e])&&this[n(183)][t][e]}[It(145)](){return this[It(169)]}[It(149)](){const t=It;if(this[t(188)]<1){let e=1;for(;e<40;e++){const n=ft.getRSBlocks(e,this[t(138)]),r=new w;this[t(157)][t(159)]((n=>{const s=t;r[s(141)](n.getMode(),4),r[s(141)](n.getLength(),n[s(179)](e)),n.write(r)}));const s=n[t(174)](((e,n)=>e+n[t(158)]()),0);if(r.getLengthInBits()<=8*s)break}this[t(188)]=e}this[t(139)](!1,this[t(166)]())}getBestMaskPattern(){const t=It;let e=0,n=0;for(let r=0;r<8;r+=1){this[t(139)](!0,r);const s=ut[t(143)](this);(0==r||e>s)&&(e=s,n=r)}return n}[It(139)](t,e){const n=It;this[n(169)]=4*this[n(188)]+17,this[n(183)]=[];for(let t=0;t<this.moduleCount;t+=1){this.modules.push([]);for(let e=0;e<this[n(169)];e+=1)this[n(183)][t][n(156)](null)}this.setupPositionProbePattern(0,0),this[n(130)](this.moduleCount-7,0),this[n(130)](0,this[n(169)]-7),this[n(133)](),this[n(137)](),this.setupTypeInfo(t,e),this.typeNumber>=7&&this[n(162)](t);const r=kt.createData(this[n(188)],this[n(138)],this[n(157)]);this[n(190)](r,e)}[It(190)](t,e){const n=It;let r=-1,s=this[n(169)]-1,i=7,o=0;const a=ut.getMaskFunc(e);for(let e=this[n(169)]-1;e>0;e-=2)for(6==e&&(e-=1);;){for(let r=0;r<2;r+=1)if(null==this[n(183)][s][e-r]){let c=!1;o<t.length&&(c=1==(t[o]>>>i&1));a(s,e-r)&&(c=!c),this[n(183)][s][e-r]=c,i-=1,-1==i&&(o+=1,i=7)}if(s+=r,s<0||this[n(169)]<=s){s-=r,r=-r;break}}}[It(133)](){const t=It,e=ut.getPatternPosition(this.typeNumber);e[t(159)]((n=>{const r=t;e[r(159)]((t=>{const e=r;if(null==this[e(183)][n][t])for(let r=-2;r<=2;r+=1)for(let s=-2;s<=2;s+=1)this[e(183)][n+r][t+s]=-2==r||2==r||-2==s||2==s||0==r&&0==s}))}))}[It(130)](t,e){const n=It;for(let r=-1;r<=7;r+=1)for(let s=-1;s<=7;s+=1)t+r<=-1||this.moduleCount<=t+r||e+s<=-1||this[n(169)]<=e+s||(this[n(183)][t+r][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)}[It(137)](){const t=It;for(let e=8;e<this[t(169)]-8;e+=1)null==this[t(183)][e][6]&&(this[t(183)][e][6]=e%2==0);for(let e=8;e<this[t(169)]-8;e+=1)null==this[t(183)][6][e]&&(this.modules[6][e]=e%2==0)}[It(162)](t){const e=It,n=ut[e(131)](this[e(188)]);for(let r=0;r<18;r+=1)this[e(183)][~~(r/3)][r%3+this[e(169)]-8-3]=!t&&1==(n>>r&1);for(let r=0;r<18;r+=1)this[e(183)][r%3+this[e(169)]-8-3][~~(r/3)]=!t&&1==(n>>r&1)}[It(170)](t,e){const n=It,r=this[n(138)]<<3|e,s=ut.getBCHTypeInfo(r);for(let e=0;e<15;e+=1){const r=!t&&1==(s>>e&1);e<6?this[n(183)][e][8]=r:e<8?this[n(183)][e+1][8]=r:this[n(183)][this[n(169)]-15+e][8]=r}for(let e=0;e<15;e+=1){const r=!t&&1==(s>>e&1);e<8?this[n(183)][8][this[n(169)]-e-1]=r:e<9?this.modules[8][15-e-1+1]=r:this[n(183)][8][15-e-1]=r}this[n(183)][this.moduleCount-8][8]=!t}static[It(182)](t,e,n){const r=It,s=ft[r(155)](t,e),i=new w;n[r(159)]((e=>{const n=r;i[n(141)](e[n(185)](),4),i[n(141)](e[n(150)](),e[n(179)](t)),e[n(184)](i)}));const o=s[r(174)](((t,e)=>t+e[r(158)]()),0);if(i.getLengthInBits()>8*o)throw new Error(r(168)+i[r(179)]()+">"+8*o+")");for(i[r(179)]()+4<=8*o&&i[r(141)](0,4);i.getLengthInBits()%8!=0;)i.putBit(!1);for(;!(i[r(179)]()>=8*o||(i[r(141)](kt[r(171)],8),i[r(179)]()>=8*o));)i[r(141)](kt.PAD1,8);return kt[r(180)](i,s)}static[It(180)](t,e){const n=It;let r=0,s=0,i=0;const o=new Array(e.length)[n(154)]((t=>[])),a=new Array(e[n(135)])[n(154)]((t=>[]));function c(t){const e=n,r=[];for(let n=0;n<t;n+=1)r[e(156)](0);return r}for(let h=0;h<e.length;h+=1){const u=e[h][n(158)](),p=e[h].getTotalCount()-u;s=Math[n(189)](s,u),i=Math[n(189)](i,p),o[h]=c(u);for(let e=0;e<o[h][n(135)];e+=1)o[h][e]=255&t.getBuffer()[e+r];r+=u;const l=ut.getErrorCorrectPolynomial(p),f=new E(o[h],l[n(150)]()-1)[n(172)](l);a[h]=c(l[n(150)]()-1);for(let t=0;t<a[h][n(135)];t+=1){const e=t+f[n(150)]()-a[h][n(135)];a[h][t]=e>=0?f[n(186)](e):0}}const h=c(e[n(174)](((t,e)=>t+e[n(177)]()),0));let u=0;for(let t=0;t<s;t+=1)for(let r=0;r<e[n(135)];r+=1)t<o[r][n(135)]&&(h[u]=o[r][t],u+=1);for(let t=0;t<i;t+=1)for(let r=0;r<e[n(135)];r+=1)t<a[r][n(135)]&&(h[u]=a[r][t],u+=1);return h}}function At(t,e){const n=mt();return(At=function(t,e){return n[t-=129]})(t,e)}function Ot(){const t=["10701Kosarg","1145160wzHcmf","1725912GyDSFa","519974YicIhH","1185552BtVJCl","push","charCodeAt","1819092cyIqri","61414YdinOq"];return(Ot=function(){return t})()}function Ct(t,e){const n=Ot();return(Ct=function(t,e){return n[t-=123]})(t,e)}kt[It(147)]={default(t){const e=It,n=[];for(let r=0;r<t[e(135)];r+=1){const s=t.charCodeAt(r);n[e(156)](255&s)}return n}},kt[It(171)]=236,kt[It(167)]=17,function(){const t=Ct,e=Ot();for(;;)try{if(240172===-parseInt(t(126))/1+parseInt(t(125))/2+parseInt(t(130))/3+parseInt(t(128))/4+-parseInt(t(127))/5+-parseInt(t(124))/6+-parseInt(t(129))/7)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const St={UTF8:t=>function(t){const e=Ct,n=[];for(let r=0;r<t.length;r++){let s=t[e(123)](r);s<128?n[e(131)](s):s<2048?n[e(131)](192|s>>6,128|63&s):s<55296||s>=57344?n[e(131)](224|s>>12,128|s>>6&63,128|63&s):(r++,s=65536+((1023&s)<<10|1023&t[e(123)](r)),n[e(131)](240|s>>18,128|s>>12&63,128|s>>6&63,128|63&s))}return n}(t)};function vt(t,e){const n=Tt();return(vt=function(t,e){return n[t-=399]})(t,e)}const Zt=vt;!function(){const t=vt,e=Tt();for(;;)try{if(595342===parseInt(t(402))/1+-parseInt(t(409))/2+-parseInt(t(400))/3+parseInt(t(410))/4+-parseInt(t(408))/5*(parseInt(t(406))/6)+parseInt(t(401))/7+parseInt(t(403))/8)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const Mt=t=>!!t&&"object"==typeof t&&!Array[Zt(407)](t);function Et(t,e=!1){const n=Zt,r=t[n(405)]("").reverse()[n(412)]("");return e?r[n(399)]():r}function Tt(){const t=["175045iziqCc","229482CUBfnJ","1816896GZMfkR","shift","join","toLocaleUpperCase","1173222ebxFDm","5677007uSpGsc","95617smXHFy","443168cXtLfo","length","split","54vxXhNl","isArray"];return(Tt=function(){return t})()}function Rt(t,...e){const n=Zt;if(!e[n(404)])return t;const r=e[n(411)]();return void 0!==r&&Mt(t)&&Mt(r)?(t={...t},Object.keys(r).forEach((e=>{const s=n,i=t[e],o=r[e];Array[s(407)](i)&&Array[s(407)](o)?t[e]=o:Mt(i)&&Mt(o)?t[e]=Rt({...i},o):t[e]=o})),Rt(t,...e)):t}const Wt=Bt;!function(){const t=Bt,e=Ut();for(;;)try{if(407341===-parseInt(t(479))/1*(-parseInt(t(486))/2)+-parseInt(t(482))/3*(-parseInt(t(477))/4)+-parseInt(t(480))/5*(-parseInt(t(492))/6)+parseInt(t(490))/7*(parseInt(t(488))/8)+parseInt(t(478))/9+-parseInt(t(489))/10*(parseInt(t(485))/11)+-parseInt(t(483))/12*(parseInt(t(484))/13))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const jt=Wt(481);function Bt(t,e){const n=Ut();return(Bt=function(t,e){return n[t-=477]})(t,e)}const Yt=Wt(487),Nt=Et("rq",!0)+Et("-",!0)+Et(jt,!0)+Et(Yt,!0),Vt=Et("a"[Wt(491)](6)+"#",!0);function Ut(){const t=["talp","8193odwfdM","148404lFwEhk","1833rKIQgo","11VnDcqz","253678looWtC","mrof","8HCTqrO","6069130PTOXPR","4387964OLxkKm","repeat","2421552Ehkder","536ubtMTa","1772793JHGylf","6McsbGz","10rKFqLg"];return(Ut=function(){return t})()}const Jt=Dt;!function(){const t=Dt,e=Pt();for(;;)try{if(701491===parseInt(t(319))/1+-parseInt(t(309))/2+-parseInt(t(308))/3*(-parseInt(t(324))/4)+parseInt(t(321))/5*(-parseInt(t(314))/6)+parseInt(t(317))/7+-parseInt(t(315))/8+-parseInt(t(312))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const xt={top:Jt(320),bottom:Jt(323),left:"left",right:Jt(318)};function Dt(t,e){const n=Pt();return(Dt=function(t,e){return n[t-=307]})(t,e)}function Pt(){const t=["number","bottom","167024CCCZwn","rotate(","replace","66SFWVzF","1391358IAbGzb","left","trim","1817874iEraLX",") scale(1, -1) translate(","3593046CtIbrA","5284944yytXYM","translate(","9460073QmbxsB","right","588544dexIGj","top","5ufFenn"];return(Pt=function(){return t})()}const Xt=t=>{const e=Jt;return typeof t===e(322)?t:parseInt(t[e(307)]("%",""),10)},Gt=(t,e="0%")=>t?t.endsWith("%")?t:t+"%":e,Ft=Lt;function Lt(t,e){const n=te();return(Lt=function(t,e){return n[t-=494]})(t,e)}!function(){const t=Lt,e=te();for(;;)try{if(564377===-parseInt(t(558))/1+-parseInt(t(511))/2+-parseInt(t(522))/3*(-parseInt(t(572))/4)+parseInt(t(563))/5*(parseInt(t(499))/6)+-parseInt(t(517))/7*(-parseInt(t(513))/8)+parseInt(t(497))/9+-parseInt(t(565))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const qt={text:Ft(538),image:Ft(570)},zt={disabled:!1,enableText:!0,type:Ft(538),value:Nt},Kt=Ft(544),Ht=(t,e)=>!t?.[Ft(510)]?.[e]?.[Ft(516)],Qt=(t,e,n)=>!n||!t?.[Ft(510)]?.[e]?.[Ft(516)],_t=t=>{const e=Ft;if(typeof t===e(505))return t;if(!t)return"";const{fontFace:n="Helvetica",fontSize:r=20,fontColor:s=e(559),letterSpacing:i=0,fontWeight:o=e(501)}=t;return"font-weight: "+o+e(551)+r+"px; font-family: "+n+e(539)+s+"; letter-spacing: "+i+e(549)};zt[Ft(564)]={fontFace:"Helvetica",fontSize:20,fontColor:Vt,letterSpacing:2};const $t={bottom:{...zt}};function te(){const t=[" translate(","1543056iDcurz","entries","normal"," 0 0 1 ","horizontalOffset","forEach","string","none","value","radius","max","decorations","571486kZlbpi","borderInner","448YsQhUF","toString","from","disabled","94038ArkbrA","text-anchor","href","right","path","222APxVtC","defs","left","nextSibling","getElementsByTagName","curveAdjustment","setAttribute","find","userSpaceOnUse","insertBefore","startOffset","number","borderOuter","transform","offset","min","text","; fill: ","color","thickness","inner","createElementNS","#ffffff","textContent","appendChild","length","curveRadius","px;","stroke-width","; font-size: ","mask","document","enableText","getAttribute","firstChild","maskUnits","662811XtmUad","#000000","fill","middle","trim","20OHMGbD","style","15074790rFcfnN","curveDisabled","http://www.w3.org/2000/svg","bottom","top","image","type","17476FaOhke","-text-path-","rect","textPath","alignment-baseline","50%","8244864lkuNeE"];return(te=function(){return t})()}const ee=({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:p=0,instanceId:l})=>{const f=Ft,d=Math[f(537)](o,i),I=t[f(543)](f(567),f(521)),m=(t=>{const e=Ft;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(529)]((e=>t<=e.R))||n[0],s=n[e(529)]((e=>t>e.R))||n[n[e(547)]-1],{R:i,P:o}=r,{R:a,P:c}=s;return o+(t-i)/(a-i)*(c-o)})(typeof a===f(505)?Xt(a):a),g=(d-s-2*p-10*h*2)/2*(void 0!==u?function(t){let e;return e=typeof t===Ft(533)?t:"string"==typeof t?(t.includes("%"),parseFloat(t)):0,e=Math.min(Math.max(e,0),50),.5+e/50*.5}(u):m),w=((t,e,n,r)=>{const s=Jt,i=n/2,o=r/2;let a="";return t&&(a+=s(325)+t+", "+i+", "+o+")"),e&&(a+=s(316)+i+", "+o+s(313)+-i+", "+-o+")"),a[s(311)]()})(n,r,o,i);I[f(528)]("id",e+f(573)+l),I[f(528)](f(535),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[Jt(310)]||0,o+=s.top||0,{startX:i,startY:o,pathWidth:a}})(d,s,p,c);return I.setAttribute("d",(A=k,"M"+y+","+(b+(O=g))+" a"+O+","+O+Ft(502)+O+","+-O+" h"+(A-2*O)+" a"+O+","+O+Ft(502)+O+","+O)),I;var A,O},ne=({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:p=!1,outerBorderPadding:l=0,curveRadius:f,instanceId:d,noBorderThickness:I,enabledBorders:m})=>{const g=Ft;let w=0,y=!1;if(s===xt[g(520)]?w=90:s===xt[g(568)]?y=!p:s===xt[g(524)]&&(w=270),p){const a=t.createElementNS(g(567),g(538));let u=o/2,p=(i-Math[g(537)](o,i)+e)/2+2*l+h-(i-o>0?0:(o-i)/2);if(s===xt[g(568)]?p=i-2*l-e/2-h:s===xt[g(569)]&&(p=2*l+e/2+h),s===xt[g(569)]||s===xt[g(568)]){let t=0;!m[xt.left]&&m[xt[g(520)]]?t=-(e-I)/2:m[xt[g(524)]]&&!m[xt.right]&&(t=(e-I)/2),u+=t}else if(s===xt.left||s===xt[g(520)]){let t=0;!m[xt.top]&&m[xt[g(568)]]?t=s===xt[g(524)]?(e-I)/2:-(e-I)/2:m[xt[g(569)]]&&!m[xt[g(568)]]&&(t=s===xt[g(524)]?-(e-I)/2:(e-I)/2),u+=t}let f="";0!==w&&(f+="rotate("+w+", "+o/2+", "+i/2+")"),a.setAttribute("x",u.toString()),a[g(528)]("y",p.toString()),a.setAttribute(g(518),g(561)),a[g(528)]("dominant-baseline","middle"),f&&a[g(528)]("transform",f[g(562)]()),a[g(545)]=n;const d=_t(c);a[g(528)]("style",d),r.appendChild(a)}else{let p=r.getElementsByTagName(g(523))[0];!p&&(p=t[g(543)](g(567),"defs"),r[g(546)](p));const b=ee({document:t,position:s,rotate:w,flip:y,thickness:e,height:i,width:o,round:a,offset:h,curveAdjustment:u,enabledBorders:m,outerBorderPadding:l,curveRadius:f,noBorderThickness:I,instanceId:d}),{x:k,y:A}=function(t,e,n,r){const s=Jt;let i=0,o=0;const a=(e-n)/2;return r[s(310)]&&r[s(318)]&&r[s(320)]&&r[s(323)]?(i=0,o=0):t===s(320)||"bottom"===t?!r[s(310)]&&r[s(318)]?i=-a:(r[s(310)]&&!r.right||r[s(310)]&&r[s(318)])&&(i=a):"left"!==t&&t!==s(318)||(!r[s(320)]&&r[s(323)]?r[s(310)]&&r[s(318)]?(i=t===s(310)?2*+a:0,o=-a):i=t===s(310)?+a:-a:r[s(320)]&&!r[s(323)]?r[s(310)]&&r.right?(i=t===s(310)?0:2*a,o=-a):i=0:r[s(320)]&&r[s(323)]?o=r[s(310)]&&r[s(318)]?2*+a:+a:(i=r.left&&r[s(318)]?2*+a:+a,o=r[s(310)]&&r[s(318)]?2*-a:-a)),{x:i,y:o}}(s,e,I,m);if(0!==k||0!==A){const t=((b.getAttribute(g(535))||"")+g(498)+k+", "+A+")")[g(562)]();b.setAttribute("transform",t)}p.appendChild(b),r[g(546)]((({document:t,value:e,position:n,style:r,instanceId:s})=>{const i=Ft,o=t[i(543)](i(567),i(538)),a=t[i(543)](i(567),i(494));a[i(528)](i(519),"#"+n+i(573)+s),a[i(528)]("text-anchor",i(561)),a[i(528)](i(532),i(496)),a.textContent=e,a[i(528)](i(495),i(561));const c=_t(r);return o.setAttribute(i(564),c),o[i(546)](a),o})({document:t,position:s,rotate:w,value:n,style:c,instanceId:d}))}},re=({document:t,thickness:e,value:n,svg:r,position:s,height:i,width:o,offset:a=0,style:c})=>{const h=Ft,u=t[h(543)]("http://www.w3.org/2000/svg","image"),p=Math[h(537)](o,i);let l=(o-p+e)/2,f=(i-p+e)/2+a;s===xt[h(569)]?l+=(p-e)/2:s===xt[h(520)]?(l+=p-e,f+=(p-e)/2):s===xt.bottom?(l+=(p-e)/2,f+=p-e):s===xt[h(524)]&&(f+=(p-e)/2),u[h(528)](h(519),n||""),u[h(528)]("x",""+l),u[h(528)]("y",""+f),u[h(528)](h(564),c?.[h(514)]()||""),r[h(546)](u)},se=t=>(e,n,r,s,i,o,a,c,h)=>{const u=Ft,{instanceId:p}=n,l=r,f=r,d=Math[u(537)](l,f),I=Gt(t[u(508)]),m=I&&Xt(I)>0?Xt(I)/100*d:0,g=Gt(t?.[u(542)]?.[u(508)],m),w=Math.min(Math[u(509)](t[u(542)]?.scale??1,0),1.5),y=t[u(542)]?.[u(503)]??0,b=t[u(542)]?.verticalOffset??0,k=t.thickness,A=t[u(540)]??u(559),O=t[u(534)]?t[u(534)][u(541)]/2:0,C=t.borderInner?t[u(512)][u(541)]/2:0,S=n[u(553)],v=i[u(524)]+i[u(520)],Z=i.top+i[u(568)],M=s(k,m),E={top:Ht(t,"top"),right:Ht(t,"right"),bottom:Qt(t,u(568),h()),left:Ht(t,u(524))},T=S[u(543)](u(567),u(574)),R={x:o.left/2,y:o[u(569)]/2,width:d+v-o.left,height:d+Z-o[u(569)],fill:A,rx:I??m};Object[u(500)](R)[u(504)]((([t,e])=>{const n=u;T[n(528)](t,e[n(514)]())}));const W=S[u(543)](u(567),u(574)),j=m>=200?u(496):m,B=l+v-(i[u(524)]+i[u(520)]+a.left+a.right+o.left+o[u(520)]),Y=f+Z-(i.top+i[u(568)]+a[u(569)]+a[u(568)]+o[u(569)]+o.bottom),N=B*w,V=Y*w,U=(B-N)/2-y,J=(Y-V)/2-b,x={x:i.left+a[u(524)]+o[u(524)]+U,y:i[u(569)]+a[u(569)]+o[u(569)]+J,width:N,height:V,fill:M?.[u(555)](u(560))||Kt,rx:g??j};Object[u(500)](x)[u(504)]((([t,e])=>W[u(528)](t,e[u(514)]()))),M&&(({strokePath:t,backgroundMaskGroup:e,svgElement:n,color:r})=>{const s=Ft;t[s(528)]("fill",e?.getAttribute("fill")||r),e[s(528)](s(560),"none"),e[s(528)](s(550),"0"),n.insertBefore(e,n[s(556)])})({strokePath:W,backgroundMaskGroup:M,svgElement:e,color:A});let D=e[u(526)](u(523))[0];!D&&(D=S.createElementNS("http://www.w3.org/2000/svg",u(523)),e.insertBefore(D,e.firstChild));const P=S[u(543)](u(567),u(552));P.setAttribute("id","qr-mask-"+p),P[u(528)](u(557),u(530));const X=S[u(543)]("http://www.w3.org/2000/svg",u(574));if(X[u(528)](u(560),"white"),Object[u(500)](x)[u(504)]((([t,e])=>{const n=u;t!==n(560)&&X[n(528)](t,e[n(514)]())})),D[u(546)](P),P[u(546)](X),e[u(531)](W,e[u(556)]?.nextSibling),e[u(531)](T,e[u(556)]),t[u(534)]&&t.borderOuter[u(541)]>0){const n=S[u(543)](u(567),"rect"),r={x:o.left/2,y:o[u(569)]/2,width:l+v-o.left,height:f+Z-o[u(569)],fill:u(506),rx:I??m,stroke:t[u(534)][u(540)],"stroke-width":t[u(534)][u(541)]};Object[u(500)](r)[u(504)]((([t,e])=>n[u(528)](t,e[u(514)]()))),e[u(531)](n,e[u(556)]?.[u(525)])}if(M){if(Array[u(515)](e[u(526)](u(574)))[0]){const t=e[u(556)];t?e[u(531)](M,t):e.appendChild(M)}}if(t.borderInner&&t[u(512)][u(541)]>0){const n=S[u(543)](u(567),u(574)),r={x:i.left+a[u(524)]+o[u(524)]+U,y:i[u(569)]+a[u(569)]+o[u(569)]+J,width:N,height:V,fill:u(506),stroke:t.borderInner[u(540)],"stroke-width":a[u(524)],rx:g??j};Object[u(500)](r).forEach((([t,e])=>n[u(528)](t,e[u(514)]()))),e.appendChild(n)}let G={...$t[u(568)]};if(!h()){const e=((t,e=[xt.top,xt[Ft(524)],xt[Ft(520)]])=>{const n=Ft;for(const r of e){const e=t[n(510)]?.[r];if(e&&e[n(554)]&&!e[n(516)]&&e[n(571)]===qt.text&&e[n(564)])return e[n(564)]}})(t);e&&(G={...G,style:e})}const F=h()?t:{...t,decorations:{...t.decorations,bottom:{...t[u(510)]?.[u(568)]||{},...G,disabled:!1,enableText:!0}}};for(const t in F[u(510)]){const n=F[u(510)][t];if(!n?.enableText||!E[t])continue;const r=n[u(571)]===qt[u(570)]?re:n.type===qt.text?ne:void 0;r&&r({document:S,svg:e,position:t,thickness:F[u(541)],value:n[u(507)],style:n[u(564)],offset:n[u(536)],curveAdjustment:n[u(527)],curveDisabled:n[u(566)],height:f+Z,width:l+v,enabledBorders:E,outerBorderPadding:O,innerBorderPadding:C,round:I,curveRadius:n[u(548)],instanceId:p,noBorderThickness:c})}};function ie(){var t=["colorStops","500094QBWAFe","6251854BiVotU","112TkkAKE","597939TDuPeW","radial","offset","2fDSCav","linear","3016850WUOUhI","1969572ruKHfk","8oNRdFT","1175718ejsOci","26419360VYrEBP","11BDtsua","map","Field 'colorStops' is required in gradient"];return(ie=function(){return t})()}var oe,ae,ce,he,ue,pe,le,fe,de,Ie,me,ge,we,ye,be,ke,Ae,Oe;function Ce(t,e){var n=ie();return(Ce=function(t,e){return n[t-=202]})(t,e)}function Se(t){var e=Ce;const n={...t};if(!n.colorStops||!n[e(205)].length)throw new Error(e(204));return n.rotation?n.rotation=Number(n.rotation):n.rotation=0,n[e(205)]=n[e(205)][e(203)]((t=>({...t,offset:Number(t[e(211)])}))),n}function ve(){var t=["document","min","circle","round","7063732rGoKIr","heart","smallSquare","fill","20jWKZNs","gradient","3832326VwmuIg","cornersSquareOptions","3409EgBOHH","1096696PehmJK","plus","classy","280WMsqpP","inpoint","imageSize","tiny-square","cornersDotOptions","rounded","vertical-line","26798fTKiUf","square","tinySquare","744wlMYOt","center","size","small-square","classyRounded","extraRounded","6LuuPqt","star","9864NLVjWc","background","backgroundOptions","9559vSlCde","1ytqZOi","margin","dot","verticalLine","imageOptions","diamond","outpoint","dotsOptions","max","randomDot","random-dot","horizontalLine","overlay","64488zIbPBb"];return(ve=function(){return t})()}function Ze(t,e){var n=ve();return(Ze=function(t,e){return n[t-=241]})(t,e)}function Me(t){var e=Ze;const n={...t};return n[e(276)]={...n[e(276)],imageSize:Math[e(287)](1,Number(n[e(276)]?.[e(252)]))||1,margin:Number(n[e(276)]?.[e(273)])||0},n[e(276)].mode==ke[e(284)]&&(n[e(276)][e(273)]=0),n.imageOptions?.fill?.[e(243)]&&(n[e(276)][e(241)][e(243)]=Se(n[e(276)].fill[e(243)])),n[e(279)]={...n[e(279)]},n[e(279)][e(243)]&&(n[e(279)].gradient=Se(n[e(279)][e(243)])),n[e(279)][e(262)]=Math[e(289)](Math[e(280)](0,n.dotsOptions[e(262)])||10),n.cornersSquareOptions&&(n.cornersSquareOptions={...n[e(245)]},n[e(245)][e(243)]&&(n[e(245)].gradient=Se(n[e(245)].gradient))),n[e(254)]&&(n[e(254)]={...n[e(254)]},n[e(254)][e(243)]&&(n[e(254)][e(243)]=Se(n[e(254)][e(243)]))),n.backgroundOptions&&(n[e(270)]={...n[e(270)]},n.backgroundOptions[e(243)]&&(n[e(270)][e(243)]=Se(n[e(270)][e(243)]))),"undefined"!=typeof document&&!n[e(286)]&&(n[e(286)]=document),n}function Ee(t,e){const n=Te();return(Ee=function(t,e){return n[t-=167]})(t,e)}function Te(){const t=["test","1072965EqiYTB","byte","97503enDmOe","alphanumeric","639225IGZaXA","5218424NESHqM","2033199IQSFyd","660568rspHfG","351859DWeGFn","numeric","10NgdIEK","342kJNoYs"];return(Te=function(){return t})()}!function(){for(var t=Ce,e=ie();;)try{if(671855===-parseInt(t(217))/1+parseInt(t(212))/2*(parseInt(t(209))/3)+parseInt(t(216))/4*(-parseInt(t(214))/5)+parseInt(t(215))/6+-parseInt(t(207))/7+-parseInt(t(208))/8*(-parseInt(t(206))/9)+parseInt(t(218))/10*(parseInt(t(202))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),(ae=oe||(oe={}))[(ce=Ce)(210)]=ce(210),ae[ce(213)]="linear",function(){for(var t=Ze,e=ve();;)try{if(491486===parseInt(t(272))/1*(-parseInt(t(257))/2)+-parseInt(t(266))/3*(parseInt(t(247))/4)+parseInt(t(250))/5*(parseInt(t(285))/6)+-parseInt(t(246))/7*(-parseInt(t(260))/8)+-parseInt(t(244))/9*(parseInt(t(242))/10)+parseInt(t(271))/11*(parseInt(t(268))/12)+parseInt(t(290))/13)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),ue=he||(he={}),pe=Ze,ue.dot=pe(274),ue[pe(281)]=pe(282),ue.rounded=pe(255),ue[pe(265)]="extra-rounded",ue[pe(275)]=pe(256),ue[pe(283)]="horizontal-line",ue.classy=pe(249),ue[pe(264)]="classy-rounded",ue[pe(258)]=pe(258),ue[pe(292)]=pe(263),ue[pe(259)]=pe(253),ue[pe(267)]=pe(267),ue[pe(248)]=pe(248),ue[pe(277)]=pe(277),(fe=le||(le={}))[(de=Ze)(274)]=de(274),fe[de(258)]=de(258),fe.heart=de(291),fe[de(255)]="rounded",fe[de(249)]=de(249),fe[de(278)]=de(278),fe[de(251)]="inpoint",me=Ie||(Ie={}),ge=Ze,me.dot="dot",me[ge(258)]=ge(258),me[ge(255)]=ge(255),me[ge(249)]=ge(249),me[ge(278)]=ge(278),me.inpoint=ge(251),ye=we||(we={}),be=Ze,ye.square=be(258),ye[be(288)]="circle",(Ae=ke||(ke={}))[(Oe=Ze)(261)]="center",Ae[Oe(284)]=Oe(284),Ae.background=Oe(269),function(){const t=Ee,e=Te();for(;;)try{if(909200===parseInt(t(172))/1+parseInt(t(174))/2*(-parseInt(t(168))/3)+parseInt(t(171))/4+-parseInt(t(177))/5+-parseInt(t(175))/6*(-parseInt(t(179))/7)+parseInt(t(169))/8+parseInt(t(170))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const Re={[wt.L]:.07,[wt.M]:.15,[wt.Q]:.25,[wt.H]:.3};var We=Be;!function(){for(var t=Be,e=Ye();;)try{if(552753===-parseInt(t(214))/1+-parseInt(t(216))/2*(parseInt(t(217))/3)+-parseInt(t(222))/4*(-parseInt(t(219))/5)+-parseInt(t(220))/6+-parseInt(t(215))/7+parseInt(t(221))/8+parseInt(t(223))/9*(parseInt(t(213))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class je{constructor(){}[We(218)](){}}function Be(t,e){var n=Ye();return(Be=function(t,e){return n[t-=213]})(t,e)}function Ye(){var t=["170534hXMjUO","21YVGTBt","close","1510xbNGPp","1915722wUoGZS","1769360pflErh","3396FULFPS","45JiopwJ","4054850nEXUXk","919675kRLSOR","814863uaCfug"];return(Ye=function(){return t})()}function Ne(){const t=["3730750fkZDVQ","buffer","buflen","759474aDsvRG","1062699MKdKrW","12150jUihJv","216279LLyypv","1679964LiMeCr","400lCwuXV","decode","35sbGQNE","unexpected end of file./","readByte","7423782KQPoKx","144FmyTzi","charCodeAt","isWhitespace"];return(Ne=function(){return t})()}const Ve=Ue;function Ue(t,e){const n=Ne();return(Ue=function(t,e){return n[t-=162]})(t,e)}!function(){const t=Ue,e=Ne();for(;;)try{if(982714===parseInt(t(175))/1*(parseInt(t(170))/2)+parseInt(t(169))/3+-parseInt(t(172))/4+-parseInt(t(165))/5+-parseInt(t(178))/6+parseInt(t(171))/7*(-parseInt(t(162))/8)+-parseInt(t(168))/9*(-parseInt(t(173))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Je extends je{constructor(t){const e=Ue;super(),this.istream=t,this[e(166)]=0,this[e(167)]=0}[Ve(177)](){const t=Ve;for(;this.buflen<8;){const e=this.istream[t(177)]();if(-1==e){if(0==this.buflen)return-1;throw new Error(t(176)+this.buflen)}if(e=="="[t(163)](0))return this[t(167)]=0,-1;Je[t(164)](e)||(this[t(166)]=this[t(166)]<<6|Je[t(174)](e),this[t(167)]+=6)}const e=this[t(166)]>>>this[t(167)]-8&255;return this[t(167)]-=8,e}static[Ve(164)](t){const e=Ve;return t=="\v".charCodeAt(0)||t=="\t"[e(163)](0)||t=="\r"[e(163)](0)||t=="\n".charCodeAt(0)}static[Ve(174)](t){const e=Ve;if("A"[e(163)](0)<=t&&t<="Z".charCodeAt(0))return t-"A"[e(163)](0);if("a"[e(163)](0)<=t&&t<="z"[e(163)](0))return t-"a"[e(163)](0)+26;if("0"[e(163)](0)<=t&&t<="9"[e(163)](0))return t-"0"[e(163)](0)+52;if(t=="+"[e(163)](0))return 62;if(t=="/"[e(163)](0))return 63;throw new Error("c:"+t)}}function xe(t,e){var n=Pe();return(xe=function(t,e){return n[t-=448]})(t,e)}var De=xe;function Pe(){var t=["47688dASNDn","1529COhjTX","31390JibChu","29685NzCNul","108UGaFFu","3488752EHEKmj","flush","103905KZEhzX","18KsWBex","7cQESOc","1150782BAIIee","50kOCbDl","8749kgcgBs","close","4238094NYQudv","forEach","writeBytes"];return(Pe=function(){return t})()}!function(){for(var t=xe,e=Pe();;)try{if(457088===parseInt(t(448))/1*(parseInt(t(456))/2)+-parseInt(t(455))/3+parseInt(t(449))/4*(-parseInt(t(452))/5)+parseInt(t(459))/6*(-parseInt(t(454))/7)+-parseInt(t(450))/8*(parseInt(t(453))/9)+parseInt(t(464))/10*(-parseInt(t(463))/11)+parseInt(t(462))/12*(parseInt(t(457))/13))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Xe{constructor(){}[De(461)](t){t[De(460)]((t=>this.writeByte(t)))}[De(451)](){}[De(458)](){this[De(451)]()}}function Ge(t,e){const n=Le();return(Ge=function(t,e){return n[t-=136]})(t,e)}const Fe=Ge;function Le(){const t=["writeByte","216330noDpzr","484012SeeXEF","charCodeAt","11064064yFwJpG","flush","buffer","buflen","216wvMfrd","47915HtWZue","3GUFHKK","185DYlVFo","ostream","length","19004cIMXAK","17926700wrLGTm","159ZfKCkb","encode","writeEncoded","1165095wZblsQ"];return(Le=function(){return t})()}!function(){const t=Ge,e=Le();for(;;)try{if(966044===-parseInt(t(155))/1*(-parseInt(t(147))/2)+parseInt(t(141))/3*(-parseInt(t(139))/4)+-parseInt(t(136))/5*(-parseInt(t(146))/6)+-parseInt(t(154))/7*(parseInt(t(153))/8)+parseInt(t(144))/9+-parseInt(t(140))/10+parseInt(t(149))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();Fe(145),Fe(150),Fe(142);function qe(t,e){const n=ze();return(qe=function(t,e){return n[t-=431]})(t,e)}function ze(){const t=["length","2183867lnGfRo","2663306APSgjC","7661280eISpqe","95kSMLJx","49192KJXCab","851802MmeRkC","927GNzofc","bytes","3101055qMoffB","12baQlzJ","pos","224008modAdQ"];return(ze=function(){return t})()}!function(){const t=qe,e=ze();for(;;)try{if(940679===-parseInt(t(432))/1+parseInt(t(441))/2+parseInt(t(435))/3+parseInt(t(438))/4*(-parseInt(t(443))/5)+parseInt(t(436))/6*(parseInt(t(440))/7)+-parseInt(t(431))/8*(-parseInt(t(433))/9)+-parseInt(t(442))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Ke extends je{constructor(t){const e=qe;super(),this[e(434)]=t,this[e(437)]=0}readByte(){const t=qe;if(this[t(437)]<this[t(434)][t(439)]){const e=this.bytes[this[t(437)]];return this[t(437)]+=1,e}return-1}}var He=Qe;function Qe(t,e){var n=_e();return(Qe=function(t,e){return n[t-=350]})(t,e)}function _e(){var t=["6668199QINABN","toByteArray","42259RlHEyw","7968540sSrQKM","push","8QnYfmP","7205710cpdolO","72LImKHD","248006ifQkeI","bytes","4tixwUY","2878267MUOYsH","1895769ffpOOi","14sMYRvj","6iHIqJr"];return(_e=function(){return t})()}!function(){for(var t=Qe,e=_e();;)try{if(773184===parseInt(t(357))/1*(parseInt(t(353))/2)+parseInt(t(352))/3*(-parseInt(t(350))/4)+parseInt(t(361))/5+parseInt(t(354))/6*(-parseInt(t(351))/7)+-parseInt(t(360))/8*(-parseInt(t(355))/9)+-parseInt(t(358))/10+parseInt(t(363))/11*(parseInt(t(362))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();He(356);const $e=tn;function tn(t,e){const n=en();return(tn=function(t,e){return n[t-=488]})(t,e)}function en(){const t=["10282zfAukr","146702duYIJV","writeBytes","7iolkfC","170SPokmP","decode","error","727551BFAvQa","999872jinCmo","3HzDbZv","readByte","67837mcSxbe","315594YGeDXf","close","160DNkdoD","3072tCWndc"];return(en=function(){return t})()}!function(){const t=tn,e=en();for(;;)try{if(199006===-parseInt(t(495))/1+-parseInt(t(496))/2*(parseInt(t(488))/3)+-parseInt(t(494))/4*(-parseInt(t(493))/5)+-parseInt(t(491))/6*(parseInt(t(498))/7)+parseInt(t(503))/8+parseInt(t(502))/9+parseInt(t(499))/10*(parseInt(t(490))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();$e(500);const nn=rn;function rn(t,e){const n=sn();return(rn=function(t,e){return n[t-=408]})(t,e)}function sn(){const t=["push","16616765cOQFDI","length","fromCharCode","add","setPixel","17207064nsZmMk","toDataURL","getPixel","15ncgtVY","bitBuffer","getSize","map","out","encode","size","getLZWRaster","writeByte","close","bitLength","undefined","30KjfNAC","data","1757732SEbpTj","3CrzQmU","contains","reduce","1209253jdizRx","writeWord","writeBytes","136sPfMmZ","269227mxOIVI","104298Tzrigz","width","flush","dup key:","toByteArray","indexOf","length over","height","charCodeAt","3418852CHnNBN","data:image/gif;base64,","write"];return(sn=function(){return t})()}!function(){const t=rn,e=sn();for(;;)try{if(974357===parseInt(t(414))/1+-parseInt(t(428))/2*(parseInt(t(411))/3)+-parseInt(t(410))/4+parseInt(t(440))/5*(-parseInt(t(419))/6)+parseInt(t(418))/7*(-parseInt(t(417))/8)+-parseInt(t(437))/9+parseInt(t(408))/10*(parseInt(t(432))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();nn(436),nn(439),nn(447),nn(415),nn(416),nn(438);nn(435),nn(442),nn(424),nn(412);nn(430),nn(421),nn(449);function on(t,e){const n=an();return(on=function(t,e){return n[t-=195]})(t,e)}function an(){const t=["black",' viewBox="0 0 '," height: ","&lt;"," border-collapse: collapse;",",0 0,","</table>","_createHalfASCII","floor"," width: ","3847492BGMoLK","createImgTag","trim","5uFpzeS"," border-width: 0px; border-style: none;",'<td style="',"2WDEiBR",'px"',"</svg>",' src="',"cellSize","length","substring","3245608jfUlAq",'<rect width="100%" height="100%" fill="white" cx="0" cy="0"/>',"createTableTag","&amp;","4728204NzfpLh",'<table style="','<svg version="1.1" xmlns="http://www.w3.org/2000/svg"',' width="'," padding: 0px; margin: 0px;","6373430OOgKgZ","setPixel","</title>","string",' role="img" aria-labelledby="','<title id="',"renderTo2dContext","px;","&quot;","createSvgTag","3052839JKqKOd","isDark","text","fillStyle",'<path d="',"<tr>","689808tDnCUg",'" stroke="transparent" fill="black"/>',"title",' preserveAspectRatio="xMinYMin meet"',"toDataURL","charAt","join","undefined","6kDsRdW",' height="',"createASCII"," padding: 0px; margin: ","margin","1333087qjgZqE","getModuleCount","scalable",'"/>'," background-color: ","alt","</tbody>","white","<img","#ffffff","qrcode-description"];return(an=function(){return t})()}const cn=on;!function(){const t=on,e=an();for(;;)try{if(530795===parseInt(t(231))/1+-parseInt(t(199))/2*(parseInt(t(225))/3)+-parseInt(t(265))/4*(-parseInt(t(196))/5)+-parseInt(t(239))/6*(-parseInt(t(244))/7)+-parseInt(t(206))/8+-parseInt(t(210))/9+parseInt(t(215))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();cn(262),cn(241),cn(221),cn(235),cn(208),cn(224),cn(266);function hn(t,e){const n=un();return(hn=function(t,e){return n[t-=118]})(t,e)}function un(){const t=["39AooraM","184OAPTYn","length","push","923659GjEPyd","1256676kWWibA","40034CkOfrQ","eof","88081aJQTuX","197211OHlbVs","charCodeAt","1355658oRapZp","5LkWcox","2529pEzbCn","12440hSvKNg","number","fromCharCode"];return(un=function(){return t})()}!function(){const t=hn,e=un();for(;;)try{if(245840===-parseInt(t(120))/1+-parseInt(t(134))/2*(-parseInt(t(128))/3)+-parseInt(t(133))/4*(parseInt(t(123))/5)+-parseInt(t(122))/6+parseInt(t(119))/7*(parseInt(t(129))/8)+-parseInt(t(124))/9*(-parseInt(t(125))/10)+parseInt(t(132))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const pn=ln;function ln(t,e){const n=fn();return(ln=function(t,e){return n[t-=222]})(t,e)}function fn(){const t=["10824BdUOYG","6BZulBv","190phcEbL","1886592fXoACe","4555908hyamHU","502YWldfF","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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=","2004dsDjuW","1118739spkIgG","1150cZlTQP","814LSgrpx","2390101IlOfXH","20sarRbK"];return(fn=function(){return t})()}function dn(){var t=["1096FMfAQj","59640guJgPR","20siOWhP","86166PEJjpN","62945giRsZg","10210018hKzGQi","2497cVwsGT","18512650MsVGVp","59076nPojBh","384gjrapE","786IbMmtV","64731mMwVni"];return(dn=function(){return t})()}function In(t,e){var n=dn();return(In=function(t,e){return n[t-=179]})(t,e)}!function(){const t=ln,e=fn();for(;;)try{if(875882===parseInt(t(229))/1*(-parseInt(t(225))/2)+parseInt(t(228))/3+-parseInt(t(233))/4*(parseInt(t(222))/5)+parseInt(t(234))/6*(-parseInt(t(231))/7)+parseInt(t(223))/8+parseInt(t(224))/9*(parseInt(t(232))/10)+-parseInt(t(230))/11*(parseInt(t(227))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),function(t,e){const n=(()=>{const n=hn,r=new Je(new Ke(function(t){const e=hn,n=[];for(let r=0;r<t[e(130)];r+=1)n[e(131)](t.charCodeAt(r));return n}(t))),s=()=>{const t=hn,e=r.readByte();if(-1==e)throw new Error(t(118));return e};let i=0;const o={};for(;;){const t=r.readByte();if(-1==t)break;const e=s(),a=s()<<8|s();o[String[n(127)](t<<8|e)]=a,i+=1}if(i!=e)throw new Error(i+"!="+e);return o})(),r="?".charCodeAt(0)}(pn(226),7070),function(){for(var t=In,e=dn();;)try{if(982176===parseInt(t(181))/1*(parseInt(t(184))/2)+-parseInt(t(179))/3*(parseInt(t(190))/4)+parseInt(t(186))/5*(parseInt(t(180))/6)+-parseInt(t(187))/7+-parseInt(t(182))/8*(-parseInt(t(185))/9)+parseInt(t(189))/10+parseInt(t(188))/11*(-parseInt(t(183))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const mn=bn;function gn(){const t=["87267bxkHqp","#000000","rounded","classy","dotsOptions","548514EfUxJZ","21021BpIyUm","35tkJtrl","rgba(255,255,255,1)","199970BwSwRa","verticalLine","dot","center","89396pNOWPA","1334956Sfllpw","square","3168qfYMZn","13068IeNWLX"];return(gn=function(){return t})()}!function(){const t=bn,e=gn();for(;;)try{if(116697===parseInt(t(432))/1+-parseInt(t(423))/2+-parseInt(t(438))/3+parseInt(t(427))/4*(-parseInt(t(439))/5)+-parseInt(t(437))/6+-parseInt(t(428))/7+parseInt(t(430))/8*(parseInt(t(431))/9))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const wn={shape:we.square,qrOptions:{typeNumber:gt[0],errorCorrectionLevel:wt.Q},cornersSquareOptions:{type:Ie.square},cornersDotOptions:{type:le[mn(429)]},dotsOptions:{type:he[mn(429)]}},yn={shape:we[mn(429)],qrOptions:{typeNumber:gt[0],mode:void 0,errorCorrectionLevel:wt.Q},imageOptions:{mode:ke[mn(426)],imageSize:.4,crossOrigin:void 0,margin:0,fill:{color:mn(422)}},cornersSquareOptions:{type:Ie[mn(425)],color:mn(433)},cornersDotOptions:{type:le[mn(425)],color:mn(433)},dotsOptions:{type:he[mn(424)],color:mn(433),size:10},backgroundOptions:{color:"#FFFFFF"}};function bn(t,e){const n=gn();return(bn=function(t,e){return n[t-=422]})(t,e)}const kn={...yn,dotsOptions:{...yn[mn(436)],type:he[mn(434)]},cornersSquareOptions:{type:Ie.dot,color:"#000000"},cornersDotOptions:{type:le[mn(425)],color:mn(433)}},An={...yn,dotsOptions:{...yn[mn(436)],type:he[mn(425)]},cornersSquareOptions:{type:Ie.dot,color:mn(433)},cornersDotOptions:{type:le.dot,color:mn(433)}},On={...yn,dotsOptions:{...yn[mn(436)],type:he[mn(435)]},cornersSquareOptions:{type:Ie[mn(435)],color:mn(433)},cornersDotOptions:{type:le.classy,color:mn(433)}},Cn={plain:wn,basic:yn,rounded:kn,dots:An,classy:On};function Sn(t,e){const n=En();return(Sn=function(t,e){return n[t-=113]})(t,e)}!function(){const t=Sn,e=En();for(;;)try{if(897947===parseInt(t(176))/1*(-parseInt(t(132))/2)+-parseInt(t(144))/3*(-parseInt(t(153))/4)+parseInt(t(131))/5+-parseInt(t(190))/6*(parseInt(t(181))/7)+parseInt(t(167))/8+-parseInt(t(147))/9+parseInt(t(173))/10*(parseInt(t(152))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const vn=t=>"number"==typeof t&&!isNaN(t)&&isFinite(t),Zn=(t,e)=>{const n=Sn,r=[];return!Object[n(143)](oe)[n(193)](t.type)&&r[n(162)]({path:e+n(142),message:n(180)+Object.values(oe)[n(196)](", "),value:t[n(150)]}),void 0!==t.rotation&&!vn(t[n(124)])&&r[n(162)]({path:e+n(188),message:n(145),value:t[n(124)]}),!t[n(116)]||!Array[n(139)](t[n(116)])||t[n(116)][n(170)]<2?r[n(162)]({path:e+n(168),message:n(192),value:t[n(116)]}):t[n(116)][n(159)](((t,s)=>{const i=n;(!vn(t[i(156)])||t[i(156)]<0||t[i(156)]>1)&&r[i(162)]({path:e+i(123)+s+i(186),message:i(155),value:t[i(156)]}),!(t=>{const e=Sn;if(new Set([e(121),e(183),e(113),e(120),e(138),e(140),"purple",e(174),"grey",e(135),"magenta","lime",e(148),e(136),"brown",e(137)])[e(157)](t.toLowerCase()))return!0;if(/^#([A-Fa-f0-9]{3}){1,2}$/[e(146)](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*\)$/[e(146)](t)||/^rgba\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*,\s*([01]?\.?\d*)\)$/[e(146)](t))return(t[e(149)](/\d+/g)?.[e(158)](Number)||[])[e(166)]((t=>t>=0&&t<=255));return!1})(t[i(182)])&&r[i(162)]({path:e+i(123)+s+i(191),message:i(126),value:t[i(182)]})})),r};function Mn(t){const e=Sn,n=[];let r={...yn};return(!t[e(118)]||typeof t[e(118)]!==e(187))&&n[e(162)]({path:e(118),message:e(160),value:t[e(118)]}),t.shape&&!Object[e(143)](we)[e(193)](t[e(165)])&&(n[e(162)]({path:e(165),message:"Invalid shape type. Must be one of: "+Object[e(143)](we).join(", "),value:t.shape}),t.shape=yn[e(165)]),t[e(125)]&&(t[e(125)].typeNumber&&!Object.values(gt)[e(193)](t[e(125)][e(171)])&&(n.push({path:e(172),message:e(141),value:t[e(125)][e(171)]}),t.qrOptions.typeNumber=yn.qrOptions?.[e(171)]),t.qrOptions[e(185)]&&!Object[e(143)](wt)[e(193)](t[e(125)][e(185)])&&(n[e(162)]({path:"qrOptions.errorCorrectionLevel",message:e(114),value:t[e(125)].errorCorrectionLevel}),t.qrOptions[e(185)]=yn[e(125)]?.[e(185)]),t.qrOptions[e(169)]&&!Object.values(bt)[e(193)](t.qrOptions[e(169)])&&(n.push({path:e(151),message:e(134),value:t.qrOptions[e(169)]}),t.qrOptions[e(169)]=yn[e(125)]?.[e(169)])),t[e(115)]&&(t[e(115)].imageSize&&(!vn(t[e(115)][e(177)])||t[e(115)][e(177)]<=0||t[e(115)].imageSize>1)&&(n.push({path:e(189),message:e(119),value:t[e(115)].imageSize}),t[e(115)][e(177)]=yn[e(115)]?.[e(177)]),t.imageOptions[e(161)]&&(!vn(t[e(115)][e(161)])||t[e(115)].margin<0)&&(n.push({path:"imageOptions.margin",message:e(184),value:t[e(115)][e(161)]}),t[e(115)][e(161)]=yn.imageOptions?.[e(161)]),t.imageOptions[e(169)]&&!Object.values(ke).includes(t.imageOptions[e(169)])&&(n[e(162)]({path:e(127),message:e(117)+Object[e(143)](ke).join(", "),value:t[e(115)].mode}),t[e(115)][e(169)]=yn[e(115)]?.[e(169)])),t[e(133)]&&(t.dotsOptions[e(150)]&&!Object.values(he).includes(t[e(133)].type)&&(n.push({path:e(154),message:e(179)+Object[e(143)](he)[e(196)](", "),value:t[e(133)][e(150)]}),t.dotsOptions[e(150)]=yn[e(133)]?.type),t.dotsOptions[e(194)]&&(!vn(t.dotsOptions[e(194)])||t[e(133)][e(194)]<=0)&&(n[e(162)]({path:e(130),message:e(129),value:t[e(133)].size}),t[e(133)].size=yn[e(133)]?.size),t[e(133)][e(195)]&&n[e(162)](...Zn(t[e(133)][e(195)],e(163)))),t[e(178)]&&(t[e(178)][e(150)]&&!Object.values(Ie)[e(193)](t[e(178)][e(150)])&&(n[e(162)]({path:"cornersSquareOptions.type",message:e(128)+Object.values(Ie).join(", "),value:t.cornersSquareOptions[e(150)]}),t[e(178)][e(150)]=yn.cornersSquareOptions?.[e(150)]),t[e(178)][e(195)]&&n.push(...Zn(t.cornersSquareOptions[e(195)],e(175)))),t[e(164)]&&(t[e(164)][e(150)]&&!Object.values(le).includes(t.cornersDotOptions[e(150)])&&(n[e(162)]({path:"cornersDotOptions.type",message:e(122)+Object[e(143)](le).join(", "),value:t.cornersDotOptions[e(150)]}),t[e(164)].type=yn[e(164)]?.[e(150)]),t.cornersDotOptions[e(195)]&&n[e(162)](...Zn(t[e(164)][e(195)],"cornersDotOptions.gradient"))),r={...r,...t},{warnings:n,validatedOptions:r}}function En(){const t=["map","forEach","QR data is required and must be a string","margin","push","dotsOptions.gradient","cornersDotOptions","shape","every","5565392FhQgYl",".colorStops","mode","length","typeNumber","qrOptions.typeNumber","56480kArAJp","gray","cornersSquareOptions.gradient","1132997AkedcZ","imageSize","cornersSquareOptions","Invalid dot type. Must be one of: ","Invalid gradient type. Must be one of: ","2452373XjiLzo","color","white","Margin must be a non-negative number","errorCorrectionLevel","].offset","string",".rotation","imageOptions.imageSize","12JolWln","].color","Gradient must have at least 2 color stops","includes","size","gradient","join","red","Invalid error correction level","imageOptions","colorStops","Invalid image mode. Must be one of: ","data","Image size must be between 0 and 1","green","black","Invalid corner dot type. Must be one of: ",".colorStops[","rotation","qrOptions","Invalid color format","imageOptions.mode","Invalid corner square type. Must be one of: ","Dot size must be a positive number","dotsOptions.size","4847120kwsjsg","2pIEQIS","dotsOptions","Invalid mode","cyan","teal","orange","blue","isArray","yellow","Invalid type number",".type","values","10503YQVFWc","Rotation must be a valid number","test","5559318clXxzP","pink","match","type","qrOptions.mode","3212ySTpie","40NALpaq","dotsOptions.type","Color stop offset must be between 0 and 1","offset","has"];return(En=function(){return t})()}!function(){const t=Wn,e=Rn();for(;;)try{if(669391===parseInt(t(137))/1+parseInt(t(134))/2*(parseInt(t(133))/3)+-parseInt(t(128))/4+-parseInt(t(138))/5*(parseInt(t(127))/6)+-parseInt(t(130))/7+parseInt(t(131))/8+-parseInt(t(135))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const Tn=/\.?0+$/;function Rn(){const t=["1155830wzYqdd","toFixed","trim","6scZnTr","2205332QThCzo","number","1014230ILWMpW","5649112LieQpm","replace","1035756jgZgwO","4iJHCiH","4100679uXBoMs","reduce","655768adbRxP"];return(Rn=function(){return t})()}function Wn(t,e){const n=Rn();return(Wn=function(t,e){return n[t-=127]})(t,e)}function jn(t){const e=Wn;return t[e(139)](7)[e(132)](Tn,"")}function Bn(t,...e){const n=Wn;return t[n(136)](((t,r,s)=>{const i=n;let o="";return s&&(o=e[s-1]),typeof o==i(129)&&(o=jn(o)),""+t+o+r}),"")[n(140)]()[n(132)](/[\s\n\r]+/gim," ")}const Yn=Vn;function Nn(){const t=["createElementNS","draw","string","drawHeart","setAttribute","1598288iltnNV","type","drawDot","heart","transform","call","9UFrFyM","classy","drawRounded","drawClassy","6DTyoQB","join","1625478QPaFQk","rotate(","26202KXtRzW","basicRounded","clip-rule","rect","square","http://www.w3.org/2000/svg","drawInpoint","map","drawOutpoint","474404YSppps","basicSquare","height","document","evenodd","path","basicClassy","1207395UoAfTP","_element","494577FgwWCP","drawSquare","basicDot","rotateFigure","circle","toUpperCase","dot","basicInpoint","width","2210872SwizNZ","basicHeart"];return(Nn=function(){return t})()}function Vn(t,e){const n=Nn();return(Vn=function(t,e){return n[t-=195]})(t,e)}!function(){const t=Vn,e=Nn();for(;;)try{if(306330===parseInt(t(231))/1+-parseInt(t(213))/2+-parseInt(t(211))/3+parseInt(t(199))/4+-parseInt(t(229))/5+parseInt(t(209))/6*(-parseInt(t(222))/7)+parseInt(t(240))/8*(parseInt(t(205))/9))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Un{get element(){return this[Vn(230)]}constructor(t,e){const n=Vn;this.type=t,this[n(225)]=e}[Yn(195)](t){const e=Yn;let n;switch(this[e(200)]){case le[e(217)]:n=this[e(232)];break;case le[e(202)]:n=this[e(197)];break;case le.rounded:n=this[e(207)];break;case le[e(206)]:n=this.drawClassy;break;case le.inpoint:n=this[e(219)];break;case le.outpoint:n=this[e(221)];break;case le[e(237)]:default:n=this[e(201)]}n[e(204)](this,t)}[Yn(234)]({x:t,y:e,size:n,rotation:r=0,draw:s}){const i=Yn,o=t+n/2,a=e+n/2;s(),this[i(230)]?.[i(198)](i(203),i(212)+jn(180*r/Math.PI)+","+o+","+a+")")}[Yn(233)](t){const e=Yn,{size:n,x:r,y:s}=t;this[e(234)]({...t,draw:()=>{const t=e;this._element=this[t(225)][t(242)]("http://www.w3.org/2000/svg",t(235)),this._element[t(198)]("cx",jn(r+n/2)),this[t(230)][t(198)]("cy",jn(s+n/2)),this[t(230)][t(198)]("r",jn(n/2.1))}})}basicSquare(t){const{size:e,x:n,y:r}=t,s=e/11;this.rotateFigure({...t,draw:()=>{const t=Vn;this[t(230)]=this[t(225)].createElementNS("http://www.w3.org/2000/svg",t(216)),this._element.setAttribute("x",jn(n+s)),this[t(230)][t(198)]("y",jn(r+s)),this[t(230)][t(198)](t(239),jn(e-2*s)),this._element[t(198)]("height",jn(e-2*s))}})}basicHeart(t){const e=Yn,{size:n,x:r,y:s}=t;this._element=this[e(225)].createElementNS(e(218),"path");let i=!1,o=0;this[e(230)][e(198)]("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(220)]((t=>{const a=e;return typeof t==a(196)?(o=0,i=t[a(236)]()==t,t):(o++,t*=n,i&&(t+=o%2==1?r:s),jn(t))}))[e(210)](" "))}basicRounded(t){const{size:e,x:n,y:r}=t;this.rotateFigure({...t,draw:()=>{const t=Vn;this[t(230)]=this[t(225)][t(242)](t(218),t(216)),this[t(230)][t(198)]("x",jn(n)),this[t(230)].setAttribute("y",jn(r)),this._element[t(198)](t(239),jn(e)),this[t(230)][t(198)](t(224),jn(e)),this[t(230)].setAttribute("rx",jn(e/4)),this._element[t(198)]("ry",jn(e/4))}})}[Yn(228)](t){const e=Yn,{size:n,x:r,y:s}=t,i=n/7;this[e(234)]({...t,draw:()=>{const t=e;this[t(230)]=this[t(225)][t(242)](t(218),t(227)),this[t(230)][t(198)](t(215),t(226)),this[t(230)][t(198)]("d",Bn`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`)}})}[Yn(238)](t){const e=Yn,{size:n,x:r,y:s}=t,i=n;this[e(234)]({...t,draw:()=>{const t=e;this._element=this.document[t(242)](t(218),"path"),this[t(230)][t(198)](t(215),"evenodd"),this._element[t(198)]("d",Bn`M ${r} ${s+i/2} v ${i/4} a ${i/4}, ${i/4} 0 0 0 ${i/4}, ${i/4} h ${i/4*3} v ${-i/4*3} a ${i/4}, ${i/4} 0 0 0 ${-i/4}, ${-i/4} h ${-i/2} a ${i/4}, ${i/4} 0 0 0 ${-i/4}, ${i/4} z`)}})}[Yn(201)]({x:t,y:e,size:n,rotation:r}){this[Yn(233)]({x:t,y:e,size:n,rotation:r})}[Yn(232)]({x:t,y:e,size:n,rotation:r}){this[Yn(223)]({x:t,y:e,size:n,rotation:r})}[Yn(197)]({x:t,y:e,size:n,rotation:r}){this[Yn(241)]({x:t,y:e,size:n,rotation:r})}[Yn(207)]({x:t,y:e,size:n,rotation:r}){this[Yn(214)]({x:t,y:e,size:n,rotation:r})}[Yn(208)]({x:t,y:e,size:n,rotation:r}){this[Yn(228)]({x:t,y:e,size:n,rotation:r})}[Yn(219)]({x:t,y:e,size:n,rotation:r}){this.basicInpoint({x:t,y:e,size:n,rotation:r})}[Yn(221)]({x:t,y:e,size:n,rotation:r}){this[Yn(238)]({x:t,y:e,size:n,rotation:(r||0)+Math.PI})}}const Jn=xn;function xn(t,e){const n=Dn();return(xn=function(t,e){return n[t-=418]})(t,e)}function Dn(){const t=["rotate(","84YXfRvP","inpoint","square","drawOutpoint","drawExtraRounded","path","rotateFigure","848798NwKsca","evenodd","basicDot","59316HmjuMF","dot","drawSquare","1208140qYcHvE","element","basicExtraRounded","256638BLRGWg","_element","drawDot","basicInpoint","fill","drawInpoint","createElementNS","3227310lElqFO","basicClassy","call","3GBidOA","outpoint","document","clip-rule","drawClassy","_fill","22NNokBv","basicSquare","13318068wuCjTh","http://www.w3.org/2000/svg","63DvlAuI","150ZNDGDc","626216ABdCGj","transform","classy","type","setAttribute","rounded"];return(Dn=function(){return t})()}!function(){const t=xn,e=Dn();for(;;)try{if(473196===-parseInt(t(422))/1+parseInt(t(428))/2*(-parseInt(t(441))/3)+-parseInt(t(425))/4*(-parseInt(t(452))/5)+parseInt(t(431))/6*(-parseInt(t(460))/7)+parseInt(t(453))/8*(-parseInt(t(451))/9)+parseInt(t(438))/10+-parseInt(t(447))/11*(-parseInt(t(449))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Pn{get[Jn(429)](){return this._element}get[Jn(435)](){return this[Jn(446)]}constructor(t,e){const n=Jn;this[n(456)]=t,this[n(443)]=e}draw(t){const e=Jn;let n;switch(this.type){case Ie[e(462)]:n=this.drawSquare;break;case Ie[e(458)]:n=this[e(419)];break;case Ie[e(455)]:n=this[e(445)];break;case Ie[e(442)]:n=this.drawOutpoint;break;case Ie[e(461)]:n=this[e(436)];break;case Ie[e(426)]:default:n=this[e(433)]}n[e(440)](this,t)}rotateFigure({x:t,y:e,size:n,rotation:r=0,draw:s}){const i=Jn,o=t+n/2,a=e+n/2;s(),this[i(432)]?.setAttribute(i(454),i(459)+jn(180*r/Math.PI)+","+o+","+a+")"),this._fill?.[i(457)](i(454),i(459)+jn(180*r/Math.PI)+","+o+","+a+")")}basicDot(t){const e=Jn,{size:n,x:r,y:s}=t,i=n/8,o=.5*n,a=o-i;this[e(421)]({...t,draw:()=>{const t=e;this[t(432)]=this[t(443)].createElementNS("http://www.w3.org/2000/svg","path"),this[t(432)][t(457)](t(444),"evenodd"),this[t(432)][t(457)]("d",Bn`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(446)]=this[t(443)][t(437)](t(450),t(420)),this._fill[t(457)](t(444),t(423)),this._fill.setAttribute("d",Bn`M ${r+n/2} ${s+(n/2-(o+i))} a ${o+i} ${o+i} 0 1 0 0.1 0 z`)}})}[Jn(448)](t){const e=Jn,{size:n,x:r,y:s}=t,i=n/7;this[e(421)]({...t,draw:()=>{const t=e;this._element=this[t(443)][t(437)](t(450),"path"),this[t(432)][t(457)](t(444),t(423)),this[t(432)][t(457)]("d",Bn`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(446)]=this[t(443)][t(437)](t(450),t(420)),this._fill.setAttribute(t(444),"evenodd"),this[t(446)].setAttribute("d",Bn`M ${r-i} ${s-i} h ${n+2*i} v ${n+2*i} h ${-n-2*i} z`)}})}[Jn(430)](t){const e=Jn,{size:n,x:r,y:s}=t,i=n/7;this[e(421)]({...t,draw:()=>{const t=e;this[t(432)]=this.document[t(437)](t(450),t(420)),this[t(432)][t(457)](t(444),t(423)),this[t(432)][t(457)]("d",Bn`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(446)]=this[t(443)][t(437)](t(450),t(420)),this[t(446)][t(457)]("clip-rule",t(423)),this[t(446)][t(457)]("d",Bn`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`)}})}[Jn(439)](t){const e=Jn,{size:n,x:r,y:s}=t,i=n/7;this[e(421)]({...t,draw:()=>{const t=e;this[t(432)]=this[t(443)][t(437)](t(450),t(420)),this[t(432)][t(457)](t(444),t(423)),this[t(432)][t(457)]("d",Bn`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(446)]=this.document[t(437)](t(450),t(420)),this[t(446)][t(457)](t(444),"evenodd"),this._fill.setAttribute("d",Bn`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`)}})}[Jn(434)](t){const{size:e,x:n,y:r}=t,s=e/7;this.rotateFigure({...t,draw:()=>{const t=xn;this[t(432)]=this[t(443)].createElementNS(t(450),t(420)),this[t(432)][t(457)](t(444),"evenodd"),this[t(432)][t(457)]("d",Bn`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._fill=this[t(443)][t(437)]("http://www.w3.org/2000/svg",t(420)),this[t(446)][t(457)](t(444),"evenodd"),this[t(446)][t(457)]("d",Bn`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`)}})}[Jn(433)]({x:t,y:e,size:n,rotation:r}){this[Jn(424)]({x:t,y:e,size:n,rotation:r})}[Jn(427)]({x:t,y:e,size:n,rotation:r}){this[Jn(448)]({x:t,y:e,size:n,rotation:r})}[Jn(419)]({x:t,y:e,size:n,rotation:r}){this.basicExtraRounded({x:t,y:e,size:n,rotation:r})}[Jn(445)]({x:t,y:e,size:n,rotation:r}){this[Jn(439)]({x:t,y:e,size:n,rotation:r})}[Jn(436)]({x:t,y:e,size:n,rotation:r}){this[Jn(434)]({x:t,y:e,size:n,rotation:r})}[Jn(418)]({x:t,y:e,size:n,rotation:r}){this[Jn(434)]({x:t,y:e,size:n,rotation:(r||0)+Math.PI})}}const Xn=Gn;function Gn(t,e){const n=Ln();return(Gn=function(t,e){return n[t-=443]})(t,e)}!function(){const t=Gn,e=Ln();for(;;)try{if(366015===parseInt(t(456))/1+parseInt(t(454))/2*(-parseInt(t(477))/3)+parseInt(t(446))/4*(parseInt(t(445))/5)+parseInt(t(484))/6*(parseInt(t(451))/7)+-parseInt(t(487))/8*(parseInt(t(490))/9)+parseInt(t(466))/10+parseInt(t(443))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Fn{get[Xn(479)](){return this[Xn(471)]}constructor(t,e){this[Xn(447)]=t,this.document=e}draw(t){const e=Xn;let n;switch(this[e(447)]){case he.dot:n=this[e(475)];break;case he.randomDot:n=this[e(482)];break;case he[e(444)]:n=this[e(474)];break;case he[e(485)]:n=this[e(478)];break;case he[e(460)]:n=this[e(457)];break;case he[e(462)]:n=this[e(467)];break;case he[e(497)]:n=this[e(489)];break;case he.extraRounded:n=this[e(458)];break;case he[e(465)]:n=this[e(448)];break;case he[e(469)]:n=this.drawSmallSquare;break;case he.tinySquare:n=this.drawTinySquare;break;case he[e(496)]:n=this[e(450)];break;case he[e(476)]:n=this.drawPlus;break;case he[e(493)]:default:n=this[e(452)]}n[e(491)](this,t)}[Xn(463)]({x:t,y:e,size:n,rotation:r=0,draw:s}){const i=Xn,o=t+n/2,a=e+n/2;s(),this[i(471)]?.setAttribute(i(449),"rotate("+jn(180*r/Math.PI)+","+o+","+a+")")}[Xn(495)](t){const e=Xn,{size:n,x:r,y:s}=t;this[e(463)]({...t,draw:()=>{const t=e;this._element=this.document[t(473)](t(498),t(468)),this._element[t(488)]("cx",jn(r+n/2)),this[t(471)][t(488)]("cy",jn(s+n/2)),this[t(471)].setAttribute("r",jn(n/2))}})}[Xn(464)](t){const e=Xn,{size:n,x:r,y:s}=t;this[e(463)]({...t,draw:()=>{const t=e;this[t(471)]=this.document[t(473)]("http://www.w3.org/2000/svg","rect"),this._element[t(488)]("x",jn(r)),this[t(471)][t(488)]("y",jn(s)),this[t(471)][t(488)]("width",jn(n)),this[t(471)][t(488)]("height",jn(n))}})}basicSideRounded(t){const e=Xn,{size:n,x:r,y:s}=t;this[e(463)]({...t,draw:()=>{const t=e;this[t(471)]=this.document[t(473)](t(498),t(470)),this[t(471)].setAttribute("d",Bn`M ${r} ${s} v ${n} h ${n/2} a ${n/2} ${n/2}, 0, 0, 0, 0 ${-n} z`)}})}basicCornerRounded(t){const e=Xn,{size:n,x:r,y:s}=t;this[e(463)]({...t,draw:()=>{const t=e;this[t(471)]=this.document[t(473)](t(498),"path"),this[t(471)][t(488)]("d",Bn`M ${r} ${s} v ${n} h ${n} v ${-n/2} a ${n/2} ${n/2}, 0, 0, 0, ${-n/2} ${-n/2} z`)}})}[Xn(480)](t){const{size:e,x:n,y:r}=t;this.rotateFigure({...t,draw:()=>{const t=Gn;this[t(471)]=this[t(459)][t(473)](t(498),t(470)),this[t(471)][t(488)]("d",Bn`M ${n} ${r} v ${e} h ${e} a ${e} ${e}, 0, 0, 0, ${-e} ${-e} z`)}})}[Xn(455)](t){const e=Xn,{size:n,x:r,y:s}=t;this[e(463)]({...t,draw:()=>{const t=e;this._element=this[t(459)][t(473)](t(498),t(470)),this._element[t(488)]("d",Bn`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`)}})}[Xn(475)]({x:t,y:e,size:n}){this.basicDot({x:t,y:e,size:n,rotation:0})}[Xn(482)]({x:t,y:e,size:n}){const r=.25*Math[Xn(453)]()+.75;this.basicDot({x:t,y:e,size:n*r,rotation:0})}drawSquare({x:t,y:e,size:n}){this[Xn(464)]({x:t,y:e,size:n,rotation:0})}drawSmallSquare({x:t,y:e,size:n}){const r=n;n=.7*r,t+=.15*r,e+=.15*r,this[Xn(464)]({x:t,y:e,size:n,rotation:0})}[Xn(483)]({x:t,y:e,size:n}){const r=n;n=.6*r,t+=.35*r,e+=.35*r,this[Xn(464)]({x:t,y:e,size:n,rotation:0})}[Xn(448)]({x:t,y:e,size:n}){this[Xn(464)]({x:t,y:e,size:n,rotation:Math.PI/4})}[Xn(457)]({x:t,y:e,size:n,getNeighbor:r}){const s=Xn,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(472)]({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.basicSideRounded({x:t,y:e,size:n,rotation:r})}}else this[s(495)]({x:t,y:e,size:n,rotation:0})}drawVerticalLine({x:t,y:e,size:n,getNeighbor:r}){const s=Xn,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(495)]({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(492)]({x:t,y:e,size:n,rotation:r})}else{const r=Math.PI/2;this.basicSideRounded({x:t,y:e,size:n,rotation:r})}}drawHorizontalLine({x:t,y:e,size:n,getNeighbor:r}){const s=Xn,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(495)]({x:t,y:e,size:n,rotation:0});else if(i&&o)this[s(464)]({x:t,y:e,size:n,rotation:0});else if(!i||o)if(!o||i);else{const r=Math.PI;this[s(492)]({x:t,y:e,size:n,rotation:r})}else{const r=0;this[s(492)]({x:t,y:e,size:n,rotation:r})}}[Xn(458)]({x:t,y:e,size:n,getNeighbor:r}){const s=Xn,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(464)]({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(480)]({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.basicSideRounded({x:t,y:e,size:n,rotation:r})}}else this[s(495)]({x:t,y:e,size:n,rotation:0})}drawClassy({x:t,y:e,size:n,getNeighbor:r}){const s=Xn,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(464)]({x:t,y:e,size:n,rotation:0}):this[s(472)]({x:t,y:e,size:n,rotation:Math.PI/2}):this[s(472)]({x:t,y:e,size:n,rotation:-Math.PI/2}):this[s(455)]({x:t,y:e,size:n,rotation:Math.PI/2})}[Xn(478)]({x:t,y:e,size:n,getNeighbor:r}){const s=Xn,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(464)]({x:t,y:e,size:n,rotation:0}):this[s(480)]({x:t,y:e,size:n,rotation:Math.PI/2}):this.basicCornerExtraRounded({x:t,y:e,size:n,rotation:-Math.PI/2}):this.basicCornersRounded({x:t,y:e,size:n,rotation:Math.PI/2})}drawStar({x:t,y:e,size:n}){this.rotateFigure({x:t,y:e,size:n,rotation:0,draw:()=>{const r=Gn;this[r(471)]=this[r(459)][r(473)]("http://www.w3.org/2000/svg","path");const s=t+n/2,i=e+n/2,o=1.3*n/2,a=.5*o;let c="";for(let t=0;t<10;t++){const e=t*Math.PI/5-Math.PI/2,n=t%2==0?o:a;c+=(0===t?"M":"L")+(s+n*Math[r(461)](e))+","+(i+n*Math[r(481)](e))}c+="Z",this._element?.[r(488)]("d",c)}})}[Xn(494)]({x:t,y:e,size:n}){const r=Xn;this[r(463)]({x:t,y:e,size:n,rotation:0,draw:()=>{const s=r;this[s(471)]=this[s(459)][s(473)](s(498),"path");const i=.35*n,o=.85*n,a=(n-o)/2,c=i/2,h=["M "+(t+n/2-c)+" "+(e+a),"h "+i,"v "+o,"h "+-i,"z","M "+(t+a)+" "+(e+n/2-c),"h "+o,"v "+i,"h "+-o,"z"][s(486)](" ");this[s(471)]?.setAttribute("d",h)}})}}function Ln(){const t=["rounded","cos","verticalLine","rotateFigure","basicSquare","diamond","3158540njCqlH","drawVerticalLine","circle","smallSquare","path","_element","basicCornerRounded","createElementNS","drawClassy","drawDot","plus","396489jHudoL","drawClassyRounded","element","basicCornerExtraRounded","sin","drawRandomDot","drawTinySquare","29724ncnlbm","classyRounded","join","8TSnOtS","setAttribute","drawHorizontalLine","4135554FooYDj","call","basicSideRounded","square","drawPlus","basicDot","star","horizontalLine","http://www.w3.org/2000/svg","4395116BciYVH","classy","152770IiyScp","52OUDYIq","type","drawDiamond","transform","drawStar","49eJndhx","drawSquare","random","6TWDYcX","basicCornersRounded","74720TsBuws","drawRounded","drawExtraRounded","document"];return(Ln=function(){return t})()}const qn=zn;function zn(t,e){const n=Kn();return(zn=function(t,e){return n[t-=283]})(t,e)}function Kn(){const t=["523467IBXpek","onabort","onload","11xIGzTO","onloadend","33919524rTukAs","40NSOZdZ","result","104XUgztF","15wdnVYq","data:","string","open","527359NYoFsc","1519330yQMDek","Image loading error:","readAsDataURL","Image size detection error:","error","width","startsWith","135465YrfSdE","3086022GWMlGY","src","crossOrigin","send","abort","GET","data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSIjY2NjIi8+PHRleHQgeD0iNTAlIiB5PSI1MCUiIGRvbWluYW50LWJhc2VsaW5lPSJtaWRkbGUiIHRleHQtYW5jaG9yPSJtaWRkbGUiIGZpbGw9IiMwMDAiIGZvbnQtc2l6ZT0iMTYiPkxvZ28gbG9hZCBlcnJvcjwvdGV4dD48L3N2Zz4=","onerror","catch","Image loading timed out","ontimeout","response","resolve","data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==","toDataURL","Invalid image source","responseType","68ePGUFe","blob","Failed to read local image","Failed to read image blob","status","1841146aQlSfb"];return(Kn=function(){return t})()}!function(){const t=zn,e=Kn();for(;;)try{if(829505===parseInt(t(289))/1+-parseInt(t(319))/2+-parseInt(t(296))/3*(-parseInt(t(314))/4)+-parseInt(t(284))/5*(-parseInt(t(297))/6)+-parseInt(t(288))/7*(-parseInt(t(283))/8)+-parseInt(t(320))/9*(parseInt(t(326))/10)+-parseInt(t(323))/11*(parseInt(t(325))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const Hn=qn(303),Qn={toDataURL:t=>{const e=qn;return typeof t===e(286)&&t[e(295)](e(285))?Promise[e(309)](t):new Promise(((n,r)=>{const s=e;if("string"==typeof t){const e=new XMLHttpRequest,i=()=>{e[zn(301)]()};e[s(322)]=()=>{const t=s;if(e.status<200||e[t(318)]>=300)return i(),void r(new Error("Failed to load image: "+e.statusText));const o=new FileReader;o[t(324)]=()=>{const e=t;i(),n(o[e(327)])},o[t(304)]=()=>{const e=t;i(),r(new Error(e(317)))},o[t(291)](e[t(308)])},e[s(304)]=e[s(307)]=e[s(321)]=()=>{i(),r(new Error("Image load aborted or failed"))};try{e[s(287)](s(302),t,!0),e[s(313)]=s(315),e.timeout=1e4,e[s(300)]()}catch(t){i(),r(t)}}else{const e=new FileReader;e[s(324)]=()=>{n(e.result)},e[s(304)]=()=>{r(new Error(s(316)))},e.readAsDataURL(t)}})).catch((t=>{const n=e;return console[n(293)](n(290),t),Hn}))},getSize:(t,e)=>new Promise(((n,r)=>{const s=qn,i=new Image,o=setTimeout((()=>{r(new Error(zn(306)))}),15e3);"string"==typeof e&&(i[s(299)]=e);const a=()=>{const t=s;clearTimeout(o),i[t(322)]=i[t(304)]=i[t(321)]=null,i[t(298)]=t(310)};i[s(322)]=()=>{const t=s;a(),n({width:i[t(294)],height:i.height})},i[s(304)]=i[s(321)]=()=>{a(),r(new Error("Failed to load image"))};try{typeof t===s(286)?i[s(298)]=t:Qn[s(311)](t).then((t=>{const e=s;t?i[e(298)]=t:r(new Error(e(312)))}))[s(305)](r)}catch(t){a(),r(t)}}))[qn(305)]((t=>{const e=qn;return console[e(293)](e(292),t),{width:200,height:200}}))};function _n(){const t=["padStart","5557930UqxmUA","slice","265949pInELx","trim","991000gmfhGC","2771152VTMxCM","toLowerCase","1406622avuvLy","length","max","1960861WolAvT","join","1876246wKddgY","18zVDzOJ","min","split","pop","map","exec"];return(_n=function(){return t})()}function $n(t,e){const n=_n();return($n=function(t,e){return n[t-=309]})(t,e)}function tr(t){const e=$n;let n,r=[],s=1;if("#"===(t=t[e(323)]())[0]){const n=t[e(318)](1),i=n.length;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(315)](t)))return{value:t,alpha:s};{const t=3;r=n[2][e(320)]()[e(312)](/\s*[,/]\s*|\s+/),r=r[e(314)](((t,n)=>{if("%"===t[t[e(325)]-1]){const e=parseFloat(t)/100;return 3===n?e:255*e}return"none"===t?0:parseFloat(t)})),s=r[e(325)]>t?r[e(313)]():1}}return{value:"#"+r[e(314)]((t=>Math[e(326)](0,Math[e(311)](255,t)).toString(16)[e(316)](2,"0")))[e(328)](""),alpha:Math[e(326)](0,Math[e(311)](1,s))}}function er(t,e){const n=nr();return(er=function(t,e){return n[t-=118]})(t,e)}function nr(){const t=["max","9224005hrYzsr","211881gvdfZs","791419ZjkonC","abs","7040808eMZuwi","ceil","min","round","24268520vsSeIw","6wPKeDB","10187919MuyGnZ","9669114mZMWpN"];return(nr=function(){return t})()}!function(){const t=$n,e=_n();for(;;)try{if(585066===parseInt(t(319))/1+parseInt(t(309))/2+parseInt(t(324))/3+-parseInt(t(322))/4+-parseInt(t(317))/5+-parseInt(t(310))/6*(-parseInt(t(327))/7)+-parseInt(t(321))/8)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),function(){const t=er,e=nr();for(;;)try{if(952072===parseInt(t(126))/1+-parseInt(t(120))/2*(-parseInt(t(125))/3)+parseInt(t(128))/4+-parseInt(t(124))/5+parseInt(t(122))/6+parseInt(t(121))/7+-parseInt(t(119))/8)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const rr=cr;function sr(){const t=["1399045frVUWS","dotsMaskGroup","drawCorners","appendChild","alpha","createMask","mask-light-dot-color-","getPatternPosition","6061500iORjew","round","xlink:href","217UqQkMQ","imageOptions","left","verticalOffset","rect","corners-square-color-","function","_innerQrGroup","createElementNS","roundValue","element","text/xml","document","margin","imageTools","defs","abs","top","hideYDots","value","hls","image","floor","background-color","width","replace","sqrt","inner","qrGroup","drawBackground","translate(","overlay","cornersDotOptions","linearGradient","borderOuter","substring","finalHeight","bottom","min","hasBorder","finalWidth","isResponsive","#fff","_instanceId","4ZSLumd","errorCorrectionPercent","height","number","mask-dot-color-","color","mask-background-color-","max","lightDotsMask","lightDotsMaskGroup","background","base64","tan","drawImage","viewBox","14131152dmiXck","backgroundMask","fill","cornersSquareOptions","The canvas is too small","toString","mode","size","light-dot-color-","828696YrToGk","dotsMask","setAttribute","0 0 ","url(#qr-mask-","scale","find","from","gradientUnits","horizontalOffset","startsWith","backgroundOptions","mask:url(#mask-","forEach","getElementsByTagName","svg","drawDots","dotsOptions","_element","sign","363856WDpXaQ","circle","Element code is not defined","dot-color-","4832540wnbgSd","getElement","data:image/svg+xml;","_hls","http://www.w3.org/2000/svg","thickness","getSize","draw","backgroundMaskGroup","drawQR","visible","#ffffff","274812yfeEEn","rotation","radius","mask","radial","right","colorStops","type","svgSize","offset","length","imageSize","background-color-","borderOptions","gradient","getModuleCount","_maskedQrGroup","utf8","drawBackgroundForBorder","transform","userSpaceOnUse","url(#","toFixed","options","setAttributeNS","shape","isDark","createColor","http://www.w3.org/1999/xlink","indexOf"];return(sr=function(){return t})()}!function(){const t=cr,e=sr();for(;;)try{if(766486===-parseInt(t(518))/1+parseInt(t(494))/2*(-parseInt(t(554))/3)+parseInt(t(542))/4+-parseInt(t(439))/5+parseInt(t(447))/6+parseInt(t(450))/7*(parseInt(t(538))/8)+-parseInt(t(509))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const ir=[[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]],or=[[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 ar{constructor(t){const e=cr;this[e(459)]=t=>{const n=e;return typeof t===n(497)?t:parseInt(t[n(475)]("%",""),10)/100};const n=t[e(463)]||0,r=t[e(434)]===e(539)?.1:.3,{bordersMain:s,bordersOuter:i,bordersInner:o}=t,a=Math[e(488)](t[e(474)],t.height),c=Gt(t[e(422)]?.radius),h=Gt(t[e(422)]?.inner?.[e(411)],c),u=c&&Xt(c)>0?Xt(c)/100*a:0,p=(c&&Xt(h)>0?Xt(h)/100*a:0)??u,l=p>0&&t.borderOptions?.[e(489)]?p*r:0;this[e(545)]=t[e(470)],this[e(490)]=t.width+s[e(452)]+s[e(414)]+i[e(452)]+i.right+o[e(452)]+o[e(414)],this[e(486)]=t[e(496)]+s[e(467)]+s[e(487)]+i[e(467)]+i[e(487)]+o[e(467)]+o.bottom;const f=s[e(452)]+s[e(414)]+i.left+i[e(414)]+o[e(452)]+o.right,d=s[e(467)]+s.bottom+i[e(467)]+i[e(487)]+o.top+o.bottom,I=t[e(422)]?.[e(489)]?this.finalWidth-f-2*i[e(452)]-2*o[e(452)]-o[e(414)]-2*n-l:this.finalWidth-2*n,m=t.borderOptions?.[e(489)]?this[e(486)]-d-2*i.top-2*o.top-o[e(467)]-2*n-l:this[e(486)]-2*n,g=I/t[e(474)],w=m/t[e(496)],y=Math.min(g,w),b=Math[e(488)](Math[e(501)](t[e(523)]??1,0),1.5),k=Math[e(488)](Math.max(t[e(422)]?.inner?.[e(523)]??1,0),1.5),A=t.borderOptions?.inner?.[e(527)]||0,O=t.borderOptions?.[e(477)]?.[e(453)]||0;t[e(523)]=y*b*k||1,this[e(432)]=t,this[e(462)]=t[e(462)],this[e(464)]=t[e(464)]||Qn,this[e(536)]=this[e(462)][e(458)]("http://www.w3.org/2000/svg",e(533));const C=jn(t[e(474)]),S=jn(t[e(496)]);!t[e(491)]&&(this._element[e(520)](e(474),C),this._element[e(520)]("height",S)),this[e(536)][e(520)](e(508),e(521)+C+" "+S),this[e(465)]=this.document[e(458)]("http://www.w3.org/2000/svg",e(465)),this[e(536)][e(442)](this[e(465)]),this[e(457)]=this[e(462)].createElementNS(e(546),"g");let v=(I-t[e(474)]*t.scale)/2+n-A+l/2,Z=(m-t[e(496)]*t.scale)/2+n-O+l/2;if(t[e(422)]?.hasBorder){const n={top:Ht(t[e(422)],e(467)),right:Ht(t[e(422)],"right"),bottom:Qt(t[e(422)],e(487),this._hls),left:Ht(t.borderOptions,"left")},r=t[e(422)].thickness||0,s=t[e(422)][e(484)]?.[e(547)]||0,i=t[e(422)].borderInner?.thickness||0,o=t[e(422)].noBorderThickness||r/4;Z+=((n[e(467)]?r:o)-(n[e(487)]?r:o))/2+s+i+i/2,v+=((n[e(452)]?r:o)-(n[e(414)]?r:o))/2+s+i+i/2}t[e(453)]&&(Z-=t[e(453)]),t[e(527)]&&(v-=t[e(527)]),this[e(493)]=ar.instanceCount++,(1!==t[e(523)]||0!==v||0!==Z)&&this._innerQrGroup[e(520)](e(428),e(480)+v+", "+Z+") scale("+t[e(523)]+")"),this[e(425)]=this[e(462)].createElementNS(e(546),"g"),this[e(425)][e(520)](e(412),e(522)+this._instanceId+")"),this._maskedQrGroup[e(442)](this._innerQrGroup),this[e(536)][e(442)](this[e(425)])}get element(){return this[cr(536)]}get[rr(478)](){const t=rr;return this[t(457)]||this[t(536)]}get[rr(474)](){return this[rr(490)]}get[rr(496)](){return this[rr(486)]}get[rr(417)](){const t=rr;return{width:this.options[t(474)],height:this[t(432)][t(496)]}}[rr(543)](){return this[rr(536)]}async[rr(551)](t){const e=rr,n=t[e(424)](),r=parseInt(((n-17)/4)[e(431)](0),10),s=this.options[e(535)][e(516)];let i={hideXDots:0,hideYDots:0,width:0,height:0};if(this.qr=t,!this[e(432)].borderOptions?.hasBorder&&this.drawBackground(),this.options[e(471)]){const t=await this[e(464)][e(548)](this.options[e(471)],this[e(432)][e(451)].crossOrigin),{imageOptions:o}=this.options;if(this[e(432)].imageOptions[e(515)]==ke[e(504)]){const n=0,r=(this.finalWidth-2*n*s)*o[e(420)],a=(this[e(486)]-2*n*s)*o[e(420)];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(451)][e(420)]*this[e(432)][e(495)],a=ut[e(446)](r),c=Math[e(472)](o*(n*n-192-2*(n-16)-a[e(419)]**2*25));i=function({originalHeight:t,originalWidth:e,maxHiddenDots:n,maxHiddenAxisDots:r,dotSize:s,margin:i}){const o=er,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(123)](1,r-1));const h=Math[o(123)](e,t),u=Math[o(130)](e,t);let p=0,l=(r||n)-2*i;do{const t=p+(l-p)/2;let e=Math.max(1,Math[o(129)](t+2*i));e%2==0&&e++;let r=Math[o(123)](1,Math[o(129)](t*u/h+2*i));r%2==0&&r++,e*r>n?l=t:p=t}while(Math[o(127)](p-l)>.001);const f=p;let d=Math[o(123)](1,Math[o(129)](f+2*i));d%2==0&&d++;let I=Math.max(1,Math[o(129)](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[o(118)](c.y+2*i*s),width:Math[o(118)](c.x+2*i*s),hideYDots:a.y,hideXDots:a.x}}({originalWidth:t[e(474)],originalHeight:t[e(496)],maxHiddenDots:c,maxHiddenAxisDots:n-14,dotSize:s,margin:this.options[e(451)][e(463)]})}}this[e(432)].imageOptions[e(515)]!=ke.overlay&&this[e(432)][e(471)]&&i[e(474)]>0&&i[e(496)]>0&&await this[e(507)]({width:i[e(474)],height:i[e(496)],count:n,dotSize:s}),this[e(534)](((t,r)=>{const s=e;return!(this[s(432)][s(451)][s(515)]==ke.center&&t>=(n-i.hideXDots)/2&&t<(n+i.hideXDots)/2&&r>=(n-i[s(468)])/2&&r<(n+i[s(468)])/2)&&!(t<8&&r<8||t>=n-8&&r<8||r>=n-8&&t<8)})),this.options.imageOptions[e(515)]==ke[e(481)]&&this[e(432)].image&&i.width>0&&i[e(496)]>0&&await this[e(507)]({width:i[e(474)],height:i[e(496)],count:n,dotSize:s}),this.drawCorners()}[rr(479)](){const t=rr,e=this.options;if(this[t(536)]&&e.backgroundOptions){const n=e[t(529)].gradient,r=e[t(529)][t(499)];this[t(436)]({options:n,color:r,additionalRotation:0,x:0,y:0,height:e[t(496)],width:e[t(474)],name:t(421)+this[t(493)]});const s=Math.min(e.width,e[t(496)]),i=this[t(462)][t(458)]("http://www.w3.org/2000/svg",t(454));[this[t(510)],this[t(550)]]=this[t(444)](t(500)+this[t(493)]),this.defs.appendChild(this[t(510)]);const o=e[t(529)]?.[t(448)]||0,a=this.roundValue(o);i[t(520)]("x",jn((e[t(474)]-s)/2)),i[t(520)]("y",jn((e.height-s)/2)),i.setAttribute(t(474),jn(s)),i[t(520)](t(496),jn(s)),i[t(520)]("rx",jn(s/2*a)),this.backgroundMaskGroup[t(442)](i)}}[rr(427)](t,e){const n=rr,r=this[n(432)];if(r.backgroundOptions){const s=r[n(529)].gradient,i=r[n(529)][n(499)]||n(553),o=Math[n(488)](r.width,r.height)-2*t,a=(r[n(474)]-o)/2,c=(r.height-o)/2,h=e-t,u=this.createColor({options:s,borderOptions:r[n(422)],color:i,additionalRotation:0,x:a,y:c,height:o,width:o,name:n(421)+this[n(493)],returnSVGGroup:!0}),p=this[n(462)][n(458)](n(546),n(454));return[this[n(510)],this[n(550)]]=this[n(444)]("mask-background-color-"+this[n(493)]),this[n(465)].appendChild(this[n(510)]),p[n(520)]("x",jn(a)),p.setAttribute("y",jn(c)),p.setAttribute(n(474),jn(o)),p[n(520)](n(496),jn(o)),p[n(520)]("rx",jn(h)),this.backgroundMaskGroup.appendChild(p),u}}[rr(534)](t){const e=rr;if(!this.qr)throw new Error("QR code is not defined");const n=this.options,r=this.qr[e(424)]();if(r>n[e(474)]||r>n.height)throw new Error(e(513));const s=n[e(535)][e(516)];let i=Math[e(488)](n.width,n[e(496)]);n.imageOptions[e(515)]==ke[e(504)]&&(i-=2*s*(n[e(451)][e(463)]||0));const o=Math[e(472)]((n[e(474)]-r*s)/2);let a=Math[e(472)]((n[e(496)]-r*s)/2);if(n[e(418)]){const t=(n[e(496)]-r*s)/2;a+=Math[e(488)](Math.abs(n.offset),t)*Math[e(537)](n[e(418)])}let c=new Fn(n[e(535)].type,this.document);const h=new Fn(he.tinySquare,this[e(462)]),u=new Fn(he.square,this[e(462)]);[this[e(519)],this[e(440)]]=this[e(444)](e(498)+this._instanceId),this[e(465)][e(442)](this[e(519)]),n[e(451)][e(515)]==ke.background&&([this[e(502)],this[e(503)]]=this[e(444)](e(445)+this[e(493)]),this.defs.appendChild(this[e(502)]));let p=0,l=r;n[e(434)]===we[e(539)]?(p=Math[e(472)]((i/s-r-2)/2),l=r+2*p):n[e(451)][e(515)]==ke[e(504)]&&(p=1,l=r+2*p);const f=o-p*s,d=a-p*s,I=f,m=d,g=r+2*p,w=new Array(l),y=Math[e(472)](l/2);for(let s=0;s<l;s++){w[s]=new Array(l);for(let i=0;i<l;i++)if(s>p-1&&s<l-p&&i>p-1&&i<l-p){const n=s-p,r=i-p;t&&!t(n,r)?w[s][i]=void 0:w[s][i]=!!this.qr[e(435)](r,n)}else n[e(434)]===we[e(539)]&&Math[e(476)]((s-y)*(s-y)+(i-y)*(i-y))>y?w[s][i]=void 0:w[s][i]=s!=p-1&&s!=l-p&&i!=p-1&&i!=l-p?this.qr[e(435)](i-2*p<0?i:i>=r?i-2*p:i-p,s-2*p<0?s:s>=r?s-2*p:s-p):(i==p-1&&(s<p+8||s>l-p-9)||i==l-p&&s<p+8||s==p-1&&(i<p+8||i>l-p-9)||s==l-p&&i<p+8)&&void 0}const b=(r-17)/4,k=ut[e(446)](b);for(let t=0;t<l;t++){const n=k[e(524)]((e=>t-p>e-3&&t-p<e+3));for(let r=0;r<l;r++){const i=k[e(524)]((t=>r-p>t-3&&r-p<t+3));null!=w[t][r]&&(this[e(502)]&&(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(549)]({x:f+t*s,y:d+r*s,size:s,getNeighbor:(e,n)=>!0===w[t+e]?.[r+n]}),c.element&&this.dotsMaskGroup&&this[e(440)][e(442)](c[e(460)])):this[e(502)]&&(c[e(549)]({x:f+t*s,y:d+r*s,size:s,getNeighbor:(e,n)=>!1===w[t+e]?.[r+n]}),c.element&&this[e(503)]&&this[e(503)].appendChild(c[e(460)])))}}this[e(502)]&&this[e(436)]({options:n[e(451)].fill?.[e(423)],color:n[e(451)][e(511)]?.[e(499)],additionalRotation:0,x:I,y:m,height:g*s,width:g*s,name:e(517)+this[e(493)]}),this.createColor({options:n.dotsOptions?.[e(423)],color:n.dotsOptions.color,additionalRotation:0,x:I,y:m,height:g*s,width:g*s,name:e(541)+this[e(493)]})}[rr(441)](){const t=rr;if(!this.qr)throw new Error("QR code is not defined");const e=this.qrGroup,n=this[t(432)];if(!e)throw new Error(t(540));const r=this.qr[t(424)](),s=n[t(535)][t(516)],i=7*s,o=3*s,a=Math[t(472)]((n.width-r*s)/2);let c=Math[t(472)]((n[t(496)]-r*s)/2);if(n[t(418)]){const e=(n.height-r*s)/2,i=Math[t(488)](Math[t(466)](n.offset),e)*Math[t(537)](n.offset);c+=i}[[0,0,0],[1,0,Math.PI/2],[0,1,-Math.PI/2]][t(531)]((([e,h,u])=>{const p=t,l=a+e*s*(r-7),f=c+h*s*(r-7);let d=this[p(519)],I=this[p(440)],m=this[p(519)],g=this[p(440)];if((n[p(512)]?.[p(423)]||n[p(512)]?.[p(499)])&&([d,I]=this[p(444)]("mask-corners-square-color-"+e+"-"+h+"-"+this[p(493)]),this[p(465)].appendChild(d),m=d,g=I,this[p(436)]({options:n[p(512)]?.[p(423)],color:n[p(512)]?.color,additionalRotation:u,x:l,y:f,height:i,width:i,name:p(455)+e+"-"+h+"-"+this[p(493)]})),n.cornersSquareOptions?.type){const t=new Pn(n[p(512)][p(416)],this[p(462)]);t[p(549)]({x:l,y:f,size:i,rotation:u}),t[p(460)]&&I&&I[p(442)](t[p(460)]),t.fill&&this[p(503)]&&this[p(503)][p(442)](t[p(511)])}else{const t=new Fn(n[p(535)][p(416)],this.document);for(let e=0;e<ir[p(419)];e++)for(let n=0;n<ir[e][p(419)];n++)ir[e]?.[n]?(t[p(549)]({x:l+e*s,y:f+n*s,size:s,getNeighbor:(t,r)=>!!ir[e+t]?.[n+r]}),t[p(460)]&&I&&I[p(442)](t.element)):this[p(502)]&&!or[e]?.[n]&&(t.draw({x:l+e*s,y:f+n*s,size:s,getNeighbor:(t,r)=>!ir[e+t]?.[n+r]&&!or[e+t]?.[n+r]}),t[p(460)]&&this[p(503)]&&this.lightDotsMaskGroup[p(442)](t[p(460)]));if(this.lightDotsMask)for(let e=-1;e<8;e++)for(let n=-1;n<8;n++)(-1==e||7==e||-1==n||7==n)&&(t[p(549)]({x:l+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.element&&this[p(503)]&&this[p(503)].appendChild(t[p(460)]))}if((n[p(482)]?.[p(423)]||n[p(482)]?.[p(499)])&&([m,g]=this[p(444)]("mask-corners-dot-color-"+e+"-"+h+"-"+this[p(493)]),this[p(465)].appendChild(m),this[p(436)]({options:n.cornersDotOptions?.gradient,color:n[p(482)]?.[p(499)],additionalRotation:u,x:l+2*s,y:f+2*s,height:o,width:o,name:"corners-dot-color-"+e+"-"+h+"-"+this[p(493)]})),n[p(482)]?.type){const t=new Un(n[p(482)][p(416)],this[p(462)]);t[p(549)]({x:l+2*s,y:f+2*s,size:o,rotation:u}),t[p(460)]&&g&&g[p(442)](t[p(460)])}else{const t=new Fn(n[p(535)][p(416)],this.document);for(let e=0;e<or.length;e++)for(let n=0;n<or[e][p(419)];n++)or[e]?.[n]&&(t.draw({x:l+e*s,y:f+n*s,size:s,getNeighbor:(t,r)=>!!or[e+t]?.[n+r]}),t.element&&g&&g.appendChild(t.element))}}))}async[rr(507)]({width:t,height:e,count:n,dotSize:r}){const s=rr,i=this.options,o=Math.floor((i[s(474)]-n*r)/2);let a=Math[s(472)]((i[s(496)]-n*r)/2);if(i[s(418)]){const t=(i.height-n*r)/2;a+=Math[s(488)](Math[s(466)](i[s(418)]),t)*Math[s(537)](i[s(418)])}let c=i[s(451)][s(463)]*r;i[s(451)][s(515)]==ke.background&&(c=0);const h=o+c+(n*r-t)/2,u=a+c+(n*r-e)/2,p=t-2*c,l=e-2*c,f=await this[s(464)].toDataURL(i[s(471)]||"");let d=this[s(462)][s(458)](s(546),s(471));if(d[s(433)](s(437),s(449),f||""),f?.[s(528)](s(544))){let t=f[s(485)](19);const e=t[s(438)](","),n=t[s(485)](0,e);if(t=t[s(485)](e+1),n===s(505))t=typeof atob==s(456)?atob(t):Buffer[s(525)](t,s(505))[s(514)](s(426));else t="";if(t){const e=(new DOMParser).parseFromString(t,s(461)),n=Array[s(525)](e[s(532)]("svg"));n[s(419)]&&(d=n[0],d.setAttribute("overflow",s(552)))}}d&&f&&(d[s(520)]("x",jn(h)),d.setAttribute("y",jn(u)),d[s(520)]("width",jn(p)+"px"),d.setAttribute(s(496),jn(l)+"px"),this[s(478)][s(442)](d))}[rr(436)]({options:t,borderOptions:e,color:n,additionalRotation:r,x:s,y:i,height:o,width:a,name:c,returnSVGGroup:h=!1}){const u=rr,p=a>o?a:o,l=this[u(462)][u(458)]("http://www.w3.org/2000/svg",u(454));if(l.setAttribute("x",jn(s)),l[u(520)]("y",jn(i)),l[u(520)](u(496),jn(o)),l[u(520)](u(474),jn(a)),l[u(520)]("style",u(530)+c+"-"+this[u(493)]+")"),t){let n;if(t[u(416)]===oe[u(413)]){n=this[u(462)][u(458)](u(546),"radialGradient"),n[u(520)]("id",c+"-"+this[u(493)]),n[u(520)](u(526),u(429));let t=s+a/2,r=i+o/2;if(e){const n=e[u(547)]/2,c=2;Ht(e,u(467))&&!Qt(e,u(487),this._hls)?r=i+n*c+o/2:!Ht(e,u(467))&&Qt(e,u(487),this._hls)&&(r=i-n*c+o/2),Ht(e,"right")&&!Ht(e,"left")?t=s-n*c+a/2:!Ht(e,u(414))&&Ht(e,u(452))&&(t=s+n*c+a/2)}n.setAttribute("fx",jn(t)),n[u(520)]("fy",jn(r)),n[u(520)]("cx",jn(s+a/2)),n[u(520)]("cy",jn(i+o/2)),n[u(520)]("r",jn(p/2))}else{const e=((t[u(410)]||0)+r)%(2*Math.PI),h=(e+2*Math.PI)%(2*Math.PI);let p=s+a/2,l=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?(p-=a/2,l-=o/2*Math.tan(e),f+=a/2,d+=o/2*Math[u(506)](e)):h>.25*Math.PI&&h<=.75*Math.PI?(l-=o/2,p-=a/2/Math[u(506)](e),d+=o/2,f+=a/2/Math[u(506)](e)):h>.75*Math.PI&&h<=1.25*Math.PI?(p+=a/2,l+=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&&(l+=o/2,p+=a/2/Math[u(506)](e),d-=o/2,f-=a/2/Math[u(506)](e)),n=this[u(462)].createElementNS(u(546),u(483)),n[u(520)]("id",c+"-"+this[u(493)]),n[u(520)]("gradientUnits",u(429)),n.setAttribute("x1",jn(p)),n.setAttribute("y1",jn(l)),n[u(520)]("x2",jn(f)),n[u(520)]("y2",jn(d))}t[u(415)].forEach((t=>{const e=u,r=this[e(462)].createElementNS("http://www.w3.org/2000/svg","stop");r[e(520)](e(418),jn(100*t[e(418)])+"%");const s=tr(t[e(499)]);r.setAttribute("stop-color",s.value),s[e(443)]<1&&r.setAttribute("stop-opacity",s[e(443)].toFixed(7)),n[e(442)](r)})),l.setAttribute("fill",u(430)+c+"-"+this[u(493)]+")"),this[u(465)][u(442)](n)}else if(n){const t=tr(n);l[u(520)]("fill",t[u(469)]),t.alpha<1&&l[u(520)]("opacity",t[u(443)][u(431)](7))}if(h)return l;c[u(528)](u(473))?this[u(536)].insertBefore(l,this[u(425)]):this[u(478)][u(442)](l)}[rr(444)](t){const e=rr,n=t+"-"+this[e(493)],r=this[e(432)],s=this[e(462)][e(458)](e(546),e(412));s[e(520)]("id",n),s[e(520)]("maskUnits",e(429)),s[e(520)]("x","0"),s[e(520)]("y","0"),s[e(520)](e(474),jn(r[e(474)])),s[e(520)](e(496),jn(r[e(496)]));const i=this[e(462)].createElementNS(e(546),"g");return i.setAttribute(e(511),e(492)),s.appendChild(i),[s,i]}}function cr(t,e){const n=sr();return(cr=function(t,e){return n[t-=410]})(t,e)}ar.instanceCount=0;const hr=ur;function ur(t,e){const n=fr();return(ur=function(t,e){return n[t-=277]})(t,e)}var pr;!function(){const t=ur,e=fr();for(;;)try{if(336530===parseInt(t(328))/1+parseInt(t(311))/2*(-parseInt(t(385))/3)+-parseInt(t(316))/4*(parseInt(t(393))/5)+-parseInt(t(375))/6+-parseInt(t(360))/7*(parseInt(t(300))/8)+parseInt(t(290))/9+parseInt(t(345))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),function(t){const e=ur;t[e(394)]=e(394),t[e(351)]=e(351),t.jpeg="jpeg",t[e(296)]="webp"}(pr||(pr={})),Object[hr(397)](kt.stringToBytesFuncs,St);let lr=class t{get[hr(329)](){const t=hr;return this[t(318)]?{width:this[t(318)][t(353)],height:this[t(318)][t(363)]}:void 0}constructor(e){const n=hr,r=e;let s=yn;if(t._selectedTemplate)if("string"==typeof t[n(305)]){const e=t[n(305)];Cn[e]?s=Cn[e]:console[n(356)](n(379)+e+'" not found. Using default.')}else s=t._selectedTemplate;const i=Rt(s,r),{warnings:o,validatedOptions:a}=Mn(i);this[n(330)]=Me(a),o[n(395)]>0&&this[n(324)](n(392),o),this[n(371)]()}static[hr(301)](e){const n=hr;return typeof e===n(294)?Cn[e]?t[n(305)]=e:(console[n(356)](n(379)+e+'" not found. Resetting to default template.'),t[n(305)]=yn):t[n(305)]=e,t}async update(t){const e=hr;this.container&&(this[e(398)][e(364)]="");const{warnings:n}=Mn(t||this[e(330)]);if(n.length>0&&this[e(324)](e(313),n),this[e(330)]=t?Me(Rt(this[e(330)],t)):this[e(330)],!this[e(330)][e(388)])return;this[e(330)][e(319)]&&(Object.assign(kt.stringToBytesFuncs,this[e(330)].stringToBytesFuncs),delete this[e(330)][e(319)]),this.qr=new kt(this[e(330)][e(295)][e(283)],this[e(330)].qrOptions[e(376)]);const r=this[e(330)][e(295)][e(286)]||function(t){const e=Ee;switch(!0){case/^[0-9]*$/[e(176)](t):return bt[e(173)];case/^[0-9A-Z $%*+\-./:]*$/[e(176)](t):return bt[e(167)];case/[^\u0000-\u00ff]/[e(176)](t):return bt.unicode;default:return bt[e(178)]}}(this.options[e(388)]);this.qr[e(341)](this[e(330)].data,r),this.qr[e(386)](),await this[e(333)](),this[e(314)](this[e(398)])}[hr(314)](t){const e=hr;if(t)return this[e(318)]?.[e(282)]&&t[e(369)](this[e(318)][e(282)]),this[e(398)]=t,this}async[hr(361)](t){const e=hr;if(!t)throw new Error(e(327));this.extension=t,await this[e(371)]()}async[hr(287)](){this.extension=void 0,await this.update()}async[hr(277)](t=!1){const e=hr;if(!this.qr)throw new Error(e(307));if(!this.qrSVG?.[e(282)]&&await this[e(333)](),this[e(293)]&&await this[e(293)],!this[e(318)]?.element)return;let n=this[e(318)][e(282)];if(t){const t=this[e(318)][e(282)][e(299)](!0);t[e(312)].filter=e(342),n=t}let r=(new XMLSerializer)[e(359)](n);return r=e(322)+r,r}async[hr(333)](){const t=hr;if(!this.qr)return;let e=this.qr.getModuleCount();this[t(330)].imageOptions[t(286)]===ke[t(304)]&&this[t(330)].shape!==we[t(289)]&&(e+=2);let n=Math[t(400)]((this[t(330)][t(372)]===we[t(289)]?Math[t(387)](1.8):1.1)*e);n%2==0&&(n-=1);let r=0;this[t(330)].imageOptions[t(286)]===ke.background&&(r+=this[t(330)].imageOptions[t(298)]||0);const s=Math.ceil(this.options[t(355)].size*(n+2*r)),i=this.options[t(365)];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},p=i?.[t(278)]||i?.[t(370)]?i.thickness/4:0;if(i?.[t(291)]){const e=i[t(346)]?.thickness?2*i[t(346)]?.[t(370)]:0,n=i.borderInner?.[t(370)]?2*i[t(399)]?.[t(370)]:0;e>0&&(h[t(326)]=e/2,h.bottom=e/2,h[t(352)]=e/2,h[t(279)]=e/2),n>0&&(u[t(326)]=n/2,u[t(344)]=n/2,u[t(352)]=n/2,u[t(279)]=n/2),Ht(i,"left")?(c[t(352)]=i.thickness,o+=i[t(370)]):(c[t(352)]=p,o+=p),Ht(i,t(279))?(c[t(279)]=i.thickness,o+=i.thickness):(c[t(279)]=p,o+=p),Ht(i,t(326))?(c[t(326)]=i[t(370)],a+=i[t(370)]):(c[t(326)]=p,a+=p),Qt(i,"bottom",this[t(343)]())?(c[t(344)]=i[t(370)],a+=i.thickness):(c[t(344)]=p,a+=p)}const l=s+o,f=s+a;this[t(318)]=new ar({...this.options,width:l,height:f,bordersMain:c,bordersOuter:h,bordersInner:u,errorCorrectionPercent:Re[this.options.qrOptions[t(376)]],hls:this._hls()}),this[t(293)]=this[t(318)][t(288)](this.qr)[t(350)]((()=>{const e=t;this[e(318)]?.element&&(this.options[e(284)]=this[e(318)][e(368)],this[e(330)][e(365)]?.[e(291)]&&se(this[e(330)][e(365)])(this[e(318)][e(282)],this[e(330)],s,this[e(318)].drawBackgroundForBorder.bind(this[e(318)]),c,h,u,p,this._hls),this[e(297)]?.(this.qrSVG[e(282)],this[e(330)]))}))[t(317)]((t=>{console.error(t)}))}async[hr(384)](t){const e=hr,{width:n=300,height:r=300}=this.qrSVG?.[e(402)]??t??f,s=n,i=r,o=document[e(321)]("canvas");o[e(353)]=s,o[e(363)]=i;const a=await this[e(277)]();if(!a)throw new Error(e(348));const c=btoa(a),h=e(332)+c;return new Promise(((t,n)=>{const r=e,a=new Image;a[r(353)]=s,a.height=i,a[r(340)]=r(354),a[r(338)]=()=>{const e=r,c=o[e(381)]("2d");if(!c)return n(new Error(e(292)));c.drawImage(a,0,0,s,i),t(o)},a.onerror=a.onabort=n,a[r(303)]=h}))}async[hr(380)](t){const e=hr,{width:n=300,height:r=300}=this[e(318)]?.[e(402)]??t??f,s=1*n,i=1*r,o=document.createElement("canvas");o.width=s,o[e(363)]=i;const a=(async()=>{const t=e;try{const e=await this[t(277)]();if(!e)return void console.warn(t(306));const a="data:image/svg+xml;base64,"+btoa(e),c=new Image;c[t(353)]=s,c[t(363)]=i,await new Promise(((e,h)=>{const u=t;c[u(338)]=()=>{const t=u,a=Math[t(400)](2*Math[t(391)](n,r)/Math[t(391)](c[t(353)],c[t(363)]));let p;try{p=new OffscreenCanvas(c[t(353)]*a*2,c[t(363)]*a*2)}catch(e){p=document[t(321)]("canvas"),p.width=c[t(353)]*a*2,p[t(363)]=c[t(363)]*a*2}const l=p[t(381)]("2d");if(!l)return h(new Error("Could not get OffscreenCanvas 2D context"));l[t(302)](c,0,0,p.width,p[t(363)]);const f=o[t(381)]("2d");if(!f)return h(new Error(t(292)));f[t(302)](p,0,0,p[t(353)],p[t(363)],0,0,s,i),e()},c[u(336)]=t=>h(new Error(u(315)+t)),c[u(362)]=()=>h(new Error("Image load aborted")),c[u(303)]=a}))}catch(e){throw console[t(331)]("Error drawing to canvas:",e),e}})();return{canvas:o,canvasDrawingPromise:a}}[hr(285)](t,e){const n=hr,r=document.createElement("a");r[n(378)]=e,r[n(308)]=t,document[n(325)][n(369)](r),r[n(323)](),document[n(325)][n(334)](r)}async[hr(378)](t,e){const n=hr;if(typeof Blob===n(280))throw new Error(n(349));let r=pr[n(351)],s="qr";if(t&&(t[n(390)]&&(s=t[n(390)]),t[n(297)]&&(r=t.extension)),r.toLowerCase()===n(394)){const t=await this.serialize();if(!t)return;const e="data:image/svg+xml;charset=utf-8,"+encodeURIComponent(t);this[n(285)](e,s+".svg")}else{const t=await this[n(380)](e);if(!t)return;const{canvas:i,canvasDrawingPromise:o}=t;await o;const a=i[n(401)](n(367)+r);this.downloadURI(a,s+"."+r)}}async[hr(310)](t){const e=hr,{width:n=300,height:r=300}=this[e(318)]?.[e(402)]??t??f,s=document[e(321)](e(335));s.width=n,s[e(363)]=r;const i=await this.serialize();if(!i)throw new Error(e(348));const o=btoa(Array[e(383)]((new TextEncoder)[e(281)](i)).map((t=>String[e(389)](t)))[e(320)]("")),a=e(332)+o;return new Promise(((t,i)=>{const o=e,c=new Image;c[o(353)]=n,c[o(363)]=r,c[o(340)]=o(354),c[o(338)]=()=>{const e=o,a=s.getContext("2d");if(!a)return i(new Error(e(292)));a[e(374)]=!1,a[e(302)](c,0,0,n,r),this[e(382)](s),t(s)},c.onerror=t=>i(new Error(o(315)+t)),c.onabort=()=>i(new Error("Image load aborted")),c[o(303)]=a}))}[hr(382)](t){const e=hr,n=t[e(381)]("2d");if(!n)return;const r=n[e(357)](0,0,t[e(353)],t[e(363)]),s=r.data;for(let t=0;t<s[e(395)];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(337)](r,0,0)}[hr(343)](){return!1}_logValidationWarnings(t,e){const n=hr;console[n(356)](t),e[n(373)]((t=>{const e=n;console[e(356)](e(309)+t[e(358)]+e(396)+t[e(366)]+e(377)+t[e(347)])}))}};function fr(){const t=["toDataURL","svgSize","serialize","noBorderThickness","right","undefined","encode","element","typeNumber","instanceId","downloadURI","mode","deleteExtension","drawQR","circle","1224630dKRomj","hasBorder","Could not get canvas 2D context","svgDrawingPromise","string","qrOptions","webp","extension","margin","cloneNode","990744wWFgUg","setTemplate","drawImage","src","background","_selectedTemplate","SVG serialization returned empty.","QR code is empty","href","option: ","createOptimizedQRCanvas","28BXbOVa","style","QR Code JS Options Update Validation Warnings:","append","Image load error: ","17088oGrlNw","catch","qrSVG","stringToBytesFuncs","join","createElement",'<?xml version="1.0" standalone="no"?>\r\n',"click","_logValidationWarnings","body","top","Extension function should be defined.","326398zSvaWA","size","options","error","data:image/svg+xml;base64,","_setupSvgAsync","removeChild","canvas","onerror","putImageData","onload","0.8.24","crossOrigin","addData","invert(1)","_hls","bottom","11368130OzqxYF","borderOuter","message","Failed to serialize SVG.","Cannot download in Node.js environment","then","png","left","width","Anonymous","dotsOptions","warn","getImageData","path","serializeToString","14gEgBAC","applyExtension","onabort","height","innerHTML","borderOptions","value","image/","_instanceId","appendChild","thickness","update","shape","forEach","imageSmoothingEnabled","2444970aKPVSS","errorCorrectionLevel","' : ","download",'QR Code template "',"drawToCanvas","getContext","applyQRThreshold","from","_drawToCanvasForValidation","105477lyBjXI","make","sqrt","data","fromCharCode","name","max","QR Code Options Validation Warnings:","135YRayHj","svg","length"," - '","assign","container","borderInner","ceil"];return(fr=function(){return t})()}lr.version=hr(339),lr._selectedTemplate=null;const dr=gr;function Ir(){const t=["1698823XwJUrj","40221NeOxHv","186560crjdAP","435332KTQXeM","5752mudfCx","sub","6awGeAB","string","RS256","-----BEGIN PUBLIC KEY----- MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0ZCmxp1vq4LJLviS9d2u Y5V9IykLzCrNcj8fCenqEyir5b4+FGE3hvLqp9zT+IYRF2cV2K0aGe9G0COFZsX2 E5ye1DguyvPQgRMPO8y7bxXJ3da1IP7Gs+/3gy4iuzRV4Uhy73jUVpqE/zZ2JAv/ sY36Rxmq4h7YE/F6YQk3DeZvnHjS7spUlp/+d3W67G8v2jiYWy3pO08Sn0rF2cjg XrJA5jcNr7ksER7AQcwayaLT4rAV4+EOcDYXL2egnqoTEmRzQYD2ReHBsO6jB0Ud bmsNepxbBdq/fBr+5HNj2tUJItarfH3BUVRFu/L1xP8wOEQa8wmPRwrJdPsI3bdk 7QIDAQAB -----END PUBLIC KEY-----","4704105OefjMv","6365280zWVLCt","5813763fArbxQ"];return(Ir=function(){return t})()}!function(){const t=gr,e=Ir();for(;;)try{if(970928===-parseInt(t(211))/1+-parseInt(t(210))/2+parseInt(t(207))/3+parseInt(t(206))/4+parseInt(t(205))/5+-parseInt(t(214))/6*(-parseInt(t(208))/7)+parseInt(t(212))/8*(-parseInt(t(209))/9))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const mr=dr(204);function gr(t,e){const n=Ir();return(gr=function(t,e){return n[t-=203]})(t,e)}const wr=yr;function yr(t,e){const n=br();return(yr=function(t,e){return n[t-=417]})(t,e)}function br(){const t=["json","Failed to fetch token: ","_hls","LicenseManagerNode: URL provided to setDefaultLicenseApiUrl does not appear to be absolute. Relative URLs may not work reliably server-side.","_validateAndStoreToken","License fetcher failed: ","LicenseManagerNode: Auto-refresh attempt failed: ","Invalid token string provided to activateWithToken().","key","4eErVQG","33406QkfZjZ","_performInitialization","LicenseManagerNode: Failed to fetch license token for key ","290094qezslG","_isInitialized","_decodedToken","startsWith","configureLicenseFetcher","licenseKey","_licenseKey","setDefaultLicenseApiUrl","token","_storedKey","activateWithKey","resetLicenseState","resetInitialization","activateWithToken","410903hlwQuz","/api/get-token","message","isInitialized","LicenseManagerNode: Invalid URL provided to setDefaultLicenseApiUrl.","_storedToken","instance","Invalid license key provided to activateWithKey().","2473866TtFpal","resolve","application/json","LicenseManagerNode: Default fetcher failed: ","hls","stringify","POST","LicenseManagerNode: Cached token validation failed. Attempting to fetch a new token...","isValid","1567130pPiFis","LicenseManagerNode: Fetched token for key ","LicenseManagerNode: Stored license token failed validation during initialization.","http://","status","18jVAaKO","function","937832VZWVzI","2966586CjhTKD","https://","_defaultLicenseApiUrl","20ZYkNoh","license","text","_instance","LicenseManagerNode: Cannot refresh token: No license key found in storage.","string","error","_setStoredLicenseData","_licenseFetcher","_initPromise","warn","_getStoredLicenseData"];return(br=function(){return t})()}!function(){const t=yr,e=br();for(;;)try{if(261397===-parseInt(t(481))/1+parseInt(t(464))/2*(parseInt(t(436))/3)+parseInt(t(463))/4*(-parseInt(t(431))/5)+parseInt(t(439))/6+-parseInt(t(467))/7+-parseInt(t(438))/8+parseInt(t(422))/9*(parseInt(t(442))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class kr{constructor(){const t=yr;this[t(456)]=!1,this[t(469)]=null,this[t(473)]=null,this[t(419)]=null,this[t(476)]=null,this[t(468)]=!1,this[t(451)]=null,this._licenseFetcher=async e=>{const n=t,r=kr[n(441)];if(!r)throw new Error("LicenseManagerNode: API URL not set. Call LicenseManagerNode.setDefaultLicenseApiUrl() with an absolute URL.");try{const t=await fetch(r,{method:n(428),headers:{"Content-Type":n(424)},body:JSON[n(427)]({licenseKey:e})});if(!t.ok){let e={};try{e=await t[n(454)]()}catch(t){}throw new Error(n(455)+t[n(435)]+" "+(e?.[n(448)]||t.statusText))}const s=await t[n(444)]();if(!s)throw new Error("Fetched token is empty.");return s}catch(t){throw console[n(448)](n(425)+t[n(483)]),new Error(n(459)+t[n(483)])}}}static get[wr(420)](){const t=wr;return!kr[t(445)]&&(kr[t(445)]=new kr),kr[t(445)]}static[wr(474)](t){const e=wr;typeof t===e(447)&&t?(!t[e(470)](e(434))&&!t[e(470)](e(440))&&console.warn(e(457)),kr[e(441)]=t):console[e(452)](e(418))}get[wr(426)](){return this[wr(456)]}get[wr(417)](){return this._isInitialized}getLicenseDetails(){const t=wr;return this[t(456)]?this[t(469)]:null}get[wr(472)](){return this._licenseKey}[wr(471)](t){const e=wr;if(typeof t!==e(437))throw new Error("License fetcher must be a function that accepts a license key string and returns a Promise<string>.");this[e(450)]=t,this[e(479)](),this[e(478)]()}async initialize(){const t=wr;return this[t(468)]&&this[t(451)]||!this._initPromise&&(this[t(451)]=this[t(465)]()),this[t(451)]}async[wr(465)](){const t=wr;if(this[t(456)])return this._isInitialized=!0,!0;this.resetLicenseState();const e=this[t(453)](),n=e[t(475)]||null,r=e.key||null;if(this[t(473)]=r,!n)return this[t(468)]=!0,!1;const s=await this._validateAndStoreToken(n,r);if(s[t(430)])return this[t(456)]=!0,this._decodedToken=s[t(443)],this._isInitialized=!0,!0;if(console.warn(t(433)),!r)return console[t(452)](t(446)),this[t(468)]=!0,!1;console.warn("LicenseManagerNode: Attempting to refresh token using stored license key...");try{const e=await this[t(477)](r);return this[t(468)]=!0,e.isValid}catch(e){return console.error(t(460)+e[t(483)]),this._licenseKey=r,this._isInitialized=!0,!1}}[wr(479)](){const t=wr;this._isInitialized=!1,this[t(451)]=null}[wr(478)](){const t=wr;this._hls=!1,this[t(469)]=null,this[t(473)]=null,this[t(419)]=null,this._storedKey=null}async[wr(480)](t){const e=wr;let n;return this[e(479)](),null===t?(n=await this[e(458)](null,this._licenseKey),this[e(456)]=!1,this[e(469)]=null):typeof t===e(447)&&t?(n=await this[e(458)](t,null),this[e(456)]=n.isValid,this[e(469)]=n[e(443)],n[e(430)]?this[e(473)]=this[e(453)]()[e(462)]||null:this[e(473)]=null):(console[e(452)](e(461)),n=await this._validateAndStoreToken(null,null),this._hls=!1,this[e(469)]=null,this[e(473)]=null),this[e(468)]=!0,this[e(451)]=Promise.resolve(this[e(456)]),n}async[wr(477)](t){const e=wr;this.resetInitialization();let n={isValid:!1,token:null,license:null};if(t&&"string"==typeof t){this[e(473)]=t;let r=null,s=null;const i=this[e(453)]();if(r=i[e(475)]||null,s=i.key||null,r&&s===t?(n=await this[e(458)](r,t),!n[e(430)]&&console[e(452)](e(429))):(n={isValid:!1,token:null,license:null},r&&s!==t&&console[e(452)]("LicenseManagerNode: Cached token belongs to a different license key. Fetching new token...")),!n[e(430)])try{const r=await this[e(450)](t);n=await this[e(458)](r,t),!n[e(430)]&&console.warn(e(432)+t+" failed validation.")}catch(r){console.warn(e(466)+t+": "+r[e(483)]),await this._validateAndStoreToken(null,t),n={isValid:!1,token:null,license:null}}this[e(456)]=n[e(430)],this[e(469)]=n[e(443)]}else console[e(452)](e(421)),await this[e(458)](null,null),this[e(456)]=!1,this[e(469)]=null,this[e(473)]=null;return this[e(468)]=!0,this[e(451)]=Promise[e(423)](this._hls),n}[wr(453)](){const t=wr;return{token:this[t(419)]??void 0,key:this[t(476)]??void 0}}[wr(449)](t){const e=wr;this[e(419)]=t[e(475)]??null,this[e(476)]=t[e(462)]??null}async[wr(458)](t,e){const n=wr,r=e??this[n(476)]??void 0;if(!t)return this[n(449)]({key:r}),{isValid:!1,token:null,license:null};try{const e=await async function(t){const e=dr;try{const n=await i(mr,"RS256"),{payload:r}=await o(t,n,{algorithms:[e(203)]});if(!r||typeof r[e(213)]!==e(215))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[n(452)]("LicenseManagerNode: License token validation failed: "+e[n(483)]),this._storedToken===t&&this[n(449)]({key:r}),{isValid:!1,token:null,license:null}}}}function Ar(t,e){const n=Cr();return(Ar=function(t,e){return n[t-=321]})(t,e)}kr[wr(445)]=null,kr[wr(441)]=wr(482);const Or=Ar;function Cr(){const t=["Switching to inverted image for next attempt","validate","typeName","58BhNoUh","Image processing error: ","MAX_RETRIES_EXCEEDED","Success"," attempts","1719ZfPPGX","render"," - ","55060usvVlL","sleep","3547030WsTYDb","height","zoom","498WrMNQw","width","93289UoGjij","zbar-wasm library not found. Please ensure @undecaf/zbar-wasm is installed and loaded correctly.","Error decoding QR code: ","debug/qr-attempt-","decode","log","debug","UNKNOWN"," failed: ","maxRetries","NO_BARCODE_DETECTED","[QRValidatorZbarNode] ","VALIDATION_ERROR","8275927JsHLGb","Decoder error:","inverted","write","4068728BZSvSX","data","success","Failed to save debug image: ","Detected: ","Decoder error: ","now","pixels"," pixels","attempts","retryInterval","from","processImageResvg","normal","Attempt ","validateWithRetry","21972pHevBc","length","Failed","24vnHnwM","22006SzHdUI","map","No barcode detected after ","Processed image ","saveDebugImage","format",".png","PROCESSING_ERROR","message","500eEDSxH","decodeQR"];return(Cr=function(){return t})()}!function(){const t=Ar,e=Cr();for(;;)try{if(576562===parseInt(t(370))/1*(parseInt(t(356))/2)+-parseInt(t(352))/3*(parseInt(t(365))/4)+parseInt(t(380))/5+parseInt(t(383))/6*(parseInt(t(385))/7)+-parseInt(t(336))/8+parseInt(t(375))/9*(parseInt(t(378))/10)+parseInt(t(332))/11*(-parseInt(t(355))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Sr{constructor(t={}){const e=Ar;this[e(328)]=t[e(328)]??5,this[e(346)]=t.retryInterval??100,this[e(325)]=t.debug??!1}log(t){const e=Ar;this[e(325)]&&console[e(324)](e(330)+t)}async[Or(368)](t,e=!1){const n=Or;try{if(!h)throw new Error(n(386));return this[n(351)](t,e)}catch(t){return this.log("Validation error: "+(t instanceof Error?t[n(364)]:String(t))),{isValid:!1,error:t instanceof Error?t.message:String(t),errorCode:n(331)}}}[Or(379)](t){return new Promise((e=>setTimeout(e,t)))}async processImageResvg(t,e){const n=Or;try{const r=new c(t,{fitTo:{mode:n(382),value:2}})[n(376)](),s=r[n(384)],i=r.height,o=r[n(343)],a=Buffer[n(347)](o);if(e)for(let t=0;t<a[n(353)];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(371)+(t instanceof Error?t.message:String(t))),t}}async validateWithRetry(t,e){const n=Or;let r=0,s=null;const i=t;let o=!1;do{r++;try{const t=this[n(348)],{imageData:a}=await t(i,e);if(this[n(324)](n(359)+a[n(384)]+"x"+a[n(381)]+n(344)),this[n(325)]&&await this[n(360)](a,n(322)+r+"-"+n(o?334:349)),s=await this[n(366)](a),this.log("Barcode scan attempt "+r+": "+(s[n(338)]?n(373):n(354))),s[n(338)])return s[n(345)]=r,{isValid:!0,data:s.data,format:s[n(361)],attempts:r,isInverted:e}}catch(t){this[n(324)](n(350)+r+n(327)+(t instanceof Error?t.message:String(t))),s={success:!1,error:t instanceof Error?t.message:String(t),errorCode:n(363)}}!e||o?r<this.maxRetries&&await this.sleep(this[n(346)]):(o=!0,this[n(324)](n(367)))}while(r<this[n(328)]);return{isValid:!1,attempts:r,error:n(358)+r+n(374),errorCode:n(372)}}async[Or(360)](t,e){const n=Or;try{const r=new u({data:Buffer[n(347)](t[n(337)]),width:t[n(384)],height:t[n(381)]}),s=e+"-"+Date[n(342)]();await r[n(335)](s+n(362)),this[n(324)]("Debug image saved to: "+s)}catch(t){this[n(324)](n(339)+(t instanceof Error?t[n(364)]:String(t)))}}async[Or(366)](t){const e=Or;try{let n;try{n=await h(t)}catch(t){this[e(324)](e(321)+t)}if(n&&n[e(353)]>0){const t=n[0],r=t[e(323)]();return this[e(324)](e(340)+t[e(369)]+e(377)+r),{success:!0,data:r,format:t[e(369)]||e(326),confidence:.9,count:n[e(353)],allSymbols:n[e(357)]((t=>({data:t[e(323)](),type:t.typeName,points:t.points})))}}return{success:!1,error:"No barcode detected",errorCode:e(329)}}catch(t){return this[e(324)](e(333)),console.error(t instanceof Error?t[e(364)]:String(t)),{success:!1,error:e(341)+(t instanceof Error?t.message:String(t)),errorCode:"DECODER_ERROR"}}}}!function(){const t=Zr,e=Mr();for(;;)try{if(858647===parseInt(t(411))/1*(-parseInt(t(423))/2)+-parseInt(t(402))/3*(-parseInt(t(422))/4)+-parseInt(t(403))/5+-parseInt(t(400))/6+parseInt(t(409))/7+-parseInt(t(418))/8+parseInt(t(421))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();let vr=!1;function Zr(t,e){const n=Mr();return(Zr=function(t,e){return n[t-=396]})(t,e)}function Mr(){const t=["Decoded successfully (inverted).","debug","No text found in normal QR code","timeEnd","[QR Validator]","Inverted SVG","3732624qoaKFi"," decode failed:","validate","40216149XpVQUy","532648wVFwQf","12KJkbvO","name","time","isValid","No text found in inverted QR code","scan-validator","7989492WDtlHV","execute","3CJVyFI","5676675XTJEbB","No svg source","Failed to decode QR code after all attempts.","attempts","data","Normal SVG","2587431kCZidw"," decode...","196519sxnMAp"];return(Mr=function(){return t})()}const Er=t=>{const e=Zr;vr&&console[e(413)](e(416),t)},Tr=new Sr({maxRetries:1,debug:!1,retryInterval:200}),Rr={validateZbar:async(t,e=!1)=>{const n=Zr;vr=e||vr,vr&&console[n(396)](n(399));const r=[{name:n(408),execute:async()=>{const e=n;if(!t)throw new Error(e(404));const r=await Tr[e(420)](t,!1);if(!r[e(397)]||!r[e(407)])throw new Error(e(414));return{isValid:!0,isInverted:!1,decodedText:r[e(407)],message:"Decoded successfully.",attempts:r[e(406)]}}},{name:n(417),execute:async()=>{const e=n;if(!t)throw new Error("No svg source for inverted attempt");const r=await Tr[e(420)](t,!0);if(!r[e(397)]||!r[e(407)])throw new Error(e(398));return{isValid:!0,isInverted:!0,decodedText:r.data,message:e(412),attempts:r[e(406)]}}}];for(const t of r)try{Er("Trying "+t.name+n(410));const e=await t[n(401)]();return vr&&console[n(415)](n(399)),e}catch(e){Er(t[n(424)]+n(419)),Er(e)}return vr&&console[n(415)]("scan-validator"),{isValid:!1,message:n(405)}}};function Wr(){const t=["133WIekDe","352074DYGPIk","6390387RCnbAG","66poXoyo","kind","2601700HkszRh","1444pvnqmV","6179325pgzsEO","12LsXOkB","getKind","8xpZUFI","Exception","1035wIeDtX","22040100bTqetR","constructor","508940JRxiTG"];return(Wr=function(){return t})()}const jr=Br;function Br(t,e){const n=Wr();return(Br=function(t,e){return n[t-=458]})(t,e)}!function(){const t=Br,e=Wr();for(;;)try{if(942786===-parseInt(t(467))/1*(-parseInt(t(461))/2)+parseInt(t(463))/3*(parseInt(t(470))/4)+parseInt(t(462))/5+parseInt(t(472))/6*(-parseInt(t(471))/7)+-parseInt(t(465))/8*(parseInt(t(473))/9)+-parseInt(t(460))/10*(parseInt(t(458))/11)+parseInt(t(468))/12)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Yr extends p{constructor(t=void 0){super(t),this.message=t}[jr(464)](){const t=jr;return this[t(469)][t(459)]}}Yr[jr(459)]=jr(466);var Nr,Vr,Ur,Jr=xr;function xr(t,e){var n=Dr();return(xr=function(t,e){return n[t-=321]})(t,e)}function Dr(){var t=["5DhsKfo","kind","19534570kvEAYD","2866857bdfaIu","62aCCcaz","1284729Csxqtj","14553FoYxKv","NotFoundException","531cSIAmB","1017124omfmLV","78670vbmyDK","3449608DeoVTK","6SuGQox"];return(Dr=function(){return t})()}!function(){for(var t=xr,e=Dr();;)try{if(239584===parseInt(t(322))/1*(parseInt(t(333))/2)+-parseInt(t(321))/3+-parseInt(t(325))/4*(parseInt(t(329))/5)+-parseInt(t(328))/6*(parseInt(t(332))/7)+-parseInt(t(327))/8+-parseInt(t(324))/9*(parseInt(t(326))/10)+parseInt(t(331))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Pr extends Yr{static getNotFoundInstance(){return new Pr}}function Xr(){var t=["CODE_39","PDF_417","MAXICODE","32122gElYmI","UPC_EAN_EXTENSION","CODABAR","AZTEC","9KRdNFw","5070121OctULv","UPC_E","41383390YXsAal","1511532jERxPv","UPC_A","EAN_13","237CUivZP","DATA_MATRIX","12378376daRlyT","2991330QaeDSB","CODE_93","RSS_EXPANDED","RSS_14","CODE_128","55EuARdK","ITF","QR_CODE","482124KjHTnh"];return(Xr=function(){return t})()}function Gr(t,e){var n=Xr();return(Gr=function(t,e){return n[t-=283]})(t,e)}Pr[Jr(330)]=Jr(323),function(){for(var t=Gr,e=Xr();;)try{if(910784===-parseInt(t(288))/1+-parseInt(t(306))/2*(parseInt(t(291))/3)+parseInt(t(302))/4*(parseInt(t(299))/5)+parseInt(t(294))/6+-parseInt(t(285))/7+-parseInt(t(293))/8+-parseInt(t(284))/9*(-parseInt(t(287))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),(Vr=Nr||(Nr={}))[Vr[(Ur=Gr)(283)]=0]=Ur(283),Vr[Vr.CODABAR=1]=Ur(308),Vr[Vr[Ur(303)]=2]=Ur(303),Vr[Vr[Ur(295)]=3]=Ur(295),Vr[Vr[Ur(298)]=4]=Ur(298),Vr[Vr[Ur(292)]=5]=Ur(292),Vr[Vr.EAN_8=6]="EAN_8",Vr[Vr[Ur(290)]=7]="EAN_13",Vr[Vr[Ur(300)]=8]="ITF",Vr[Vr[Ur(305)]=9]=Ur(305),Vr[Vr[Ur(304)]=10]="PDF_417",Vr[Vr[Ur(301)]=11]=Ur(301),Vr[Vr[Ur(297)]=12]=Ur(297),Vr[Vr.RSS_EXPANDED=13]=Ur(296),Vr[Vr[Ur(289)]=14]="UPC_A",Vr[Vr[Ur(286)]=15]=Ur(286),Vr[Vr.UPC_EAN_EXTENSION=16]=Ur(307);var Fr=Nr;function Lr(t,e){var n=zr();return(Lr=function(t,e){return n[t-=493]})(t,e)}!function(){for(var t=Lr,e=zr();;)try{if(536372===-parseInt(t(501))/1*(parseInt(t(499))/2)+-parseInt(t(493))/3+-parseInt(t(500))/4+-parseInt(t(495))/5*(parseInt(t(496))/6)+-parseInt(t(494))/7*(-parseInt(t(503))/8)+parseInt(t(502))/9*(parseInt(t(497))/10)+parseInt(t(498))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class qr extends Yr{}function zr(){var t=["22249744nUwNDM","2xuKFHJ","1384024uxLTmW","668482pAaUUa","15192wteRJo","31448LduEfZ","64071aKljcs","203RdFcNd","564770HTQwiW","42arsSSu","1340fMcTSe"];return(zr=function(){return t})()}function Kr(){var t=["7997SFFLvd","8ySVeRe","113514jtQsPw","8TdFhcA","2FVWfqJ","6750QZSURl","8070426YkPFQV","4481022dvZtGn","35KfOdDE","1129767DGcHqf","4947804BaUgWV","223280ZxvPGq"];return(Kr=function(){return t})()}qr.kind="IllegalArgumentException",function(){for(var t=Qr,e=Kr();;)try{if(462417===parseInt(t(203))/1*(parseInt(t(198))/2)+parseInt(t(196))/3*(parseInt(t(202))/4)+parseInt(t(195))/5*(parseInt(t(201))/6)+-parseInt(t(206))/7+-parseInt(t(200))/8*(-parseInt(t(205))/9)+-parseInt(t(204))/10*(parseInt(t(199))/11)+-parseInt(t(197))/12)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Hr extends Yr{}function Qr(t,e){var n=Kr();return(Qr=function(t,e){return n[t-=195]})(t,e)}Hr.kind="IndexOutOfBoundsException";var _r=ts;!function(){for(var t=ts,e=es();;)try{if(862737===-parseInt(t(261))/1+parseInt(t(259))/2+parseInt(t(262))/3+-parseInt(t(253))/4+-parseInt(t(260))/5+parseInt(t(258))/6+parseInt(t(257))/7*(parseInt(t(256))/8))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class $r extends Hr{constructor(t,e){var n=ts;super(e),this[n(254)]=t,this.message=e}}function ts(t,e){var n=es();return(ts=function(t,e){return n[t-=253]})(t,e)}function es(){var t=["10997pQotZF","4956534nMmtRT","1515470WCABfw","8106840lrNEkj","24036Zeeojz","429360vpyDdf","808996EhGnTW","index","kind","5008tuUVMb"];return(es=function(){return t})()}$r[_r(255)]="ArrayIndexOutOfBoundsException";var ns=ss;function rs(){var t=["now","287375RZtOYy","441534reqNGU","47698GXetQT","193081buqxas","35tOTLYp","232fvUfFf","3328280uzfnLv","40MEdXVe","1189485IPVOvE","arraycopy","2022966HtxzRn","15zsPnAJ"];return(rs=function(){return t})()}function ss(t,e){var n=rs();return(ss=function(t,e){return n[t-=489]})(t,e)}!function(){for(var t=ss,e=rs();;)try{if(494023===parseInt(t(494))/1+-parseInt(t(496))/2*(parseInt(t(492))/3)+parseInt(t(500))/4+parseInt(t(498))/5*(-parseInt(t(495))/6)+parseInt(t(497))/7*(parseInt(t(499))/8)+-parseInt(t(491))/9*(parseInt(t(501))/10)+parseInt(t(489))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class is{static[ns(490)](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[ns(493)]()}}const os=as;function as(t,e){const n=hs();return(as=function(t,e){return n[t-=199]})(t,e)}!function(){const t=as,e=hs();for(;;)try{if(171664===-parseInt(t(225))/1+-parseInt(t(221))/2+parseInt(t(210))/3+parseInt(t(217))/4+parseInt(t(219))/5+parseInt(t(209))/6+-parseInt(t(214))/7)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class cs{static[os(222)](t,e){for(let n=0,r=t.length;n<r;n++)t[n]=e}static[os(215)](t,e,n,r){const s=os;cs.rangeCheck(t[s(212)],e,n);for(let s=e;s<n;s++)t[s]=r}static[os(203)](t,e,n){const r=os;if(e>n)throw new qr(r(206)+e+r(207)+n+")");if(e<0)throw new $r(e);if(n>t)throw new $r(n)}static asList(...t){return t}static[os(205)](t,e,n){const r=os;return Array[r(223)]({length:t})[r(200)]((t=>Array[r(223)]({length:e}).fill(n)))}static[os(218)](t,e,n){const r=os;return Array[r(223)]({length:t})[r(200)]((t=>Int32Array[r(223)]({length:e}).fill(n)))}static[os(213)](t,e){const n=os;if(!t)return!1;if(!e)return!1;if(!t[n(212)])return!1;if(!e[n(212)])return!1;if(t[n(212)]!==e[n(212)])return!1;for(let r=0,s=t[n(212)];r<s;r++)if(t[r]!==e[r])return!1;return!0}static[os(224)](t){if(null===t)return 0;let e=1;for(const n of t)e=31*e+n;return e}static[os(202)](t,e){const n=os;for(let r=0;r!==t[n(212)];r++)t[r]=e}static copyOf(t,e){return t[os(208)](0,e)}static[os(199)](t,e){const n=os;if(t[n(212)]<=e){const r=new Uint8Array(e);return r[n(211)](t),r}return t[n(208)](0,e)}static[os(204)](t,e,n){const r=os,s=n-e,i=new Int32Array(s);return is[r(201)](t,e,i,0,s),i}static[os(216)](t,e,n){const r=os;void 0===n&&(n=cs[r(220)]);let s=0,i=t[r(212)]-1;for(;s<=i;){const r=i+s>>1,o=n(e,t[r]);if(o>0)s=r+1;else{if(!(o<0))return r;i=r-1}}return-s-1}static[os(220)](t,e){return t-e}}function hs(){const t=["set","length","equals","1357405BngnNQ","fillWithin","binarySearch","122360hdCreV","createInt32Array","1253735jQjGRK","numberComparator","289738JSWJaT","fill","from","hashCode","291981AyPouT","copyOfUint8Array","map","arraycopy","fillUint8Array","rangeCheck","copyOfRange","create","fromIndex(",") > toIndex(","slice","1100076atWSrC","1013238LXMUgS"];return(hs=function(){return t})()}function us(){var t=["900368vwfHzA","POSSIBLE_FORMATS","11635zaclNL","ASSUME_GS1","3pnCZbv","193060yIkaNB","99HVdenc","RETURN_CODABAR_START_END","7PtMPVF","8765RpXZPd","44276hxeSBO","162420rbcEWz","NEED_RESULT_POINT_CALLBACK","2148RALesT","OTHER","TRY_HARDER","CHARACTER_SET","ASSUME_CODE_39_CHECK_DIGIT","ENABLE_CODE_39_EXTENDED_MODE","ALLOWED_LENGTHS","2660ERWBFb","16oWTrAG","1705VqiRKr","354CkMBVA","ALLOWED_EAN_EXTENSIONS"];return(us=function(){return t})()}function ps(t,e){var n=us();return(ps=function(t,e){return n[t-=393]})(t,e)}var ls,fs,ds;!function(){for(var t=ps,e=us();;)try{if(118068===-parseInt(t(394))/1*(parseInt(t(400))/2)+parseInt(t(401))/3*(-parseInt(t(411))/4)+parseInt(t(399))/5*(parseInt(t(413))/6)+parseInt(t(398))/7*(-parseInt(t(415))/8)+parseInt(t(396))/9*(parseInt(t(395))/10)+parseInt(t(412))/11*(parseInt(t(403))/12)+-parseInt(t(417))/13*(-parseInt(t(410))/14))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),fs=ls||(ls={}),ds=ps,fs[fs.OTHER=0]=ds(404),fs[fs.PURE_BARCODE=1]="PURE_BARCODE",fs[fs[ds(416)]=2]=ds(416),fs[fs[ds(405)]=3]="TRY_HARDER",fs[fs[ds(406)]=4]=ds(406),fs[fs[ds(409)]=5]=ds(409),fs[fs[ds(407)]=6]="ASSUME_CODE_39_CHECK_DIGIT",fs[fs[ds(408)]=7]="ENABLE_CODE_39_EXTENDED_MODE",fs[fs[ds(393)]=8]=ds(393),fs[fs[ds(397)]=9]="RETURN_CODABAR_START_END",fs[fs[ds(402)]=10]=ds(402),fs[fs[ds(414)]=11]=ds(414);var Is=ls;function ms(t,e){var n=gs();return(ms=function(t,e){return n[t-=289]})(t,e)}function gs(){var t=["262494SalFHv","176AdfdHX","13232832FKWIJI","997080RIpdzl","113830dXeYKm","568254KWEpDb","36hqZbXM","12wAeFzz","kind","1857650viFZOp","91jzbgbn","2359624pFSZGq","66QDtQld"];return(gs=function(){return t})()}var ws=ms;!function(){for(var t=ms,e=gs();;)try{if(619271===parseInt(t(296))/1+-parseInt(t(300))/2*(parseInt(t(298))/3)+parseInt(t(294))/4*(-parseInt(t(297))/5)+-parseInt(t(293))/6*(-parseInt(t(290))/7)+-parseInt(t(291))/8*(-parseInt(t(299))/9)+parseInt(t(289))/10*(parseInt(t(292))/11)+-parseInt(t(295))/12)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class ys extends Yr{static getFormatInstance(){return new ys}}ys[ws(301)]="FormatException";const bs=Os;var ks;function As(){const t=["Big5","24ZrebBy","windows-1251","number","ISO-8859-3","ISO8859_15","ISO8859_9","get","ISO-8859-1","ISO-8859-15","ISO8859_11","ISO8859_14","UnicodeBigUnmarked","VALUE_IDENTIFIER_TO_ECI","getCharacterSetECIByValue","ISO88591","ISO-8859-8","EUC_KR","ISO88592","from","ISO-8859-4","NAME_TO_ECI","308ExUIYG","incorect value","2OapIas","ISO-8859-2","ISO-8859-13","ISO885916","GB2312","ISO8859_3","getCharacterSetECIByName","ISO8859_4","ISO88597","10770138YHrOxO","Cp1252","106614cWvoln","ISO-8859-6","ISO8859_6","values","ISO8859_8","3194967oANyAE","GB18030","windows-1250","getValueIdentifier","544625QvOQwo","UTF-16BE","ISO88594","8oiCHrZ","windows-1256","VALUES_TO_ECI","valueIdentifier","ISO8859_13","ISO-8859-5","ISO8859_2","ISO8859_10","ASCII","ISO8859_16","7009610Ycsvyh","Cp1256","11966548aNgzGC","length","ISO8859_7","ISO885915","SJIS","ISO88596","GBK","ISO-8859-10","UTF8","8yseqFI","UnicodeBig","ISO88598","ISO885911","Cp1250","set","getName","Cp437","233985kppoUG","Cp1251","ISO8859_5","ISO88599","ISO8859_1","ISO-8859-14","otherEncodingNames","name"];return(As=function(){return t})()}function Os(t,e){const n=As();return(Os=function(t,e){return n[t-=270]})(t,e)}!function(){const t=Os,e=As();for(;;)try{if(618645===parseInt(t(294))/1+-parseInt(t(326))/2*(-parseInt(t(342))/3)+-parseInt(t(349))/4*(-parseInt(t(346))/5)+parseInt(t(337))/6*(parseInt(t(324))/7)+-parseInt(t(286))/8*(-parseInt(t(335))/9)+-parseInt(t(275))/10+parseInt(t(277))/11*(-parseInt(t(303))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),function(t){const e=Os;t[t[e(293)]=0]=e(293),t[t[e(298)]=1]=e(298),t[t[e(271)]=2]=e(271),t[t[e(331)]=3]=e(331),t[t.ISO8859_4=4]=e(333),t[t[e(296)]=5]=e(296),t[t[e(339)]=6]=e(339),t[t[e(279)]=7]=e(279),t[t.ISO8859_8=8]="ISO8859_8",t[t[e(308)]=9]="ISO8859_9",t[t[e(272)]=10]=e(272),t[t[e(312)]=11]=e(312),t[t[e(353)]=12]="ISO8859_13",t[t.ISO8859_14=13]="ISO8859_14",t[t[e(307)]=14]=e(307),t[t[e(274)]=15]=e(274),t[t[e(281)]=16]="SJIS",t[t[e(290)]=17]=e(290),t[t[e(295)]=18]="Cp1251",t[t[e(336)]=19]=e(336),t[t.Cp1256=20]="Cp1256",t[t[e(314)]=21]=e(314),t[t[e(285)]=22]=e(285),t[t[e(273)]=23]=e(273),t[t[e(302)]=24]=e(302),t[t.GB18030=25]=e(343),t[t[e(319)]=26]=e(319)}(ks||(ks={}));class Cs{constructor(t,e,n,...r){const s=Os;this[s(352)]=t,this.name=n,typeof e===s(305)?this.values=Int32Array[s(321)]([e]):this.values=e,this[s(300)]=r,Cs[s(315)].set(t,this),Cs.NAME_TO_ECI[s(291)](n,this);const i=this.values;for(let t=0,e=i[s(278)];t!==e;t++){const e=i[t];Cs[s(351)].set(e,this)}for(const t of r)Cs[s(323)].set(t,this)}[bs(345)](){return this[bs(352)]}[bs(292)](){return this[bs(301)]}getValue(){return this[bs(340)][0]}static[bs(316)](t){const e=bs;if(t<0||t>=900)throw new ys(e(325));const n=Cs.VALUES_TO_ECI[e(309)](t);if(void 0===n)throw new ys("incorect value");return n}static[bs(332)](t){const e=bs,n=Cs[e(323)][e(309)](t);if(void 0===n)throw new ys("incorect value");return n}equals(t){const e=bs;if(!(t instanceof Cs))return!1;const n=t;return this[e(292)]()===n[e(292)]()}}Cs[bs(315)]=new Map,Cs.VALUES_TO_ECI=new Map,Cs[bs(323)]=new Map,Cs[bs(293)]=new Cs(ks[bs(293)],Int32Array[bs(321)]([0,2]),"Cp437"),Cs[bs(298)]=new Cs(ks[bs(298)],Int32Array[bs(321)]([1,3]),bs(310),bs(317),bs(298)),Cs[bs(271)]=new Cs(ks[bs(271)],4,bs(327),bs(320),"ISO8859_2"),Cs[bs(331)]=new Cs(ks[bs(331)],5,bs(306),"ISO88593",bs(331)),Cs[bs(333)]=new Cs(ks.ISO8859_4,6,bs(322),bs(348),bs(333)),Cs[bs(296)]=new Cs(ks.ISO8859_5,7,bs(270),"ISO88595","ISO8859_5"),Cs[bs(339)]=new Cs(ks[bs(339)],8,bs(338),bs(282),bs(339)),Cs[bs(279)]=new Cs(ks.ISO8859_7,9,"ISO-8859-7",bs(334),bs(279)),Cs[bs(341)]=new Cs(ks[bs(341)],10,bs(318),bs(288),bs(341)),Cs[bs(308)]=new Cs(ks[bs(308)],11,"ISO-8859-9",bs(297),bs(308)),Cs[bs(272)]=new Cs(ks[bs(272)],12,bs(284),"ISO885910","ISO8859_10"),Cs[bs(312)]=new Cs(ks.ISO8859_11,13,"ISO-8859-11",bs(289),"ISO8859_11"),Cs[bs(353)]=new Cs(ks.ISO8859_13,15,bs(328),"ISO885913",bs(353)),Cs.ISO8859_14=new Cs(ks[bs(313)],16,bs(299),"ISO885914",bs(313)),Cs[bs(307)]=new Cs(ks[bs(307)],17,bs(311),bs(280),bs(307)),Cs.ISO8859_16=new Cs(ks.ISO8859_16,18,"ISO-8859-16",bs(329),bs(274)),Cs[bs(281)]=new Cs(ks[bs(281)],20,"SJIS","Shift_JIS"),Cs[bs(290)]=new Cs(ks[bs(290)],21,"Cp1250",bs(344)),Cs[bs(295)]=new Cs(ks[bs(295)],22,bs(295),bs(304)),Cs[bs(336)]=new Cs(ks.Cp1252,23,bs(336),"windows-1252"),Cs[bs(276)]=new Cs(ks.Cp1256,24,"Cp1256",bs(350)),Cs.UnicodeBigUnmarked=new Cs(ks.UnicodeBigUnmarked,25,bs(314),bs(347),bs(287)),Cs[bs(285)]=new Cs(ks[bs(285)],26,bs(285),"UTF-8"),Cs[bs(273)]=new Cs(ks[bs(273)],Int32Array[bs(321)]([27,170]),"ASCII","US-ASCII"),Cs[bs(302)]=new Cs(ks[bs(302)],28,bs(302)),Cs[bs(343)]=new Cs(ks.GB18030,29,bs(343),bs(330),"EUC_CN",bs(283)),Cs[bs(319)]=new Cs(ks[bs(319)],30,bs(319),"EUC-KR");var Ss=Zs;function vs(){var t=["525NJkaKN","11619mgUkCH","156yVYWiv","UnsupportedOperationException","19610DMAvUE","331441FUMDkk","114591rFCtpa","kind","2XAgPSh","10mqOCZv","872UIJSXA","100412vseUjc","13470zxYxgN","13MdvNJS","1841208NTHqDP"];return(vs=function(){return t})()}function Zs(t,e){var n=vs();return(Zs=function(t,e){return n[t-=137]})(t,e)}!function(){for(var t=Zs,e=vs();;)try{if(120478===parseInt(t(141))/1+parseInt(t(138))/2*(-parseInt(t(151))/3)+parseInt(t(147))/4*(-parseInt(t(149))/5)+parseInt(t(142))/6*(parseInt(t(145))/7)+parseInt(t(140))/8*(-parseInt(t(146))/9)+-parseInt(t(139))/10*(-parseInt(t(150))/11)+parseInt(t(144))/12*(parseInt(t(143))/13))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Ms extends Yr{}Ms[Ss(137)]=Ss(148);const Es=Rs;function Ts(){const t=["customEncoder","encodingCharacterSet","encodingName","equals","143140imwaBW","isDecodeFallbackSupported","customDecoder","ASCII","decode","1672047YHofub","ISO8859_1","UnicodeBigUnmarked","807399EdiTQR","ISO-8859-1","Encoding ","encodeFallback","shouldDecodeOnFallback","7yjGQQw","length","charCodeAt","push","split","string","246342fBZbxw","isBrowser"," not supported by fallback.","2333848IhwrFW","[object Window]","1214viRlGj","fromCharCode","getName","339TrSIff","decodeFallback","toString","undefined","buffer","3033690HasZFg","apply","encode","24TaYcad"];return(Ts=function(){return t})()}function Rs(t,e){const n=Ts();return(Rs=function(t,e){return n[t-=386]})(t,e)}!function(){const t=Rs,e=Ts();for(;;)try{if(323157===parseInt(t(394))/1*(-parseInt(t(391))/2)+parseInt(t(415))/3+parseInt(t(389))/4+-parseInt(t(407))/5+-parseInt(t(386))/6*(parseInt(t(420))/7)+parseInt(t(402))/8*(-parseInt(t(412))/9)+parseInt(t(399))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Ws{static[Es(411)](t,e){const n=Es,r=this[n(405)](e);return this[n(409)]?this[n(409)](t,r):"undefined"==typeof TextDecoder||this[n(419)](r)?this.decodeFallback(t,r):new TextDecoder(r)[n(411)](t)}static shouldDecodeOnFallback(t){const e=Es;return!Ws[e(387)]()&&t===e(416)}static[Es(401)](t,e){const n=Es,r=this[n(405)](e);return this[n(403)]?this[n(403)](t,r):typeof TextEncoder===n(397)?this[n(418)](t):(new TextEncoder)[n(401)](t)}static[Es(387)](){const t=Es;return typeof window!==t(397)&&{}.toString.call(window)===t(390)}static[Es(405)](t){const e=Es;return typeof t===e(425)?t:t[e(393)]()}static encodingCharacterSet(t){return t instanceof Cs?t:Cs.getCharacterSetECIByName(t)}static[Es(395)](t,e){const n=Es,r=this[n(404)](e);if(Ws[n(408)](r)){let e="";for(let r=0,s=t[n(421)];r<s;r++){let s=t[r][n(396)](16);s.length<2&&(s="0"+s),e+="%"+s}return decodeURIComponent(e)}if(r[n(406)](Cs[n(414)]))return String[n(392)][n(400)](null,new Uint16Array(t[n(398)]));throw new Ms(n(417)+this[n(405)](e)+n(388))}static[Es(408)](t){const e=Es;return t.equals(Cs.UTF8)||t.equals(Cs[e(413)])||t[e(406)](Cs[e(410)])}static[Es(418)](t){const e=Es,n=btoa(unescape(encodeURIComponent(t)))[e(424)](""),r=[];for(let t=0;t<n[e(421)];t++)r[e(423)](n[t][e(422)](0));return new Uint8Array(r)}}const js=Bs;function Bs(t,e){const n=Ys();return(Bs=function(t,e){return n[t-=347]})(t,e)}function Ys(){const t=["560435NwdtOn","CHARACTER_SET","UTF8","6UDbEEs","9511733DQFgRe","EUC_JP","28exdUQT","3224865PaiiWQ","getCharCode","toFixed","format","PLATFORM_DEFAULT_ENCODING","encode","472594RELGmg","substr","33287706esjELV","8275704vlkcwO","GB2312","fromCharCode","get","getBytes","7242252wKKTQg","toPrecision","charCodeAt","ISO88591","decode","toString","object","guessEncoding","SJIS","stringify","length","ASSUME_SHIFT_JIS","replace","getName","toExponential","SHIFT_JIS"];return(Ys=function(){return t})()}!function(){const t=Bs,e=Ys();for(;;)try{if(804266===-parseInt(t(376))/1*(parseInt(t(366))/2)+-parseInt(t(370))/3+parseInt(t(369))/4*(parseInt(t(363))/5)+parseInt(t(347))/6+-parseInt(t(367))/7+-parseInt(t(379))/8+parseInt(t(378))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Ns{static castAsNonUtf8Char(t,e=null){const n=Bs,r=e?e[n(360)]():this[n(350)];return Ws[n(351)](new Uint8Array([t]),r)}static[js(354)](t,e){const n=js;if(null!=e&&void 0!==e[n(382)](Is.CHARACTER_SET))return e[n(382)](Is[n(364)])[n(352)]();const r=t.length;let s=!0,i=!0,o=!0,a=0,c=0,h=0,u=0,p=0,l=0,f=0,d=0,I=0,m=0,g=0;const w=t[n(357)]>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&&(p>0?n<64||127===n||n>252?i=!1:p--:128===n||160===n||n>239?i=!1:n>160&&n<224?(l++,d=0,f++,f>I&&(I=f)):n>127?(p++,f=0,d++,d>m&&(m=d)):(f=0,d=0))}return o&&a>0&&(o=!1),i&&p>0&&(i=!1),o&&(w||c+h+u>0)?Ns[n(365)]:i&&(Ns[n(358)]||I>=3||m>=3)?Ns.SHIFT_JIS:s&&i?2===I&&2===l||10*g>=r?Ns[n(362)]:Ns[n(350)]:s?Ns.ISO88591:i?Ns[n(362)]:o?Ns[n(365)]:Ns[n(374)]}static[js(373)](t,...e){let n=-1;return t[js(359)](/%(-)?(0?[0-9]+)?([.][0-9]+)?([#][0-9]+)?([scfpexd%])/g,(function(t,r,s,i,o,a){const c=Bs;if("%%"===t)return"%";if(void 0===e[++n])return;t=i?parseInt(i[c(377)](1)):void 0;let h,u=o?parseInt(o[c(377)](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(372)](t);break;case"p":h=parseFloat(e[n])[c(348)](t);break;case"e":h=parseFloat(e[n])[c(361)](t);break;case"x":h=parseInt(e[n])[c(352)](u||16);break;case"d":h=parseFloat(parseInt(e[n],u||10)[c(348)](t))[c(372)](0)}h=typeof h===c(353)?JSON[c(356)](h):(+h)[c(352)](u);let p=parseInt(s),l=s&&s[0]+""=="0"?"0":" ";for(;h[c(357)]<p;)h=void 0!==r?h+l:l+h;return h}))}static[js(383)](t,e){return Ws[js(375)](t,e)}static[js(371)](t,e=0){return t[js(349)](e)}static getCharAt(t){return String[js(381)](t)}}Ns[js(362)]=Cs[js(355)][js(360)](),Ns[js(380)]="GB2312",Ns.ISO88591=Cs.ISO8859_1[js(360)](),Ns[js(368)]="EUC_JP",Ns[js(365)]=Cs[js(365)][js(360)](),Ns[js(374)]=Ns[js(365)],Ns[js(358)]=!1;const Vs=Us;function Us(t,e){const n=Js();return(Us=function(t,e){return n[t-=458]})(t,e)}function Js(){const t=["953769mbLxEI","93eRKEgh","6720471LeTosG","value","encoding","enableDecoding","insert","103644AkHuUA","10DoADBa","append","substring","668381VtNnNA","appendChars","length","4461186rmvrSo","518430AqiHWb","charAt","setLengthToZero","243525noNjrh","56XOTfJc","castAsNonUtf8Char","toString","substr","string"];return(Js=function(){return t})()}!function(){const t=Us,e=Js();for(;;)try{if(514177===parseInt(t(467))/1+-parseInt(t(458))/2+parseInt(t(468))/3*(-parseInt(t(474))/4)+-parseInt(t(461))/5+-parseInt(t(481))/6+-parseInt(t(478))/7*(-parseInt(t(462))/8)+parseInt(t(469))/9*(parseInt(t(475))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class xs{constructor(t=""){this[Us(470)]=t}[Vs(472)](t){return this[Vs(471)]=t,this}[Vs(476)](t){const e=Vs;return typeof t===e(466)?this.value+=t[e(464)]():this[e(471)]?this.value+=Ns[e(463)](t,this[e(471)]):this[e(470)]+=String.fromCharCode(t),this}[Vs(479)](t,e,n){for(let r=e;e<e+n;r++)this.append(t[r]);return this}[Vs(480)](){const t=Vs;return this[t(470)][t(480)]}[Vs(459)](t){const e=Vs;return this[e(470)][e(459)](t)}deleteCharAt(t){const e=Vs;this[e(470)]=this[e(470)][e(465)](0,t)+this.value[e(477)](t+1)}setCharAt(t,e){this.value=this.value.substr(0,t)+e+this.value.substr(t+1)}[Vs(477)](t,e){const n=Vs;return this.value[n(477)](t,e)}[Vs(460)](){this[Vs(470)]=""}[Vs(464)](){return this[Vs(470)]}[Vs(473)](t,e){const n=Vs;this.value=this[n(470)][n(477)](0,t)+e+this.value[n(477)](t)}}function Ds(t,e){const n=Gs();return(Ds=function(t,e){return n[t-=127]})(t,e)}const Ps=Ds;!function(){const t=Ds,e=Gs();for(;;)try{if(618988===-parseInt(t(144))/1*(-parseInt(t(142))/2)+-parseInt(t(146))/3*(-parseInt(t(136))/4)+-parseInt(t(141))/5+-parseInt(t(132))/6+parseInt(t(143))/7+-parseInt(t(140))/8+parseInt(t(129))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Xs{static[Ps(137)](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[Ps(135)](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[Ps(139)](t){return t[Ps(131)](16)}static[Ps(127)](t){return String(parseInt(String(t),2))}static[Ps(130)](t){return t=(t=(858993459&(t-=t>>>1&1431655765))+(t>>>2&858993459))+(t>>>4)&252645135,t+=t>>>8,63&(t+=t>>>16)}static[Ps(134)](t,e){return Math[Ps(145)](t/e)}static[Ps(128)](t,e=void 0){return parseInt(t,e)}}function Gs(){const t=["598667ulYJmh","trunc","2364kBzyBs","toBinaryString","parseInt","15029271UHcQGX","bitCount","toString","3569046TLkuNP","MIN_VALUE_32_BITS","truncDivision","numberOfLeadingZeros","4648mJGfxX","numberOfTrailingZeros","MAX_VALUE","toHexString","8720640GsbUyu","5534875PoozZz","2yDJwss","1586494JdjZDY"];return(Gs=function(){return t})()}Xs[Ps(133)]=-2147483648,Xs[Ps(138)]=Number.MAX_SAFE_INTEGER;const Fs=qs;function Ls(){const t=["length","21kLoZBn","floor","setBulk","getSizeInBytes","setRange","2990544GIyUpj","hashCode","set","4gJAwqb","get","11520576nojUGH","bits","xor","Num bits must be between 0 and 32","clone","414945zHseXK","1011024ufvZNX","getNextUnset","152510fATDmn","ensureCapacity","push","3156981cmjVau","toString","appendBit","makeArray","size","getBitArray","arraycopy","isRange","appendBitArray","clear","4690812HivXAv","equals","Sizes don't match","toArray","slice","toBytes","getNextSet","appendBits"];return(Ls=function(){return t})()}function qs(t,e){const n=Ls();return(qs=function(t,e){return n[t-=318]})(t,e)}!function(){const t=qs,e=Ls();for(;;)try{if(688458===-parseInt(t(337))/1+parseInt(t(338))/2+parseInt(t(343))/3*(-parseInt(t(330))/4)+parseInt(t(340))/5+-parseInt(t(353))/6+-parseInt(t(322))/7*(-parseInt(t(327))/8)+parseInt(t(332))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class zs{constructor(t,e){const n=qs;void 0===t?(this[n(347)]=0,this[n(333)]=new Int32Array(1)):(this.size=t,this.bits=e??zs[n(346)](t))}getSize(){return this.size}[Fs(325)](){return Math[Fs(323)]((this.size+7)/8)}[Fs(341)](t){const e=Fs;if(t>32*this[e(333)].length){const n=zs[e(346)](t);is[e(349)](this[e(333)],0,n,0,this[e(333)][e(321)]),this.bits=n}}[Fs(331)](t){const e=Fs;return!!(this[e(333)][Math[e(323)](t/32)]&1<<(31&t))}[Fs(329)](t){const e=Fs;this[e(333)][Math[e(323)](t/32)]|=1<<(31&t)}flip(t){const e=Fs;this[e(333)][Math[e(323)](t/32)]^=1<<(31&t)}[Fs(319)](t){const e=Fs,n=this[e(347)];if(t>=n)return n;const r=this[e(333)];let s=Math[e(323)](t/32),i=r[s];i&=~((1<<(31&t))-1);const o=r[e(321)];for(;0===i;){if(++s===o)return n;i=r[s]}const a=32*s+Xs.numberOfTrailingZeros(i);return a>n?n:a}[Fs(339)](t){const e=Fs,n=this[e(347)];if(t>=n)return n;const r=this[e(333)];let s=Math[e(323)](t/32),i=~r[s];i&=~((1<<(31&t))-1);const o=r[e(321)];for(;0===i;){if(++s===o)return n;i=~r[s]}const a=32*s+Xs.numberOfTrailingZeros(i);return a>n?n:a}[Fs(324)](t,e){const n=Fs;this[n(333)][Math[n(323)](t/32)]=e}[Fs(326)](t,e){const n=Fs;if(e<t||t<0||e>this[n(347)])throw new qr;if(e===t)return;e--;const r=Math.floor(t/32),s=Math[n(323)](e/32),i=this[n(333)];for(let n=r;n<=s;n++){const o=(2<<(n<s?31:31&e))-(1<<(n>r?0:31&t));i[n]|=o}}[Fs(352)](){const t=Fs,e=this[t(333)][t(321)],n=this.bits;for(let t=0;t<e;t++)n[t]=0}[Fs(350)](t,e,n){const r=Fs;if(e<t||t<0||e>this[r(347)])throw new qr;if(e===t)return!0;e--;const s=Math[r(323)](t/32),i=Math[r(323)](e/32),o=this[r(333)];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}appendBit(t){const e=Fs;this.ensureCapacity(this[e(347)]+1),t&&(this[e(333)][Math[e(323)](this[e(347)]/32)]|=1<<(31&this[e(347)])),this[e(347)]++}[Fs(320)](t,e){const n=Fs;if(e<0||e>32)throw new qr(n(335));this[n(341)](this[n(347)]+e);for(let r=e;r>0;r--)this[n(345)](1==(t>>r-1&1))}[Fs(351)](t){const e=Fs,n=t.size;this.ensureCapacity(this[e(347)]+n);for(let r=0;r<n;r++)this[e(345)](t[e(331)](r))}[Fs(334)](t){const e=Fs;if(this.size!==t[e(347)])throw new qr(e(355));const n=this.bits;for(let r=0,s=n[e(321)];r<s;r++)n[r]^=t[e(333)][r]}[Fs(318)](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}}[Fs(348)](){return this[Fs(333)]}reverse(){const t=Fs,e=new Int32Array(this[t(333)].length),n=Math.floor((this.size-1)/32),r=n+1,s=this[t(333)];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(347)]!==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.bits=e}static[Fs(346)](t){return new Int32Array(Math[Fs(323)]((t+31)/32))}[Fs(354)](t){const e=Fs;if(!(t instanceof zs))return!1;const n=t;return this[e(347)]===n[e(347)]&&cs.equals(this[e(333)],n[e(333)])}[Fs(328)](){const t=Fs;return 31*this.size+cs.hashCode(this[t(333)])}[Fs(344)](){const t=Fs;let e="";for(let n=0,r=this[t(347)];n<r;n++)!(7&n)&&(e+=" "),e+=this[t(331)](n)?"X":".";return e}[Fs(336)](){const t=Fs;return new zs(this.size,this[t(333)][t(357)]())}[Fs(356)](){const t=Fs;let e=[];for(let n=0,r=this[t(347)];n<r;n++)e[t(342)](this.get(n));return e}}function Ks(t,e){const n=Qs();return(Ks=function(t,e){return n[t-=257]})(t,e)}const Hs=Ks;function Qs(){const t=["setRegion","floor","reverse","10412416oOVlWb","parseFromString","rowSize","12LqhYZk","setRow","buildToString","height","toString","getWidth","row lengths do not match","bits","Left and top must be nonnegative","set","getBottomRightOnBit","parseFromBooleanArray","99564dxFXUF","getBitArray","hashCode","Both dimensions must be greater than 0","145wYgGyP","rotate180","getEnclosingRectangle","Matrix dimensions are undefined","116BhPJSI","15091505nGwCSZ","clone","setBulk","289640uLDJJD","getSize","stringRepresentation cannot be null","145839OvMIqH","length","from","The region must fit inside the matrix","13xCYisk","get","width","input matrix dimensions do not match","6999lbEejA","slice","279EHrZBv","6ARLyxg","getHeight","illegal character encountered: ","8dXHRmC","unset","append","5334217rVyWEc","Height and width must be at least 1","equals","substring","getRow"];return(Qs=function(){return t})()}!function(){const t=Ks,e=Qs();for(;;)try{if(875430===-parseInt(t(277))/1*(parseInt(t(288))/2)+-parseInt(t(285))/3*(-parseInt(t(270))/4)+parseInt(t(266))/5*(parseInt(t(262))/6)+-parseInt(t(294))/7*(parseInt(t(291))/8)+-parseInt(t(287))/9*(-parseInt(t(274))/10)+parseInt(t(271))/11*(parseInt(t(305))/12)+-parseInt(t(281))/13*(parseInt(t(302))/14))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class _s{constructor(t,e,n,r){const s=Ks;if(this[s(283)]=t,this.height=e,this[s(304)]=n,this[s(257)]=r,null==e&&(e=t),this[s(308)]=e,t<1||e<1)throw new qr(s(265));null==n&&(n=(t+31)/32|0),this[s(304)]=n,null==r&&(this.bits=new Int32Array(this.rowSize*this[s(308)]))}static[Hs(261)](t){const e=Hs,n=t[e(278)],r=t[0][e(278)],s=new _s(r,n);for(let e=0;e<n;e++){const n=t[e];for(let t=0;t<r;t++)n[t]&&s.set(t,e)}return s}static[Hs(303)](t,e,n){const r=Hs;if(null===t)throw new qr(r(276));const s=new Array(t[r(278)]);let i=0,o=0,a=-1,c=0,h=0;for(;h<t[r(278)];){const u=t.charAt(h);if("\n"===u||"\r"===u){if(i>o){if(-1===a)a=i-o;else if(i-o!==a)throw new qr(r(311));o=i,c++}h++}else if(t.substring(h,h+e[r(278)])===e)h+=e[r(278)],s[i++]=!0;else{if(t[r(297)](h,h+n[r(278)])!==n)throw new qr(r(290)+t[r(297)](h));h+=n[r(278)],s[i++]=!1}}if(i>o){if(-1===a)a=i-o;else if(i-o!==a)throw new qr(r(311));c++}const u=new _s(a,c);for(let t=0;t<i;t++)s[t]&&u[r(259)](t%a,Math.floor(t/a));return u}[Hs(282)](t,e){const n=e*this[Hs(304)]+(t>>5);return!!(this.bits[n]>>>(31&t)&1)}[Hs(259)](t,e){const n=Hs,r=e*this.rowSize+(t>>5);this[n(257)][r]|=1<<(31&t)}[Hs(292)](t,e){const n=Hs,r=e*this.rowSize+(t>>5);this[n(257)][r]&=~(1<<(31&t))}flip(t,e){const n=Hs,r=e*this[n(304)]+(t>>5);this[n(257)][r]^=1<<(31&t)}xor(t){const e=Hs;if(this[e(283)]!==t[e(310)]()||this[e(308)]!==t[e(289)]()||this[e(304)]!==t.getRowSize())throw new qr(e(284));const n=new zs(1+(this[e(283)]>>5)),r=this[e(304)],s=this[e(257)];for(let i=0,o=this[e(308)];i<o;i++){const o=i*r,a=t[e(298)](i,n)[e(263)]();for(let t=0;t<r;t++)s[o+t]^=a[t]}}clear(){const t=Hs,e=this.bits,n=e[t(278)];for(let t=0;t<n;t++)e[t]=0}[Hs(299)](t,e,n,r){const s=Hs;if(e<0||t<0)throw new qr(s(258));if(r<1||n<1)throw new qr(s(295));const i=t+n,o=e+r;if(o>this[s(308)]||i>this[s(283)])throw new qr(s(280));const a=this[s(304)],c=this.bits;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)}}[Hs(298)](t,e){const n=Hs;null==e||e[n(275)]()<this[n(283)]?e=new zs(this[n(283)]):e.clear();const r=this[n(304)],s=this[n(257)],i=t*r;for(let t=0;t<r;t++)e[n(273)](32*t,s[i+t]);return e}setRow(t,e){const n=Hs;is.arraycopy(e[n(263)](),0,this[n(257)],t*this[n(304)],this[n(304)])}[Hs(267)](){const t=Hs,e=this[t(310)](),n=this.getHeight();let r=new zs(e),s=new zs(e);for(let e=0,i=Math.floor((n+1)/2);e<i;e++)r=this.getRow(e,r),s=this[t(298)](n-1-e,s),r[t(301)](),s[t(301)](),this.setRow(e,s),this[t(306)](n-1-e,r)}[Hs(268)](){const t=Hs,e=this[t(283)],n=this[t(308)],r=this[t(304)],s=this[t(257)];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(279)]([i,o,a-i+1,c-o+1])}getTopLeftOnBit(){const t=Hs,e=this[t(304)],n=this[t(257)];let r=0;for(;r<n.length&&0===n[r];)r++;if(r===n[t(278)])return null;const s=Math[t(300)](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(279)]([i,s])}[Hs(260)](){const t=Hs,e=this[t(304)],n=this[t(257)];let r=n.length-1;for(;r>=0&&0===n[r];)r--;if(r<0)return null;const s=Math.floor(r/e);let i=r%e<<5;const o=n[r];let a=31;for(;o>>>a==0;)a--;return i+=a,Int32Array[t(279)]([i,s])}[Hs(310)](){return this[Hs(283)]}[Hs(289)](){return this[Hs(308)]}getRowSize(){return this[Hs(304)]}[Hs(296)](t){const e=Hs;if(!(t instanceof _s))return!1;const n=t;return this[e(283)]===n[e(283)]&&this[e(308)]===n[e(308)]&&this[e(304)]===n.rowSize&&cs[e(296)](this.bits,n[e(257)])}[Hs(264)](){const t=Hs;let e=this[t(283)];return e=31*e+this[t(308)],e=31*e+this[t(304)],e=31*e+cs[t(264)](this[t(257)]),e}[Hs(309)](t="X ",e=" ",n="\n"){return this[Hs(307)](t,e,n)}[Hs(307)](t,e,n){const r=Hs,s=new xs,i=this[r(308)],o=this[r(283)];if(void 0===i||void 0===o)throw new Error(r(269));for(let a=0;a<i;a++){for(let n=0;n<o;n++)s[r(293)](this.get(n,a)?t:e);s.append(n)}return s[r(309)]()}[Hs(272)](){const t=Hs;return new _s(this[t(283)],this[t(308)],this.rowSize,this.bits[t(286)]())}}const $s=ei;function ti(){const t=["numBits","5cMmhCt","length","10dyCygs","resultPoints","992624xqGqFD","timestamp","7115076JlleLI","1874089SXRBQh","arraycopy","getRawBytes","10177821cThyyM","getResultMetadata","resultMetadata","1942hXTDhZ","addResultPoints","set","toString","1553yPFwnx","15bcAIaT","format","60277602DDqgEj","getResultPoints","putAllMetadata","13278536EjIJBT","rawBytes","currentTimeMillis","text"];return(ti=function(){return t})()}function ei(t,e){const n=ti();return(ei=function(t,e){return n[t-=103]})(t,e)}!function(){const t=ei,e=ti();for(;;)try{if(977766===parseInt(t(105))/1*(parseInt(t(129))/2)+parseInt(t(106))/3*(parseInt(t(120))/4)+parseInt(t(116))/5*(parseInt(t(122))/6)+-parseInt(t(123))/7+parseInt(t(111))/8+-parseInt(t(126))/9*(-parseInt(t(118))/10)+-parseInt(t(108))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class ni{constructor(t=null,e,n=(null==e?0:8*e[$s(117)]),r,s,i=is[$s(113)]()){const o=$s;this.text=t,this[o(112)]=e,this.numBits=n,this[o(119)]=r,this[o(107)]=s,this[o(121)]=i,this.text=t,this[o(112)]=e,this[o(115)]=n??(null==e?0:8*e[o(117)]),this[o(119)]=r,this[o(107)]=s,this[o(128)]=new Map,null==i?this[o(121)]=is[o(113)]():this.timestamp=i}getText(){const t=$s;return this[t(114)]?this[t(114)]:null}[$s(125)](){return this[$s(112)]}getNumBits(){return this[$s(115)]}[$s(109)](){return this[$s(119)]}getBarcodeFormat(){return this[$s(107)]}[$s(127)](){return this.resultMetadata}putMetadata(t,e){const n=$s;null===this[n(128)]&&(this[n(128)]=new Map),this[n(128)][n(103)](t,e)}[$s(110)](t){const e=$s;null!==t&&(null===this[e(128)]?this.resultMetadata=t:this[e(128)]=new Map(t))}[$s(130)](t){const e=$s,n=this[e(119)];if(null===n)this[e(119)]=t;else if(null!==t&&t[e(117)]>0){const r=new Array(n[e(117)]+t.length);is[e(124)](n,0,r,0,n.length),is[e(124)](t,0,r,n[e(117)],t[e(117)]),this[e(119)]=r}}getTimestamp(){return this[$s(121)]}[$s(104)](){const t=$s;return null===this[t(114)]?this.resultPoints[t(104)]():this.text}}function ri(){var t=["BYTE_SEGMENTS","STRUCTURED_APPEND_SEQUENCE","117XTYZlG","18528848DcWkPW","1470jncQWt","182369ZxYNXo","ORIENTATION","SUGGESTED_PRICE","1376936maOWxQ","STRUCTURED_APPEND_PARITY","7RFfDDx","1382824qggOiN","ISSUE_NUMBER","16670onGaLV","14255048xKbdim","UPC_EAN_EXTENSION","OTHER","6ueRoYn","PDF417_EXTRA_METADATA","6ERRApQ","12lSYZdv","ERROR_CORRECTION_LEVEL","1062830JnytUO","POSSIBLE_COUNTRY"];return(ri=function(){return t})()}var si,ii,oi;function ai(t,e){var n=ri();return(ai=function(t,e){return n[t-=123]})(t,e)}!function(){for(var t=ai,e=ri();;)try{if(905079===-parseInt(t(144))/1*(-parseInt(t(134))/2)+-parseInt(t(132))/3*(-parseInt(t(126))/4)+-parseInt(t(128))/5*(-parseInt(t(143))/6)+-parseInt(t(125))/7*(-parseInt(t(129))/8)+-parseInt(t(141))/9*(parseInt(t(137))/10)+-parseInt(t(123))/11*(parseInt(t(135))/12)+-parseInt(t(142))/13)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),ii=si||(si={}),oi=ai,ii[ii.OTHER=0]=oi(131),ii[ii[oi(145)]=1]=oi(145),ii[ii[oi(139)]=2]=oi(139),ii[ii.ERROR_CORRECTION_LEVEL=3]=oi(136),ii[ii.ISSUE_NUMBER=4]=oi(127),ii[ii[oi(146)]=5]=oi(146),ii[ii.POSSIBLE_COUNTRY=6]=oi(138),ii[ii[oi(130)]=7]=oi(130),ii[ii[oi(133)]=8]=oi(133),ii[ii[oi(140)]=9]=oi(140),ii[ii[oi(124)]=10]="STRUCTURED_APPEND_PARITY";var ci=si,hi=li;function ui(){var t=["8ScdFHy","2488890TitZCt","2jCpaDE","264VhSvEa","25580dNDmfU","1966muuHXv","ChecksumException","257432vxTEDE","769077nlIVvP","3979864lBxRLI","9HehZRS","3041676tdHkkz"];return(ui=function(){return t})()}!function(){for(var t=li,e=ui();;)try{if(272306===-parseInt(t(284))/1*(parseInt(t(293))/2)+parseInt(t(287))/3*(-parseInt(t(291))/4)+-parseInt(t(283))/5*(-parseInt(t(282))/6)+parseInt(t(286))/7+-parseInt(t(288))/8*(-parseInt(t(289))/9)+-parseInt(t(292))/10+parseInt(t(290))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class pi extends Yr{static getChecksumInstance(){return new pi}}function li(t,e){var n=ui();return(li=function(t,e){return n[t-=282]})(t,e)}pi.kind=hi(285);var fi=di;function di(t,e){var n=mi();return(di=function(t,e){return n[t-=109]})(t,e)}!function(){for(var t=di,e=mi();;)try{if(183774===parseInt(t(114))/1+-parseInt(t(110))/2+-parseInt(t(116))/3*(parseInt(t(112))/4)+parseInt(t(120))/5*(-parseInt(t(113))/6)+parseInt(t(111))/7+-parseInt(t(115))/8*(parseInt(t(117))/9)+parseInt(t(109))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Ii extends Yr{}function mi(){var t=["20lvtPSK","1594446RNPGSV","258255QObjpL","3208IekQah","181434avlhLP","3789oUMZuZ","ArithmeticException","kind","5UDKZua","6853530HVxjpq","316592hWWtjy","947898IWACXx"];return(mi=function(){return t})()}Ii[fi(119)]=fi(118);var gi=yi;function wi(){var t=["157312eUYrRn","expTable","log","3140fisQgx","6ofoNpn","3454GbxRsK","7135464fRljzl","7kHphBT","988686DmFFME","255999XdyEvs","387NkQVfE","logTable","addOrSubtract","47944248vHPXez","exp","1716552bOVwti","15tnptBJ"];return(wi=function(){return t})()}function yi(t,e){var n=wi();return(yi=function(t,e){return n[t-=227]})(t,e)}!function(){for(var t=yi,e=wi();;)try{if(670137===parseInt(t(229))/1+-parseInt(t(242))/2*(-parseInt(t(230))/3)+parseInt(t(236))/4*(parseInt(t(237))/5)+parseInt(t(227))/6*(parseInt(t(228))/7)+-parseInt(t(238))/8*(-parseInt(t(231))/9)+parseInt(t(241))/10*(parseInt(t(243))/11)+-parseInt(t(234))/12)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class bi{[gi(235)](t){return this[gi(239)][t]}[gi(240)](t){var e=gi;if(0===t)throw new qr;return this[e(232)][t]}static[gi(233)](t,e){return t^e}}const ki=Oi;function Ai(){const t=["from","getZero","18hlLFDw","multiplyByMonomial","17347cQNjsS","multiply","addOrSubtract","getDegree","3237416uWJoCf","arraycopy","coefficients","toString","isZero","field","log","1309mzQIau","getCoefficient","getCoefficients","9666999eUgqbY","16878IGBhHg","equals","2495UvfyXa","8790830oMwwDc","Divide by 0","inverse","50872eMwmue","215664qRPwZj","length","buildMonomial"];return(Ai=function(){return t})()}function Oi(t,e){const n=Ai();return(Oi=function(t,e){return n[t-=442]})(t,e)}!function(){const t=Oi,e=Ai();for(;;)try{if(902977===parseInt(t(458))/1+parseInt(t(462))/2+-parseInt(t(456))/3*(parseInt(t(451))/4)+-parseInt(t(446))/5*(parseInt(t(444))/6)+parseInt(t(469))/7*(parseInt(t(450))/8)+-parseInt(t(443))/9+parseInt(t(447))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Ci{constructor(t,e){const n=Oi;if(0===e[n(452)])throw new qr;this[n(467)]=t;const r=e[n(452)];if(r>1&&0===e[0]){let t=1;for(;t<r&&0===e[t];)t++;t===r?this.coefficients=Int32Array[n(454)]([0]):(this.coefficients=new Int32Array(r-t),is[n(463)](e,t,this.coefficients,0,this[n(464)].length))}else this.coefficients=e}[ki(442)](){return this[ki(464)]}[ki(461)](){const t=ki;return this[t(464)][t(452)]-1}[ki(466)](){return 0===this.coefficients[0]}[ki(470)](t){const e=ki;return this[e(464)][this[e(464)][e(452)]-1-t]}evaluateAt(t){const e=ki;if(0===t)return this.getCoefficient(0);const n=this[e(464)];let r;if(1===t){r=0;for(let t=0,s=n[e(452)];t!==s;t++){const s=n[t];r=bi[e(460)](r,s)}return r}r=n[0];const s=n[e(452)],i=this[e(467)];for(let o=1;o<s;o++)r=bi[e(460)](i[e(459)](t,r),n[o]);return r}[ki(460)](t){const e=ki;if(!this.field[e(445)](t[e(467)]))throw new qr("GenericGFPolys do not have same GenericGF field");if(this[e(466)]())return t;if(t[e(466)]())return this;let n=this[e(464)],r=t[e(464)];if(n[e(452)]>r.length){const t=n;n=r,r=t}let s=new Int32Array(r[e(452)]);const i=r[e(452)]-n[e(452)];is[e(463)](r,0,s,0,i);for(let t=i;t<r[e(452)];t++)s[t]=bi.addOrSubtract(n[t-i],r[t]);return new Ci(this[e(467)],s)}[ki(459)](t){const e=ki;if(!this[e(467)][e(445)](t.field))throw new qr("GenericGFPolys do not have same GenericGF field");if(this.isZero()||t.isZero())return this[e(467)].getZero();const n=this[e(464)],r=n.length,s=t[e(464)],i=s.length,o=new Int32Array(r+i-1),a=this.field;for(let t=0;t<r;t++){const r=n[t];for(let n=0;n<i;n++)o[t+n]=bi[e(460)](o[t+n],a.multiply(r,s[n]))}return new Ci(a,o)}multiplyScalar(t){const e=ki;if(0===t)return this.field[e(455)]();if(1===t)return this;const n=this[e(464)][e(452)],r=this[e(467)],s=new Int32Array(n),i=this[e(464)];for(let e=0;e<n;e++)s[e]=r.multiply(i[e],t);return new Ci(r,s)}[ki(457)](t,e){const n=ki;if(t<0)throw new qr;if(0===e)return this.field[n(455)]();const r=this[n(464)],s=r[n(452)],i=new Int32Array(s+t),o=this.field;for(let t=0;t<s;t++)i[t]=o[n(459)](r[t],e);return new Ci(o,i)}divide(t){const e=ki;if(!this[e(467)][e(445)](t[e(467)]))throw new qr("GenericGFPolys do not have same GenericGF field");if(t[e(466)]())throw new qr(e(448));const n=this[e(467)];let r=n.getZero(),s=this;const i=t[e(470)](t[e(461)]()),o=n[e(449)](i);for(;s[e(461)]()>=t[e(461)]()&&!s[e(466)]();){const i=s[e(461)]()-t.getDegree(),a=n[e(459)](s[e(470)](s[e(461)]()),o),c=t[e(457)](i,a),h=n[e(453)](i,a);r=r[e(460)](h),s=s[e(460)](c)}return[r,s]}[ki(465)](){const t=ki;let e="";for(let n=this[t(461)]();n>=0;n--){let r=this[t(470)](n);if(0!==r){if(r<0?(e+=" - ",r=-r):e[t(452)]>0&&(e+=" + "),0===n||1!==r){const n=this[t(467)][t(468)](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}}const Si=Zi;function vi(){const t=["413540VuEdwV","one","AZTEC_DATA_6","2buozPh","7fDXTjO","from","12OzmhsE","3290109xrxuTr","getGeneratorBase","1648056MVjuKh","getZero","getOne","primitive","inverse","MAXICODE_FIELD_64","size","QR_CODE_FIELD_256","542668nWEpNY","6035502clmFpR","toString","55bhmpac","AZTEC_DATA_12","AZTEC_DATA_8","374aBRvZC","zero","AZTEC_PARAM","generatorBase","logTable","multiply","expTable","33518875brjoee","DATA_MATRIX_FIELD_256","180763qFqvTy","27nkWMNl","AZTEC_DATA_10"];return(vi=function(){return t})()}function Zi(t,e){const n=vi();return(Zi=function(t,e){return n[t-=338]})(t,e)}!function(){const t=Zi,e=vi();for(;;)try{if(848042===-parseInt(t(372))/1+-parseInt(t(343))/2*(-parseInt(t(347))/3)+parseInt(t(357))/4*(parseInt(t(360))/5)+parseInt(t(358))/6*(-parseInt(t(344))/7)+parseInt(t(349))/8*(parseInt(t(338))/9)+-parseInt(t(340))/10*(-parseInt(t(363))/11)+-parseInt(t(346))/12*(parseInt(t(370))/13))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Mi extends bi{constructor(t,e,n){const r=Zi;super(),this[r(352)]=t,this[r(355)]=e,this[r(366)]=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[r(369)]=s;const o=new Int32Array(e);for(let t=0;t<e-1;t++)o[s[t]]=t;this[r(367)]=o,this[r(364)]=new Ci(this,Int32Array[r(345)]([0])),this[r(341)]=new Ci(this,Int32Array[r(345)]([1]))}[Si(350)](){return this[Si(364)]}[Si(351)](){return this[Si(341)]}buildMonomial(t,e){if(t<0)throw new qr;if(0===e)return this.zero;const n=new Int32Array(t+1);return n[0]=e,new Ci(this,n)}[Si(353)](t){const e=Si;if(0===t)throw new Ii;return this.expTable[this.size-this[e(367)][t]-1]}[Si(368)](t,e){const n=Si;return 0===t||0===e?0:this[n(369)][(this[n(367)][t]+this[n(367)][e])%(this[n(355)]-1)]}getSize(){return this[Si(355)]}[Si(348)](){return this[Si(366)]}[Si(359)](){const t=Si;return"GF(0x"+Xs.toHexString(this.primitive)+","+this[t(355)]+")"}equals(t){return t===this}}Mi[Si(361)]=new Mi(4201,4096,1),Mi[Si(339)]=new Mi(1033,1024,1),Mi.AZTEC_DATA_6=new Mi(67,64,1),Mi[Si(365)]=new Mi(19,16,1),Mi[Si(356)]=new Mi(285,256,0),Mi.DATA_MATRIX_FIELD_256=new Mi(301,256,1),Mi[Si(362)]=Mi[Si(371)],Mi[Si(354)]=Mi[Si(342)];var Ei=Wi;function Ti(){var t=["149848jNVNpw","14KIJeOP","5640bntNXa","288519Hibyvs","4072780kmKcuD","287PDOSRk","1041564DIamDf","1719KekXjy","48393kZICqc","144NiKjzq","7097355lvxuSg","kind","10wfhgka"];return(Ti=function(){return t})()}!function(){for(var t=Wi,e=Ti();;)try{if(841091===-parseInt(t(389))/1*(-parseInt(t(382))/2)+parseInt(t(388))/3*(parseInt(t(383))/4)+-parseInt(t(385))/5+parseInt(t(387))/6+parseInt(t(386))/7*(-parseInt(t(381))/8)+-parseInt(t(378))/9*(-parseInt(t(380))/10)+parseInt(t(384))/11*(parseInt(t(390))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Ri extends Yr{}function Wi(t,e){var n=Ti();return(Wi=function(t,e){return n[t-=378]})(t,e)}Ri[Ei(379)]="IllegalStateException";var ji=Bi;function Bi(t,e){var n=Ni();return(Bi=function(t,e){return n[t-=330]})(t,e)}!function(){for(var t=Bi,e=Ni();;)try{if(396141===-parseInt(t(331))/1*(parseInt(t(334))/2)+-parseInt(t(339))/3*(parseInt(t(337))/4)+parseInt(t(340))/5+-parseInt(t(330))/6*(-parseInt(t(333))/7)+parseInt(t(341))/8+-parseInt(t(336))/9+parseInt(t(338))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Yi extends Yr{}function Ni(){var t=["6976008wgMOul","57588xcpyFT","6713560XEsUrT","27yymmLV","1031210dOkYVS","2589848UNtyrq","58116lrZNpo","1rNMPkO","kind","77AguSbb","14098dqnDys","ReedSolomonException"];return(Ni=function(){return t})()}Yi[ji(332)]=ji(335);const Vi=Ui;function Ui(t,e){const n=Ji();return(Ui=function(t,e){return n[t-=121]})(t,e)}function Ji(){const t=["findErrorLocations","getZero","multiply","inverse","findErrorMagnitudes","2977732IgPWwq","85584yxqNlU","buildMonomial","Bad error location","evaluateAt","250438CDOlup","multiplyByMonomial","815438hcUwYK","Division algorithm failed to reduce polynomial?","getCoefficient","addOrSubtract","207IQxHDE","multiplyScalar","42gQRbYm","getSize","runEuclideanAlgorithm","decode","17241480vadueB","15otNtoA","22sgWvjG","isZero","getDegree","field","7048675RnFNtF","length","503251ZTsrmv","getGeneratorBase"];return(Ji=function(){return t})()}!function(){const t=Ui,e=Ji();for(;;)try{if(734166===parseInt(t(140))/1+-parseInt(t(138))/2*(parseInt(t(151))/3)+-parseInt(t(133))/4+-parseInt(t(124))/5+parseInt(t(146))/6*(-parseInt(t(126))/7)+parseInt(t(134))/8*(-parseInt(t(144))/9)+-parseInt(t(150))/10*(-parseInt(t(152))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class xi{constructor(t){this.field=t}[Vi(149)](t,e){const n=Vi,r=this[n(123)],s=new Ci(r,t),i=new Int32Array(e);let o=!0;for(let t=0;t<e;t++){const e=s[n(137)](r.exp(t+r[n(127)]()));i[i.length-1-t]=e,0!==e&&(o=!1)}if(o)return;const a=new Ci(r,i),c=this[n(148)](r[n(135)](e,1),a,e),h=c[0],u=c[1],p=this[n(128)](h),l=this[n(132)](u,p);for(let e=0;e<p[n(125)];e++){const s=t.length-1-r.log(p[e]);if(s<0)throw new Yi(n(136));t[s]=Mi[n(143)](t[s],l[e])}}[Vi(148)](t,e,n){const r=Vi;if(t.getDegree()<e[r(122)]()){const n=t;t=e,e=n}const s=this.field;let i=t,o=e,a=s[r(129)](),c=s.getOne();for(;o.getDegree()>=(n/2|0);){let t=i,e=a;if(i=o,a=c,i.isZero())throw new Yi("r_{i-1} was zero");o=t;let n=s[r(129)]();const h=i[r(142)](i.getDegree()),u=s[r(131)](h);for(;o[r(122)]()>=i[r(122)]()&&!o[r(121)]();){const t=o[r(122)]()-i[r(122)](),e=s[r(130)](o[r(142)](o[r(122)]()),u);n=n[r(143)](s[r(135)](t,e)),o=o[r(143)](i[r(139)](t,e))}if(c=n[r(130)](a)[r(143)](e),o[r(122)]()>=i[r(122)]())throw new Ri(r(141))}const h=c[r(142)](0);if(0===h)throw new Yi("sigmaTilde(0) was zero");const u=s[r(131)](h);return[c[r(145)](u),o[r(145)](u)]}[Vi(128)](t){const e=Vi,n=t[e(122)]();if(1===n)return Int32Array.from([t[e(142)](1)]);const r=new Int32Array(n);let s=0;const i=this[e(123)];for(let o=1;o<i[e(147)]()&&s<n;o++)0===t[e(137)](o)&&(r[s]=i.inverse(o),s++);if(s!==n)throw new Yi("Error locator degree does not match number of roots");return r}[Vi(132)](t,e){const n=Vi,r=e.length,s=new Int32Array(r),i=this.field;for(let o=0;o<r;o++){const a=i[n(131)](e[o]);let c=1;for(let t=0;t<r;t++)if(o!==t){const r=i.multiply(e[t],a),s=1&r?-2&r:1|r;c=i[n(130)](c,s)}s[o]=i.multiply(t[n(137)](a),i[n(131)](c)),0!==i[n(127)]()&&(s[o]=i[n(130)](s[o],a))}return s}}const Di=Pi;function Pi(t,e){const n=Fi();return(Pi=function(t,e){return n[t-=351]})(t,e)}var Xi;!function(){const t=Pi,e=Fi();for(;;)try{if(617126===parseInt(t(366))/1+parseInt(t(359))/2*(parseInt(t(361))/3)+-parseInt(t(353))/4+-parseInt(t(365))/5+parseInt(t(355))/6+-parseInt(t(362))/7+parseInt(t(354))/8*(parseInt(t(369))/9))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),function(t){const e=Pi;t[t[e(371)]=0]=e(371),t[t[e(372)]=1]=e(372),t[t.DATA_MASK_010=2]="DATA_MASK_010",t[t[e(358)]=3]="DATA_MASK_011",t[t[e(363)]=4]=e(363),t[t[e(370)]=5]=e(370),t[t.DATA_MASK_110=6]=e(367),t[t[e(351)]=7]=e(351)}(Xi||(Xi={}));class Gi{constructor(t,e){this.value=t,this.isMasked=e}[Di(357)](t,e){const n=Di;for(let r=0;r<e;r++)for(let s=0;s<e;s++)this[n(352)](r,s)&&t[n(356)](s,r)}}function Fi(){const t=["DATA_MASK_001","DATA_MASK_111","isMasked","4887340kRKxZU","8UCTCzA","3147294aFivnA","flip","unmaskBitMatrix","DATA_MASK_011","37528QuNIpD","DATA_MASK_010","102wGHsgj","3578526ybBOVS","DATA_MASK_100","values","5001345IpcVkW","45477IaSNYY","DATA_MASK_110","floor","19282014TwrByl","DATA_MASK_101","DATA_MASK_000"];return(Fi=function(){return t})()}Gi[Di(364)]=new Map([[Xi[Di(371)],new Gi(Xi[Di(371)],((t,e)=>!(t+e&1)))],[Xi[Di(372)],new Gi(Xi[Di(372)],((t,e)=>!(1&t)))],[Xi.DATA_MASK_010,new Gi(Xi[Di(360)],((t,e)=>e%3==0))],[Xi[Di(358)],new Gi(Xi.DATA_MASK_011,((t,e)=>(t+e)%3==0))],[Xi[Di(363)],new Gi(Xi[Di(363)],((t,e)=>!(Math[Di(368)](t/2)+Math.floor(e/3)&1)))],[Xi[Di(370)],new Gi(Xi.DATA_MASK_101,((t,e)=>t*e%6==0))],[Xi.DATA_MASK_110,new Gi(Xi.DATA_MASK_110,((t,e)=>t*e%6<3))],[Xi[Di(351)],new Gi(Xi.DATA_MASK_111,((t,e)=>!(t+e+t*e%3&1)))]]);var Li=Ki;!function(){for(var t=Ki,e=zi();;)try{if(289054===parseInt(t(118))/1*(parseInt(t(113))/2)+-parseInt(t(119))/3+parseInt(t(120))/4+parseInt(t(111))/5+-parseInt(t(112))/6+parseInt(t(116))/7*(-parseInt(t(114))/8)+parseInt(t(115))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class qi extends Yr{}function zi(){var t=["430804JyDhhH","358455gJzcje","2347374xHeaCv","2YdeiCp","32lsmXvs","7530930MtfPUp","560182VDsBzz","kind","81115HziwWD","290670AfSpHL"];return(zi=function(){return t})()}function Ki(t,e){var n=zi();return(Ki=function(t,e){return n[t-=111]})(t,e)}qi[Li(117)]="ArgumentException";var Hi,Qi,_i=$i;function $i(t,e){var n=to();return($i=function(t,e){return n[t-=306]})(t,e)}function to(){var t=["getValue","set","2541312kmWvqu","size","stringValue","bits","value","equals","3533348ioRJRz","not available","633930RltTBi","12878040OVZuZm","get","3127XzuuMd","1395192HzrSRY","getBits","3074748pWQLDt","FOR_BITS","FOR_VALUE","toString","fromString","170jyYNnK","forBits"];return(to=function(){return t})()}!function(){for(var t=$i,e=to();;)try{if(362660===-parseInt(t(308))/1*(parseInt(t(316))/2)+-parseInt(t(309))/3+-parseInt(t(320))/4+parseInt(t(328))/5+-parseInt(t(311))/6+parseInt(t(326))/7+parseInt(t(306))/8)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),(Qi=Hi||(Hi={}))[Qi.L=0]="L",Qi[Qi.M=1]="M",Qi[Qi.Q=2]="Q",Qi[Qi.H=3]="H";class eo{constructor(t,e,n){var r=$i;this[r(324)]=t,this[r(322)]=e,this[r(323)]=n,eo[r(312)][r(319)](n,this),eo[r(313)].set(t,this)}[_i(318)](){return this.value}[_i(310)](){return this[_i(323)]}static[_i(315)](t){var e=_i;switch(t){case"L":return eo.L;case"M":return eo.M;case"Q":return eo.Q;case"H":return eo.H;default:throw new qi(t+e(327))}}[_i(314)](){return this[_i(322)]}[_i(325)](t){var e=_i;if(!(t instanceof eo))return!1;const n=t;return this[e(324)]===n[e(324)]}static[_i(317)](t){var e=_i;if(t<0||t>=eo[e(312)][e(321)])throw new qr;return eo[e(312)][e(307)](t)}}eo[_i(312)]=new Map,eo[_i(313)]=new Map,eo.L=new eo(Hi.L,"L",1),eo.M=new eo(Hi.M,"M",0),eo.Q=new eo(Hi.Q,"Q",3),eo.H=new eo(Hi.H,"H",2);const no=ro;function ro(t,e){const n=io();return(ro=function(t,e){return n[t-=135]})(t,e)}!function(){const t=ro,e=io();for(;;)try{if(286658===parseInt(t(139))/1+parseInt(t(156))/2+parseInt(t(153))/3+-parseInt(t(138))/4*(-parseInt(t(136))/5)+-parseInt(t(144))/6*(parseInt(t(146))/7)+-parseInt(t(147))/8*(parseInt(t(150))/9)+parseInt(t(135))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class so{constructor(t){const e=ro;this[e(141)]=eo[e(137)](t>>3&3),this.dataMask=7&t}static[no(159)](t,e){return Xs[no(152)](t^e)}static[no(140)](t,e){const n=no,r=so[n(148)](t,e);return null!==r?r:so[n(148)](t^so[n(151)],e^so[n(151)])}static doDecodeFormatInformation(t,e){const n=no;let r=Number[n(143)],s=0;for(const i of so[n(155)]){const o=i[0];if(o===t||o===e)return new so(i[1]);let a=so[n(159)](t,o);a<r&&(s=i[1],r=a),t!==e&&(a=so[n(159)](e,o),a<r&&(s=i[1],r=a))}return r<=3?new so(s):null}[no(142)](){return this.errorCorrectionLevel}getDataMask(){return this[no(149)]}[no(158)](){const t=no;return this[t(141)][t(154)]()<<3|this.dataMask}[no(145)](t){const e=no;if(!(t instanceof so))return!1;const n=t;return this[e(141)]===n.errorCorrectionLevel&&this[e(149)]===n.dataMask}}function io(){const t=["from","hashCode","numBitsDiffering","5796700hzMGZU","33710qUVStT","forBits","72HejXgs","400812tSNunG","decodeFormatInformation","errorCorrectionLevel","getErrorCorrectionLevel","MAX_SAFE_INTEGER","30RiiSeC","equals","425159HMAECa","1064384BdZiPu","doDecodeFormatInformation","dataMask","36snjoRt","FORMAT_INFO_MASK_QR","bitCount","56094nUFCdp","getBits","FORMAT_INFO_DECODE_LOOKUP","3998mByBtd"];return(io=function(){return t})()}so[no(151)]=21522,so[no(155)]=[Int32Array[no(157)]([21522,0]),Int32Array.from([20773,1]),Int32Array.from([24188,2]),Int32Array[no(157)]([23371,3]),Int32Array[no(157)]([17913,4]),Int32Array[no(157)]([16590,5]),Int32Array[no(157)]([20375,6]),Int32Array[no(157)]([19104,7]),Int32Array.from([30660,8]),Int32Array.from([29427,9]),Int32Array.from([32170,10]),Int32Array[no(157)]([30877,11]),Int32Array.from([26159,12]),Int32Array[no(157)]([25368,13]),Int32Array[no(157)]([27713,14]),Int32Array.from([26998,15]),Int32Array[no(157)]([5769,16]),Int32Array[no(157)]([5054,17]),Int32Array.from([7399,18]),Int32Array.from([6608,19]),Int32Array[no(157)]([1890,20]),Int32Array.from([597,21]),Int32Array[no(157)]([3340,22]),Int32Array.from([2107,23]),Int32Array[no(157)]([13663,24]),Int32Array[no(157)]([12392,25]),Int32Array[no(157)]([16177,26]),Int32Array[no(157)]([14854,27]),Int32Array[no(157)]([9396,28]),Int32Array[no(157)]([8579,29]),Int32Array[no(157)]([11994,30]),Int32Array[no(157)]([11245,31])];var oo=ao;function ao(t,e){var n=co();return(ao=function(t,e){return n[t-=165]})(t,e)}function co(){var t=["80832UVYwiK","1109492gFkOVR","529595EpVvLY","6036TKSWwQ","302312nirIxR","3esVtjU","count","dataCodewords","676360WbSVIL","13675530dMgJXx","3213VrcsYE","getCount","getDataCodewords","18CoAOxA","115VaVcYh"];return(co=function(){return t})()}!function(){for(var t=ao,e=co();;)try{if(349785===-parseInt(t(173))/1+parseInt(t(172))/2*(parseInt(t(176))/3)+parseInt(t(171))/4*(-parseInt(t(170))/5)+-parseInt(t(174))/6*(parseInt(t(166))/7)+-parseInt(t(175))/8*(-parseInt(t(169))/9)+-parseInt(t(179))/10+parseInt(t(165))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class ho{constructor(t,e){var n=ao;this[n(177)]=t,this[n(178)]=e}[oo(167)](){return this[oo(177)]}[oo(168)](){return this[oo(178)]}}function uo(){const t=["100hOpnvF","getNumBlocks","getTotalECCodewords","getCount","6810ibSnFQ","652653Xhgjgq","getECBlocks","ecCodewordsPerBlock","ecBlocks","66pKYUZr","getECCodewordsPerBlock","785895KYCQrO","102485YxRxkz","5459832dQZPVy","9844516qSnRcP","5467irnbDZ","3451avuvlZ","148xuKZij"];return(uo=function(){return t})()}function po(t,e){const n=uo();return(po=function(t,e){return n[t-=302]})(t,e)}const lo=po;!function(){const t=po,e=uo();for(;;)try{if(384125===parseInt(t(312))/1*(parseInt(t(306))/2)+-parseInt(t(308))/3+parseInt(t(314))/4*(parseInt(t(309))/5)+-parseInt(t(319))/6*(-parseInt(t(313))/7)+-parseInt(t(310))/8+parseInt(t(302))/9*(parseInt(t(315))/10)+-parseInt(t(311))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class fo{constructor(t,...e){const n=po;this[n(304)]=t,this[n(305)]=e}[lo(307)](){return this[lo(304)]}[lo(316)](){const t=lo;let e=0;const n=this[t(305)];for(const r of n)e+=r[t(318)]();return e}[lo(317)](){const t=lo;return this[t(304)]*this[t(316)]()}[lo(303)](){return this[lo(305)]}}const Io=mo;function mo(t,e){const n=go();return(mo=function(t,e){return n[t-=400]})(t,e)}function go(){const t=["getVersionForNumber","versionNumber","652748pHbUzZ","getProvisionalVersionForDimension","getCount","getDataCodewords","totalCodewords","3731oMMzta","length","257780UfIwXa","alignmentPatternCenters","setRegion","4086kByReO","getTotalCodewords","buildFunctionPattern","toString","getAlignmentPatternCenters","29752ikbVEj","numBitsDiffering","5115789AMWZfV","getDimensionForVersion","from","18IbBvyh","getECBlocksForLevel","2024296eRNvEI","548157uiMbUq","VERSION_DECODE_INFO","getECBlocks","ecBlocks","getValue","decodeVersionInformation","VERSIONS"];return(go=function(){return t})()}!function(){const t=mo,e=go();for(;;)try{if(319862===parseInt(t(400))/1+parseInt(t(409))/2+-parseInt(t(429))/3*(parseInt(t(424))/4)+-parseInt(t(416))/5+parseInt(t(419))/6*(parseInt(t(414))/7)+-parseInt(t(431))/8+-parseInt(t(426))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class wo{constructor(t,e,...n){const r=mo;this.versionNumber=t,this.alignmentPatternCenters=e,this[r(403)]=n;let s=0;const i=n[0].getECCodewordsPerBlock(),o=n[0][r(402)]();for(const t of o)s+=t[r(411)]()*(t[r(412)]()+i);this[r(413)]=s}getVersionNumber(){return this[mo(408)]}[Io(423)](){return this[Io(417)]}[Io(420)](){return this[Io(413)]}getDimensionForVersion(){return 17+4*this[Io(408)]}[Io(430)](t){const e=Io;return this[e(403)][t[e(404)]()]}static[Io(410)](t){if(t%4!=1)throw new ys;try{return this.getVersionForNumber((t-17)/4)}catch(t){throw new ys}}static[Io(407)](t){const e=Io;if(t<1||t>40)throw new qr;return wo[e(406)][t-1]}static[Io(405)](t){const e=Io;let n=Number.MAX_SAFE_INTEGER,r=0;for(let s=0;s<wo[e(401)][e(415)];s++){const i=wo[e(401)][s];if(i===t)return wo.getVersionForNumber(s+7);const o=so[e(425)](t,i);o<n&&(r=s+7,n=o)}return n<=3?wo[e(407)](r):null}[Io(421)](){const t=Io,e=this[t(427)](),n=new _s(e);n[t(418)](0,0,9,9),n[t(418)](e-8,0,8,9),n.setRegion(0,e-8,9,8);const r=this[t(417)][t(415)];for(let e=0;e<r;e++){const s=this.alignmentPatternCenters[e]-2;for(let i=0;i<r;i++)0===e&&(0===i||i===r-1)||e===r-1&&0===i||n[t(418)](this.alignmentPatternCenters[i]-2,s,5,5)}return n.setRegion(6,9,1,e-17),n[t(418)](9,6,e-17,1),this[t(408)]>6&&(n[t(418)](e-11,0,3,6),n[t(418)](0,e-11,6,3)),n}[Io(422)](){return""+this[Io(408)]}}wo.VERSION_DECODE_INFO=Int32Array[Io(428)]([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]),wo[Io(406)]=[new wo(1,new Int32Array(0),new fo(7,new ho(1,19)),new fo(10,new ho(1,16)),new fo(13,new ho(1,13)),new fo(17,new ho(1,9))),new wo(2,Int32Array[Io(428)]([6,18]),new fo(10,new ho(1,34)),new fo(16,new ho(1,28)),new fo(22,new ho(1,22)),new fo(28,new ho(1,16))),new wo(3,Int32Array.from([6,22]),new fo(15,new ho(1,55)),new fo(26,new ho(1,44)),new fo(18,new ho(2,17)),new fo(22,new ho(2,13))),new wo(4,Int32Array[Io(428)]([6,26]),new fo(20,new ho(1,80)),new fo(18,new ho(2,32)),new fo(26,new ho(2,24)),new fo(16,new ho(4,9))),new wo(5,Int32Array[Io(428)]([6,30]),new fo(26,new ho(1,108)),new fo(24,new ho(2,43)),new fo(18,new ho(2,15),new ho(2,16)),new fo(22,new ho(2,11),new ho(2,12))),new wo(6,Int32Array[Io(428)]([6,34]),new fo(18,new ho(2,68)),new fo(16,new ho(4,27)),new fo(24,new ho(4,19)),new fo(28,new ho(4,15))),new wo(7,Int32Array[Io(428)]([6,22,38]),new fo(20,new ho(2,78)),new fo(18,new ho(4,31)),new fo(18,new ho(2,14),new ho(4,15)),new fo(26,new ho(4,13),new ho(1,14))),new wo(8,Int32Array[Io(428)]([6,24,42]),new fo(24,new ho(2,97)),new fo(22,new ho(2,38),new ho(2,39)),new fo(22,new ho(4,18),new ho(2,19)),new fo(26,new ho(4,14),new ho(2,15))),new wo(9,Int32Array[Io(428)]([6,26,46]),new fo(30,new ho(2,116)),new fo(22,new ho(3,36),new ho(2,37)),new fo(20,new ho(4,16),new ho(4,17)),new fo(24,new ho(4,12),new ho(4,13))),new wo(10,Int32Array[Io(428)]([6,28,50]),new fo(18,new ho(2,68),new ho(2,69)),new fo(26,new ho(4,43),new ho(1,44)),new fo(24,new ho(6,19),new ho(2,20)),new fo(28,new ho(6,15),new ho(2,16))),new wo(11,Int32Array.from([6,30,54]),new fo(20,new ho(4,81)),new fo(30,new ho(1,50),new ho(4,51)),new fo(28,new ho(4,22),new ho(4,23)),new fo(24,new ho(3,12),new ho(8,13))),new wo(12,Int32Array[Io(428)]([6,32,58]),new fo(24,new ho(2,92),new ho(2,93)),new fo(22,new ho(6,36),new ho(2,37)),new fo(26,new ho(4,20),new ho(6,21)),new fo(28,new ho(7,14),new ho(4,15))),new wo(13,Int32Array[Io(428)]([6,34,62]),new fo(26,new ho(4,107)),new fo(22,new ho(8,37),new ho(1,38)),new fo(24,new ho(8,20),new ho(4,21)),new fo(22,new ho(12,11),new ho(4,12))),new wo(14,Int32Array.from([6,26,46,66]),new fo(30,new ho(3,115),new ho(1,116)),new fo(24,new ho(4,40),new ho(5,41)),new fo(20,new ho(11,16),new ho(5,17)),new fo(24,new ho(11,12),new ho(5,13))),new wo(15,Int32Array[Io(428)]([6,26,48,70]),new fo(22,new ho(5,87),new ho(1,88)),new fo(24,new ho(5,41),new ho(5,42)),new fo(30,new ho(5,24),new ho(7,25)),new fo(24,new ho(11,12),new ho(7,13))),new wo(16,Int32Array.from([6,26,50,74]),new fo(24,new ho(5,98),new ho(1,99)),new fo(28,new ho(7,45),new ho(3,46)),new fo(24,new ho(15,19),new ho(2,20)),new fo(30,new ho(3,15),new ho(13,16))),new wo(17,Int32Array[Io(428)]([6,30,54,78]),new fo(28,new ho(1,107),new ho(5,108)),new fo(28,new ho(10,46),new ho(1,47)),new fo(28,new ho(1,22),new ho(15,23)),new fo(28,new ho(2,14),new ho(17,15))),new wo(18,Int32Array[Io(428)]([6,30,56,82]),new fo(30,new ho(5,120),new ho(1,121)),new fo(26,new ho(9,43),new ho(4,44)),new fo(28,new ho(17,22),new ho(1,23)),new fo(28,new ho(2,14),new ho(19,15))),new wo(19,Int32Array[Io(428)]([6,30,58,86]),new fo(28,new ho(3,113),new ho(4,114)),new fo(26,new ho(3,44),new ho(11,45)),new fo(26,new ho(17,21),new ho(4,22)),new fo(26,new ho(9,13),new ho(16,14))),new wo(20,Int32Array[Io(428)]([6,34,62,90]),new fo(28,new ho(3,107),new ho(5,108)),new fo(26,new ho(3,41),new ho(13,42)),new fo(30,new ho(15,24),new ho(5,25)),new fo(28,new ho(15,15),new ho(10,16))),new wo(21,Int32Array[Io(428)]([6,28,50,72,94]),new fo(28,new ho(4,116),new ho(4,117)),new fo(26,new ho(17,42)),new fo(28,new ho(17,22),new ho(6,23)),new fo(30,new ho(19,16),new ho(6,17))),new wo(22,Int32Array.from([6,26,50,74,98]),new fo(28,new ho(2,111),new ho(7,112)),new fo(28,new ho(17,46)),new fo(30,new ho(7,24),new ho(16,25)),new fo(24,new ho(34,13))),new wo(23,Int32Array.from([6,30,54,78,102]),new fo(30,new ho(4,121),new ho(5,122)),new fo(28,new ho(4,47),new ho(14,48)),new fo(30,new ho(11,24),new ho(14,25)),new fo(30,new ho(16,15),new ho(14,16))),new wo(24,Int32Array.from([6,28,54,80,106]),new fo(30,new ho(6,117),new ho(4,118)),new fo(28,new ho(6,45),new ho(14,46)),new fo(30,new ho(11,24),new ho(16,25)),new fo(30,new ho(30,16),new ho(2,17))),new wo(25,Int32Array[Io(428)]([6,32,58,84,110]),new fo(26,new ho(8,106),new ho(4,107)),new fo(28,new ho(8,47),new ho(13,48)),new fo(30,new ho(7,24),new ho(22,25)),new fo(30,new ho(22,15),new ho(13,16))),new wo(26,Int32Array[Io(428)]([6,30,58,86,114]),new fo(28,new ho(10,114),new ho(2,115)),new fo(28,new ho(19,46),new ho(4,47)),new fo(28,new ho(28,22),new ho(6,23)),new fo(30,new ho(33,16),new ho(4,17))),new wo(27,Int32Array[Io(428)]([6,34,62,90,118]),new fo(30,new ho(8,122),new ho(4,123)),new fo(28,new ho(22,45),new ho(3,46)),new fo(30,new ho(8,23),new ho(26,24)),new fo(30,new ho(12,15),new ho(28,16))),new wo(28,Int32Array.from([6,26,50,74,98,122]),new fo(30,new ho(3,117),new ho(10,118)),new fo(28,new ho(3,45),new ho(23,46)),new fo(30,new ho(4,24),new ho(31,25)),new fo(30,new ho(11,15),new ho(31,16))),new wo(29,Int32Array[Io(428)]([6,30,54,78,102,126]),new fo(30,new ho(7,116),new ho(7,117)),new fo(28,new ho(21,45),new ho(7,46)),new fo(30,new ho(1,23),new ho(37,24)),new fo(30,new ho(19,15),new ho(26,16))),new wo(30,Int32Array[Io(428)]([6,26,52,78,104,130]),new fo(30,new ho(5,115),new ho(10,116)),new fo(28,new ho(19,47),new ho(10,48)),new fo(30,new ho(15,24),new ho(25,25)),new fo(30,new ho(23,15),new ho(25,16))),new wo(31,Int32Array[Io(428)]([6,30,56,82,108,134]),new fo(30,new ho(13,115),new ho(3,116)),new fo(28,new ho(2,46),new ho(29,47)),new fo(30,new ho(42,24),new ho(1,25)),new fo(30,new ho(23,15),new ho(28,16))),new wo(32,Int32Array[Io(428)]([6,34,60,86,112,138]),new fo(30,new ho(17,115)),new fo(28,new ho(10,46),new ho(23,47)),new fo(30,new ho(10,24),new ho(35,25)),new fo(30,new ho(19,15),new ho(35,16))),new wo(33,Int32Array[Io(428)]([6,30,58,86,114,142]),new fo(30,new ho(17,115),new ho(1,116)),new fo(28,new ho(14,46),new ho(21,47)),new fo(30,new ho(29,24),new ho(19,25)),new fo(30,new ho(11,15),new ho(46,16))),new wo(34,Int32Array.from([6,34,62,90,118,146]),new fo(30,new ho(13,115),new ho(6,116)),new fo(28,new ho(14,46),new ho(23,47)),new fo(30,new ho(44,24),new ho(7,25)),new fo(30,new ho(59,16),new ho(1,17))),new wo(35,Int32Array[Io(428)]([6,30,54,78,102,126,150]),new fo(30,new ho(12,121),new ho(7,122)),new fo(28,new ho(12,47),new ho(26,48)),new fo(30,new ho(39,24),new ho(14,25)),new fo(30,new ho(22,15),new ho(41,16))),new wo(36,Int32Array.from([6,24,50,76,102,128,154]),new fo(30,new ho(6,121),new ho(14,122)),new fo(28,new ho(6,47),new ho(34,48)),new fo(30,new ho(46,24),new ho(10,25)),new fo(30,new ho(2,15),new ho(64,16))),new wo(37,Int32Array[Io(428)]([6,28,54,80,106,132,158]),new fo(30,new ho(17,122),new ho(4,123)),new fo(28,new ho(29,46),new ho(14,47)),new fo(30,new ho(49,24),new ho(10,25)),new fo(30,new ho(24,15),new ho(46,16))),new wo(38,Int32Array[Io(428)]([6,32,58,84,110,136,162]),new fo(30,new ho(4,122),new ho(18,123)),new fo(28,new ho(13,46),new ho(32,47)),new fo(30,new ho(48,24),new ho(14,25)),new fo(30,new ho(42,15),new ho(32,16))),new wo(39,Int32Array[Io(428)]([6,26,54,82,110,138,166]),new fo(30,new ho(20,117),new ho(4,118)),new fo(28,new ho(40,47),new ho(7,48)),new fo(30,new ho(43,24),new ho(22,25)),new fo(30,new ho(10,15),new ho(67,16))),new wo(40,Int32Array[Io(428)]([6,30,58,86,114,142,170]),new fo(30,new ho(19,118),new ho(6,119)),new fo(28,new ho(18,47),new ho(31,48)),new fo(30,new ho(34,24),new ho(34,25)),new fo(30,new ho(20,15),new ho(61,16)))];const yo=ko;!function(){const t=ko,e=Ao();for(;;)try{if(285650===parseInt(t(223))/1*(parseInt(t(229))/2)+parseInt(t(210))/3*(parseInt(t(234))/4)+parseInt(t(228))/5*(-parseInt(t(227))/6)+-parseInt(t(218))/7*(-parseInt(t(206))/8)+parseInt(t(238))/9+-parseInt(t(237))/10*(parseInt(t(212))/11)+-parseInt(t(217))/12)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class bo{constructor(t){const e=ko,n=t[e(213)]();if(n<21||1!=(3&n))throw new ys;this[e(235)]=t}readFormatInformation(){const t=ko;if(null!==this.parsedFormatInfo&&void 0!==this[t(214)])return this.parsedFormatInfo;let e=0;for(let n=0;n<6;n++)e=this[t(204)](n,8,e);e=this[t(204)](7,8,e),e=this[t(204)](8,8,e),e=this.copyBit(8,7,e);for(let n=5;n>=0;n--)e=this[t(204)](8,n,e);const n=this[t(235)].getHeight();let r=0;const s=n-7;for(let e=n-1;e>=s;e--)r=this[t(204)](8,e,r);for(let e=n-8;e<n;e++)r=this[t(204)](e,8,r);if(this[t(214)]=so[t(230)](e,r),null!==this[t(214)])return this[t(214)];throw new ys}[yo(236)](){const t=yo;if(null!==this.parsedVersion&&void 0!==this[t(224)])return this[t(224)];const e=this[t(235)][t(213)](),n=Math[t(226)]((e-17)/4);if(n<=6)return wo.getVersionForNumber(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=wo[t(205)](r);if(null!==i&&i[t(219)]()===e)return this[t(224)]=i,i;r=0;for(let n=5;n>=0;n--)for(let i=e-9;i>=s;i--)r=this[t(204)](n,i,r);if(i=wo[t(205)](r),null!==i&&i[t(219)]()===e)return this.parsedVersion=i,i;throw new ys}[yo(204)](t,e,n){const r=yo;return(this[r(211)]?this[r(235)][r(207)](e,t):this[r(235)][r(207)](t,e))?n<<1|1:n<<1}[yo(216)](){const t=yo,e=this[t(233)](),n=this.readVersion(),r=Gi[t(225)][t(207)](e[t(208)]()),s=this.bitMatrix.getHeight();r?.unmaskBitMatrix(this[t(235)],s);const i=n[t(221)]();let o=!0;const a=new Uint8Array(n[t(231)]());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.get(e-n,r)&&(u++,h<<=1,this[t(235)].get(e-n,r)&&(h|=1),8===u&&(a[c++]=h,u=0,h=0))}o=!o}if(c!==n[t(231)]())throw new ys;return a}[yo(215)](){const t=yo;if(null===this.parsedFormatInfo)return;const e=this[t(214)]&&Gi[t(225)][t(207)](this.parsedFormatInfo[t(208)]()),n=this[t(235)][t(213)]();e?.unmaskBitMatrix(this[t(235)],n)}[yo(232)](t){const e=yo;this.parsedVersion=null,this[e(214)]=null,this[e(211)]=t}[yo(220)](){const t=yo,e=this[t(235)];for(let n=0,r=e[t(222)]();n<r;n++)for(let r=n+1,s=e[t(213)]();r<s;r++)e[t(207)](n,r)!==e[t(207)](r,n)&&(e[t(209)](r,n),e[t(209)](n,r))}}function ko(t,e){const n=Ao();return(ko=function(t,e){return n[t-=204]})(t,e)}function Ao(){const t=["7nWHgfU","parsedVersion","values","floor","879078LLkojZ","5cCAXUd","56894MlgWdN","decodeFormatInformation","getTotalCodewords","setMirror","readFormatInformation","8IvNGdX","bitMatrix","readVersion","2155980uzJeqo","1975473IOJGKg","copyBit","decodeVersionInformation","664iTxciS","get","getDataMask","flip","336885uvkkaD","isMirror","11tEPfzJ","getHeight","parsedFormatInfo","remask","readCodewords","2295024qnUTyQ","16513sXgNsN","getDimensionForVersion","mirror","buildFunctionPattern","getWidth"];return(Ao=function(){return t})()}const Oo=Co;function Co(t,e){const n=So();return(Co=function(t,e){return n[t-=157]})(t,e)}function So(){const t=["codewords","getDataCodewords","getTotalCodewords","getCount","5294065mvdwvZ","getECCodewordsPerBlock","getCodewords","1716186sydlfy","getDataBlocks","numDataCodewords","439015biCdVO","2621436WQyuXB","getNumDataCodewords","17155600vxsVJA","1129392ramtjt","length","1021155PygHMY","28JSvGZJ","getECBlocks"];return(So=function(){return t})()}!function(){const t=Co,e=So();for(;;)try{if(809108===-parseInt(t(166))/1+-parseInt(t(157))/2+parseInt(t(161))/3+-parseInt(t(167))/4*(-parseInt(t(160))/5)+-parseInt(t(164))/6+-parseInt(t(173))/7+parseInt(t(163))/8)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class vo{constructor(t,e){const n=Co;this.numDataCodewords=t,this[n(169)]=e}static[Oo(158)](t,e,n){const r=Oo;if(t[r(165)]!==e[r(171)]())throw new qr;const s=e.getECBlocksForLevel(n);let i=0;const o=s[r(168)]();for(const t of o)i+=t[r(172)]();const a=new Array(i);let c=0;for(const t of o)for(let e=0;e<t[r(172)]();e++){const e=t[r(170)](),n=s[r(174)]()+e;a[c++]=new vo(e,new Uint8Array(n))}const h=a[0].codewords[r(165)];let u=a[r(165)]-1;for(;u>=0;){if(a[u].codewords[r(165)]===h)break;u--}u++;const p=h-s.getECCodewordsPerBlock();let l=0;for(let e=0;e<p;e++)for(let n=0;n<c;n++)a[n][r(169)][e]=t[l++];for(let e=u;e<c;e++)a[e].codewords[p]=t[l++];const f=a[0][r(169)][r(165)];for(let e=p;e<f;e++)for(let n=0;n<c;n++){const s=n<u?e:e+1;a[n][r(169)][s]=t[l++]}return a}[Oo(162)](){return this[Oo(159)]}[Oo(175)](){return this[Oo(169)]}}const Zo=Eo;function Mo(){const t=["63928Ihbfjc","byteOffset","986940oUowoZ","1764295patYbr","available","getBitOffset","length","4ctOPUr","bitOffset","18ZObuva","bytes","190958OMlOyD","104gTqrnu","142989bVjNCP","266226CpFopr","readBits","getByteOffset","6555130zbICAh"];return(Mo=function(){return t})()}function Eo(t,e){const n=Mo();return(Eo=function(t,e){return n[t-=458]})(t,e)}!function(){const t=Eo,e=Mo();for(;;)try{if(249013===-parseInt(t(459))/1+parseInt(t(466))/2+-parseInt(t(468))/3+parseInt(t(473))/4*(-parseInt(t(469))/5)+parseInt(t(462))/6+parseInt(t(461))/7*(-parseInt(t(460))/8)+-parseInt(t(475))/9*(-parseInt(t(465))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class To{constructor(t){this.bytes=t,this.byteOffset=0,this.bitOffset=0}[Zo(471)](){return this.bitOffset}[Zo(464)](){return this[Zo(467)]}[Zo(463)](t){const e=Zo;if(t<1||t>32||t>this[e(470)]())throw new qr(""+t);let n=0,r=this[e(474)],s=this[e(467)];const i=this[e(458)];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(474)]=r,this.byteOffset=s,n}[Zo(470)](){const t=Zo;return 8*(this[t(458)][t(472)]-this[t(467)])-this[t(474)]}}var Ro=Wo;function Wo(t,e){var n=jo();return(Wo=function(t,e){return n[t-=254]})(t,e)}function jo(){var t=["1634019QiREJp","409397pTFeaX","4waGfTN","setErasures","getStructuredAppendParity","ecLevel","7kDxBnQ","getNumBits","setErrorsCorrected","getOther","796644XQruUL","getErrorsCorrected","getText","errorsCorrected","other","getErasures","hasStructuredAppend","rawBytes","3582636jPwAPS","structuredAppendParity","numBits","structuredAppendSequenceNumber","6580836ikTGzI","byteSegments","getByteSegments","1284645mIBDSm","4928192ygNadJ","getRawBytes","length"];return(jo=function(){return t})()}!function(){for(var t=Wo,e=jo();;)try{if(308601===-parseInt(t(276))/1+parseInt(t(256))/2+parseInt(t(275))/3+parseInt(t(277))/4*(parseInt(t(271))/5)+-parseInt(t(264))/6+-parseInt(t(281))/7*(parseInt(t(272))/8)+parseInt(t(268))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Bo{constructor(t,e,n,r,s=-1,i=-1){var o=Wo;this[o(263)]=t,this.text=e,this.byteSegments=n,this.ecLevel=r,this.structuredAppendSequenceNumber=s,this[o(265)]=i,this[o(266)]=null==t?0:8*t[o(274)]}[Ro(273)](){return this[Ro(263)]}[Ro(282)](){return this[Ro(266)]}setNumBits(t){this[Ro(266)]=t}[Ro(258)](){return this.text}[Ro(270)](){return this[Ro(269)]}getECLevel(){return this[Ro(280)]}[Ro(257)](){return this[Ro(259)]}[Ro(254)](t){this[Ro(259)]=t}[Ro(261)](){return this.erasures}[Ro(278)](t){this.erasures=t}[Ro(255)](){return this.other}setOther(t){this[Ro(260)]=t}[Ro(262)](){var t=Ro;return this[t(265)]>=0&&this[t(267)]>=0}[Ro(279)](){return this[Ro(265)]}getStructuredAppendSequenceNumber(){return this[Ro(267)]}}function Yo(t,e){const n=Uo();return(Yo=function(t,e){return n[t-=126]})(t,e)}const No=Yo;var Vo;function Uo(){const t=["FNC1_FIRST_POSITION","BYTE","469pHlRoQ","ECI","1360917tYXyeP","1117572LvIxKx","NUMERIC","FOR_BITS","9322284zAfvoR","bits","characterCountBitsForVersions","1eyoAee","value","33jtQUcn","getCharacterCountBits","get","KANJI","stringValue","getBits","set","FOR_VALUE","ALPHANUMERIC","FNC1_SECOND_POSITION","10ZwBhhs","forBits","998694VGUokj","TERMINATOR","678892DvCJTs","HANZI","toString","879094XMViTg","from","61352xrzOPf","STRUCTURED_APPEND","10KQTeih"];return(Uo=function(){return t})()}!function(){const t=Yo,e=Uo();for(;;)try{if(270349===-parseInt(t(142))/1*(parseInt(t(126))/2)+-parseInt(t(135))/3+-parseInt(t(158))/4+-parseInt(t(130))/5*(parseInt(t(136))/6)+parseInt(t(133))/7*(-parseInt(t(128))/8)+parseInt(t(156))/9*(-parseInt(t(154))/10)+-parseInt(t(144))/11*(-parseInt(t(139))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),function(t){const e=Yo;t[t[e(157)]=0]=e(157),t[t.NUMERIC=1]=e(137),t[t.ALPHANUMERIC=2]=e(152),t[t[e(129)]=3]=e(129),t[t.BYTE=4]="BYTE",t[t[e(134)]=5]=e(134),t[t[e(147)]=6]=e(147),t[t[e(131)]=7]=e(131),t[t[e(153)]=8]=e(153),t[t[e(159)]=9]=e(159)}(Vo||(Vo={}));class Jo{constructor(t,e,n,r){const s=Yo;this[s(143)]=t,this[s(148)]=e,this[s(141)]=n,this[s(140)]=r,Jo[s(138)].set(r,this),Jo[s(151)][s(150)](t,this)}static[No(155)](t){const e=No,n=Jo[e(138)][e(146)](t);if(void 0===n)throw new qr;return n}[No(145)](t){const e=No,n=t.getVersionNumber();let r;return r=n<=9?0:n<=26?1:2,this[e(141)][r]}getValue(){return this.value}[No(149)](){return this[No(140)]}equals(t){const e=No;if(!(t instanceof Jo))return!1;const n=t;return this.value===n[e(143)]}[No(160)](){return this[No(148)]}}Jo[No(138)]=new Map,Jo[No(151)]=new Map,Jo[No(157)]=new Jo(Vo[No(157)],No(157),Int32Array[No(127)]([0,0,0]),0),Jo.NUMERIC=new Jo(Vo[No(137)],"NUMERIC",Int32Array[No(127)]([10,12,14]),1),Jo[No(152)]=new Jo(Vo[No(152)],"ALPHANUMERIC",Int32Array[No(127)]([9,11,13]),2),Jo[No(129)]=new Jo(Vo.STRUCTURED_APPEND,"STRUCTURED_APPEND",Int32Array.from([0,0,0]),3),Jo[No(132)]=new Jo(Vo.BYTE,No(132),Int32Array[No(127)]([8,16,16]),4),Jo[No(134)]=new Jo(Vo[No(134)],No(134),Int32Array[No(127)]([0,0,0]),7),Jo[No(147)]=new Jo(Vo[No(147)],"KANJI",Int32Array[No(127)]([8,10,12]),8),Jo[No(131)]=new Jo(Vo[No(131)],No(131),Int32Array[No(127)]([0,0,0]),5),Jo[No(153)]=new Jo(Vo[No(153)],No(153),Int32Array.from([0,0,0]),9),Jo[No(159)]=new Jo(Vo[No(159)],No(159),Int32Array[No(127)]([8,10,12]),13);const xo=Po;function Do(){const t=["decodeNumericSegment","4511716MviFOt","7827872LaQSTT","deleteCharAt","14481RbIYWN","decodeKanjiSegment","forBits","48dRwYKK","floor","BYTE","931256STeSsp","getName","ECI","toString","311306FDiGoH","NUMERIC","setCharAt","decodeHanziSegment","available","ALPHANUMERIC_CHARS","4230QUpuGO","decode","TERMINATOR","0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ $%*+-./:","3008300IpcNoP","push","GB2312_SUBSET","STRUCTURED_APPEND","toAlphaNumericChar","length","charAt","FNC1_SECOND_POSITION","ALPHANUMERIC","SHIFT_JIS","parseECIValue","readBits","132027YYWSZK","guessEncoding","KANJI","append","24iLsILQ","getCharacterCountBits","decodeByteSegment","GB2312","HANZI"];return(Do=function(){return t})()}function Po(t,e){const n=Do();return(Po=function(t,e){return n[t-=257]})(t,e)}!function(){const t=Po,e=Do();for(;;)try{if(693248===-parseInt(t(301))/1+parseInt(t(260))/2*(parseInt(t(286))/3)+parseInt(t(292))/4+-parseInt(t(270))/5+-parseInt(t(298))/6*(-parseInt(t(282))/7)+-parseInt(t(293))/8+parseInt(t(295))/9*(parseInt(t(266))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Xo{static[xo(267)](t,e,n,r){const s=xo,i=new To(t);let o=new xs;const a=new Array;let c=-1,h=-1;try{let t,n=null,u=!1;do{if(i[s(264)]()<4)t=Jo[s(268)];else{const e=i[s(281)](4);t=Jo[s(297)](e)}switch(t){case Jo[s(268)]:break;case Jo.FNC1_FIRST_POSITION:case Jo[s(277)]:u=!0;break;case Jo[s(273)]:if(i[s(264)]()<16)throw new ys;c=i.readBits(8),h=i[s(281)](8);break;case Jo[s(258)]:const p=Xo[s(280)](i);if(n=Cs.getCharacterSetECIByValue(p),null===n)throw new ys;break;case Jo[s(290)]:const l=i[s(281)](4),f=i[s(281)](t.getCharacterCountBits(e));l===Xo.GB2312_SUBSET&&Xo[s(263)](i,o,f);break;default:const d=i[s(281)](t[s(287)](e));switch(t){case Jo[s(261)]:Xo[s(291)](i,o,d);break;case Jo[s(278)]:Xo.decodeAlphanumericSegment(i,o,d,u);break;case Jo[s(300)]:Xo[s(288)](i,o,d,n,a,r);break;case Jo[s(284)]:Xo[s(296)](i,o,d);break;default:throw new ys}}}while(t!==Jo[s(268)])}catch(t){throw new ys}return new Bo(t,o[s(259)](),0===a.length?null:a,null===n?null:n[s(259)](),c,h)}static[xo(263)](t,e,n){const r=xo;if(13*n>t.available())throw new ys;const s=new Uint8Array(2*n);let i=0;for(;n>0;){const e=t[r(281)](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(285)](Ws[r(267)](s,Ns[r(289)]))}catch(t){throw new ys(t)}}static[xo(296)](t,e,n){const r=xo;if(13*n>t[r(264)]())throw new ys;const s=new Uint8Array(2*n);let i=0;for(;n>0;){const e=t[r(281)](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[r(285)](Ws[r(267)](s,Ns[r(279)]))}catch(t){throw new ys(t)}}static[xo(288)](t,e,n,r,s,i){const o=xo;if(8*n>t[o(264)]())throw new ys;const a=new Uint8Array(n);for(let e=0;e<n;e++)a[e]=t[o(281)](8);let c;c=null===r?Ns[o(283)](a,i):r[o(257)]();try{e.append(Ws[o(267)](a,c))}catch(t){throw new ys(t)}s[o(271)](a)}static[xo(274)](t){const e=xo;if(t>=Xo.ALPHANUMERIC_CHARS.length)throw new ys;return Xo[e(265)][t]}static decodeAlphanumericSegment(t,e,n,r){const s=xo,i=e[s(275)]();for(;n>1;){if(t[s(264)]()<11)throw new ys;const r=t.readBits(11);e[s(285)](Xo[s(274)](Math.floor(r/45))),e[s(285)](Xo[s(274)](r%45)),n-=2}if(1===n){if(t[s(264)]()<6)throw new ys;e[s(285)](Xo.toAlphaNumericChar(t[s(281)](6)))}if(r)for(let t=i;t<e[s(275)]();t++)"%"===e[s(276)](t)&&(t<e[s(275)]()-1&&"%"===e[s(276)](t+1)?e[s(294)](t+1):e[s(262)](t,String.fromCharCode(29)))}static[xo(291)](t,e,n){const r=xo;for(;n>=3;){if(t[r(264)]()<10)throw new ys;const s=t.readBits(10);if(s>=1e3)throw new ys;e[r(285)](Xo.toAlphaNumericChar(Math[r(299)](s/100))),e.append(Xo[r(274)](Math[r(299)](s/10)%10)),e[r(285)](Xo[r(274)](s%10)),n-=3}if(2===n){if(t.available()<7)throw new ys;const n=t[r(281)](7);if(n>=100)throw new ys;e[r(285)](Xo[r(274)](Math[r(299)](n/10))),e.append(Xo[r(274)](n%10))}else if(1===n){if(t[r(264)]()<4)throw new ys;const n=t.readBits(4);if(n>=10)throw new ys;e[r(285)](Xo.toAlphaNumericChar(n))}}static[xo(280)](t){const e=xo,n=t[e(281)](8);if(!(128&n))return 127&n;if(128==(192&n)){return(63&n)<<8&4294967295|t.readBits(8)}if(192==(224&n)){return(31&n)<<16&4294967295|t[e(281)](16)}throw new ys}}function Go(){const t=["2732145aBjQbX","3893768gnxGxb","length","isMirrored","1278591ekCpRK","10OmzoEL","applyMirroredCorrection","2mNAAVN","1091440LagcAj","mirrored","2680056lndLPI","24guBNiI","9cohVBl","2097531JqlhCl","703967GKMOFn"];return(Go=function(){return t})()}function Fo(t,e){const n=Go();return(Fo=function(t,e){return n[t-=478]})(t,e)}Xo.ALPHANUMERIC_CHARS=xo(269),Xo[xo(272)]=1;const Lo=Fo;!function(){const t=Fo,e=Go();for(;;)try{if(653757===-parseInt(t(480))/1*(-parseInt(t(483))/2)+-parseInt(t(489))/3+parseInt(t(492))/4+-parseInt(t(491))/5+parseInt(t(487))/6*(-parseInt(t(484))/7)+-parseInt(t(486))/8*(-parseInt(t(488))/9)+-parseInt(t(481))/10*(parseInt(t(490))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class qo{constructor(t){this.mirrored=t}[Lo(479)](){return this[Lo(485)]}[Lo(482)](t){const e=Lo;if(!this[e(485)]||null===t||t[e(478)]<3)return;const n=t[0];t[0]=t[2],t[2]=n}}const zo=Ko;function Ko(t,e){const n=Ho();return(Ko=function(t,e){return n[t-=339]})(t,e)}function Ho(){const t=["mirror","4KZvGHz","readVersion","5583907BUGvOR","4794480tyCnFk","setMirror","QR_CODE_FIELD_256","630714vzpAav","getNumDataCodewords","decodeBitMatrix","decodeBooleanArray","154895ukKMfM","10LMQesT","remask","495981CDEvqv","6GaNgGk","11126277LDXdCJ","getDataBlocks","parseFromBooleanArray","decodeBitMatrixParser","length","1345880qfXLmP","setOther","readFormatInformation","correctErrors","getCodewords","readCodewords"];return(Ho=function(){return t})()}!function(){const t=Ko,e=Ho();for(;;)try{if(413343===parseInt(t(359))/1+parseInt(t(355))/2+-parseInt(t(362))/3*(parseInt(t(349))/4)+parseInt(t(342))/5+parseInt(t(363))/6*(-parseInt(t(351))/7)+-parseInt(t(352))/8+parseInt(t(364))/9*(parseInt(t(360))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Qo{constructor(){const t=Ko;this.rsDecoder=new xi(Mi[t(354)])}[zo(358)](t,e){const n=zo;return this.decodeBitMatrix(_s[n(339)](t),e)}[zo(357)](t,e){const n=zo,r=new bo(t);let s=null;try{return this[n(340)](r,e)}catch(t){s=t}try{r[n(361)](),r[n(353)](!0),r[n(350)](),r.readFormatInformation(),r[n(348)]();const t=this[n(340)](r,e);return t[n(343)](new qo(!0)),t}catch(t){if(null!==s)throw s;throw t}}[zo(340)](t,e){const n=zo,r=t[n(350)](),s=t[n(344)]().getErrorCorrectionLevel(),i=t[n(347)](),o=vo[n(365)](i,r,s);let a=0;for(const t of o)a+=t[n(356)]();const c=new Uint8Array(a);let h=0;for(const t of o){const e=t[n(346)](),r=t.getNumDataCodewords();this[n(345)](e,r);for(let t=0;t<r;t++)c[h++]=e[t]}return Xo.decode(c,r,s,e)}correctErrors(t,e){const n=zo,r=new Int32Array(t);try{this.rsDecoder.decode(r,t[n(341)]-e)}catch(t){throw new pi}for(let n=0;n<e;n++)t[n]=r[n]}}function _o(t,e){const n=ta();return(_o=function(t,e){return n[t-=349]})(t,e)}const $o=_o;function ta(){const t=["distance","6932415MufWMO","10iDijCx","sum","4wRgyBN","896165ZMCQLP","11PsMLgm","round","38008164ywsjau","42gUKLse","5DPJRkM","2902749WUNvqu","MIN_SAFE_INTEGER","418574SUPTGq","7040259TolkTe","6694928DgvgUT","length","MAX_SAFE_INTEGER"];return(ta=function(){return t})()}!function(){const t=_o,e=ta();for(;;)try{if(730074===parseInt(t(350))/1*(parseInt(t(353))/2)+parseInt(t(351))/3*(parseInt(t(362))/4)+parseInt(t(363))/5*(parseInt(t(349))/6)+-parseInt(t(359))/7+parseInt(t(355))/8+-parseInt(t(354))/9*(-parseInt(t(360))/10)+parseInt(t(364))/11*(-parseInt(t(366))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class ea{constructor(){}static[$o(365)](t){const e=$o;return isNaN(t)?0:t<=Number[e(352)]?Number[e(352)]:t>=Number[e(357)]?Number.MAX_SAFE_INTEGER:t+(t<0?-.5:.5)|0}static[$o(358)](t,e,n,r){const s=t-n,i=e-r;return Math.sqrt(s*s+i*i)}static[$o(361)](t){let e=0;for(let n=0,r=t[$o(356)];n!==r;n++){e+=t[n]}return e}}var na=ra;function ra(t,e){var n=sa();return(ra=function(t,e){return n[t-=433]})(t,e)}function sa(){var t=["280MvGmnx","1941WPxaTM","554677nGdcoU","points","362082AReVpI","getBits","146034NtcXPS","44KqMjEC","244164AdPEzJ","12820hGuyaa","63ihQMUW","4449704jSHOPU","582UOzpSj","bits","90FstFjf","getPoints"];return(sa=function(){return t})()}!function(){for(var t=ra,e=sa();;)try{if(305368===parseInt(t(439))/1+-parseInt(t(433))/2*(parseInt(t(438))/3)+-parseInt(t(437))/4*(-parseInt(t(446))/5)+-parseInt(t(441))/6*(-parseInt(t(447))/7)+-parseInt(t(448))/8+parseInt(t(443))/9*(-parseInt(t(435))/10)+parseInt(t(444))/11*(-parseInt(t(445))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class ia{constructor(t,e){var n=ra;this[n(434)]=t,this[n(440)]=e}[na(442)](){return this.bits}[na(436)](){return this[na(440)]}}const oa=aa;function aa(t,e){const n=ca();return(aa=function(t,e){return n[t-=220]})(t,e)}function ca(){const t=["getHeight","checkAndNudgePoints","floor","12701986HKkpzB","145243etawDW","246700MABXIX","30WTKQCv","88KbshaC","1121898HkWrOM","10iSkNmn","getWidth","1374021AuxAEP","8373185pkQGEL","5675996fuGkvM","318dcDNKb"];return(ca=function(){return t})()}!function(){const t=aa,e=ca();for(;;)try{if(876648===parseInt(t(224))/1+parseInt(t(221))/2*(parseInt(t(222))/3)+-parseInt(t(229))/4+parseInt(t(228))/5+-parseInt(t(230))/6*(-parseInt(t(220))/7)+parseInt(t(223))/8*(-parseInt(t(227))/9)+-parseInt(t(225))/10*(parseInt(t(234))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class ha{static[oa(232)](t,e){const n=oa,r=t[n(226)](),s=t[n(231)]();let i=!0;for(let t=0;t<e.length&&i;t+=2){const o=Math.floor(e[t]),a=Math[n(233)](e[t+1]);if(o<-1||o>r||a<-1||a>s)throw new Pr;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.length-2;t>=0&&i;t-=2){const o=Math.floor(e[t]),a=Math[n(233)](e[t+1]);if(o<-1||o>r||a<-1||a>s)throw new Pr;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 ua(){const t=["6713624CmyzRD","squareToQuadrilateral","buildAdjoint","a33","a13","617460VPkrNS","transformPoints","times","a22","length","quadrilateralToSquare","a11","55689FsTVmx","a21","a23","220WqEWWo","a12","a32","12203580jqgVcb","351AbLRiu","a31","1140452KMJuvB","70745DUJwzS","7fCOyAt","47990bkWltA","156ppPQoy","11fGCHiv"];return(ua=function(){return t})()}const pa=la;function la(t,e){const n=ua();return(la=function(t,e){return n[t-=429]})(t,e)}!function(){const t=la,e=ua();for(;;)try{if(533196===parseInt(t(455))/1+parseInt(t(444))/2+-parseInt(t(435))/3*(-parseInt(t(438))/4)+parseInt(t(445))/5*(parseInt(t(448))/6)+-parseInt(t(446))/7*(parseInt(t(450))/8)+-parseInt(t(442))/9*(parseInt(t(447))/10)+-parseInt(t(449))/11*(parseInt(t(441))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class fa{constructor(t,e,n,r,s,i,o,a,c){const h=la;this[h(434)]=t,this[h(436)]=e,this[h(443)]=n,this[h(439)]=r,this[h(431)]=s,this[h(440)]=i,this[h(454)]=o,this.a23=a,this[h(453)]=c}static quadrilateralToQuadrilateral(t,e,n,r,s,i,o,a,c,h,u,p,l,f,d,I){const m=la,g=fa.quadrilateralToSquare(t,e,n,r,s,i,o,a);return fa[m(451)](c,h,u,p,l,f,d,I)[m(430)](g)}[pa(429)](t){const e=pa,n=t[e(432)],r=this[e(434)],s=this[e(439)],i=this[e(454)],o=this[e(436)],a=this[e(431)],c=this.a23,h=this[e(443)],u=this[e(440)],p=this.a33;for(let e=0;e<n;e+=2){const n=t[e],l=t[e+1],f=i*n+c*l+p;t[e]=(r*n+o*l+h)/f,t[e+1]=(s*n+a*l+u)/f}}transformPointsWithValues(t,e){const n=pa,r=this[n(434)],s=this[n(439)],i=this[n(454)],o=this[n(436)],a=this[n(431)],c=this.a23,h=this[n(443)],u=this[n(440)],p=this[n(453)],l=t.length;for(let n=0;n<l;n++){const l=t[n],f=e[n],d=i*l+c*f+p;t[n]=(r*l+o*f+h)/d,e[n]=(s*l+a*f+u)/d}}static[pa(451)](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 fa(n-t,s-n,t,r-e,i-r,e,0,0,1);{const u=n-s,p=o-s,l=r-i,f=a-i,d=u*f-p*l,I=(c*f-p*h)/d,m=(u*h-c*l)/d;return new fa(n-t+I*n,o-t+m*o,t,r-e+I*r,a-e+m*a,e,I,m,1)}}static[pa(433)](t,e,n,r,s,i,o,a){const c=pa;return fa[c(451)](t,e,n,r,s,i,o,a)[c(452)]()}[pa(452)](){const t=pa;return new fa(this.a22*this[t(453)]-this[t(437)]*this.a32,this[t(437)]*this[t(443)]-this[t(436)]*this[t(453)],this[t(436)]*this[t(440)]-this[t(431)]*this[t(443)],this[t(454)]*this[t(440)]-this[t(439)]*this[t(453)],this[t(434)]*this.a33-this[t(454)]*this[t(443)],this[t(439)]*this[t(443)]-this[t(434)]*this[t(440)],this.a12*this[t(437)]-this[t(454)]*this.a22,this[t(454)]*this[t(436)]-this[t(434)]*this[t(437)],this.a11*this[t(431)]-this[t(439)]*this[t(436)])}[pa(430)](t){const e=pa;return new fa(this[e(434)]*t.a11+this.a21*t[e(439)]+this[e(443)]*t[e(454)],this.a11*t.a21+this.a21*t[e(431)]+this.a31*t[e(437)],this[e(434)]*t.a31+this[e(436)]*t[e(440)]+this[e(443)]*t[e(453)],this.a12*t[e(434)]+this.a22*t.a12+this[e(440)]*t[e(454)],this[e(439)]*t[e(436)]+this[e(431)]*t.a22+this.a32*t[e(437)],this.a12*t[e(443)]+this[e(431)]*t[e(440)]+this[e(440)]*t[e(453)],this[e(454)]*t[e(434)]+this.a23*t[e(439)]+this[e(453)]*t[e(454)],this.a13*t[e(436)]+this[e(437)]*t[e(431)]+this[e(453)]*t[e(437)],this[e(454)]*t.a31+this[e(437)]*t[e(440)]+this[e(453)]*t[e(453)])}}const da=Ia;function Ia(t,e){const n=ma();return(Ia=function(t,e){return n[t-=106]})(t,e)}function ma(){const t=["128mHAlBC","set","2836VFYIlL","checkAndNudgePoints","transformPoints","sampleGridWithTransform","109942uaMtyI","1179206ptfsaK","4410456uhAFif","1299EEyRki","95185OceJWf","quadrilateralToQuadrilateral","length","1oPdzoX","sampleGrid","13680toAhNp","2270NKinBt","floor","6775109AvzYPN"];return(ma=function(){return t})()}!function(){const t=Ia,e=ma();for(;;)try{if(379688===parseInt(t(115))/1*(-parseInt(t(109))/2)+-parseInt(t(111))/3*(parseInt(t(123))/4)+parseInt(t(112))/5+parseInt(t(110))/6+parseInt(t(108))/7*(parseInt(t(121))/8)+parseInt(t(117))/9*(-parseInt(t(118))/10)+parseInt(t(120))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class ga extends ha{[da(116)](t,e,n,r,s,i,o,a,c,h,u,p,l,f,d,I,m,g,w){const y=da,b=fa[y(113)](r,s,i,o,a,c,h,u,p,l,f,d,I,m,g,w);return this[y(107)](t,e,n,b)}[da(107)](t,e,n,r){const s=da;if(e<=0||n<=0)throw new Pr;const i=new _s(e,n),o=new Float32Array(2*e);for(let e=0;e<n;e++){const n=o[s(114)],a=e+.5;for(let t=0;t<n;t+=2)o[t]=t/2+.5,o[t+1]=a;r[s(106)](o),ha[s(124)](t,o);try{for(let r=0;r<n;r+=2)t.get(Math.floor(o[r]),Math[s(119)](o[r+1]))&&i[s(122)](r/2,e)}catch(t){throw new Pr}}return i}}function wa(){var t=["267415ytZWAQ","1523333VEynpu","getInstance","2560752UAotyE","4459221UTAZhj","setGridSampler","2dYUJzc","gridSampler","1088184hWMRFm","1277904DuFeCW","4AUPnPo","1584035pImobN","30jIYjeF"];return(wa=function(){return t})()}var ya=ka;!function(){for(var t=ka,e=wa();;)try{if(223998===-parseInt(t(332))/1*(parseInt(t(325))/2)+-parseInt(t(327))/3+-parseInt(t(329))/4*(parseInt(t(330))/5)+-parseInt(t(328))/6+parseInt(t(333))/7+-parseInt(t(322))/8+parseInt(t(323))/9*(parseInt(t(331))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class ba{static[ya(324)](t){ba.gridSampler=t}static[ya(334)](){return ba[ya(326)]}}function ka(t,e){var n=wa();return(ka=function(t,e){return n[t-=322]})(t,e)}function Aa(){var t=["7LwFkhT","floatToIntBits","4014318ctoOYY","4272288YWRkzI","1848132fOxrot","558755PoRuti","1137468IhGTSn","MAX_SAFE_INTEGER","MAX_VALUE","36UazUUw","10517643vnGvaN","283732nJNCCJ"];return(Aa=function(){return t})()}ba[ya(326)]=new ga;var Oa=Sa;!function(){for(var t=Sa,e=Aa();;)try{if(615657===parseInt(t(367))/1+parseInt(t(372))/2+parseInt(t(374))/3+-parseInt(t(377))/4*(parseInt(t(373))/5)+parseInt(t(370))/6+-parseInt(t(368))/7*(-parseInt(t(371))/8)+-parseInt(t(366))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Ca{static[Oa(369)](t){return t}}function Sa(t,e){var n=Aa();return(Sa=function(t,e){return n[t-=366]})(t,e)}Ca[Oa(376)]=Number[Oa(375)];const va=Ma;function Za(){const t=["12OFexDa","equals","1736994tqCovv","orderBestPatterns","distance","14YpJEpV","3120012HWMWxh","getX","floatToIntBits","1194861nhgtQq","946274dykVUg","10059392qRmKZK","toString","crossProductZ","129229HWuOag","948855LwaZIh","hashCode"];return(Za=function(){return t})()}function Ma(t,e){const n=Za();return(Ma=function(t,e){return n[t-=398]})(t,e)}!function(){const t=Ma,e=Za();for(;;)try{if(707488===parseInt(t(408))/1+parseInt(t(404))/2+parseInt(t(403))/3*(-parseInt(t(411))/4)+-parseInt(t(409))/5+-parseInt(t(413))/6*(-parseInt(t(399))/7)+parseInt(t(405))/8+-parseInt(t(400))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Ea{constructor(t,e){this.x=t,this.y=e}[va(401)](){return this.x}getY(){return this.y}[va(412)](t){if(t instanceof Ea){const e=t;return this.x===e.x&&this.y===e.y}return!1}[va(410)](){return 31*Ca[va(402)](this.x)+Ca.floatToIntBits(this.y)}[va(406)](){return"("+this.x+","+this.y+")"}static[va(414)](t){const e=va,n=this[e(398)](t[0],t[1]),r=this[e(398)](t[1],t[2]),s=this[e(398)](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(407)](i,o,a)<0){const t=i;i=a,a=t}t[0]=i,t[1]=o,t[2]=a}static[va(398)](t,e){return ea[va(398)](t.x,t.y,e.x,e.y)}static[va(407)](t,e,n){const r=e.x,s=e.y;return(n.x-r)*(t.y-s)-(n.y-s)*(t.x-r)}}function Ta(){const t=["estimatedModuleSize","9keSpEP","getY","abs","getX","2544647hFscHV","combineEstimate","3078288VMGMZb","1079664qDSNWG","aboutEquals","18874zFwBSI","1491255LSHjTh","2370264qQInvm","33844VQTnyf"];return(Ta=function(){return t})()}const Ra=Wa;function Wa(t,e){const n=Ta();return(Wa=function(t,e){return n[t-=323]})(t,e)}!function(){const t=Wa,e=Ta();for(;;)try{if(318302===-parseInt(t(326))/1*(-parseInt(t(335))/2)+parseInt(t(333))/3+-parseInt(t(324))/4+parseInt(t(336))/5+-parseInt(t(323))/6+parseInt(t(330))/7+-parseInt(t(332))/8)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class ja extends Ea{constructor(t,e,n){super(t,e),this.estimatedModuleSize=n}[Ra(334)](t,e,n){const r=Ra;if(Math[r(328)](e-this[r(327)]())<=t&&Math[r(328)](n-this[r(329)]())<=t){const e=Math[r(328)](t-this[r(325)]);return e<=1||e<=this.estimatedModuleSize}return!1}[Ra(331)](t,e,n){const r=Ra,s=(this.getX()+e)/2,i=(this.getY()+t)/2,o=(this[r(325)]+n)/2;return new ja(s,i,o)}}function Ba(){const t=["resultPointCallback","floor","86632cMkefs","505EWEEzB","3541210FKqJTI","height","586518sFYhyO","2201700shdYis","width","31708VRBaxA","get","413776PEMvac","foundPossibleResultPoint","getHeight","948008WBrlyC","aboutEquals","foundPatternCross","find","18ahAKEJ","push","abs","possibleCenters","156JgZCqX","startY","moduleSize","handlePossibleCenter","crossCheckStateCount","startX","crossCheckVertical","combineEstimate","image","centerFromEnd"];return(Ba=function(){return t})()}const Ya=Na;function Na(t,e){const n=Ba();return(Na=function(t,e){return n[t-=332]})(t,e)}!function(){const t=Na,e=Ba();for(;;)try{if(668745===parseInt(t(348))/1+-parseInt(t(356))/2+parseInt(t(349))/3+-parseInt(t(351))/4*(-parseInt(t(345))/5)+-parseInt(t(332))/6*(parseInt(t(344))/7)+parseInt(t(353))/8+parseInt(t(360))/9*(-parseInt(t(346))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Va{constructor(t,e,n,r,s,i,o){const a=Na;this.image=t,this.startX=e,this[a(333)]=n,this.width=r,this[a(347)]=s,this[a(334)]=i,this[a(342)]=o,this[a(363)]=[],this[a(336)]=new Int32Array(3)}[Ya(359)](){const t=Ya,e=this[t(337)],n=this[t(347)],r=e+this[t(350)],s=this.startY+n/2,i=new Int32Array(3),o=this[t(340)];for(let a=0;a<n;a++){const n=s+(1&a?-Math[t(343)]((a+1)/2):Math[t(343)]((a+1)/2));i[0]=0,i[1]=0,i[2]=0;let c=e;for(;c<r&&!o[t(352)](c,n);)c++;let h=0;for(;c<r;){if(o[t(352)](c,n))if(1===h)i[1]++;else if(2===h){if(this[t(358)](i)){const e=this[t(335)](i,n,c);if(null!==e)return e}i[0]=i[2],i[1]=1,i[2]=0,h=1}else i[++h]++;else 1===h&&h++,i[h]++;c++}if(this.foundPatternCross(i)){const e=this[t(335)](i,n,r);if(null!==e)return e}}if(0!==this.possibleCenters.length)return this[t(363)][0];throw new Pr}static[Ya(341)](t,e){return e-t[2]-t[1]/2}[Ya(358)](t){const e=this[Ya(334)],n=e/2;for(let r=0;r<3;r++)if(Math.abs(e-t[r])>=n)return!1;return!0}[Ya(338)](t,e,n,r){const s=Ya,i=this[s(340)],o=i[s(355)](),a=this.crossCheckStateCount;a[0]=0,a[1]=0,a[2]=0;let c=t;for(;c>=0&&i[s(352)](e,c)&&a[1]<=n;)a[1]++,c--;if(c<0||a[1]>n)return NaN;for(;c>=0&&!i[s(352)](e,c)&&a[0]<=n;)a[0]++,c--;if(a[0]>n)return NaN;for(c=t+1;c<o&&i[s(352)](e,c)&&a[1]<=n;)a[1]++,c++;if(c===o||a[1]>n)return NaN;for(;c<o&&!i[s(352)](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[s(362)](h-r)>=2*r?NaN:this[s(358)](a)?Va[s(341)](a,c):NaN}[Ya(335)](t,e,n){const r=Ya,s=t[0]+t[1]+t[2],i=Va[r(341)](t,n),o=this[r(338)](e,i,2*t[1],s);if(!isNaN(o)){const e=(t[0]+t[1]+t[2])/3;for(const t of this.possibleCenters)if(t[r(357)](e,o,i))return t[r(339)](o,i,e);const n=new ja(i,o,e);this[r(363)][r(361)](n),null!==this[r(342)]&&void 0!==this[r(342)]&&this.resultPointCallback[r(354)](n)}return null}}function Ua(t,e){const n=xa();return(Ua=function(t,e){return n[t-=296]})(t,e)}const Ja=Ua;function xa(){const t=["5nQCOVi","estimatedModuleSize","121dBpTsM","703830lsylkz","1613356QMhycY","475173ueHtsj","6134292nqTzCG","getX","count","abs","combineEstimate","3195470llVRmy","11032128nXfNco","1pMAlmo","72QMFOcs","4939823OgumWs","getEstimatedModuleSize"];return(xa=function(){return t})()}!function(){const t=Ua,e=xa();for(;;)try{if(953528===-parseInt(t(301))/1*(-parseInt(t(309))/2)+parseInt(t(308))/3+-parseInt(t(311))/4+parseInt(t(305))/5*(-parseInt(t(300))/6)+-parseInt(t(303))/7+parseInt(t(302))/8*(parseInt(t(310))/9)+-parseInt(t(299))/10*(-parseInt(t(307))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Da extends Ea{constructor(t,e,n,r){const s=Ua;super(t,e),this.estimatedModuleSize=n,this[s(296)]=r,void 0===r&&(this[s(296)]=1)}[Ja(304)](){return this[Ja(306)]}getCount(){return this[Ja(296)]}aboutEquals(t,e,n){const r=Ja;if(Math[r(297)](e-this.getY())<=t&&Math[r(297)](n-this[r(312)]())<=t){const e=Math[r(297)](t-this[r(306)]);return e<=1||e<=this.estimatedModuleSize}return!1}[Ja(298)](t,e,n){const r=Ja,s=this.count??0,i=s+1,o=(s*this[r(312)]()+e)/i,a=(s*this.getY()+t)/i,c=(s*this[r(306)]+n)/i;return new Da(o,a,c,i)}}function Pa(){var t=["topRight","topLeft","66ikCRyS","getTopLeft","bottomLeft","82137Uwftqv","7OAqpxp","6VEcNqx","4735096UxEHIc","1105668KqzbQN","1112270vtqlgg","8KopItX","2106105JcLLSY","6672465VHygwr","10BaJuvV","getTopRight","getBottomLeft","4340394MXMdQz"];return(Pa=function(){return t})()}function Xa(t,e){var n=Pa();return(Xa=function(t,e){return n[t-=358]})(t,e)}var Ga=Xa;!function(){for(var t=Xa,e=Pa();;)try{if(572656===-parseInt(t(375))/1+parseInt(t(362))/2*(-parseInt(t(359))/3)+parseInt(t(363))/4*(-parseInt(t(364))/5)+parseInt(t(369))/6+-parseInt(t(358))/7*(-parseInt(t(360))/8)+parseInt(t(365))/9*(parseInt(t(366))/10)+parseInt(t(372))/11*(parseInt(t(361))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Fa{constructor(t){var e=Xa;this[e(374)]=t[0],this[e(371)]=t[1],this[e(370)]=t[2]}[Ga(368)](){return this[Ga(374)]}[Ga(373)](){return this[Ga(371)]}[Ga(367)](){return this[Ga(370)]}}function La(t,e){const n=Ka();return(La=function(t,e){return n[t-=314]})(t,e)}const qa=La;!function(){const t=La,e=Ka();for(;;)try{if(237808===-parseInt(t(337))/1*(parseInt(t(320))/2)+parseInt(t(349))/3+parseInt(t(328))/4*(parseInt(t(359))/5)+parseInt(t(361))/6*(-parseInt(t(356))/7)+parseInt(t(352))/8*(parseInt(t(316))/9)+-parseInt(t(364))/10+parseInt(t(350))/11*(parseInt(t(344))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class za{constructor(t,e){const n=La;this[n(338)]=t,this[n(358)]=e,this[n(343)]=[],this[n(365)]=new Int32Array(5),this.resultPointCallback=e}getImage(){return this[La(338)]}[qa(342)](){return this.possibleCenters}[qa(322)](t){const e=qa,n=null!=t&&void 0!==t[e(362)](Is[e(327)]),r=null!=t&&void 0!==t[e(362)](Is[e(345)]),s=this[e(338)],i=s[e(314)](),o=s.getWidth();let a=Math[e(348)](3*i/(4*za[e(323)]));(a<za[e(324)]||n)&&(a=za[e(324)]);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(362)](i,t))!(1&~n)&&n++,h[n]++;else if(1&n)h[n]++;else if(4===n)if(za[e(330)](h)){if(!0!==this[e(357)](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.hasSkipped)c=this[e(351)]();else{const e=this.findRowSkip();e>h[2]&&(t+=e-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(za[e(330)](h)){!0===this.handlePossibleCenter(h,t,o,r)&&(a=h[0],this[e(353)]&&(c=this[e(351)]()))}}const u=this[e(319)]();return Ea[e(318)](u),new Fa(u)}static[qa(346)](t,e){return e-t[4]-t[3]-t[2]/2}static foundPatternCross(t){const e=qa;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.abs(r-t[0])<s&&Math.abs(r-t[1])<s&&Math.abs(3*r-t[2])<3*s&&Math[e(331)](r-t[3])<s&&Math[e(331)](r-t[4])<s}[qa(354)](){const t=this.crossCheckStateCount;return t[0]=0,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t}[qa(336)](t,e,n,r){const s=qa,i=this[s(354)]();let o=0;const a=this[s(338)];for(;t>=o&&e>=o&&a[s(362)](e-o,t-o);)i[2]++,o++;if(t<o||e<o)return!1;for(;t>=o&&e>=o&&!a[s(362)](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(362)](e-o,t-o)&&i[0]<=n;)i[0]++,o++;if(i[0]>n)return!1;const c=a[s(314)](),h=a.getWidth();for(o=1;t+o<c&&e+o<h&&a[s(362)](e+o,t+o);)i[2]++,o++;if(t+o>=c||e+o>=h)return!1;for(;t+o<c&&e+o<h&&!a[s(362)](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[s(362)](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&&za[s(330)](i)}crossCheckVertical(t,e,n,r){const s=qa,i=this.image,o=i[s(314)](),a=this.getCrossCheckStateCount();let c=t;for(;c>=0&&i.get(e,c);)a[2]++,c--;if(c<0)return NaN;for(;c>=0&&!i[s(362)](e,c)&&a[1]<=n;)a[1]++,c--;if(c<0||a[1]>n)return NaN;for(;c>=0&&i[s(362)](e,c)&&a[0]<=n;)a[0]++,c--;if(a[0]>n)return NaN;for(c=t+1;c<o&&i.get(e,c);)a[2]++,c++;if(c===o)return NaN;for(;c<o&&!i.get(e,c)&&a[3]<n;)a[3]++,c++;if(c===o||a[3]>=n)return NaN;for(;c<o&&i.get(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.abs(h-r)>=2*r?NaN:za[s(330)](a)?za[s(346)](a,c):NaN}[qa(360)](t,e,n,r){const s=qa,i=this.image,o=i[s(326)](),a=this[s(354)]();let c=t;for(;c>=0&&i[s(362)](c,e);)a[2]++,c--;if(c<0)return NaN;for(;c>=0&&!i.get(c,e)&&a[1]<=n;)a[1]++,c--;if(c<0||a[1]>n)return NaN;for(;c>=0&&i[s(362)](c,e)&&a[0]<=n;)a[0]++,c--;if(a[0]>n)return NaN;for(c=t+1;c<o&&i.get(c,e);)a[2]++,c++;if(c===o)return NaN;for(;c<o&&!i[s(362)](c,e)&&a[3]<n;)a[3]++,c++;if(c===o||a[3]>=n)return NaN;for(;c<o&&i[s(362)](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(331)](h-r)>=r?NaN:za[s(330)](a)?za[s(346)](a,c):NaN}[qa(357)](t,e,n,r){const s=qa,i=t[0]+t[1]+t[2]+t[3]+t[4];let o=za[s(346)](t,n),a=this[s(332)](e,Math.floor(o),t[2],i);if(!isNaN(a)&&(o=this[s(360)](Math[s(348)](o),Math.floor(a),t[2],i),!isNaN(o)&&(!r||this.crossCheckDiagonal(Math[s(348)](a),Math[s(348)](o),t[2],i)))){const t=i/7;let e=!1;const n=this.possibleCenters;for(let r=0,i=n[s(335)];r<i;r++){const i=n[r];if(i.aboutEquals(t,a,o)){n[r]=i[s(321)](a,o,t),e=!0;break}}if(!e){const e=new Da(o,a,t);n[s(315)](e),null!==this[s(358)]&&void 0!==this[s(358)]&&this[s(358)][s(347)](e)}return!0}return!1}[qa(341)](){const t=qa;if(this[t(343)][t(335)]<=1)return 0;let e=null;for(const n of this[t(343)]){const r=n?.getCount();if(void 0!==r&&r>=za.CENTER_QUORUM){if(null!=e)return this[t(353)]=!0,Math.floor((Math[t(331)](e[t(363)]()-n[t(363)]())-Math[t(331)](e[t(340)]()-n.getY()))/2);e=n}}return 0}[qa(351)](){const t=qa;let e=0,n=0;const r=this[t(343)][t(335)];for(const r of this[t(343)]){const s=r[t(333)]();void 0!==s&&s>=za[t(325)]&&(e++,n+=r[t(329)]())}if(e<3)return!1;const s=n/r;let i=0;for(const e of this.possibleCenters)i+=Math[t(331)](e[t(329)]()-s);return i<=.05*n}[qa(319)](){const t=qa,e=this[t(343)][t(335)];if(e<3)throw new Pr;const n=this[t(343)];let r;if(e>3){let s=0,i=0;for(const e of this[t(343)]){const t=e.getEstimatedModuleSize();s+=t,i+=t*t}r=s/e;let o=Math[t(355)](i/e-r*r);n.sort(((e,n)=>{const s=t,i=Math[s(331)](n.getEstimatedModuleSize()-r),o=Math[s(331)](e[s(329)]()-r);return i<o?-1:i>o?1:0}));const a=Math[t(317)](.2*r,o);for(let e=0;e<n[t(335)]&&n.length>3;e++){const s=n[e];Math[t(331)](s[t(329)]()-r)>a&&(n.splice(e,1),e--)}}if(n.length>3){let e=0;for(const t of n)e+=t.getEstimatedModuleSize();r=e/n.length,n[t(339)](((e,n)=>{const s=t;if(n[s(333)]()===e.getCount()){const t=Math[s(331)](n[s(329)]()-r),i=Math.abs(e[s(329)]()-r);return t<i?1:t>i?-1:0}return(n[s(333)]()??0)-(e[s(333)]()??0)})),n[t(334)](3)}return[n[0],n[1],n[2]]}}function Ka(){const t=["sort","getY","findRowSkip","getPossibleCenters","possibleCenters","12ScUsIo","PURE_BARCODE","centerFromEnd","foundPossibleResultPoint","floor","109926LSVOLi","7335130YogvUu","haveMultiplyConfirmedCenters","1408tkoFNP","hasSkipped","getCrossCheckStateCount","sqrt","189yoixoC","handlePossibleCenter","resultPointCallback","130oVkhbs","crossCheckHorizontal","94542UBGuCk","get","getX","1526800PnCStJ","crossCheckStateCount","getHeight","push","20565mcnFDF","max","orderBestPatterns","selectBestPatterns","26DuXGXl","combineEstimate","find","MAX_MODULES","MIN_SKIP","CENTER_QUORUM","getWidth","TRY_HARDER","16336sHWKDR","getEstimatedModuleSize","foundPatternCross","abs","crossCheckVertical","getCount","splice","length","crossCheckDiagonal","30453NSsIja","image"];return(Ka=function(){return t})()}za.CENTER_QUORUM=2,za.MIN_SKIP=3,za[qa(323)]=57;const Ha=Qa;function Qa(t,e){const n=_a();return(Qa=function(t,e){return n[t-=468]})(t,e)}function _a(){const t=["6OgUDms","sizeOfBlackWhiteBlackRunBothWays","getWidth","getDimensionForVersion","round","getInstance","sampleGrid","calculateModuleSizeOneWay","getResultPointCallback","findAlignmentInRegion","5092ULqGdX","256452OPzbsh","getTopLeft","find","Dimensions could be not found.","960590eKUpDq","max","calculateModuleSize","floor","get","121625WuLwze","abs","createTransform","28rOgDeh","117905nlbupN","591VrFpMV","image","distance","getHeight","Alignment bottom exceeds estimated module size.","getImage","sizeOfBlackWhiteBlackRun","NEED_RESULT_POINT_CALLBACK","processFinderPatternInfo","computeDimension","getAlignmentPatternCenters","1830936bQldLe","resultPointCallback","detect","getBottomLeft","getY","getProvisionalVersionForDimension","quadrilateralToQuadrilateral","1071036FJMdyR","getTopRight","getX"];return(_a=function(){return t})()}!function(){const t=Qa,e=_a();for(;;)try{if(216457===parseInt(t(472))/1*(parseInt(t(498))/2)+parseInt(t(477))/3*(parseInt(t(508))/4)+parseInt(t(476))/5+parseInt(t(509))/6*(-parseInt(t(475))/7)+-parseInt(t(488))/8+-parseInt(t(495))/9+parseInt(t(513))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class $a{constructor(t){this[Qa(478)]=t}[Ha(482)](){return this.image}[Ha(506)](){return this[Ha(489)]}[Ha(490)](t){const e=Ha;this[e(489)]=null==t?null:t[e(471)](Is[e(484)]);const n=new za(this[e(478)],this.resultPointCallback)[e(511)](t);return this[e(485)](n)}[Ha(485)](t){const e=Ha,n=t[e(510)](),r=t[e(496)](),s=t[e(491)](),i=this[e(469)](n,r,s);if(i<1)throw new Pr("No pattern found in proccess finder.");const o=$a[e(486)](n,r,s,i),a=wo[e(493)](o),c=a[e(501)]()-7;let h=null;if(a[e(487)]().length>0){const t=r.getX()-n[e(497)]()+s[e(497)](),o=r.getY()-n[e(492)]()+s[e(492)](),a=1-3/c,u=Math[e(470)](n[e(497)]()+a*(t-n[e(497)]())),p=Math[e(470)](n[e(492)]()+a*(o-n[e(492)]()));for(let t=4;t<=16;t<<=1)try{h=this[e(507)](i,u,p,t);break}catch(t){if(!(t instanceof Pr))throw t}}const u=$a[e(474)](n,r,s,h,o),p=$a[e(504)](this[e(478)],u,o);let l;return l=null===h?[s,n,r]:[s,n,r,h],new ia(p,l)}static[Ha(474)](t,e,n,r,s){const i=Ha,o=s-3.5;let a,c,h,u;return null!==r?(a=r[i(497)](),c=r[i(492)](),h=o-3,u=h):(a=e.getX()-t[i(497)]()+n[i(497)](),c=e[i(492)]()-t.getY()+n[i(492)](),h=o,u=o),fa[i(494)](3.5,3.5,o,3.5,h,u,3.5,o,t[i(497)](),t[i(492)](),e[i(497)](),e[i(492)](),a,c,n.getX(),n[i(492)]())}static sampleGrid(t,e,n){return ba[Ha(503)]().sampleGridWithTransform(t,n,n,e)}static[Ha(486)](t,e,n,r){const s=Ha,i=ea.round(Ea[s(479)](t,e)/r),o=ea[s(502)](Ea[s(479)](t,n)/r);let a=Math[s(470)]((i+o)/2)+7;switch(3&a){case 0:a++;break;case 2:a--;break;case 3:throw new Pr(s(512))}return a}[Ha(469)](t,e,n){const r=Ha;return(this[r(505)](t,e)+this[r(505)](t,n))/2}calculateModuleSizeOneWay(t,e){const n=Ha,r=this[n(499)](Math[n(470)](t[n(497)]()),Math[n(470)](t[n(492)]()),Math[n(470)](e[n(497)]()),Math[n(470)](e[n(492)]())),s=this[n(499)](Math[n(470)](e[n(497)]()),Math[n(470)](e[n(492)]()),Math[n(470)](t[n(497)]()),Math[n(470)](t[n(492)]()));return isNaN(r)?s/7:isNaN(s)?r/7:(r+s)/14}[Ha(499)](t,e,n,r){const s=Ha;let i=this[s(483)](t,e,n,r),o=1,a=t-(n-t);a<0?(o=t/(t-a),a=0):a>=this[s(478)].getWidth()&&(o=(this.image[s(500)]()-1-t)/(a-t),a=this[s(478)][s(500)]()-1);let c=Math[s(470)](e-(r-e)*o);return o=1,c<0?(o=e/(e-c),c=0):c>=this.image[s(480)]()&&(o=(this[s(478)][s(480)]()-1-e)/(c-e),c=this[s(478)].getHeight()-1),a=Math.floor(t+(a-t)*o),i+=this[s(483)](t,e,a,c),i-1}[Ha(483)](t,e,n,r){const s=Ha,i=Math[s(473)](r-e)>Math.abs(n-t);if(i){let s=t;t=e,e=s,s=n,n=r,r=s}const o=Math[s(473)](n-t),a=Math[s(473)](r-e);let c=-o/2;const h=t<n?1:-1,u=e<r?1:-1;let p=0;const l=n+h;for(let n=t,f=e;n!==l;n+=h){const h=i?f:n,l=i?n:f;if(1===p===this[s(478)][s(471)](h,l)){if(2===p)return ea[s(479)](n,f,t,e);p++}if(c+=a,c>0){if(f===r)break;f+=u,c-=o}}return 2===p?ea.distance(n+h,r,t,e):NaN}findAlignmentInRegion(t,e,n,r){const s=Ha,i=Math.floor(r*t),o=Math.max(0,e-i),a=Math.min(this[s(478)].getWidth()-1,e+i);if(a-o<3*t)throw new Pr("Alignment top exceeds estimated module size.");const c=Math[s(468)](0,n-i),h=Math.min(this[s(478)].getHeight()-1,n+i);if(h-c<3*t)throw new Pr(s(481));return new Va(this.image,o,c,a-o,h-c,t,this[s(489)])[s(511)]()}}const tc=ec;function ec(t,e){const n=nc();return(ec=function(t,e){return n[t-=113]})(t,e)}function nc(){const t=["TRY_HARDER","set","decode2","getECLevel","putMetadata","getStructuredAppendParity","extractPureBits","floor","getBlackMatrix","getBits","hasStructuredAppend","reset","getText","getHeight","moduleSize","round","260823FUrbVk","getTopLeftOnBit","getWidth","10BFGrls","117YzKoHk","QR_CODE","applyMirroredCorrection","getBottomRightOnBit","1739496MuzLIQ","309576UsGGzk","getStructuredAppendSequenceNumber","decodeBitMatrix","decoder","getByteSegments","decode","STRUCTURED_APPEND_PARITY","15kPbLOc","getOther","getRawBytes","STRUCTURED_APPEND_SEQUENCE","59236uZkbsV","hintsDef","ERROR_CORRECTION_LEVEL","2740329JnDRCD","7WnFZJj","99hqxXcI","6756oSnjAV","BYTE_SEGMENTS","getPoints","NO_POINTS","get","2405142xuNHFs"];return(nc=function(){return t})()}!function(){const t=ec,e=nc();for(;;)try{if(355361===parseInt(t(116))/1+parseInt(t(142))/2*(parseInt(t(120))/3)+parseInt(t(136))/4*(parseInt(t(132))/5)+parseInt(t(147))/6*(-parseInt(t(140))/7)+-parseInt(t(124))/8+parseInt(t(139))/9*(parseInt(t(119))/10)+-parseInt(t(141))/11*(-parseInt(t(125))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class rc{constructor(){this[ec(128)]=new Qo}getDecoder(){return this[ec(128)]}[tc(130)](t,e){const n=tc;let r,s;const i=e??(new Map)[n(149)](Is.TRY_HARDER,!0);try{const e=rc[n(154)](t[n(156)]());r=this[n(128)][n(127)](e,i),s=rc.NO_POINTS}catch(e){const o=new $a(t[n(156)]()).detect(i);r=this[n(128)][n(127)](o[n(157)](),i),s=o[n(144)]()}r.getOther()instanceof qo&&r.getOther()[n(122)](s);const o=new ni(r[n(160)](),r[n(134)](),void 0,s,Fr[n(121)],void 0),a=r.getByteSegments();a&&o[n(152)](ci.BYTE_SEGMENTS,a);const c=r.getECLevel();return c&&o[n(152)](ci[n(138)],c),r[n(158)]()&&(o[n(152)](ci[n(135)],r[n(126)]()),o.putMetadata(ci[n(131)],r[n(153)]())),o}[tc(150)](t,e){const n=tc;let r,s;const i=null==e||null==e?(new Map)[n(149)](Is[n(148)],!0):void 0;console.log(n(137),i);const o=rc[n(154)](t[n(156)]());r=this.decoder[n(127)](o,i),s=rc[n(145)],r[n(133)]()instanceof qo&&r[n(133)]()[n(122)](s);const a=new ni(r.getText(),r[n(134)](),void 0,s,Fr[n(121)],void 0),c=r[n(129)]();null!==c&&a[n(152)](ci[n(143)],c);const h=r[n(151)]();return null!==h&&a[n(152)](ci[n(138)],h),r[n(158)]()&&(a.putMetadata(ci.STRUCTURED_APPEND_SEQUENCE,r[n(126)]()),a.putMetadata(ci.STRUCTURED_APPEND_PARITY,r[n(153)]())),a}[tc(159)](){}static[tc(154)](t){const e=tc,n=t[e(117)](),r=t[e(123)]();if(null===n||null===r)throw new Pr;const s=this[e(114)](n,t);let i=n[1],o=r[1],a=n[0],c=r[0];if(a>=c||i>=o)throw new Pr;if(o-i!=c-a&&(c=a+(o-i),c>=t[e(118)]()))throw new Pr;const h=Math[e(115)]((c-a+1)/s),u=Math[e(115)]((o-i+1)/s);if(h<=0||u<=0)throw new Pr;if(u!==h)throw new Pr;const p=Math.floor(s/2);i+=p,a+=p;const l=a+Math[e(155)]((h-1)*s)-c;if(l>0){if(l>p)throw new Pr;a-=l}const f=i+Math.floor((u-1)*s)-o;if(f>0){if(f>p)throw new Pr;i-=f}const d=new _s(h,u);for(let n=0;n<u;n++){const r=i+Math.floor(n*s);for(let i=0;i<h;i++)t.get(a+Math[e(155)](i*s),r)&&d[e(149)](i,n)}return d}static[tc(114)](t,e){const n=tc,r=e[n(113)](),s=e[n(118)]();let i=t[0],o=t[1],a=!0,c=0;for(;i<s&&o<r;){if(a!==e[n(146)](i,o)){if(5==++c)break;a=!a}i++,o++}if(i===s||o===r)throw new Pr;return(i-t[0])/7}}rc[tc(145)]=new Array;const sc=ic;function ic(t,e){const n=ac();return(ic=function(t,e){return n[t-=467]})(t,e)}!function(){const t=ic,e=ac();for(;;)try{if(898442===-parseInt(t(489))/1+-parseInt(t(481))/2*(-parseInt(t(479))/3)+parseInt(t(482))/4+parseInt(t(486))/5*(-parseInt(t(483))/6)+parseInt(t(467))/7*(parseInt(t(471))/8)+-parseInt(t(480))/9+-parseInt(t(491))/10*(-parseInt(t(490))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class oc{constructor(t){const e=ic;if(this.binarizer=t,null===t)throw new qr(e(474))}getWidth(){const t=ic;return this[t(477)][t(469)]()}[sc(468)](){const t=sc;return this[t(477)][t(468)]()}[sc(484)](t,e){const n=sc;return this[n(477)][n(484)](t,e)}[sc(485)](){const t=sc;return(null===this[t(492)]||void 0===this[t(492)])&&(this[t(492)]=this[t(477)][t(485)]()),this[t(492)]}[sc(472)](){const t=sc;return this[t(477)][t(488)]().isCropSupported()}[sc(475)](t,e,n,r){const s=sc,i=this[s(477)][s(488)]()[s(475)](t,e,n,r);return new oc(this.binarizer.createBinarizer(i))}[sc(470)](){const t=sc;return this.binarizer[t(488)]()[t(470)]()}[sc(476)](){const t=sc,e=this[t(477)][t(488)]()[t(476)]();return new oc(this[t(477)][t(487)](e))}[sc(478)](){const t=sc,e=this[t(477)][t(488)]().rotateCounterClockwise45();return new oc(this[t(477)][t(487)](e))}[sc(473)](){const t=sc;try{return this[t(485)]()[t(473)]()}catch(t){return""}}}function ac(){const t=["crop","rotateCounterClockwise","binarizer","rotateCounterClockwise45","3ThoggO","10039743FKEVnJ","675462REXZCF","1309116XeWyGU","5320410XESTxy","getBlackRow","getBlackMatrix","10UQCmXZ","createBinarizer","getLuminanceSource","1529522cTFdYo","22zNpPdC","17058550hovqNo","matrix","8681687flqOWZ","getHeight","getWidth","isRotateSupported","8WlEGyu","isCropSupported","toString","Binarizer must be non-null."];return(ac=function(){return t})()}function cc(t,e){var n=uc();return(cc=function(t,e){return n[t-=420]})(t,e)}var hc=cc;function uc(){var t=["60idWaUR","200352OZQLod","576330ZgZNxl","408107mHpVoz","15783Mkwuxj","9553050lZzYnY","getWidth","getLuminanceSource","11wDyurb","1175447meYlRu","204lraLWW","165OzCeWJ","61230MputuZ","192xNVDKm","88ifgSWd","getHeight","source"];return(uc=function(){return t})()}!function(){for(var t=cc,e=uc();;)try{if(744693===parseInt(t(431))/1*(-parseInt(t(424))/2)+parseInt(t(427))/3*(-parseInt(t(433))/4)+-parseInt(t(434))/5*(parseInt(t(435))/6)+parseInt(t(426))/7*(parseInt(t(436))/8)+parseInt(t(428))/9+-parseInt(t(425))/10*(parseInt(t(420))/11)+parseInt(t(423))/12*(parseInt(t(432))/13))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class pc{constructor(t){this[cc(422)]=t}[hc(430)](){return this[hc(422)]}[hc(429)](){return this.source.getWidth()}[hc(421)](){var t=hc;return this[t(422)][t(421)]()}}function lc(){const t=["2948939kBuJQC","2833985ZWONSZ","buckets","getLuminanceSource","floor","190fCmxQr","luminances","getRow","getBlackRow","3957yWCVNP","EMPTY","1567672aVcRAK","initArrays","set","LUMINANCE_SHIFT","getHeight","LUMINANCE_BITS","getMatrix","getWidth","461421TUikGU","8hWNnKZ","createBinarizer","getSize","length","LUMINANCE_BUCKETS","168446ynkYeK","2717640VnfbrE","estimateBlackPoint","296ZRXSAR"];return(lc=function(){return t})()}const fc=dc;function dc(t,e){const n=lc();return(dc=function(t,e){return n[t-=101]})(t,e)}!function(){const t=dc,e=lc();for(;;)try{if(301539===-parseInt(t(128))/1+-parseInt(t(102))/2*(-parseInt(t(112))/3)+-parseInt(t(114))/4+parseInt(t(104))/5+-parseInt(t(129))/6+-parseInt(t(103))/7*(parseInt(t(123))/8)+-parseInt(t(122))/9*(-parseInt(t(108))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Ic extends pc{constructor(t){const e=dc;super(t),this[e(109)]=Ic[e(113)],this[e(105)]=new Int32Array(Ic[e(127)])}[fc(111)](t,e){const n=fc,r=this[n(106)](),s=r.getWidth();null==e||e[n(125)]()<s?e=new zs(s):e.clear(),this[n(115)](s);const i=r[n(110)](t,this[n(109)]),o=this[n(105)];for(let t=0;t<s;t++)o[(255&i[t])>>Ic[n(117)]]++;const a=Ic[n(101)](o);if(s<3)for(let t=0;t<s;t++)(255&i[t])<a&&e[n(116)](t);else{let t=255&i[0],n=255&i[1];for(let r=1;r<s-1;r++){const s=255&i[r+1];(4*n-t-s)/2<a&&e.set(r),t=n,n=s}}return e}getBlackMatrix(){const t=fc,e=this[t(106)](),n=e[t(121)](),r=e[t(118)](),s=new _s(n,r);this[t(115)](n);const i=this[t(105)];for(let s=1;s<5;s++){const o=Math[t(107)](r*s/5),a=e[t(110)](o,this.luminances),c=Math[t(107)](4*n/5);for(let e=Math[t(107)](n/5);e<c;e++){i[(255&a[e])>>Ic.LUMINANCE_SHIFT]++}}const o=Ic[t(101)](i),a=e[t(120)]();for(let e=0;e<r;e++){const r=e*n;for(let i=0;i<n;i++){(255&a[r+i])<o&&s[t(116)](i,e)}}return s}[fc(124)](t){return new Ic(t)}[fc(115)](t){const e=fc;this[e(109)].length<t&&(this[e(109)]=new Uint8ClampedArray(t));const n=this[e(105)];for(let t=0;t<Ic[e(127)];t++)n[t]=0}static[fc(101)](t){const e=fc,n=t[e(126)];let r=0,s=0,i=0;for(let e=0;e<n;e++)t[e]>i&&(s=e,i=t[e]),t[e]>r&&(r=t[e]);let o=0,a=0;for(let e=0;e<n;e++){const n=e-s,r=t[e]*n*n;r>a&&(o=e,a=r)}if(s>o){const t=s;s=o,o=t}if(o-s<=n/16)throw new Pr;let c=o-1,h=-1;for(let e=o-1;e>s;e--){const n=e-s,i=n*n*(o-e)*(r-t[e]);i>h&&(c=e,h=i)}return c<<Ic[e(117)]}}Ic[fc(119)]=5,Ic[fc(117)]=8-Ic.LUMINANCE_BITS,Ic.LUMINANCE_BUCKETS=1<<Ic.LUMINANCE_BITS,Ic[fc(113)]=Uint8ClampedArray.from([0]);const mc=gc;function gc(t,e){const n=yc();return(gc=function(t,e){return n[t-=328]})(t,e)}!function(){const t=gc,e=yc();for(;;)try{if(103838===-parseInt(t(328))/1*(parseInt(t(338))/2)+-parseInt(t(333))/3*(-parseInt(t(346))/4)+-parseInt(t(336))/5*(parseInt(t(334))/6)+-parseInt(t(348))/7*(-parseInt(t(349))/8)+-parseInt(t(343))/9*(parseInt(t(351))/10)+-parseInt(t(353))/11+parseInt(t(339))/12)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class wc extends Ic{constructor(t){const e=gc;super(t),this[e(332)]=null}[mc(335)](){const t=mc;if(null!==this[t(332)])return this[t(332)];const e=this[t(331)](),n=e.getWidth(),r=e.getHeight();if(n>=wc[t(330)]&&r>=wc[t(330)]){const s=e[t(341)]();let i=n>>wc[t(337)];n&wc[t(354)]&&i++;let o=r>>wc[t(337)];r&wc[t(354)]&&o++;const a=wc[t(340)](s,i,o,n,r),c=new _s(n,r);wc[t(342)](s,i,o,n,r,a,c),this[t(332)]=c}else this.matrix=super[t(335)]();return this.matrix}[mc(329)](t){return new wc(t)}static[mc(342)](t,e,n,r,s,i,o){const a=mc,c=s-wc[a(344)],h=r-wc[a(344)];for(let s=0;s<n;s++){let u=s<<wc[a(337)];u>c&&(u=c);const p=wc[a(345)](s,2,n-3);for(let n=0;n<e;n++){let s=n<<wc.BLOCK_SIZE_POWER;s>h&&(s=h);const c=wc[a(345)](n,2,e-3);let l=0;for(let t=-2;t<=2;t++){const e=i[p+t];l+=e[c-2]+e[c-1]+e[c]+e[c+1]+e[c+2]}const f=l/25;wc[a(347)](t,s,u,f,r,o)}}}static[mc(345)](t,e,n){return t<e?e:t>n?n:t}static thresholdBlock(t,e,n,r,s,i){const o=mc;for(let a=0,c=n*s+e;a<wc[o(344)];a++,c+=s)for(let s=0;s<wc[o(344)];s++)(255&t[c+s])<=r&&i[o(352)](e+s,n+a)}static[mc(340)](t,e,n,r,s){const i=mc,o=s-wc[i(344)],a=r-wc[i(344)],c=new Array(n);for(let s=0;s<n;s++){c[s]=new Int32Array(e);let n=s<<wc[i(337)];n>o&&(n=o);for(let o=0;o<e;o++){let e=o<<wc[i(337)];e>a&&(e=a);let h=0,u=255,p=0;for(let s=0,o=n*r+e;s<wc[i(344)];s++,o+=r){for(let e=0;e<wc.BLOCK_SIZE;e++){const n=255&t[o+e];h+=n,n<u&&(u=n),n>p&&(p=n)}if(p-u>wc[i(350)])for(s++,o+=r;s<wc[i(344)];s++,o+=r)for(let e=0;e<wc[i(344)];e++)h+=255&t[o+e]}let l=h>>2*wc[i(337)];if(p-u<=wc[i(350)]&&(l=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&&(l=t)}c[s][o]=l}}return c}}function yc(){const t=["30625MruEfM","184WxSrAz","MIN_DYNAMIC_RANGE","224050YwCrmD","set","1969044GDdqzG","BLOCK_SIZE_MASK","3431NnkHSY","createBinarizer","MINIMUM_DIMENSION","getLuminanceSource","matrix","6690ITSUSR","6aUEQxz","getBlackMatrix","399270vOvugy","BLOCK_SIZE_POWER","40mnjGYq","4536552ROGRcs","calculateBlackPoints","getMatrix","calculateThresholdForBlock","45rxYYsH","BLOCK_SIZE","cap","116aUXXCg","thresholdBlock"];return(yc=function(){return t})()}wc[mc(337)]=3,wc[mc(344)]=1<<wc.BLOCK_SIZE_POWER,wc[mc(354)]=wc[mc(344)]-1,wc.MINIMUM_DIMENSION=5*wc[mc(344)],wc[mc(350)]=24;const bc=kc;function kc(t,e){const n=Ac();return(kc=function(t,e){return n[t-=307]})(t,e)}function Ac(){const t=["getHeight","132kVeLvl","152jzpLEP","toString","2457540udHyhh","This luminance source does not support rotation by 90 degrees.","3171970mwgXsx","append","rotateCounterClockwise","isCropSupported","isRotateSupported","592916KpqQIe","3uPRBHj","crop","41986cHoGJF","height","152409DIuTvw","width","rotateCounterClockwise45","19790ZWOJhA","1806612oOIZxw"];return(Ac=function(){return t})()}!function(){const t=kc,e=Ac();for(;;)try{if(161758===parseInt(t(324))/1+parseInt(t(319))/2*(-parseInt(t(320))/3)+parseInt(t(309))/4*(parseInt(t(327))/5)+-parseInt(t(307))/6+parseInt(t(322))/7*(-parseInt(t(310))/8)+parseInt(t(312))/9+parseInt(t(314))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Oc{constructor(t,e){this[kc(325)]=t,this.height=e}getWidth(){return this.width}[bc(308)](){return this.height}[bc(317)](){return!1}[bc(321)](t,e,n,r){throw new Ms("This luminance source does not support cropping.")}[bc(318)](){return!1}[bc(316)](){throw new Ms(bc(313))}[bc(326)](){throw new Ms("This luminance source does not support rotation by 45 degrees.")}[bc(311)](){const t=bc,e=new Uint8ClampedArray(this[t(325)]);let n=new xs;for(let r=0;r<this[t(323)];r++){const s=this.getRow(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(315)](i)}n[t(315)]("\n")}return n[t(311)]()}}const Cc=vc;function Sc(){const t=["getRow","getWidth","isCropSupported","1921856rytEod","rotateCounterClockwise45","622905BxVFCg","6399450ZpCAie","1023047wzrTBs","isRotateSupported","delegate","4719132HyFxDU","13242VjcogB","invert","getMatrix","getHeight","crop","13060796qbqJJL","rotateCounterClockwise"];return(Sc=function(){return t})()}function vc(t,e){const n=Sc();return(vc=function(t,e){return n[t-=124]})(t,e)}!function(){const t=vc,e=Sc();for(;;)try{if(737154===-parseInt(t(125))/1+parseInt(t(139))/2+parseInt(t(141))/3+parseInt(t(128))/4+parseInt(t(124))/5+-parseInt(t(129))/6+-parseInt(t(134))/7)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Zc extends Oc{constructor(t){const e=vc;super(t.getWidth(),t.getHeight()),this[e(127)]=t}[Cc(136)](t,e){const n=Cc,r=this[n(127)][n(136)](t,e),s=this[n(137)]();for(let t=0;t<s;t++)r[t]=255-(255&r[t]);return r}getMatrix(){const t=Cc,e=this[t(127)][t(131)](),n=this[t(137)]()*this[t(132)](),r=new Uint8ClampedArray(n);for(let t=0;t<n;t++)r[t]=255-(255&e[t]);return r}[Cc(138)](){const t=Cc;return this[t(127)][t(138)]()}crop(t,e,n,r){const s=Cc;return new Zc(this[s(127)][s(133)](t,e,n,r))}[Cc(126)](){const t=Cc;return this[t(127)][t(126)]()}[Cc(130)](){return this[Cc(127)]}[Cc(135)](){const t=Cc;return new Zc(this[t(127)][t(135)]())}[Cc(140)](){const t=Cc;return new Zc(this.delegate[t(140)]())}}const Mc=Tc;function Ec(){const t=["getWidth","crop","getHeight","rotateCounterClockwise","99iylfRj","isRotateSupported","getRow","1032695YYhmUl","102ApybIu","rotateCounterClockwise45","delegate","highContrast","isCropSupported","4870OtDbCA","255nMMTbW","212776zirBTe","197953tvsFqV","5300fLUDkm","getMatrix","threshold","1111KGaNzQ","29498XPxIAl","109935tnffLG","invert"];return(Ec=function(){return t})()}function Tc(t,e){const n=Ec();return(Tc=function(t,e){return n[t-=374]})(t,e)}!function(){const t=Tc,e=Ec();for(;;)try{if(159565===-parseInt(t(397))/1+parseInt(t(378))/2+parseInt(t(395))/3*(parseInt(t(374))/4)+parseInt(t(388))/5+parseInt(t(389))/6*(parseInt(t(379))/7)+parseInt(t(396))/8*(-parseInt(t(385))/9)+parseInt(t(394))/10*(parseInt(t(377))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Rc extends Oc{constructor(t,e=128){const n=Tc;super(t[n(381)](),t[n(383)]()),this.delegate=t,this[n(376)]=e}[Mc(387)](t,e){const n=Mc,r=this[n(391)][n(387)](t,e),s=this[n(381)]();for(let t=0;t<s;t++)r[t]=r[t]<this[n(376)]?0:255;return r}[Mc(375)](){const t=Mc,e=this[t(391)].getMatrix(),n=this[t(381)]()*this[t(383)](),r=new Uint8ClampedArray(n);for(let t=0;t<n;t++)r[t]=e[t]<this.threshold?0:255;return r}[Mc(393)](){const t=Mc;return this[t(391)][t(393)]()}crop(t,e,n,r){const s=Mc;return new Rc(this.delegate[s(382)](t,e,n,r),this[s(376)])}[Mc(386)](){const t=Mc;return this.delegate[t(386)]()}[Mc(384)](){const t=Mc;return new Rc(this[t(391)].rotateCounterClockwise(),this[t(376)])}[Mc(390)](){return new Rc(this.delegate.rotateCounterClockwise45(),this.threshold)}[Mc(380)](){return new Zc(this)}[Mc(392)](){return this}}function Wc(t,e){const n=Bc();return(Wc=function(t,e){return n[t-=221]})(t,e)}const jc=Wc;function Bc(){const t=["Requested row is outside the image: ","translate","getRow","tempCanvasElement","sin","set","makeBufferFromCanvasImageData","getTempCanvasElement","getContext","297PVEhVe","getHeight","abs","createElement","length","ceil","width","getImageData","8105790mnohQv","648YGIMYi","19748ezqGAu","2381670pueMQl","rotate","7kvMUxi","8936776quOCTX","getMatrix","1157681LjfqaL","invert","rotateCounterClockwise","toGrayscaleBuffer","isRotateSupported","DEGREE_TO_RADIANS","rotateCounterClockwise45","FRAME_INDEX","slice","cos","height","hightContrast","canvas","2991960QilQCI","drawImage","buffer","15450AlqkgR"];return(Bc=function(){return t})()}!function(){const t=Wc,e=Bc();for(;;)try{if(775201===-parseInt(t(249))/1+parseInt(t(244))/2+-parseInt(t(233))/3*(-parseInt(t(243))/4)+parseInt(t(262))/5+-parseInt(t(241))/6+parseInt(t(246))/7*(parseInt(t(247))/8)+-parseInt(t(242))/9*(parseInt(t(223))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Yc extends Oc{constructor(t,e=!1){const n=Wc;super(t[n(239)],t[n(259)]),this.canvas=t,this.tempCanvasElement=null,this.buffer=Yc[n(230)](t,e)}static[jc(230)](t,e=!1){const n=jc,r=t.getContext("2d")[n(240)](0,0,t[n(239)],t[n(259)]);return Yc[n(252)](r.data,t[n(239)],t[n(259)],e)}static[jc(252)](t,e,n,r=!1){const s=jc,i=new Uint8ClampedArray(e*n);if(Yc.FRAME_INDEX=!Yc[s(256)],Yc[s(256)]||!r)for(let e=0,n=0,r=t[s(237)];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(237)];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}[jc(226)](t,e){const n=jc;if(t<0||t>=this[n(234)]())throw new qr(n(224)+t);const r=this.getWidth(),s=t*r;return null===e?e=this[n(222)][n(257)](s,s+r):(e[n(237)]<r&&(e=new Uint8ClampedArray(r)),e[n(229)](this[n(222)][n(257)](s,s+r))),e}[jc(248)](){return this.buffer}isCropSupported(){return!0}crop(t,e,n,r){return super.crop(t,e,n,r),this}[jc(253)](){return!0}[jc(251)](){return this[jc(245)](-90),this}[jc(255)](){return this.rotate(-45),this}[jc(231)](){const t=jc;if(null===this[t(227)]){const e=this[t(261)].ownerDocument[t(236)](t(261));e.width=this[t(261)][t(239)],e[t(259)]=this[t(261)][t(259)],this[t(227)]=e}return this[t(227)]}[jc(245)](t){const e=jc,n=this[e(231)](),r=n[e(232)]("2d"),s=t*Yc[e(254)],i=this[e(261)].width,o=this[e(261)][e(259)],a=Math[e(238)](Math.abs(Math.cos(s))*i+Math[e(235)](Math[e(228)](s))*o),c=Math.ceil(Math.abs(Math.sin(s))*i+Math[e(235)](Math[e(258)](s))*o);return n[e(239)]=a,n[e(259)]=c,r[e(225)](a/2,c/2),r[e(245)](s),r[e(221)](this[e(261)],i/-2,o/-2),this[e(222)]=Yc.makeBufferFromCanvasImageData(n),this}[jc(250)](){return new Zc(this)}[jc(260)](t=128){return new Rc(this,t)}}Yc.DEGREE_TO_RADIANS=Math.PI/180,Yc[jc(256)]=!0;const Nc=Vc;function Vc(t,e){const n=Jc();return(Vc=function(t,e){return n[t-=129]})(t,e)}!function(){const t=Vc,e=Jc();for(;;)try{if(958254===-parseInt(t(130))/1+parseInt(t(172))/2+-parseInt(t(147))/3+-parseInt(t(134))/4+-parseInt(t(152))/5*(-parseInt(t(162))/6)+-parseInt(t(158))/7*(-parseInt(t(180))/8)+parseInt(t(163))/9*(parseInt(t(153))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class Uc{get[Nc(131)](){return typeof navigator!==Nc(186)}get[Nc(181)](){const t=Nc;return this[t(131)]&&!!navigator[t(149)]}get canEnumerateDevices(){const t=Nc;return!(!this.isMediaDevicesSuported||!navigator.mediaDevices[t(138)])}get[Nc(174)](){return this[Nc(129)]}set[Nc(174)](t){this[Nc(129)]=t<0?0:t}set[Nc(135)](t){this[Nc(155)]=t||null}get[Nc(135)](){return this[Nc(155)]}constructor(t,e=500,n){const r=Nc;this[r(142)]=t,this.timeBetweenScansMillis=e,this[r(155)]=n,this[r(129)]=0}[Nc(145)](t,e){const n=Nc,r=document[n(137)](t);if(!r)throw new qi(n(156)+t+"' not found");if(r[n(141)][n(182)]()!==e[n(182)]())throw new qi(n(156)+t+"' must be an "+e+" element");return r}[Nc(154)](t,e){const n=Nc;if(!t&&!e)throw new qi(n(184));return e&&!t?this[n(178)](e):this[n(136)](t)}[Nc(136)](t){const e=Nc;if(!t)throw new qi(e(143));this[e(183)]();const n=this[e(185)](t);let r;return this.imageElement=n,r=this[e(161)](n)?this[e(189)](n,!1,!0):this._decodeOnLoadImage(n),r}[Nc(178)](t){const e=Nc;if(!t)throw new qi(e(170));this.reset();const n=this.prepareImageElement();this[e(151)]=n;const r=this._decodeOnLoadImage(n);return n[e(159)]=t,r}_decodeOnLoadImage(t){return new Promise(((e,n)=>{const r=Vc;this[r(160)]=()=>this[r(189)](t,!1,!0).then(e,n),t.addEventListener(r(194),this[r(160)])}))}isImageLoaded(t){const e=Nc;return!!t[e(150)]&&0!==t[e(168)]}[Nc(185)](t){const e=Nc;let n;return typeof t===e(186)&&(n=document.createElement(e(144)),n[e(176)]=200,n[e(175)]=200),typeof t===e(132)&&(n=this[e(145)](t,"img")),t instanceof HTMLImageElement&&(n=t),n}[Nc(189)](t,e=!0,n=!0){const r=(s,i)=>{const o=Vc;try{s(this[o(188)](t))}catch(t){if(e&&t instanceof Pr||(t instanceof pi||t instanceof ys)&&n)return setTimeout(r,this[o(129)],s,i);i(t)}};return new Promise(((t,e)=>r(t,e)))}[Nc(188)](t){const e=Nc,n=this[e(165)](t);return this[e(190)](n)}[Nc(165)](t){const e=Nc;this.getCaptureCanvasContext(t),this[e(166)](t);const n=this[e(157)](t),r=new Yc(n),s=new wc(r);return new oc(s)}getCaptureCanvasContext(t){const e=Nc;if(!this[e(173)]){const n=this[e(157)](t);let r;try{r=n[e(179)]("2d",{willReadFrequently:!0})}catch(t){r=n.getContext("2d")}this[e(173)]=r}return this[e(173)]}getCaptureCanvas(t){const e=Nc;if(!this.captureCanvas){const n=this[e(169)](t);this[e(171)]=n}return this[e(171)]}drawImageOnCanvas(t,e={sx:0,sy:0,sWidth:t[Nc(168)],sHeight:t[Nc(133)],dx:0,dy:0,dWidth:t.naturalWidth,dHeight:t[Nc(133)]},n=this[Nc(173)]){const r=Nc;n[r(140)](t,e.sx,e.sy,e[r(177)],e[r(167)],e.dx,e.dy,e[r(192)],e[r(191)])}[Nc(190)](t){const e=Nc;try{return this[e(142)].decode(t,this[e(155)])}finally{this[e(142)].reset()}}[Nc(169)](t){const e=Nc;if("undefined"==typeof document)return this._destroyCaptureCanvas(),null;const n=document[e(187)](e(148));let r,s;return typeof t!==e(186)&&t instanceof HTMLImageElement&&(r=t[e(168)]||t[e(176)],s=t[e(133)]||t[e(175)]),n[e(193)].width=r+"px",n[e(193)][e(175)]=s+"px",n[e(176)]=r,n[e(175)]=s,n}[Nc(183)](){const t=Nc;this._destroyImageElement(),this[t(139)]()}_destroyImageElement(){const t=Nc;this.imageElement&&(void 0!==this[t(160)]&&this[t(151)][t(164)](t(194),this[t(160)]),this[t(151)][t(159)]="",this[t(151)][t(146)](t(159)),this.imageElement=void 0)}[Nc(139)](){this.captureCanvasContext=void 0,this.captureCanvas=void 0}}function Jc(){const t=["style","load","_timeBetweenDecodingAttempts","1570540oQCIqk","hasNavigator","string","naturalHeight","1159064gHccth","hints","decodeFromImageElement","getElementById","enumerateDevices","_destroyCaptureCanvas","drawImage","nodeName","reader","An image element must be provided.","img","getMediaElement","removeAttribute","5298420OZQOoI","canvas","mediaDevices","complete","imageElement","47070TEUDdC","19126220SqvllX","decodeFromImage","_hints","element with id '","getCaptureCanvas","12383NkPeYn","src","imageLoadedListener","isImageLoaded","564ndhgMv","9HLtyaL","removeEventListener","createBinaryBitmap","drawImageOnCanvas","sHeight","naturalWidth","createCaptureCanvas","An URL must be provided.","captureCanvas","2258188Kfrihz","captureCanvasContext","timeBetweenDecodingAttempts","height","width","sWidth","decodeFromImageUrl","getContext","2976biKgfB","isMediaDevicesSuported","toLowerCase","reset","either imageElement with a src set or an url must be provided","prepareImageElement","undefined","createElement","decode","decodeOnce","decodeBitmap","dHeight","dWidth"];return(Jc=function(){return t})()}function xc(t,e){const n=Pc();return(xc=function(t,e){return n[t-=288]})(t,e)}const Dc=xc;function Pc(){const t=["Bitmap cannot be null","405091fGmiNK","inProgressDecodes","853320ObPreJ","9RVvbGN","855NArdxb","976272FgCCPc","2980naGHcy","reset","2zcmaNy","src","createElement","safeReset","onerror","onload","_hints","decode","21PrMsEr","514788DnXQPd","4405656ycAfNa","decodeFromImageUrl","decodeBitmap","1895562lvytsk","qrReader"];return(Pc=function(){return t})()}!function(){const t=xc,e=Pc();for(;;)try{if(389261===parseInt(t(300))/1*(-parseInt(t(308))/2)+parseInt(t(297))/3+parseInt(t(306))/4*(-parseInt(t(304))/5)+-parseInt(t(293))/6*(parseInt(t(292))/7)+parseInt(t(294))/8*(parseInt(t(303))/9)+parseInt(t(302))/10+-parseInt(t(305))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();Dc(311),Dc(296),Dc(295),Dc(307);const Xc=Fc;function Gc(){const t=["648324jMxSSs","4MAmUOT","2662857dRzvfD","Rotation of ","createFromRawRGBA","buffer","length","744879KahHNM"," degrees not supported (only -90, 0, 90, 180).","RGBA data length does not match width*height*4.","_width","Crop rectangle does not fit within image data.","_height","getHeight","set","toGrayscaleBuffer","1861912lEVEGl","invert","slice"," is outside the image","19ltUePR","rotate","getMatrix","1212145aZoiGT","Requested row ","30LJzOhZ","rotateCounterClockwise45","crop","33302izAseh","getWidth","3170426pqqfDw","isCropSupported"];return(Gc=function(){return t})()}function Fc(t,e){const n=Gc();return(Fc=function(t,e){return n[t-=420]})(t,e)}!function(){const t=Fc,e=Gc();for(;;)try{if(248881===-parseInt(t(431))/1*(parseInt(t(439))/2)+-parseInt(t(450))/3*(-parseInt(t(444))/4)+-parseInt(t(434))/5+-parseInt(t(443))/6+-parseInt(t(441))/7+parseInt(t(427))/8+parseInt(t(445))/9*(parseInt(t(436))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();Xc(447),Xc(426),Xc(440),Xc(424),Xc(433),Xc(442),Xc(438),Xc(437),Xc(428),Xc(432);function Lc(t,e){var n=qc();return(Lc=function(t,e){return n[t-=464]})(t,e)}function qc(){var t=["7xaIMEK","1389828XsAPvL","119583mgQNWZ","891160TeQcOh","887392MdQtFb","6ajnCMt","282238jzbSqT","1430950gqaYjQ","4725072bYsWwR"];return(qc=function(){return t})()}function zc(t,e){var n=Kc();return(zc=function(t,e){return n[t-=251]})(t,e)}function Kc(){var t=["1099200DglPaQ","231SLJbgH","265068yvwaCY","62PzpYcF","1325404imPJqo","6eUKUXb","8533PRlOqZ","3EOSZnk","55192JQSwsg","639SHdfMY","855449cjwgMG","3929805flFUmo"];return(Kc=function(){return t})()}!function(){for(var t=Lc,e=qc();;)try{if(272148===parseInt(t(471))/1+-parseInt(t(468))/2+-parseInt(t(467))/3+parseInt(t(466))/4+parseInt(t(472))/5*(-parseInt(t(470))/6)+-parseInt(t(465))/7*(parseInt(t(469))/8)+parseInt(t(464))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),function(){for(var t=zc,e=Kc();;)try{if(396254===parseInt(t(258))/1*(-parseInt(t(255))/2)+parseInt(t(259))/3*(-parseInt(t(256))/4)+parseInt(t(251))/5+-parseInt(t(257))/6*(-parseInt(t(262))/7)+parseInt(t(260))/8*(-parseInt(t(261))/9)+parseInt(t(252))/10+-parseInt(t(253))/11*(-parseInt(t(254))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const Hc=_c;function Qc(){const t=["height","getMatrix","crop","read","153318dEBuqq","length","create","jimp","slice","toGrayscaleBuffer","Jimp failed to read image buffer:","117LkHLHO","width","getHeight","isRotateSupported","392FVEkJy","8687KNEGEl","4sVVqSC","buffer","getWidth","82960heDCOO",") does not match dimensions (","Raw RGBA buffer size (","isCropSupported","bitmap","set","Requested row is outside the image: ","8590SHozxl","invert","138nhskst","306087HdmtUm","Width and height are required for raw RGBA buffer input","Invalid image dimensions from Jimp","Failed to decode image buffer","18085XwXBsv","6038736OcSgfH","data"];return(Qc=function(){return t})()}function _c(t,e){const n=Qc();return(_c=function(t,e){return n[t-=455]})(t,e)}!function(){const t=_c,e=Qc();for(;;)try{if(154495===-parseInt(t(481))/1+-parseInt(t(465))/2+parseInt(t(491))/3*(-parseInt(t(478))/4)+parseInt(t(458))/5*(-parseInt(t(490))/6)+-parseInt(t(477))/7*(parseInt(t(476))/8)+-parseInt(t(472))/9*(-parseInt(t(488))/10)+parseInt(t(459))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();class $c extends Oc{constructor(t,e,n){const r=_c;super(t,e),this[r(479)]=n}static async[Hc(467)](t,e,n,r,s=!1){const i=Hc;let o,a,c;if(e)try{const{Jimp:e}=await import(i(468)),n=await e[i(464)](t);if(a=n[i(485)][i(473)],c=n.bitmap[i(461)],!a||!c)throw new Error(i(456));o=new Uint8ClampedArray(n[i(485)][i(460)])}catch(t){throw console.error(i(471),t),new Error(i(457))}else{if(void 0===n||void 0===r)throw new Error(i(455));if(t[i(466)]!==n*r*4)throw new Error(i(483)+t.length+i(482)+n+"x"+r+"x4 = "+n*r*4+")");a=n,c=r,o=new Uint8ClampedArray(t)}const h=$c.toGrayscaleBuffer(o,a,c,s);return new $c(a,c,h)}static[Hc(470)](t,e,n,r=!1){const s=Hc,i=new Uint8ClampedArray(e*n);if(r)for(let e=0,n=0,r=t.length;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(466)];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}getRow(t,e){const n=Hc;if(t<0||t>=this[n(474)]())throw new qr(n(487)+t);const r=this.getWidth(),s=t*r;return e?(e[n(466)]<r&&(e=new Uint8ClampedArray(r)),e[n(486)](this[n(479)].slice(s,s+r))):e=this.buffer[n(469)](s,s+r),e}[Hc(462)](){return this[Hc(479)]}[Hc(484)](){return!0}[Hc(463)](t,e,n,r){const s=Hc;if(t<0||e<0||t+n>this[s(480)]()||e+r>this[s(474)]())throw new qr("Crop rectangle does not fit within image data.");const i=new Uint8ClampedArray(n*r);for(let o=0;o<r;o++){const r=(e+o)*this[s(480)]()+t,a=o*n;i[s(486)](this[s(479)][s(469)](r,r+n),a)}return new $c(n,r,i)}[Hc(475)](){return!1}[Hc(489)](){return new Zc(this)}}function th(t,e){var n=eh();return(th=function(t,e){return n[t-=184]})(t,e)}function eh(){var t=["340070kepeck","1199296MsbIvZ","232212YIGAGD","520GCJVOs","1242jyrkAO","17512sbcKzz","27otUKpt","363oZlghk","8883lArHjj","998703bfbHLk","1172nGPshP","145WqcXGu"];return(eh=function(){return t})()}function nh(){const t=["inverted_attempt","debug","Image preprocessing error:","debug_preprocess_","getMatrix","decode","Validation process failed:","192vMUwcZ","420623Odpuxf","default","Failed to preprocess image","1503336xByXwl","getText","SVG to Luminance conversion error:","render","write","asPng","Failed to dynamically import Jimp for debugging:","11LJUKen","message","length","Failed to convert SVG to luminance source","Failed to decode QR code (both normal and inverted attempts failed)","3461XpkLfe","inverted_","Decoded successfully","substring","Binary bitmap creation error:","10LhXVEP",".png","Failed to save raw preprocessed debug image:","Inverted decode attempt failed:","read","error","Input SVG string is undefined","Unknown error occurred during validation","jimp","16hClYNX","from","First decode attempt failed:","4405GpOUta","993168KateUN","threshold","304380nYitlb","36miKVow","Decoded result is empty","getWidth","debug_","random","1583028FFigbW","Failed to create binary bitmap","toString"];return(nh=function(){return t})()}!function(){for(var t=th,e=eh();;)try{if(182650===parseInt(t(189))/1*(parseInt(t(184))/2)+parseInt(t(195))/3+-parseInt(t(191))/4*(parseInt(t(185))/5)+-parseInt(t(190))/6*(-parseInt(t(194))/7)+parseInt(t(187))/8+parseInt(t(192))/9*(-parseInt(t(186))/10)+-parseInt(t(193))/11*(parseInt(t(188))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),function(){const t=oh,e=nh();for(;;)try{if(185862===parseInt(t(314))/1*(parseInt(t(267))/2)+parseInt(t(280))/3+parseInt(t(298))/4*(-parseInt(t(279))/5)+-parseInt(t(302))/6+parseInt(t(299))/7*(parseInt(t(276))/8)+-parseInt(t(283))/9*(parseInt(t(282))/10)+-parseInt(t(309))/11*(-parseInt(t(288))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();async function rh(t,e=!1){const n=oh;try{const{buffer:n,isPng:r,width:s,height:i}=function(t,e=!1){const n=oh;try{const r=new c(t,{fitTo:{mode:"zoom",value:2}})[n(305)](),{width:s,height:i}=r;if(e){const t=Buffer[n(277)](r.pixels);for(let e=0;e<t[n(311)];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[n(307)](),isPng:!0,width:s,height:i}}catch(t){throw n(293),new Error(n(301))}}(t,e);return await $c.create(n,r,s,i)}catch(t){throw n(304),new Error(n(312))}}async function sh(t){const e=oh;try{return(t=>{const e=new wc(t);return new oc(e)})(t)}catch(t){throw e(318),new Error(e(289))}}async function ih(t,e){const n=oh,r=e[n(296)](t);if(!r.getText())throw new Error(n(284));return r}function oh(t,e){const n=nh();return(oh=function(t,e){return n[t-=267]})(t,e)}const ah={validateZxing:async t=>{const e=oh;if(!t)return{isValid:!1,isInverted:!1,message:e(273)};try{const n=new rc,r=await rh(t,!1),s=await sh(r);let i;try{return i=await ih(s,n),{isValid:!0,isInverted:!1,decodedText:i.getText(),message:e(316)}}catch(r){e(278);try{const r=await rh(t,!0),s=await sh(r);return i=await ih(s,n),{isValid:!0,isInverted:!0,decodedText:i[e(303)](),message:"Inverted decode succeeded."}}catch(t){return e(270),{isValid:!1,isInverted:!1,message:e(313)}}}}catch(t){return e(297),{isValid:!1,isInverted:!1,message:t instanceof Error?t[e(310)]:e(274)}}}};var ch;function hh(t,e){const n=uh();return(hh=function(t,e){return n[t-=388]})(t,e)}function uh(){const t=["image/","ceil","then","download","appendChild","name","onabort","4jFNlGn","1704105KfzUmJ","235813qijHjI","createElement","data:image/svg+xml;charset=utf-8,","977672sPMmVk","height","21xrrMzc","png","onload","removeChild","width","9iTpWkt","drawImage","extension",".svg","serialize","svg","canvas","toLowerCase","1733336eMQVgG","webp","4778700wARfcH","getContext","jpeg","href","11240236sKQQHg","toDataURL","min","45194040EUVRyV","body","click","data:image/svg+xml;base64,"];return(uh=function(){return t})()}!function(){const t=hh,e=uh();for(;;)try{if(970066===-parseInt(t(409))/1*(parseInt(t(407))/2)+-parseInt(t(414))/3*(parseInt(t(412))/4)+-parseInt(t(408))/5+parseInt(t(389))/6+-parseInt(t(393))/7+-parseInt(t(427))/8*(parseInt(t(419))/9)+parseInt(t(396))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),function(t){const e=hh;t[e(424)]=e(424),t.png=e(415),t[e(391)]=e(391),t[e(388)]=e(388)}(ch||(ch={}));const ph=lh;function lh(t,e){const n=fh();return(lh=function(t,e){return n[t-=185]})(t,e)}function fh(){const t=["Image load timed out","status","license","string","config","warn","set","isInitialized","4132968cHKNBB","Zbar and Zxing validation threw an error: ","height","QRCode.js (Server): No valid license found. Some features may be limited.","296895fbcpso","abort","base64","HTTP ","catch","5TLLVsK","_hls","image/svg+xml","useTemplate","XMLSerializer","Image loading failed:","split","document","isBuffer","image","DOMParser","710445JxJDkg","get","signal","28uxomPw","headers","validateScanning","application/xml","imageTools","validateZbar","Zbar and Zxing validation failed with an error","isValid","reject","toString","QRCode.js (Server): License state not yet initialized. Call QRCodeJs.initializeIfNeeded() or activate a license.","initializeIfNeeded","QRCode.js (Server): Scanning validation requires a valid license.","279MTMmrc","Valid license required for scanning validation.","mime",'" not found. Using default basic template.',"data:","hls","11663320yhkTpe","209976fthzBo","initialize","instance","getLicenseDetails","3860778AwbueN","error","QRCode.js (Server): Background license initialization failed:","validateZxing","options","Image size detection failed:","createDocument","data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSIjY2NjIi8+PHRleHQgeD0iNTAlIiB5PSI1MCUiIGRvbWluYW50LWJhc2VsaW5lPSJtaWRkbGUiIHRleHQtYW5jaG9yPSJtaWRkbGUiIGZpbGw9IiMwMDAiIGZvbnQtc2l6ZT0iMTYiPkxvZ28gbG9hZCBlcnJvcjwvdGV4dD48L3N2Zz4=","Data URL conversion failed:","activateWithKey"," - ","message","arrayBuffer",";base64,","serialize","from","setDefaultLicenseApiUrl","configureLicenseFetcher","qrCodeJsConstructor","217032NBlzBC","statusText"];return(fh=function(){return t})()}!function(){const t=lh,e=fh();for(;;)try{if(446104===-parseInt(t(236))/1+-parseInt(t(259))/2+-parseInt(t(220))/3*(parseInt(t(239))/4)+-parseInt(t(225))/5*(parseInt(t(187))/6)+parseInt(t(216))/7+parseInt(t(206))/8*(parseInt(t(252))/9)+parseInt(t(258))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const dh=void 0,Ih=ph(194);class mh extends lr{static async[ph(250)](){return kr[ph(185)].initialize()}static get[ph(257)](){const t=ph;return kr[t(185)].isInitialized?kr.instance[t(257)]:(kr[t(185)][t(260)]()[t(224)]((t=>{console.error("QRCode.js (Server): Background license initialization failed:",t)})),!1)}_hls(){const t=ph;return kr[t(185)][t(215)]?kr[t(185)][t(257)]:(kr.instance[t(260)]()[t(224)]((e=>{console[t(188)]("QRCode.js (Server): Background license initialization failed:",e)})),!1)}static getLicenseDetails(){const t=ph;return kr[t(185)].isInitialized?kr[t(185)][t(186)]():(kr[t(185)].initialize()[t(224)]((e=>{const n=t;console.error(n(189),e)})),null)}static[ph(204)](t){kr[ph(185)].configureLicenseFetcher(t)}static async token(t){return kr[ph(185)].activateWithToken(t)}static async[ph(210)](t){const e=ph;return kr[e(185)][e(196)](t)}static setLicenseUrl(t){return kr[ph(203)](t),this}constructor(i){const o=ph,a=(new t)[o(193)](null,""),c=new Map,h=async t=>{const e=o;try{if(typeof t===e(211)){let n=c[e(237)](t);return n||(n=new Promise((async(n,s)=>{const i=e,o=new AbortController,a=setTimeout((()=>{const t=lh;o[t(221)](),s(new Error(t(208)))}),15e3);try{const e=await fetch(t,{signal:o[i(238)]});if(!e.ok)throw new Error(i(223)+e[i(209)]+i(197)+e[i(207)]);const s=Buffer[i(202)](await e[i(199)]()),c=await r(s);clearTimeout(a),n({contentType:e[i(240)][i(237)]("Content-Type")||c?.[i(254)],data:s})}catch(t){clearTimeout(a),s(t)}})),c[e(214)](t,n),n)}{const n=Buffer[e(233)](t)?t:Buffer.from(await t.arrayBuffer()),s=await r(n);return{contentType:s?.[e(254)],data:n}}}catch(t){return console[e(188)](e(230),t),{contentType:e(227),data:Buffer[e(202)](Ih[e(231)](",")[1],e(222))}}};global[o(229)]=e,global[o(235)]=n,super({...i,document:i[o(232)]||a,imageTools:i[o(243)]||{toDataURL:async t=>{const e=o;try{if(typeof t===e(211)&&t.startsWith("data:"))return t;const{contentType:n,data:r}=await h(t);return e(256)+(n?.replace(e(242),e(227))||"image/png")+e(200)+r[e(248)](e(222))}catch(t){return console.error(e(195),t),Ih}},getSize:async t=>{const e=o;try{const{data:n}=Buffer.isBuffer(i[e(234)])?{data:i[e(234)]}:await h(t),r=s(n);return{width:r.width||200,height:r[e(218)]||200}}catch(t){return console.error(e(192),t),{width:200,height:200}}}}}),kr.instance[o(215)]||kr[o(185)][o(257)]?kr[o(185)].isInitialized&&!kr[o(185)][o(257)]&&console[o(213)](o(219)):console[o(213)](o(249))}async[ph(241)](){const t=ph;if(!this[t(226)]())return console[t(213)](t(251)),Promise[t(247)]({isValid:!1,message:t(253)});try{const e=await this[t(201)](),n=await Rr[t(244)](e,!1);return n[t(246)]?n:await ah[t(190)](e)}catch(e){return console[t(213)](t(217)+(e instanceof Error?e[t(198)]:String(e))),Promise[t(247)]({isValid:!1,message:e instanceof Error?e[t(198)]:t(245)})}}static[ph(228)](t){return new gh(t)}}class gh{constructor(t){const e=ph;this.qrCodeJsConstructor=mh,t&&Cn[t]?this[e(212)]=Rt({},Cn[t]):(this[e(212)]=Rt({},yn),t&&console[e(213)]('QR Code template "'+t+e(255)))}[ph(191)](t){const e=ph;this[e(212)]=Rt(this.config,t);const n=Me(this[e(212)]);return new(this[e(205)])(n)}}class wh extends mh{[ph(226)](){return!0}constructor(t){super(t)}}export{le as CornerDotType,Ie as CornerSquareType,he as DotType,wt as ErrorCorrectionLevel,Re as ErrorCorrectionPercents,ch as FileExtension,oe as GradientType,ke as ImageMode,bt as Mode,mh as QRCodeJs,we as ShapeType,gt as TypeNumber,wh as _,dh 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)})("AAAAAAABAAEAAgACAAMAAwAEAAQABQAFAAYABgAHAAcACAAIAAkACQAKAAoACwALAAwADAANAA0ADgAOAA8ADwAQABAAEQARABIAEgATABMAFAAUABUAFQAWABYAFwAXABgAGAAZABkAGgAaABsAGwAcABwAHQAdAB4AHgAfAB8AIAAgACEAIQAiACIAIwAjACQAJAAlACUAJgAmACcAJwAoACgAKQApACoAKgArACsALAAsAC0ALQAuAC4ALwAvADAAMAAxADEAMgAyADMAMwA0ADQANQA1ADYANgA3ADcAOAA4ADkAOQA6ADoAOwA7ADwAPAA9AD0APgA+AD8APwBAAEAAQQBBAEIAQgBDAEMARABEAEUARQBGAEYARwBHAEgASABJAEkASgBKAEsASwBMAEwATQBNAE4ATgBPAE8AUABQAFEAUQBSAFIAUwBTAFQAVABVAFUAVgBWAFcAVwBYAFgAWQBZAFoAWgBbAFsAXABcAF0AXQBeAF4AXwBfAGAAYABhAGEAYgBiAGMAYwBkAGQAZQBlAGYAZgBnAGcAaABoAGkAaQBqAGoAawBrAGwAbABtAG0AbgBuAG8AbwBwAHAAcQBxAHIAcgBzAHMAdAB0AHUAdQB2AHYAdwB3AHgAeAB5AHkAegB6AHsAewB8AHwAfQB9AH4AfgB/AH8AooGRAKOBkgCngZgAqIFOAKyBygCwgYsAsYF9ALSBTAC2gfcA14F+APeBgAORg58DkoOgA5ODoQOUg6IDlYOjA5aDpAOXg6UDmIOmA5mDpwOag6gDm4OpA5yDqgOdg6sDnoOsA5+DrQOgg64DoYOvA6ODsAOkg7EDpYOyA6aDswOng7QDqIO1A6mDtgOxg78DsoPAA7ODwQO0g8IDtYPDA7aDxAO3g8UDuIPGA7mDxwO6g8gDu4PJA7yDygO9g8sDvoPMA7+DzQPAg84DwYPPA8OD0APEg9EDxYPSA8aD0wPHg9QDyIPVA8mD1gQBhEYEEIRABBGEQQQShEIEE4RDBBSERAQVhEUEFoRHBBeESAQYhEkEGYRKBBqESwQbhEwEHIRNBB2ETgQehE8EH4RQBCCEUQQhhFIEIoRTBCOEVAQkhFUEJYRWBCaEVwQnhFgEKIRZBCmEWgQqhFsEK4RcBCyEXQQthF4ELoRfBC+EYAQwhHAEMYRxBDKEcgQzhHMENIR0BDWEdQQ2hHcEN4R4BDiEeQQ5hHoEOoR7BDuEfAQ8hH0EPYR+BD6EgAQ/hIEEQISCBEGEgwRChIQEQ4SFBESEhgRFhIcERoSIBEeEiQRIhIoESYSLBEqEjARLhI0ETISOBE2EjwROhJAET4SRBFGEdiAQgV0gFIFcIBaBYSAYgWUgGYFmIByBZyAdgWggIIH1ICGB9iAlgWQgJoFjIDCB8SAygYwgM4GNIDuBpiEDgY4hK4HwIZCBqSGRgaohkoGoIZOBqyHSgcsh1IHMIgCBzSICgd0iA4HOIgeB3iIIgbgiC4G5IhKBfCIageMiHYHlIh6BhyIggdoiJ4HIIiiBySIpgb8iKoG+IiuB5yIsgegiNIGIIjWB5iI9geQiUoHgImCBgiJhgd8iZoGFImeBhiJqgeEia4HiIoKBvCKDgb0ihoG6IoeBuyKlgdsjEoHcJQCEnyUBhKolAoSgJQOEqyUMhKElD4SsJRCEoiUThK0lFISkJReEryUYhKMlG4SuJRyEpSUdhLolIIS1JSOEsCUkhKclJYS8JSiEtyUrhLIlLISmJS+EtiUwhLslM4SxJTSEqCU3hLglOIS9JTuEsyU8hKklP4S5JUKEviVLhLQloIGhJaGBoCWygaMls4GiJbyBpSW9gaQlxoGfJceBniXLgZslzoGdJc+BnCXvgfwmBYGaJgaBmSZAgYomQoGJJmqB9CZtgfMmb4HyMACBQDABgUEwAoFCMAOBVjAFgVgwBoFZMAeBWjAIgXEwCYFyMAqBczALgXQwDIF1MA2BdjAOgXcwD4F4MBCBeTARgXowEoGnMBOBrDAUgWswFYFsMByBYDBBgp8wQoKgMEOCoTBEgqIwRYKjMEaCpDBHgqUwSIKmMEmCpzBKgqgwS4KpMEyCqjBNgqswToKsME+CrTBQgq4wUYKvMFKCsDBTgrEwVIKyMFWCszBWgrQwV4K1MFiCtjBZgrcwWoK4MFuCuTBcgrowXYK7MF6CvDBfgr0wYIK+MGGCvzBigsAwY4LBMGSCwjBlgsMwZoLEMGeCxTBogsYwaYLHMGqCyDBrgskwbILKMG2CyzBugswwb4LNMHCCzjBxgs8wcoLQMHOC0TB0gtIwdYLTMHaC1DB3gtUweILWMHmC1zB6gtgwe4LZMHyC2jB9gtswfoLcMH+C3TCAgt4wgYLfMIKC4DCDguEwhILiMIWC4zCGguQwh4LlMIiC5jCJgucwioLoMIuC6TCMguowjYLrMI6C7DCPgu0wkILuMJGC7zCSgvAwk4LxMJuBSjCcgUswnYFUMJ6BVTChg0AwooNBMKODQjCkg0MwpYNEMKaDRTCng0YwqINHMKmDSDCqg0kwq4NKMKyDSzCtg0wwroNNMK+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};