@ekyc_qoobiss/qbs-ect-cmp 1.5.11

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 (163) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +26 -0
  3. package/dist/assets/animations/face/LookDown.gif +0 -0
  4. package/dist/assets/animations/face/LookLeft.gif +0 -0
  5. package/dist/assets/animations/face/LookRight.gif +0 -0
  6. package/dist/assets/animations/face/LookUp.gif +0 -0
  7. package/dist/assets/animations/face/TiltLeft.gif +0 -0
  8. package/dist/assets/animations/face/TiltRight.gif +0 -0
  9. package/dist/assets/animations/face/general.gif +0 -0
  10. package/dist/assets/animations/id/present-id.gif +0 -0
  11. package/dist/assets/animations/id/straighten-id.gif +0 -0
  12. package/dist/assets/animations/id/tilt-id.gif +0 -0
  13. package/dist/assets/buletin/metadata.json +1 -0
  14. package/dist/assets/buletin/model.json +1 -0
  15. package/dist/assets/buletin/weights.bin +0 -0
  16. package/dist/assets/buletin-v2/metadata.json +1 -0
  17. package/dist/assets/buletin-v2/model.json +1 -0
  18. package/dist/assets/buletin-v2/weights.bin +0 -0
  19. package/dist/assets/canvas-masks/face_green.svg +8 -0
  20. package/dist/assets/canvas-masks/face_white.svg +8 -0
  21. package/dist/assets/canvas-masks/id_green.svg +6 -0
  22. package/dist/assets/canvas-masks/id_white.svg +6 -0
  23. package/dist/assets/capture-error/idError.png +0 -0
  24. package/dist/assets/capture-error/idError.svg +8 -0
  25. package/dist/assets/capture-error/selfieError.png +0 -0
  26. package/dist/assets/capture-error/selfieError.svg +11 -0
  27. package/dist/assets/complete.svg +4 -0
  28. package/dist/assets/howtos/circle.svg +11 -0
  29. package/dist/assets/howtos/idscan.svg +293 -0
  30. package/dist/assets/howtos/liveness.svg +97 -0
  31. package/dist/assets/landing/device.svg +14 -0
  32. package/dist/assets/landing/id.svg +3 -0
  33. package/dist/assets/landing/info.svg +3 -0
  34. package/dist/assets/landing/validation.svg +16 -0
  35. package/dist/cjs/agreement-check_12.cjs.entry.js +6143 -0
  36. package/dist/cjs/index-9ebcada7.js +1487 -0
  37. package/dist/cjs/index.cjs.js +2 -0
  38. package/dist/cjs/loader-dots.cjs.entry.js +19 -0
  39. package/dist/cjs/loader.cjs.js +21 -0
  40. package/dist/cjs/qbs-ect-cmp.cjs.js +19 -0
  41. package/dist/collection/assets/canvas-masks/face_green.svg +8 -0
  42. package/dist/collection/assets/canvas-masks/face_white.svg +8 -0
  43. package/dist/collection/assets/canvas-masks/id_green.svg +6 -0
  44. package/dist/collection/assets/canvas-masks/id_white.svg +6 -0
  45. package/dist/collection/assets/capture-error/idError.svg +8 -0
  46. package/dist/collection/assets/capture-error/selfieError.svg +11 -0
  47. package/dist/collection/assets/complete.svg +4 -0
  48. package/dist/collection/assets/howtos/circle.svg +11 -0
  49. package/dist/collection/assets/howtos/idscan.svg +293 -0
  50. package/dist/collection/assets/howtos/liveness.svg +97 -0
  51. package/dist/collection/assets/landing/device.svg +14 -0
  52. package/dist/collection/assets/landing/id.svg +3 -0
  53. package/dist/collection/assets/landing/info.svg +3 -0
  54. package/dist/collection/assets/landing/validation.svg +16 -0
  55. package/dist/collection/collection-manifest.json +24 -0
  56. package/dist/collection/components/agreement-check/agreement-check.css +0 -0
  57. package/dist/collection/components/agreement-check/agreement-check.js +75 -0
  58. package/dist/collection/components/agreement-info/agreement-info.css +0 -0
  59. package/dist/collection/components/agreement-info/agreement-info.js +72 -0
  60. package/dist/collection/components/capture-error/capture-error.css +0 -0
  61. package/dist/collection/components/capture-error/capture-error.js +107 -0
  62. package/dist/collection/components/controls/camera/camera.css +43 -0
  63. package/dist/collection/components/controls/camera/camera.js +306 -0
  64. package/dist/collection/components/controls/loader-dots/loader-dots.css +61 -0
  65. package/dist/collection/components/controls/loader-dots/loader-dots.js +18 -0
  66. package/dist/collection/components/end-redirect/end-redirect.css +128 -0
  67. package/dist/collection/components/end-redirect/end-redirect.js +25 -0
  68. package/dist/collection/components/how-to-info/how-to-info.css +0 -0
  69. package/dist/collection/components/how-to-info/how-to-info.js +105 -0
  70. package/dist/collection/components/id-back-capture/id-back-capture.css +35 -0
  71. package/dist/collection/components/id-back-capture/id-back-capture.js +201 -0
  72. package/dist/collection/components/id-capture/id-capture.css +35 -0
  73. package/dist/collection/components/id-capture/id-capture.js +201 -0
  74. package/dist/collection/components/identification-component/identification-component.css +999 -0
  75. package/dist/collection/components/identification-component/identification-component.js +397 -0
  76. package/dist/collection/components/landing-validation/landing-validation.css +0 -0
  77. package/dist/collection/components/landing-validation/landing-validation.js +78 -0
  78. package/dist/collection/components/selfie-capture/selfie-capture.css +22 -0
  79. package/dist/collection/components/selfie-capture/selfie-capture.js +198 -0
  80. package/dist/collection/components/sms-code-validation/sms-code-validation.css +0 -0
  81. package/dist/collection/components/sms-code-validation/sms-code-validation.js +91 -0
  82. package/dist/collection/global.js +0 -0
  83. package/dist/collection/helpers/ApiCall.js +153 -0
  84. package/dist/collection/helpers/Cameras.js +98 -0
  85. package/dist/collection/helpers/Events.js +79 -0
  86. package/dist/collection/helpers/ML5.js +20 -0
  87. package/dist/collection/helpers/Stream.js +223 -0
  88. package/dist/collection/helpers/canvas.js +10 -0
  89. package/dist/collection/helpers/index.js +54 -0
  90. package/dist/collection/helpers/security.js +25 -0
  91. package/dist/collection/helpers/store.js +15 -0
  92. package/dist/collection/helpers/textValues.js +82 -0
  93. package/dist/collection/index.js +1 -0
  94. package/dist/collection/libs/FaceML5Detector/FaceML5Detector.js +206 -0
  95. package/dist/collection/libs/FaceML5Detector/FacePose.js +84 -0
  96. package/dist/collection/libs/IDML5Detector/IDML5Detector.js +110 -0
  97. package/dist/collection/libs/IDML5Detector/IDPose.js +5 -0
  98. package/dist/collection/models/ICamera.js +1 -0
  99. package/dist/collection/models/IConstraints.js +1 -0
  100. package/dist/collection/models/IDevice.js +1 -0
  101. package/dist/collection/utils/utils.js +10 -0
  102. package/dist/esm/agreement-check_12.entry.js +6128 -0
  103. package/dist/esm/index-3fe6775c.js +1457 -0
  104. package/dist/esm/index.js +1 -0
  105. package/dist/esm/loader-dots.entry.js +15 -0
  106. package/dist/esm/loader.js +17 -0
  107. package/dist/esm/polyfills/core-js.js +11 -0
  108. package/dist/esm/polyfills/css-shim.js +1 -0
  109. package/dist/esm/polyfills/dom.js +79 -0
  110. package/dist/esm/polyfills/es5-html-element.js +1 -0
  111. package/dist/esm/polyfills/index.js +34 -0
  112. package/dist/esm/polyfills/system.js +6 -0
  113. package/dist/esm/qbs-ect-cmp.js +17 -0
  114. package/dist/index.cjs.js +1 -0
  115. package/dist/index.js +1 -0
  116. package/dist/loader/cdn.js +3 -0
  117. package/dist/loader/index.cjs.js +3 -0
  118. package/dist/loader/index.d.ts +12 -0
  119. package/dist/loader/index.es2017.js +3 -0
  120. package/dist/loader/index.js +4 -0
  121. package/dist/loader/package.json +11 -0
  122. package/dist/qbs-ect-cmp/index.esm.js +0 -0
  123. package/dist/qbs-ect-cmp/p-3ef0bad2.entry.js +1373 -0
  124. package/dist/qbs-ect-cmp/p-3fa495e4.js +2 -0
  125. package/dist/qbs-ect-cmp/p-a69bb428.entry.js +1 -0
  126. package/dist/qbs-ect-cmp/qbs-ect-cmp.css +1 -0
  127. package/dist/qbs-ect-cmp/qbs-ect-cmp.esm.js +1 -0
  128. package/dist/types/components/agreement-check/agreement-check.d.ts +11 -0
  129. package/dist/types/components/agreement-info/agreement-info.d.ts +13 -0
  130. package/dist/types/components/capture-error/capture-error.d.ts +11 -0
  131. package/dist/types/components/controls/camera/camera.d.ts +33 -0
  132. package/dist/types/components/controls/loader-dots/loader-dots.d.ts +3 -0
  133. package/dist/types/components/end-redirect/end-redirect.d.ts +4 -0
  134. package/dist/types/components/how-to-info/how-to-info.d.ts +13 -0
  135. package/dist/types/components/id-back-capture/id-back-capture.d.ts +26 -0
  136. package/dist/types/components/id-capture/id-capture.d.ts +26 -0
  137. package/dist/types/components/identification-component/identification-component.d.ts +31 -0
  138. package/dist/types/components/landing-validation/landing-validation.d.ts +11 -0
  139. package/dist/types/components/selfie-capture/selfie-capture.d.ts +26 -0
  140. package/dist/types/components/sms-code-validation/sms-code-validation.d.ts +14 -0
  141. package/dist/types/components.d.ts +262 -0
  142. package/dist/types/global.d.ts +0 -0
  143. package/dist/types/helpers/ApiCall.d.ts +12 -0
  144. package/dist/types/helpers/Cameras.d.ts +8 -0
  145. package/dist/types/helpers/Events.d.ts +12 -0
  146. package/dist/types/helpers/ML5.d.ts +8 -0
  147. package/dist/types/helpers/Stream.d.ts +58 -0
  148. package/dist/types/helpers/canvas.d.ts +2 -0
  149. package/dist/types/helpers/index.d.ts +4 -0
  150. package/dist/types/helpers/security.d.ts +4 -0
  151. package/dist/types/helpers/store.d.ts +10 -0
  152. package/dist/types/helpers/textValues.d.ts +78 -0
  153. package/dist/types/index.d.ts +1 -0
  154. package/dist/types/libs/FaceML5Detector/FaceML5Detector.d.ts +43 -0
  155. package/dist/types/libs/FaceML5Detector/FacePose.d.ts +37 -0
  156. package/dist/types/libs/IDML5Detector/IDML5Detector.d.ts +22 -0
  157. package/dist/types/libs/IDML5Detector/IDPose.d.ts +4 -0
  158. package/dist/types/models/ICamera.d.ts +10 -0
  159. package/dist/types/models/IConstraints.d.ts +21 -0
  160. package/dist/types/models/IDevice.d.ts +11 -0
  161. package/dist/types/stencil-public-runtime.d.ts +1581 -0
  162. package/dist/types/utils/utils.d.ts +2 -0
  163. package/package.json +51 -0
@@ -0,0 +1,97 @@
1
+ <svg width="337" height="226" viewBox="0 0 337 226" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g filter="url(#filter0_d_14_2624)">
3
+ <g clip-path="url(#clip0_14_2624)">
4
+ <rect x="13" y="8" width="311" height="200" rx="30" fill="#989CAC"/>
5
+ <g clip-path="url(#clip1_14_2624)">
6
+ <path d="M130.453 119.396C130.453 119.396 121.615 104.783 103.215 108.935C103.215 108.935 96.7579 110.446 105.955 122.713C106.396 123.295 106.955 123.942 107.407 124.536C108.548 126.018 109.571 127.6 110.554 129.193C112.088 131.675 113.476 134.256 114.535 136.979C115.852 140.384 116.575 143.965 116.81 147.605C117.257 154.45 116.175 161.348 116.205 168.21C116.211 170.521 116.299 172.827 116.546 175.126C116.775 177.29 117.14 179.442 117.687 181.547C118.21 183.582 118.892 185.576 119.757 187.493C120.621 189.421 121.668 191.274 122.92 192.985C124.255 194.808 125.825 196.46 127.601 197.86C129.195 199.113 130.941 200.153 132.782 201V229.997H198.779V184.688L130.453 119.396Z" fill="#FFD5AC"/>
7
+ <path opacity="0.7" d="M136.528 192.303L175.027 225.41H198.767V192.303H136.528Z" fill="#E8AA7C"/>
8
+ <path d="M107.801 125.053C111.647 117.762 104.844 112.205 102.815 111.681C102.491 111.599 101.298 111.369 101.062 111.587C100.792 113.422 101.521 116.468 105.079 121.496C105.108 121.537 105.138 121.578 105.167 121.619C105.414 121.972 105.679 122.331 105.955 122.701C106.396 123.283 106.955 123.93 107.407 124.524C107.531 124.683 107.643 124.848 107.766 125.006C107.778 125.018 107.79 125.042 107.807 125.048L107.801 125.053Z" fill="#FFF3D9"/>
9
+ <path d="M203.436 32H136.234C130.437 32 125.737 36.6995 125.737 42.4967V181.806C125.737 187.603 130.437 192.303 136.234 192.303H203.436C209.234 192.303 213.933 187.603 213.933 181.806V42.4967C213.933 36.6995 209.234 32 203.436 32Z" fill="#292D30"/>
10
+ <path d="M211.428 42.4967V181.806C211.428 186.216 207.847 189.792 203.442 189.792H136.24C131.835 189.792 128.254 186.216 128.254 181.806V42.4967C128.254 38.0922 131.829 34.511 136.24 34.511L203.442 34.511C207.847 34.511 211.428 38.0863 211.428 42.4967Z" fill="white"/>
11
+ <path d="M189.435 128.458H150.224V134.168H189.435V128.458Z" fill="white"/>
12
+ <path d="M128.254 139.484V181.812C128.254 186.222 131.829 189.798 136.24 189.798H169.829V166.123H169.87V134.933H143.555L128.26 139.49L128.254 139.484Z" fill="#5F6571"/>
13
+ <path d="M211.422 139.484L196.127 134.927H169.812V166.117H169.853V189.792H203.442C207.853 189.792 211.428 186.217 211.428 181.806V139.478L211.422 139.484Z" fill="#5F6571"/>
14
+ <path d="M169.853 131.84C169.853 131.84 160.938 130.464 152.999 120.849V149.734H186.706V120.861C178.768 130.464 169.853 131.84 169.853 131.84Z" fill="#FFE1AA"/>
15
+ <path d="M146.095 95.1625C147.107 99.8846 146.26 104.071 144.202 104.513C142.15 104.948 139.662 101.472 138.645 96.7561C137.639 92.0341 138.492 87.8589 140.544 87.412C142.602 86.971 145.072 90.4464 146.089 95.1625H146.095Z" fill="#F8D09A"/>
16
+ <path d="M193.604 95.1625C192.587 99.8846 193.445 104.071 195.498 104.513C197.544 104.948 200.025 101.472 201.049 96.7561C202.054 92.0341 201.207 87.8589 199.155 87.412C197.103 86.971 194.61 90.4464 193.604 95.1625Z" fill="#F8D09A"/>
17
+ <path d="M169.853 51.2292C136.028 51.2292 141.015 83.7073 141.015 83.7073C143.061 127.758 169.853 131.845 169.853 131.845C169.853 131.845 196.656 127.758 198.703 83.7073C198.703 83.7073 203.689 51.2292 169.853 51.2292Z" fill="#FBD9A3"/>
18
+ <path d="M169.853 131.839C169.853 131.839 160.938 130.463 152.999 120.849V124.112C160.938 133.721 169.853 135.103 169.853 135.103C169.853 135.103 178.767 133.727 186.706 124.124V120.86C178.767 130.463 169.853 131.839 169.853 131.839Z" fill="#EEB678"/>
19
+ <path d="M198.703 83.7073C198.703 83.7073 203.689 51.2292 169.853 51.2292V131.839C169.853 131.839 196.656 127.752 198.703 83.7014V83.7073Z" fill="#FCBE73"/>
20
+ <path d="M169.788 50.8648H169.77C135.916 50.8648 140.903 83.3722 140.903 83.3722C141.044 86.1361 141.268 88.747 141.568 91.211H146.078C146.078 91.211 145.978 91.0051 146.013 90.7758C146.037 90.617 146.201 90.4465 146.178 90.3289C142.279 74.7632 149.783 64.8075 149.783 64.8075C154.393 71.5877 169.776 71.5877 169.776 71.5877C169.776 71.5877 185.166 71.5877 189.776 64.8075C189.776 64.8075 197.15 74.5868 193.475 89.9231C193.434 90.1113 193.834 90.3524 193.875 90.5994C193.928 90.9111 193.634 91.211 193.634 91.211H198.067C198.379 88.747 198.673 86.2361 198.803 83.4663C198.803 83.4663 203.642 50.8589 169.782 50.8589L169.788 50.8648Z" fill="#894249"/>
21
+ <path d="M169.859 124.159C175.863 124.159 180.732 120.478 180.732 115.938H158.992C158.992 120.478 163.861 124.159 169.859 124.159Z" fill="white"/>
22
+ <path d="M169.859 96.0505L177.139 107.447L169.859 113.886V96.0505Z" fill="#FBD9A3"/>
23
+ <path d="M169.817 50.8706V71.5935C170.235 71.5935 185.23 71.4994 189.782 64.8133C189.782 64.8133 197.156 74.5926 193.481 89.929C193.439 90.1171 193.839 90.3583 193.881 90.6052C193.933 90.9169 193.639 91.2168 193.639 91.2168H198.073C198.385 88.7529 198.679 86.2419 198.808 83.4722C198.808 83.4722 203.648 50.8882 169.817 50.8706Z" fill="#894249"/>
24
+ <path d="M188.453 60.3854C188.259 60.1326 188.029 59.815 187.741 59.4798C187.43 59.1682 187.077 58.8095 186.677 58.4331C186.295 58.0332 185.807 57.6922 185.295 57.3158C185.036 57.1335 184.783 56.9218 184.501 56.7513C184.219 56.5749 183.925 56.4102 183.631 56.2338C183.043 55.8692 182.396 55.5752 181.731 55.2812C181.079 54.9577 180.373 54.7578 179.685 54.499C178.991 54.2697 178.28 54.0992 177.58 53.9228C176.874 53.7875 176.186 53.6346 175.504 53.5582C174.828 53.4641 174.169 53.4053 173.546 53.3759C172.922 53.3229 172.334 53.3347 171.793 53.3406C170.705 53.3582 169.806 53.4523 169.176 53.5523C168.547 53.6464 168.2 53.7405 168.2 53.7405C168.2 53.7405 178.844 54.1345 188.835 61.0558C188.682 60.7265 188.447 60.3796 188.447 60.3796L188.453 60.3854Z" fill="#A85B66"/>
25
+ <path d="M159.509 92.9809C159.509 94.7333 158.092 96.1564 156.333 96.1564C154.575 96.1564 153.152 94.7333 153.152 92.9809C153.152 91.2285 154.575 89.7996 156.333 89.7996C158.092 89.7996 159.509 91.2226 159.509 92.9809Z" fill="#353535"/>
26
+ <path d="M186.365 92.9809C186.365 94.7333 184.942 96.1623 183.19 96.1623C181.437 96.1623 180.008 94.7392 180.008 92.9809C180.008 91.2226 181.432 89.7996 183.19 89.7996C184.948 89.7996 186.365 91.2226 186.365 92.9809Z" fill="#353535"/>
27
+ <path d="M197.685 84.8776C184.372 82.7371 179.009 84.0896 179.009 84.0896C172.328 86.0478 169.865 85.6185 169.865 85.6185C169.865 85.6185 167.401 86.0478 160.714 84.0896C160.714 84.0896 155.398 82.7488 142.232 84.8423L138.221 85.3774L138.763 87.9707L142.038 88.7117C142.038 88.7117 143.573 89.041 143.737 90.1936C143.679 93.2397 144.155 97.3443 146.178 99.767C149.536 103.807 157.28 103.384 161.432 101.196C161.432 101.196 165.919 98.8379 167.618 91.9459C167.618 91.9459 168 89.6408 169.865 89.6408C171.729 89.6408 172.111 91.9459 172.111 91.9459C173.804 98.8379 178.297 101.196 178.297 101.196C182.461 103.384 190.193 103.801 193.551 99.767C195.568 97.3501 196.045 93.2397 195.992 90.1936C196.15 89.041 197.685 88.7117 197.685 88.7117L200.749 88.2706L201.413 85.1598L197.685 84.8776ZM162.902 97.9264C162.902 97.9264 161.067 100.749 155.945 101.431C155.945 101.431 149.765 102.478 147.413 98.3439C147.413 98.3439 144.737 93.4278 146.889 87.512C146.889 87.512 147.36 85.2657 155.945 85.1598C155.945 85.1598 164.631 85.3245 165.313 89.0821C165.313 89.0821 166.148 93.2044 162.908 97.9264H162.902ZM192.31 98.3439C189.952 102.478 183.79 101.431 183.79 101.431C178.656 100.749 176.827 97.9264 176.827 97.9264C173.581 93.2044 174.416 89.0821 174.416 89.0821C175.098 85.3186 183.79 85.1598 183.79 85.1598C192.363 85.2716 192.84 87.512 192.84 87.512C194.98 93.422 192.316 98.3439 192.316 98.3439H192.31Z" fill="#292D30"/>
28
+ <path d="M150.224 128.458L162.514 189.792H177.174L189.435 128.458L169.812 142.965L150.224 128.458Z" fill="white"/>
29
+ <path d="M176.41 189.792L174.216 155.026H165.484L163.284 189.792H176.41Z" fill="#37B0F4"/>
30
+ <path d="M165.131 160.642L169.853 165.364L174.569 160.642L174.216 155.026H165.484L165.131 160.642Z" fill="#0B83B7"/>
31
+ <path d="M169.85 142.516L160.501 151.862L169.847 161.211L179.196 151.865L169.85 142.516Z" fill="#37B0F4"/>
32
+ <path d="M177.168 189.792H187.465C191.028 182.5 194.974 174.491 199.161 166.117L190.587 158.231L200.061 159.025V136.615L189.423 128.458L177.168 189.798V189.792Z" fill="#3C4047"/>
33
+ <path d="M150.224 128.458L139.58 136.615V159.025L149.053 158.231L140.474 166.117C144.655 174.497 148.606 182.506 152.176 189.792H162.508L150.218 128.452L150.224 128.458Z" fill="#3C4047"/>
34
+ <path d="M155.957 34.3589L156.323 34.0759L155.957 34.0405V34.3589Z" fill="white"/>
35
+ <path d="M187.882 33.0525H151.794C150.735 33.0525 149.877 33.9108 149.877 34.9695V37.6922C149.877 38.751 150.735 39.6093 151.794 39.6093H187.882C188.941 39.6093 189.8 38.751 189.8 37.6922V34.9695C189.8 33.9108 188.941 33.0525 187.882 33.0525Z" fill="#292D30"/>
36
+ <path d="M189.8 36.7103C189.8 35.6988 190.488 34.5109 191.423 34.5109L191.164 33.6406L186.365 34.0758L189.8 36.7103Z" fill="#292D30"/>
37
+ <path d="M151.653 33.7641L148.518 33.6406L148.26 34.5109C149.195 34.5109 149.883 35.6988 149.883 36.7103L151.659 33.7641H151.653Z" fill="#292D30"/>
38
+ <path d="M181.92 36.0282C181.92 36.728 181.349 37.2984 180.649 37.2984C179.95 37.2984 179.379 36.728 179.379 36.0282C179.379 35.3285 179.95 34.7581 180.649 34.7581C181.349 34.7581 181.92 35.3285 181.92 36.0282Z" fill="#387AE5"/>
39
+ <path d="M176.051 36.869H163.625C163.167 36.869 162.79 36.4927 162.79 36.034C162.79 35.5753 163.167 35.199 163.625 35.199H176.051C176.509 35.199 176.886 35.5753 176.886 36.034C176.886 36.4927 176.509 36.869 176.051 36.869Z" fill="#474C4F"/>
40
+ <path d="M213.586 65.0015H213.451C212.756 65.0015 212.192 65.5649 212.192 66.2599V80.279C212.192 80.974 212.756 81.5375 213.451 81.5375H213.586C214.281 81.5375 214.845 80.974 214.845 80.279V66.2599C214.845 65.5649 214.281 65.0015 213.586 65.0015Z" fill="#292D30"/>
41
+ <path d="M126.225 65.0015H126.09C125.395 65.0015 124.831 65.5649 124.831 66.2599V80.279C124.831 80.974 125.395 81.5375 126.09 81.5375H126.225C126.92 81.5375 127.484 80.974 127.484 80.279V66.2599C127.484 65.5649 126.92 65.0015 126.225 65.0015Z" fill="#292D30"/>
42
+ <path d="M126.225 84.854H126.09C125.395 84.854 124.831 85.4174 124.831 86.1124V100.132C124.831 100.827 125.395 101.39 126.09 101.39H126.225C126.92 101.39 127.484 100.827 127.484 100.132V86.1124C127.484 85.4174 126.92 84.854 126.225 84.854Z" fill="#292D30"/>
43
+ <path d="M126.225 47.6304H126.09C125.395 47.6304 124.831 48.1938 124.831 48.8888V55.375C124.831 56.07 125.395 56.6334 126.09 56.6334H126.225C126.92 56.6334 127.484 56.07 127.484 55.375V48.8888C127.484 48.1938 126.92 47.6304 126.225 47.6304Z" fill="#292D30"/>
44
+ <path opacity="0.45" d="M211.428 75.4512H128.254V104.807H211.428V75.4512Z" fill="url(#paint0_linear_14_2624)"/>
45
+ <path d="M211.428 73.887H128.254V75.4571H211.428V73.887Z" fill="#FF4C48"/>
46
+ <path d="M235.491 98.5086C236.949 102.049 235.103 106.171 231.369 107.706L209.146 116.856C205.412 118.391 201.201 116.768 199.743 113.227L198.138 109.335C196.679 105.795 198.526 101.672 202.26 100.137L224.482 90.9874C228.217 89.4526 232.427 91.0756 233.885 94.6157L235.491 98.5086Z" fill="#FFD5AC"/>
47
+ <path d="M198.902 111.169L199.737 113.204C201.196 116.744 205.406 118.373 209.14 116.832L231.357 107.682C235.091 106.147 236.937 102.025 235.479 98.4851L234.644 96.4563L198.896 111.175L198.902 111.169Z" fill="#F8BB85"/>
48
+ <g opacity="0.8">
49
+ <path d="M215.92 107.912C216.32 108.882 215.815 110.011 214.791 110.428L205.694 114.174C204.671 114.598 203.518 114.151 203.119 113.18L200.319 106.383C199.92 105.412 200.425 104.289 201.449 103.866L210.546 100.12C211.569 99.6964 212.721 100.143 213.121 101.114L215.92 107.912Z" fill="#FFF0CC"/>
50
+ </g>
51
+ <path d="M232.933 117.403C234.391 120.943 232.545 125.065 228.81 126.6L206.588 135.75C202.854 137.285 198.643 135.662 197.185 132.121L195.58 128.229C194.121 124.689 195.968 120.566 199.702 119.031L221.924 109.881C225.659 108.341 229.869 109.964 231.327 113.51L232.933 117.403Z" fill="#FFD5AC"/>
52
+ <path d="M196.338 130.057L197.173 132.092C198.632 135.632 202.842 137.261 206.576 135.72L228.799 126.57C232.533 125.029 234.379 120.913 232.921 117.373L232.086 115.338L196.338 130.057Z" fill="#F8BB85"/>
53
+ <g opacity="0.8">
54
+ <path d="M213.357 126.8C213.756 127.77 213.251 128.899 212.228 129.317L203.13 133.062C202.107 133.486 200.955 133.039 200.555 132.069L197.756 125.277C197.356 124.306 197.861 123.177 198.885 122.76L207.982 119.014C209.005 118.59 210.158 119.037 210.557 120.008L213.357 126.806V126.8Z" fill="#FFF0CC"/>
55
+ </g>
56
+ <path d="M231.657 136.767C233.115 140.307 231.269 144.424 227.534 145.964L205.312 155.114C201.578 156.649 197.367 155.026 195.909 151.486L194.304 147.593C192.845 144.053 194.692 139.931 198.426 138.39L220.642 129.24C224.377 127.705 228.587 129.328 230.045 132.868L231.645 136.761L231.657 136.767Z" fill="#FFD5AC"/>
57
+ <path d="M195.062 149.428L195.897 151.463C197.355 155.003 201.566 156.632 205.3 155.091L227.523 145.941C231.257 144.406 233.103 140.284 231.645 136.744L230.81 134.709L195.068 149.428H195.062Z" fill="#F8BB85"/>
58
+ <g opacity="0.8">
59
+ <path d="M212.08 146.17C212.48 147.14 211.974 148.269 210.951 148.687L201.854 152.433C200.831 152.85 199.678 152.409 199.278 151.439L196.479 144.647C196.079 143.677 196.585 142.548 197.608 142.13L206.706 138.384C207.729 137.961 208.881 138.408 209.281 139.378L212.08 146.176V146.17Z" fill="#FFF0CC"/>
60
+ </g>
61
+ <path d="M228.511 155.538C229.74 158.525 228.187 162.001 225.035 163.294L206.294 171.015C203.142 172.315 199.59 170.939 198.361 167.957L197.009 164.67C195.78 161.683 197.332 158.208 200.484 156.914L219.231 149.193C222.383 147.893 225.929 149.263 227.164 152.251L228.516 155.538H228.511Z" fill="#FFD5AC"/>
62
+ <path d="M197.644 166.217L198.349 167.934C199.578 170.921 203.13 172.291 206.282 170.992L225.023 163.271C228.175 161.971 229.734 158.502 228.499 155.514L227.793 153.797L197.644 166.217Z" fill="#F8BB85"/>
63
+ <g opacity="0.8">
64
+ <path d="M211.998 163.471C212.339 164.288 211.91 165.241 211.045 165.593L203.371 168.751C202.507 169.104 201.537 168.734 201.196 167.916L198.838 162.183C198.502 161.365 198.926 160.413 199.79 160.06L207.464 156.902C208.323 156.549 209.299 156.926 209.634 157.737L211.992 163.471H211.998Z" fill="#FFF0CC"/>
65
+ </g>
66
+ </g>
67
+ </g>
68
+ </g>
69
+ <defs>
70
+ <filter id="filter0_d_14_2624" x="0" y="0" width="337" height="226" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
71
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
72
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
73
+ <feOffset dy="5"/>
74
+ <feGaussianBlur stdDeviation="6.5"/>
75
+ <feComposite in2="hardAlpha" operator="out"/>
76
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/>
77
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_14_2624"/>
78
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_14_2624" result="shape"/>
79
+ </filter>
80
+ <linearGradient id="paint0_linear_14_2624" x1="169.835" y1="104.807" x2="169.835" y2="75.4512" gradientUnits="userSpaceOnUse">
81
+ <stop stop-color="white"/>
82
+ <stop offset="0.05" stop-color="#FFEEEE"/>
83
+ <stop offset="0.23" stop-color="#FFBDBC"/>
84
+ <stop offset="0.4" stop-color="#FF9492"/>
85
+ <stop offset="0.56" stop-color="#FF7571"/>
86
+ <stop offset="0.72" stop-color="#FF5E5A"/>
87
+ <stop offset="0.87" stop-color="#FF504C"/>
88
+ <stop offset="1" stop-color="#FF4C48"/>
89
+ </linearGradient>
90
+ <clipPath id="clip0_14_2624">
91
+ <rect x="13" y="8" width="311" height="200" rx="30" fill="white"/>
92
+ </clipPath>
93
+ <clipPath id="clip1_14_2624">
94
+ <rect width="134.981" height="218.52" fill="white" transform="translate(101.009 32)"/>
95
+ </clipPath>
96
+ </defs>
97
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg width="46" height="32" viewBox="0 0 46 32" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_14_1592)">
3
+ <path d="M30.157 31.6543H3.47738C1.77874 31.6543 0.397705 30.3085 0.397705 28.6549V26.4672C0.397705 25.9891 0.788253 25.6042 1.27056 25.6042H16.7654C17.003 25.6042 17.2289 25.6999 17.3936 25.8678L18.5205 27.027H27.0255C27.5078 27.027 27.8984 27.4118 27.8984 27.8899C27.8984 28.3681 27.5078 28.7529 27.0255 28.7529H18.1488C17.9112 28.7529 17.6853 28.6573 17.5206 28.4893L16.3937 27.3302H2.14341V28.6549C2.14341 29.357 2.74099 29.926 3.47738 29.926H30.157C30.6393 29.926 31.0298 30.3109 31.0298 30.789C31.0298 31.2671 30.6393 31.652 30.157 31.652V31.6543ZM29.9005 27.3302H29.2347C28.7524 27.3302 28.3618 26.9453 28.3618 26.4672C28.3618 25.9891 28.7524 25.6042 29.2347 25.6042H29.9005C30.3828 25.6042 30.7734 25.9891 30.7734 26.4672C30.7734 26.9453 30.3828 27.3302 29.9005 27.3302Z" fill="#6E7488"/>
4
+ <path d="M3.32207 24.837C2.83977 24.837 2.44922 24.4522 2.44922 23.9741V3.67816C2.44922 1.96857 3.85378 0.576172 5.58066 0.576172H40.4194C42.1463 0.576172 43.5508 1.96857 43.5508 3.67816V7.03438C43.5508 7.51251 43.1603 7.89967 42.678 7.89967C42.1957 7.89967 41.8051 7.51251 41.8051 7.03438V3.67816C41.8051 2.93415 41.1699 2.30442 40.4194 2.30442H5.58066C4.83015 2.30442 4.19492 2.93415 4.19492 3.67816V23.9741C4.19492 24.4522 3.80437 24.837 3.32207 24.837Z" fill="#6E7488"/>
5
+ <path d="M39.9582 5.50915H3.32207C2.83977 5.50915 2.44922 5.12198 2.44922 4.64386C2.44922 4.16573 2.83977 3.77856 3.32207 3.77856H39.9582C40.4405 3.77856 40.8311 4.16573 40.8311 4.64386C40.8311 5.12198 40.4405 5.50915 39.9582 5.50915Z" fill="#6E7488"/>
6
+ <path d="M43.3956 31.6543H33.8531C32.6438 31.6543 31.698 30.7167 31.698 29.5179V10.9526C31.698 9.7468 32.665 8.76489 33.8531 8.76489H43.3956C44.5908 8.76489 45.6024 9.76779 45.6024 10.9526V17.7677C45.6024 18.2458 45.2119 18.6306 44.7296 18.6306C44.2473 18.6306 43.8567 18.2458 43.8567 17.7677V10.9526C43.8567 10.717 43.6332 10.4955 43.3956 10.4955H33.8531C33.6296 10.4955 33.4437 10.7054 33.4437 10.9526V29.5179C33.4437 29.7512 33.6202 29.9261 33.8531 29.9261H43.3956C43.6473 29.9261 43.8567 29.7395 43.8567 29.5179V20.6667C43.8567 20.1886 44.2473 19.8038 44.7296 19.8038C45.2119 19.8038 45.6024 20.1886 45.6024 20.6667V29.5179C45.6024 30.6957 44.6119 31.6543 43.3956 31.6543Z" fill="#6E7488"/>
7
+ <path d="M38.9302 29.1612H38.3138C37.8315 29.1612 37.4409 28.7764 37.4409 28.2983C37.4409 27.8201 37.8315 27.4353 38.3138 27.4353H38.9302C39.4125 27.4353 39.803 27.8201 39.803 28.2983C39.803 28.7764 39.4125 29.1612 38.9302 29.1612Z" fill="#6E7488"/>
8
+ </g>
9
+ <defs>
10
+ <clipPath id="clip0_14_1592">
11
+ <rect width="45.2047" height="31.0782" fill="white" transform="translate(0.397705 0.576172)"/>
12
+ </clipPath>
13
+ </defs>
14
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="46" height="39" viewBox="0 0 46 39" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M33.2206 1.75122C34.3606 1.2684 35.6806 1.8042 36.1628 2.94563L37.2792 5.58801H38.831L37.4792 2.38824C37.0968 1.48316 36.3853 0.781493 35.4759 0.412211C34.5664 0.0429276 33.5677 0.0504961 32.6637 0.433339L20.4932 5.58816H24.1618L33.2206 1.75137V1.75122ZM16.6788 19.5205C17.4295 19.8384 18.1037 20.2934 18.6824 20.8729C19.2612 21.4524 19.7155 22.1272 20.0331 22.879C20.3621 23.6578 20.5289 24.4845 20.5289 25.3363C20.5289 25.7314 20.2089 26.0518 19.8142 26.0518C19.4196 26.0518 19.0996 25.7314 19.0996 25.3363C19.0996 22.6449 16.9127 20.4552 14.2246 20.4552C11.5366 20.4552 9.34966 22.6449 9.34966 25.3363C9.34966 25.7314 9.02966 26.0518 8.63502 26.0518C8.24037 26.0518 7.92037 25.7314 7.92037 25.3363C7.92037 24.4844 8.08714 23.6576 8.41612 22.879C8.7336 22.1274 9.18809 21.4524 9.76683 20.8729C10.2753 20.3639 10.8574 19.9509 11.5004 19.6425C11.332 19.5181 11.1719 19.3803 11.0213 19.2296C10.232 18.4391 9.79722 17.3883 9.79722 16.2704C9.79722 15.1525 10.2319 14.1017 11.0213 13.3113C11.8108 12.521 12.8604 12.0856 13.9768 12.0856C15.0931 12.0856 16.1427 12.5208 16.9322 13.3113C17.7215 14.1017 18.1563 15.1526 18.1563 16.2704C18.1563 17.3882 17.7216 18.4391 16.9322 19.2296C16.8363 19.3256 16.7364 19.4162 16.6333 19.5016L16.6501 19.5085L16.6788 19.5205ZM11.2265 16.2704C11.2265 17.7888 12.4602 19.0241 13.9768 19.0241C15.4933 19.0241 16.727 17.7888 16.727 16.2704C16.727 14.752 15.4933 13.5167 13.9768 13.5167C12.4602 13.5167 11.2265 14.752 11.2265 16.2704ZM23.9384 12.0856H36.2099C36.6045 12.0856 36.9245 12.406 36.9245 12.8012C36.9245 13.1963 36.6045 13.5167 36.2099 13.5167H23.9384C23.5437 13.5167 23.2237 13.1963 23.2237 12.8012C23.2237 12.406 23.5437 12.0856 23.9384 12.0856ZM23.9384 18.3541H36.2099C36.6045 18.3541 36.9245 18.6745 36.9245 19.0697C36.9245 19.4648 36.6045 19.7852 36.2099 19.7852H23.9384C23.5437 19.7852 23.2237 19.4648 23.2237 19.0697C23.2237 18.6745 23.5437 18.3541 23.9384 18.3541ZM36.2099 24.6207H23.9384C23.5437 24.6207 23.2237 24.9411 23.2237 25.3363C23.2237 25.7314 23.5437 26.0518 23.9384 26.0518H36.2099C36.6045 26.0518 36.9245 25.7314 36.9245 25.3363C36.9245 24.9411 36.6045 24.6207 36.2099 24.6207ZM42.8436 15.0856L45.0723 20.3607L45.0726 20.3606C45.4549 21.2657 45.4625 22.2657 45.0937 23.1763C44.7249 24.0868 44.0241 24.7992 43.1201 25.1821L42.8439 25.2991V28.8268C42.8439 29.8095 42.4617 30.7333 41.7677 31.4282C41.0737 32.1231 40.151 32.5058 39.1696 32.5058H25.8291L13.3362 37.7971C12.4322 38.18 11.4335 38.1876 10.524 37.8183C9.61458 37.449 8.90308 36.7473 8.52072 35.8422L7.11111 32.5059H6.83048C5.84906 32.5059 4.92638 32.1232 4.23236 31.4284C3.53835 30.7335 3.15614 29.8096 3.15614 28.827V23.1447L0.927479 17.8696C0.545116 16.9645 0.537557 15.9645 0.906376 15.0539C1.2752 14.1433 1.97598 13.4309 2.87992 13.0481L3.15614 12.9311V9.31237C3.15614 8.32972 3.53835 7.40588 4.23236 6.71099C4.92638 6.01611 5.84906 5.63342 6.83048 5.63342H39.1693C40.1507 5.63342 41.0733 6.01611 41.7674 6.71099C42.4614 7.40588 42.8436 8.32972 42.8436 9.31237V15.0856ZM2.24386 17.3119L3.15614 19.4713V14.5093C2.21236 15.0757 1.80307 16.2687 2.24386 17.3119ZM9.83694 35.2845C10.3191 36.426 11.6391 36.9618 12.7791 36.479L22.1603 32.5056H8.66292L9.83694 35.2845ZM39.1694 31.0745C40.4072 31.0745 41.4143 30.0663 41.4143 28.8268V9.31237C41.4143 8.07286 40.4072 7.06451 39.1694 7.06451H6.83048C5.59268 7.06451 4.58559 8.07286 4.58559 9.31237V28.8268C4.58559 30.0662 5.59268 31.0745 6.83048 31.0745H39.1694ZM42.8436 18.7587V23.7207C43.7874 23.1543 44.1965 21.9613 43.7559 20.9181L42.8436 18.7587Z" fill="#6E7488"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="6" height="28" viewBox="0 0 6 28" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0.34486 27.8848V8.79386H5.6396V27.8848H0.34486ZM3.00466 6.33292C2.21749 6.33292 1.54218 6.07191 0.978738 5.54989C0.423577 5.01959 0.145996 4.38571 0.145996 3.64826C0.145996 2.91909 0.423577 2.2935 0.978738 1.77148C1.54218 1.24118 2.21749 0.976029 3.00466 0.976029C3.79183 0.976029 4.46299 1.24118 5.01816 1.77148C5.5816 2.2935 5.86333 2.91909 5.86333 3.64826C5.86333 4.38571 5.5816 5.01959 5.01816 5.54989C4.46299 6.07191 3.79183 6.33292 3.00466 6.33292Z" fill="white"/>
3
+ </svg>
@@ -0,0 +1,16 @@
1
+ <svg width="40" height="44" viewBox="0 0 40 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_14_1601)">
3
+ <path d="M16.7514 29.4111L16.7228 23.2731H14.9596C13.0283 23.2731 11.4565 21.7537 11.4565 19.8864V3.90013C11.4565 2.03279 12.9934 0.513428 14.8818 0.513428H36.3152C38.2036 0.513428 39.7396 2.03279 39.7396 3.90013V19.8864C39.7396 21.7537 38.2036 23.2731 36.3152 23.2731H24.8006C24.7415 23.2731 24.6852 23.2912 24.6422 23.3246L16.7514 29.4111ZM14.8818 2.14034C13.8817 2.14034 13.0676 2.9294 13.0676 3.90013V19.8864C13.0676 20.8571 13.9166 21.6462 14.9605 21.6462H17.1799C17.8123 21.6462 18.3285 22.1568 18.3312 22.785L18.3464 26.1338L23.6654 22.0312C23.9874 21.7827 24.3909 21.6462 24.8006 21.6462H36.3152C37.3153 21.6462 38.1294 20.8571 38.1294 19.8864V3.90013C38.1294 2.9294 37.3153 2.14034 36.3152 2.14034H14.8818Z" fill="#6E7488"/>
4
+ <path d="M17.4769 43.7171H5.38168C2.55758 43.7171 0.260376 41.396 0.260376 38.5426V11.5656C0.260376 8.71218 2.55758 6.39111 5.38168 6.39111H9.53866V8.01803H5.38168C3.44587 8.01803 1.87057 9.6097 1.87057 11.5656V38.5426C1.87057 40.4985 3.44587 42.0902 5.38168 42.0902H17.4769C19.4127 42.0902 20.988 40.4985 20.988 38.5426V28.9284H22.5982V38.5426C22.5982 41.396 20.301 43.7171 17.4769 43.7171Z" fill="#6E7488"/>
5
+ <path d="M9.38935 11.8423H1.06555V13.4692H9.38935V11.8423Z" fill="#6E7488"/>
6
+ <path d="M21.7923 36.9131H1.06555V38.54H21.7923V36.9131Z" fill="#6E7488"/>
7
+ <path d="M24.3843 12.7C24.3843 13.3723 24.9216 13.9311 25.5985 13.9311C26.2754 13.9311 26.8127 13.3723 26.8127 12.7C26.8127 12.0276 26.2754 11.4689 25.5985 11.4689C24.9216 11.4689 24.3843 12.0276 24.3843 12.7ZM25.2025 12.7C25.2025 12.4818 25.3801 12.3041 25.5985 12.3041C25.8169 12.3041 25.9945 12.4818 25.9945 12.7C25.9945 12.9181 25.8169 13.0958 25.5985 13.0958C25.3801 13.0958 25.2025 12.9181 25.2025 12.7Z" fill="#6E7488" stroke="#6E7488" stroke-width="0.744891"/>
8
+ <path d="M30.2401 12.7C30.2401 13.3723 30.7774 13.9311 31.4543 13.9311C32.1312 13.9311 32.6685 13.3723 32.6685 12.7C32.6685 12.0276 32.1312 11.4689 31.4543 11.4689C30.7774 11.4689 30.2401 12.0276 30.2401 12.7ZM31.0583 12.7C31.0583 12.4818 31.2359 12.3041 31.4543 12.3041C31.6727 12.3041 31.8503 12.4818 31.8503 12.7C31.8503 12.9181 31.6727 13.0958 31.4543 13.0958C31.2359 13.0958 31.0583 12.9181 31.0583 12.7Z" fill="#6E7488" stroke="#6E7488" stroke-width="0.744891"/>
9
+ <path d="M18.5286 12.7C18.5286 13.3723 19.0659 13.9311 19.7428 13.9311C20.4197 13.9311 20.957 13.3723 20.957 12.7C20.957 12.0276 20.4197 11.4689 19.7428 11.4689C19.0659 11.4689 18.5286 12.0276 18.5286 12.7ZM19.3468 12.7C19.3468 12.4818 19.5244 12.3041 19.7428 12.3041C19.9612 12.3041 20.1387 12.4818 20.1387 12.7C20.1387 12.9181 19.9612 13.0958 19.7428 13.0958C19.5244 13.0958 19.3468 12.9181 19.3468 12.7Z" fill="#6E7488" stroke="#6E7488" stroke-width="0.744891"/>
10
+ </g>
11
+ <defs>
12
+ <clipPath id="clip0_14_1601">
13
+ <rect width="39.4792" height="43.2037" fill="white" transform="translate(0.260376 0.513428)"/>
14
+ </clipPath>
15
+ </defs>
16
+ </svg>