scanbot-web-sdk 6.0.0-dev.6 → 7.0.0-dev.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (287) hide show
  1. package/@types/barcode-scanner-view.d.ts +1 -1
  2. package/@types/core/bridge/compiled/{BarcodeConfigs.d.ts → BarcodeConfigurationTypes.d.ts} +558 -173
  3. package/@types/core/bridge/compiled/BarcodeDocumentModel.d.ts +1421 -0
  4. package/@types/core/bridge/compiled/BarcodeDocumentTypes.d.ts +14 -13
  5. package/@types/core/bridge/compiled/BarcodeScannerTypes.d.ts +25 -14
  6. package/@types/core/bridge/compiled/BarcodeTypes.d.ts +58 -56
  7. package/@types/core/bridge/compiled/CheckDocumentModel.d.ts +130 -0
  8. package/@types/core/bridge/compiled/CheckScannerTypes.d.ts +67 -0
  9. package/@types/core/bridge/compiled/CommonFieldType.d.ts +29 -28
  10. package/@types/core/bridge/compiled/CreditCardDocumentModel.d.ts +16 -0
  11. package/@types/core/bridge/compiled/CreditCardTypes.d.ts +35 -33
  12. package/@types/core/bridge/compiled/DocumentDataExtractorConfigurationTypes.d.ts +148 -0
  13. package/@types/core/bridge/compiled/DocumentDataExtractorTypes.d.ts +90 -0
  14. package/@types/core/bridge/compiled/DocumentQualityAnalyzerTypes.d.ts +28 -23
  15. package/@types/core/bridge/compiled/{DocumentDetectorTypes.d.ts → DocumentScannerTypes.d.ts} +49 -47
  16. package/@types/core/bridge/compiled/DocumentsModel.d.ts +489 -0
  17. package/@types/core/bridge/compiled/{EhicTypes.d.ts → EuropeanHealthInsuranceCardTypes.d.ts} +51 -108
  18. package/@types/core/bridge/compiled/FrameAccumulationTypes.d.ts +37 -14
  19. package/@types/core/bridge/compiled/GenericDocument.d.ts +17 -17
  20. package/@types/core/bridge/compiled/Geometry.d.ts +2 -2
  21. package/@types/core/bridge/compiled/ImageTypes.d.ts +1 -0
  22. package/@types/core/bridge/compiled/LicensePlateScannerTypes.d.ts +20 -19
  23. package/@types/core/bridge/compiled/MedicalCertificateTypes.d.ts +108 -105
  24. package/@types/core/bridge/compiled/MrzTypes.d.ts +73 -0
  25. package/@types/core/bridge/compiled/ParametricFilters.d.ts +4 -3
  26. package/@types/core/bridge/compiled/{PdfConfig.d.ts → PdfConfigurationTypes.d.ts} +48 -45
  27. package/@types/core/bridge/compiled/{GenericTextLineScannerTypes.d.ts → TextPatternScannerTypes.d.ts} +20 -39
  28. package/@types/core/bridge/compiled/TiffTypes.d.ts +48 -50
  29. package/@types/core/bridge/compiled/VinScannerTypes.d.ts +79 -0
  30. package/@types/core/bridge/worker-bridge.d.ts +512 -374
  31. package/@types/core/worker/ScanbotSDK.Core.d.ts +28 -22
  32. package/@types/core-types.d.ts +15 -12
  33. package/@types/cropping-view.d.ts +8 -4
  34. package/@types/document-data-extractor-view.d.ts +22 -0
  35. package/@types/document-scanner-view.d.ts +16 -7
  36. package/@types/index.d.ts +37 -24
  37. package/@types/interfaces/i-cropping-view-handle.d.ts +2 -0
  38. package/@types/interfaces/i-document-data-extractor-scanner-handle.d.ts +3 -0
  39. package/@types/interfaces/{i-text-data-scanner-handle.d.ts → i-text-pattern-scanner-handle.d.ts} +1 -1
  40. package/@types/model/configuration/barcode-scanner-configuration.d.ts +1 -0
  41. package/@types/model/configuration/cropping-view-configuration.d.ts +1 -0
  42. package/@types/model/configuration/document-data-extractor-configuration.d.ts +9 -0
  43. package/@types/model/configuration/document-scanner-configuration.d.ts +8 -4
  44. package/@types/model/configuration/initialization-options.d.ts +1 -2
  45. package/@types/model/configuration/mrz-scanner-configuration.d.ts +4 -4
  46. package/@types/model/configuration/selection-overlay-configuration.d.ts +5 -0
  47. package/@types/model/configuration/text-pattern-scanner-configuration.d.ts +9 -0
  48. package/@types/model/configuration/view-finder-scanner-configuration.d.ts +2 -1
  49. package/@types/model/configuration/vin-scanner-configuration.d.ts +4 -4
  50. package/@types/scanbot-sdk.d.ts +276 -210
  51. package/@types/scanner-view.d.ts +2 -0
  52. package/@types/service/document-data-extractor.d.ts +13 -0
  53. package/@types/service/ocr-engine.d.ts +3 -3
  54. package/@types/service/pdf-generator.d.ts +6 -1
  55. package/@types/service/simple-mrz-recognizer.d.ts +4 -4
  56. package/@types/service/storage/indexed-db/sb-indexed-db.d.ts +60 -0
  57. package/@types/service/storage/local/sb-local-storage.d.ts +11 -0
  58. package/@types/service/storage/sb-storage.d.ts +33 -0
  59. package/@types/service/storage/utils/create-worker-vite.d.ts +1 -0
  60. package/@types/service/storage/utils/create-worker.d.ts +1 -0
  61. package/@types/service/storage/utils/sb-storage-error.d.ts +5 -0
  62. package/@types/service/storage/utils/sb-storage-utils.d.ts +10 -0
  63. package/@types/service/text-pattern-scanner.d.ts +14 -0
  64. package/@types/service/tiff-generator.d.ts +7 -4
  65. package/@types/service/vin-scanner.d.ts +16 -0
  66. package/@types/{text-data-scanner-view.d.ts → text-pattern-scanner-view.d.ts} +10 -10
  67. package/@types/ui2/{controllers → barcode/controllers}/barcode-scanner-controller.d.ts +1 -1
  68. package/@types/ui2/{controllers → barcode/controllers}/multiple-scanning-mode-controller.d.ts +1 -1
  69. package/@types/ui2/{controllers → barcode/controllers}/single-scanning-mode-controller.d.ts +1 -1
  70. package/@types/ui2/{model → barcode/model}/counted-barcodes.d.ts +2 -2
  71. package/@types/ui2/{utils → barcode/utils}/barcode-mapper/expected-barcode-mapper.d.ts +2 -2
  72. package/@types/ui2/{utils → barcode/utils}/barcode-mapper/i-barcode-mapper.d.ts +2 -2
  73. package/@types/ui2/{utils → barcode/utils}/barcode-mapper/user-barcode-mapper.d.ts +1 -1
  74. package/@types/ui2/{utils → barcode/utils}/camera-config.d.ts +2 -2
  75. package/@types/ui2/{utils → barcode/utils}/styled-badge.d.ts +3 -1
  76. package/@types/ui2/{utils → barcode/utils}/styled-box.d.ts +1 -1
  77. package/@types/ui2/barcode/utils/styled-button.d.ts +14 -0
  78. package/@types/ui2/{utils → barcode/utils}/useScanningViewSize.d.ts +1 -1
  79. package/@types/ui2/{views → barcode/views}/action-button/action-button-container.d.ts +3 -3
  80. package/@types/ui2/{views → barcode/views}/action-button/action-button.d.ts +1 -1
  81. package/@types/ui2/{views → barcode/views}/ar/ar-badge.d.ts +2 -2
  82. package/@types/ui2/{views → barcode/views}/ar/ar-overlay-barcode-info.d.ts +2 -2
  83. package/@types/ui2/{views → barcode/views}/ar/vertical-positions.d.ts +2 -2
  84. package/@types/ui2/{views → barcode/views}/barcode-info/barcode-info.d.ts +1 -1
  85. package/@types/ui2/{views → barcode/views}/barcode-scanner.d.ts +8 -8
  86. package/@types/ui2/{views → barcode/views}/camera-permission-denied.d.ts +1 -1
  87. package/@types/ui2/{views → barcode/views}/dialog/barcode-info-dialog.d.ts +1 -1
  88. package/@types/ui2/{views → barcode/views}/dialog/barcode-mapping-error-dialog.d.ts +1 -1
  89. package/@types/ui2/{views → barcode/views}/dialog/base/confirmation-dialog.d.ts +1 -1
  90. package/@types/ui2/{views → barcode/views}/dialog/base/styled-dialog.d.ts +1 -0
  91. package/@types/ui2/{views → barcode/views}/dialog/count-edit-dialog.d.ts +1 -1
  92. package/@types/ui2/{views → barcode/views}/dialog/find-and-pick-submit-dialog.d.ts +1 -1
  93. package/@types/ui2/{views → barcode/views}/drawer/barcode-result-drawer.d.ts +1 -1
  94. package/@types/ui2/{views → barcode/views}/drawer/barcode-result-sidebar.d.ts +1 -1
  95. package/@types/ui2/{views → barcode/views}/drawer/counting-button.d.ts +1 -1
  96. package/@types/ui2/{views → barcode/views}/drawer/hooks/use-drag-listener.d.ts +1 -1
  97. package/@types/ui2/{views → barcode/views}/drawer/subviews/barcode-drawer-empty-state.d.ts +1 -1
  98. package/@types/ui2/{views → barcode/views}/drawer/subviews/barcode-list-item.d.ts +1 -1
  99. package/@types/ui2/{views → barcode/views}/drawer/subviews/barcode-list.d.ts +1 -1
  100. package/@types/ui2/{views → barcode/views}/drawer/subviews/drawer-header-content.d.ts +1 -1
  101. package/@types/ui2/{views → barcode/views}/drawer/subviews/swipe-underlay.d.ts +1 -1
  102. package/@types/ui2/{views → barcode/views}/form/dialog-button.d.ts +4 -1
  103. package/@types/ui2/{views → barcode/views}/navigation-bar.d.ts +1 -1
  104. package/@types/ui2/{views → barcode/views}/styled-text.d.ts +2 -1
  105. package/@types/ui2/configuration/DocumentQualityAnalyzerTypes.d.ts +1 -0
  106. package/@types/ui2/configuration/DocumentScannerTypes.d.ts +1 -0
  107. package/@types/ui2/configuration/Geometry.d.ts +1 -1
  108. package/@types/ui2/configuration/ParametricFilters.d.ts +1 -0
  109. package/@types/ui2/configuration/{ActionBarConfiguration.d.ts → barcode/ActionBarConfiguration.d.ts} +1 -1
  110. package/@types/ui2/configuration/{ArTrackingOverlayConfiguration.d.ts → barcode/ArTrackingOverlayConfiguration.d.ts} +1 -1
  111. package/@types/ui2/configuration/{BarcodeInfoMapping.d.ts → barcode/BarcodeInfoMapping.d.ts} +1 -1
  112. package/@types/ui2/configuration/{BarcodeRecognizerConfiguration.d.ts → barcode/BarcodeRecognizerConfiguration.d.ts} +3 -3
  113. package/@types/ui2/configuration/{BarcodeScannerConfiguration.d.ts → barcode/BarcodeScannerConfiguration.d.ts} +1 -1
  114. package/@types/ui2/configuration/barcode/BarcodeScannerTypes.d.ts +2 -0
  115. package/@types/ui2/configuration/{BarcodeScannerUIResult.d.ts → barcode/BarcodeScannerUIResult.d.ts} +1 -1
  116. package/@types/ui2/configuration/{BarcodeTextLocalization.d.ts → barcode/BarcodeTextLocalization.d.ts} +1 -1
  117. package/@types/ui2/configuration/barcode/BarcodeTypes.d.ts +1 -0
  118. package/@types/ui2/configuration/{CameraConfiguration.d.ts → barcode/CameraConfiguration.d.ts} +1 -1
  119. package/@types/ui2/configuration/{CameraPermission.d.ts → barcode/CameraPermission.d.ts} +1 -1
  120. package/@types/ui2/configuration/{Common.d.ts → barcode/Common.d.ts} +1 -1
  121. package/@types/ui2/configuration/barcode/CommonFieldType.d.ts +1 -0
  122. package/@types/ui2/configuration/{FindAndPickScanningModeUseCase.d.ts → barcode/FindAndPickScanningModeUseCase.d.ts} +1 -1
  123. package/@types/ui2/configuration/barcode/GenericDocument.d.ts +1 -0
  124. package/@types/ui2/configuration/barcode/Geometry.d.ts +1 -0
  125. package/@types/ui2/configuration/{MultipleScanningModeUseCase.d.ts → barcode/MultipleScanningModeUseCase.d.ts} +1 -1
  126. package/@types/ui2/configuration/{ScanbotAlertDialog.d.ts → barcode/ScanbotAlertDialog.d.ts} +1 -1
  127. package/@types/ui2/configuration/{SingleScanningModeUseCase.d.ts → barcode/SingleScanningModeUseCase.d.ts} +1 -1
  128. package/@types/ui2/configuration/{TopBarConfiguration.d.ts → barcode/TopBarConfiguration.d.ts} +1 -1
  129. package/@types/ui2/configuration/{UserGuidanceConfiguration.d.ts → barcode/UserGuidanceConfiguration.d.ts} +1 -1
  130. package/@types/ui2/configuration/{ViewFinderConfiguration.d.ts → barcode/ViewFinderConfiguration.d.ts} +1 -1
  131. package/@types/ui2/configuration/common/ActionBarConfiguration.d.ts +42 -0
  132. package/@types/ui2/configuration/common/CameraConfiguration.d.ts +60 -0
  133. package/@types/ui2/configuration/common/CameraPermission.d.ts +62 -0
  134. package/@types/ui2/configuration/common/Common.d.ts +467 -0
  135. package/@types/ui2/configuration/common/NavigationBarConfiguration.d.ts +11 -0
  136. package/@types/ui2/configuration/common/ScanbotAlertDialog.d.ts +74 -0
  137. package/@types/ui2/configuration/common/TopBarConfiguration.d.ts +55 -0
  138. package/@types/ui2/configuration/common/UserGuidanceConfiguration.d.ts +64 -0
  139. package/@types/ui2/configuration/common/ViewFinderConfiguration.d.ts +93 -0
  140. package/@types/ui2/configuration/document/AcknowledgementScreenConfiguration.d.ts +125 -0
  141. package/@types/ui2/configuration/document/CameraScreenConfiguration.d.ts +659 -0
  142. package/@types/ui2/configuration/document/CroppingConfiguration.d.ts +1 -0
  143. package/@types/ui2/configuration/document/CroppingResult.d.ts +1 -0
  144. package/@types/ui2/configuration/document/CroppingScreenConfiguration.d.ts +141 -0
  145. package/@types/ui2/configuration/document/CroppingTextLocalization.d.ts +1 -0
  146. package/@types/ui2/configuration/document/DocumentScannerCameraConfiguration.d.ts +60 -0
  147. package/@types/ui2/configuration/document/DocumentScannerGuidanceVisibility.d.ts +11 -0
  148. package/@types/ui2/configuration/document/DocumentScannerOutputSettings.d.ts +38 -0
  149. package/@types/ui2/configuration/document/DocumentScannerScreens.d.ts +26 -0
  150. package/@types/ui2/configuration/document/DocumentScannerTextLocalization.d.ts +608 -0
  151. package/@types/ui2/configuration/document/DocumentScannerUIResult.d.ts +5 -0
  152. package/@types/ui2/configuration/document/DocumentScannerUserGuidance.d.ts +99 -0
  153. package/@types/ui2/configuration/document/DocumentScanningFlow.d.ts +91 -0
  154. package/@types/ui2/configuration/document/IntroductionScreenConfiguration.d.ts +188 -0
  155. package/@types/ui2/configuration/document/ReorderPagesScreenConfiguration.d.ts +1 -0
  156. package/@types/ui2/configuration/document/ReviewScreenConfiguration.d.ts +372 -0
  157. package/@types/ui2/configuration/native/DocumentData.d.ts +37 -0
  158. package/@types/ui2/configuration/native/PageData.d.ts +58 -0
  159. package/@types/ui2/configuration/native/PageImageSource.d.ts +13 -0
  160. package/@types/ui2/configuration/utils.d.ts +8 -0
  161. package/@types/ui2/configuration.d.ts +46 -21
  162. package/@types/ui2/document/assets/auto-capture-disabled-icon.d.ts +4 -0
  163. package/@types/ui2/document/assets/auto-capture-icon.d.ts +4 -0
  164. package/@types/ui2/document/assets/captured-circle-icon.d.ts +5 -0
  165. package/@types/ui2/document/assets/delete-icon.d.ts +4 -0
  166. package/@types/ui2/document/assets/file-add-icon.d.ts +4 -0
  167. package/@types/ui2/document/assets/image-error-icon.d.ts +5 -0
  168. package/@types/ui2/document/assets/image-retake.d.ts +4 -0
  169. package/@types/ui2/document/assets/loading-spinner-icon.d.ts +2 -0
  170. package/@types/ui2/document/assets/shutter-button-auto-icon.d.ts +4 -0
  171. package/@types/ui2/document/assets/shutter-button-manual-icon.d.ts +5 -0
  172. package/@types/ui2/document/assets/shutter-button-spinner-icon.d.ts +4 -0
  173. package/@types/ui2/document/assets/the-hand.d.ts +10 -0
  174. package/@types/ui2/document/controller/acknowledgment-screen-controller.d.ts +16 -0
  175. package/@types/ui2/document/controller/camera-screen-controller.d.ts +20 -0
  176. package/@types/ui2/document/controller/cropping-screen-controller.d.ts +14 -0
  177. package/@types/ui2/document/controller/document-scanner-controller.d.ts +14 -0
  178. package/@types/ui2/document/controller/review-screen-controller.d.ts +18 -0
  179. package/@types/ui2/document/controller/zoom-screen-controller.d.ts +11 -0
  180. package/@types/ui2/document/model/document-detection-ui-result.d.ts +8 -0
  181. package/@types/ui2/document/model/sb-document.d.ts +62 -0
  182. package/@types/ui2/document/model/sb-page.d.ts +38 -0
  183. package/@types/ui2/document/model/utils/sb-document-data.d.ts +10 -0
  184. package/@types/ui2/document/model/utils/sb-page-data.d.ts +7 -0
  185. package/@types/ui2/document/utils/SBThemeProvider.d.ts +4 -0
  186. package/@types/ui2/document/utils/button-accessibility-styling.d.ts +40 -0
  187. package/@types/ui2/document/views/acknowledgement-screen/acknowledgement-confirmation.d.ts +19 -0
  188. package/@types/ui2/document/views/acknowledgement-screen/acknowledgement-fade.d.ts +9 -0
  189. package/@types/ui2/document/views/acknowledgement-screen/acknowledgement-image.d.ts +6 -0
  190. package/@types/ui2/document/views/acknowledgement-screen/acknowledgement-screen-bottom-bar.d.ts +12 -0
  191. package/@types/ui2/document/views/acknowledgement-screen/quality-insufficient-banner.d.ts +10 -0
  192. package/@types/ui2/document/views/camera-screen/bottom-bar.d.ts +33 -0
  193. package/@types/ui2/document/views/camera-screen/camera-permission-denied.d.ts +9 -0
  194. package/@types/ui2/document/views/camera-screen/camera-select-dropdown.d.ts +14 -0
  195. package/@types/ui2/document/views/camera-screen/introduction/assets/CheckIcon.d.ts +3 -0
  196. package/@types/ui2/document/views/camera-screen/introduction/assets/CreditCardsIcon.d.ts +3 -0
  197. package/@types/ui2/document/views/camera-screen/introduction/assets/DocumentsIcon.d.ts +3 -0
  198. package/@types/ui2/document/views/camera-screen/introduction/assets/IdCardsIcon.d.ts +3 -0
  199. package/@types/ui2/document/views/camera-screen/introduction/assets/MedicalCertsIcon.d.ts +3 -0
  200. package/@types/ui2/document/views/camera-screen/introduction/assets/Props.d.ts +3 -0
  201. package/@types/ui2/document/views/camera-screen/introduction/assets/ReceiptsIcon.d.ts +3 -0
  202. package/@types/ui2/document/views/camera-screen/introduction/introduction-image.d.ts +5 -0
  203. package/@types/ui2/document/views/camera-screen/introduction/introduction.d.ts +9 -0
  204. package/@types/ui2/document/views/camera-screen/preview-button.d.ts +11 -0
  205. package/@types/ui2/document/views/camera-screen/scanner-box.d.ts +21 -0
  206. package/@types/ui2/document/views/camera-screen/shutter-button.d.ts +10 -0
  207. package/@types/ui2/document/views/camera-screen/top-bar.d.ts +11 -0
  208. package/@types/ui2/document/views/camera-screen/top-user-guidance.d.ts +8 -0
  209. package/@types/ui2/document/views/camera-screen/use-document-scanner-view.d.ts +31 -0
  210. package/@types/ui2/document/views/camera-screen/user-guidance-text.d.ts +10 -0
  211. package/@types/ui2/document/views/common/alert-dialog.d.ts +11 -0
  212. package/@types/ui2/document/views/common/bar-button.d.ts +17 -0
  213. package/@types/ui2/document/views/common/common-top-bar.d.ts +12 -0
  214. package/@types/ui2/document/views/common/loading-spinner.d.ts +4 -0
  215. package/@types/ui2/document/views/common/styled-menu-item.d.ts +12 -0
  216. package/@types/ui2/document/views/common/styled-menu.d.ts +17 -0
  217. package/@types/ui2/document/views/review-screen/bottom-bar.d.ts +15 -0
  218. package/@types/ui2/document/views/review-screen/carousel-page.d.ts +13 -0
  219. package/@types/ui2/document/views/review-screen/carousel.d.ts +14 -0
  220. package/@types/ui2/document/views/review-screen/page-counter-and-zoom-button.d.ts +10 -0
  221. package/@types/ui2/document/views/review-screen/scroller-navigation-button.d.ts +11 -0
  222. package/@types/ui2/document/views/review-screen/top-bar.d.ts +11 -0
  223. package/@types/ui2/scanbot-sdk-ui.d.ts +4 -0
  224. package/@types/ui2/scanbot-ui-library.d.ts +7 -4
  225. package/@types/ui2/utils/text-styling.d.ts +8 -0
  226. package/@types/ui2/utils/use-time-since-first-render-has-passed.d.ts +1 -0
  227. package/@types/utils/constants.d.ts +0 -2
  228. package/@types/utils/dto/Frame.d.ts +2 -0
  229. package/@types/utils/image-utils.d.ts +2 -1
  230. package/@types/utils/parse-color.d.ts +9 -0
  231. package/@types/utils/react/useIsMounted.d.ts +2 -0
  232. package/@types/utils/react/usePromise.d.ts +4 -3
  233. package/@types/utils/supported-image-mime-types.d.ts +2 -0
  234. package/@types/utils/view-utils.d.ts +1 -1
  235. package/@types/view/barcode-polygon/animated-barcode-selection-overlay.d.ts +8 -2
  236. package/@types/view/polygon/document-polygon.d.ts +1 -0
  237. package/@types/worker/worker-bridge.d.ts +522 -384
  238. package/Libraries.txt +1510 -36
  239. package/bundle/ScanbotSDK.min.js +5 -5
  240. package/bundle/ScanbotSDK.ui2.min.js +18 -18
  241. package/bundle/ScanbotSDK.ui2.min.js.LICENSE.txt +10 -0
  242. package/bundle/bin/barcode-scanner/ScanbotSDK.Asm-simd-threads.js +1 -1
  243. package/bundle/bin/barcode-scanner/ScanbotSDK.Asm-simd-threads.wasm +0 -0
  244. package/bundle/bin/barcode-scanner/ScanbotSDK.Asm-simd.wasm +0 -0
  245. package/bundle/bin/barcode-scanner/ScanbotSDK.Asm.wasm +0 -0
  246. package/bundle/bin/barcode-scanner/ScanbotSDK.Core-simd-threads.js +1 -1
  247. package/bundle/bin/barcode-scanner/ScanbotSDK.Core-simd.js +1 -1
  248. package/bundle/bin/barcode-scanner/ScanbotSDK.Core.js +1 -1
  249. package/bundle/bin/complete/ScanbotSDK.Asm-simd-threads.js +1 -1
  250. package/bundle/bin/complete/ScanbotSDK.Asm-simd-threads.wasm +0 -0
  251. package/bundle/bin/complete/ScanbotSDK.Asm-simd.wasm +0 -0
  252. package/bundle/bin/complete/ScanbotSDK.Asm.wasm +0 -0
  253. package/bundle/bin/complete/ScanbotSDK.Core-simd-threads.js +1 -1
  254. package/bundle/bin/complete/ScanbotSDK.Core-simd.js +1 -1
  255. package/bundle/bin/complete/ScanbotSDK.Core.js +1 -1
  256. package/bundle/bin/document-scanner/ScanbotSDK.Asm-simd-threads.js +1 -1
  257. package/bundle/bin/document-scanner/ScanbotSDK.Asm-simd-threads.wasm +0 -0
  258. package/bundle/bin/document-scanner/ScanbotSDK.Asm-simd.wasm +0 -0
  259. package/bundle/bin/document-scanner/ScanbotSDK.Asm.wasm +0 -0
  260. package/bundle/bin/document-scanner/ScanbotSDK.Core-simd-threads.js +1 -1
  261. package/bundle/bin/document-scanner/ScanbotSDK.Core-simd.js +1 -1
  262. package/bundle/bin/document-scanner/ScanbotSDK.Core.js +1 -1
  263. package/package.json +3 -3
  264. package/@types/core/bridge/compiled/CheckRecognizerTypes.d.ts +0 -29
  265. package/@types/core/bridge/compiled/FrameUtilities.d.ts +0 -18
  266. package/@types/core/bridge/compiled/GDRTypes.d.ts +0 -38
  267. package/@types/core/bridge/compiled/GenericDocumentRecognizerConfigs.d.ts +0 -150
  268. package/@types/core/bridge/compiled/GenericDocumentRecognizerTypes.d.ts +0 -83
  269. package/@types/core/bridge/compiled/GenericDocumentTypes.d.ts +0 -15
  270. package/@types/core/bridge/compiled/MRZTypes.d.ts +0 -52
  271. package/@types/generic-document-recognizer-view.d.ts +0 -22
  272. package/@types/interfaces/i-generic-document-recognizer-scanner-handle.d.ts +0 -3
  273. package/@types/model/configuration/generic-document-recognizer-configuration.d.ts +0 -9
  274. package/@types/model/configuration/text-data-scanner-configuration.d.ts +0 -9
  275. package/@types/service/generic-document-recognizer.d.ts +0 -13
  276. package/@types/service/text-data-recognizer.d.ts +0 -14
  277. package/@types/ui2/configuration/BarcodeScannerTypes.d.ts +0 -1
  278. package/@types/ui2/configuration/BarcodeTypes.d.ts +0 -1
  279. package/@types/ui2/configuration/CommonFieldType.d.ts +0 -1
  280. package/@types/ui2/configuration/GenericDocument.d.ts +0 -1
  281. package/@types/ui2/utils/styled-button.d.ts +0 -7
  282. /package/@types/core/bridge/compiled/{OcrElements.d.ts → OcrTypes.d.ts} +0 -0
  283. /package/@types/ui2/{utils → barcode/utils}/find-and-pick.ts/expected-barcode-counter.d.ts +0 -0
  284. /package/@types/ui2/{utils → barcode/utils}/styled-input.d.ts +0 -0
  285. /package/@types/ui2/{views → barcode/views}/drawer/subviews/barcode-drawer-header.d.ts +0 -0
  286. /package/@types/ui2/configuration/{BarcodeItemMapper.d.ts → barcode/BarcodeItemMapper.d.ts} +0 -0
  287. /package/@types/ui2/configuration/{BarcodeUseCase.d.ts → barcode/BarcodeUseCase.d.ts} +0 -0
package/Libraries.txt CHANGED
@@ -1,6 +1,1153 @@
1
1
  Open Source libraries used in Scanbot Web SDK
2
2
  ----------------------------------------------------------------------------------------
3
3
 
4
+ @types/classnames 2.3.1
5
+ (undefined)
6
+
7
+ MIT License
8
+
9
+ Copyright (c) Microsoft Corporation.
10
+
11
+ Permission is hereby granted, free of charge, to any person obtaining a copy
12
+ of this software and associated documentation files (the "Software"), to deal
13
+ in the Software without restriction, including without limitation the rights
14
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
+ copies of the Software, and to permit persons to whom the Software is
16
+ furnished to do so, subject to the following conditions:
17
+
18
+ The above copyright notice and this permission notice shall be included in all
19
+ copies or substantial portions of the Software.
20
+
21
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27
+ SOFTWARE
28
+
29
+
30
+ ----------------------------------------------------------------------------------------
31
+
32
+ @types/react 18.2.60
33
+ (https://github.com/DefinitelyTyped/DefinitelyTyped)
34
+
35
+ MIT License
36
+
37
+ Copyright (c) Microsoft Corporation.
38
+
39
+ Permission is hereby granted, free of charge, to any person obtaining a copy
40
+ of this software and associated documentation files (the "Software"), to deal
41
+ in the Software without restriction, including without limitation the rights
42
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
43
+ copies of the Software, and to permit persons to whom the Software is
44
+ furnished to do so, subject to the following conditions:
45
+
46
+ The above copyright notice and this permission notice shall be included in all
47
+ copies or substantial portions of the Software.
48
+
49
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
50
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
51
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
52
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
53
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
54
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
55
+ SOFTWARE
56
+
57
+
58
+ ----------------------------------------------------------------------------------------
59
+
60
+ @types/react-dom 18.2.19
61
+ (https://github.com/DefinitelyTyped/DefinitelyTyped)
62
+
63
+ MIT License
64
+
65
+ Copyright (c) Microsoft Corporation.
66
+
67
+ Permission is hereby granted, free of charge, to any person obtaining a copy
68
+ of this software and associated documentation files (the "Software"), to deal
69
+ in the Software without restriction, including without limitation the rights
70
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
71
+ copies of the Software, and to permit persons to whom the Software is
72
+ furnished to do so, subject to the following conditions:
73
+
74
+ The above copyright notice and this permission notice shall be included in all
75
+ copies or substantial portions of the Software.
76
+
77
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
78
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
79
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
80
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
81
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
82
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
83
+ SOFTWARE
84
+
85
+
86
+ ----------------------------------------------------------------------------------------
87
+
88
+ @types/styled-components 5.1.21
89
+ (https://github.com/DefinitelyTyped/DefinitelyTyped)
90
+
91
+ MIT License
92
+
93
+ Copyright (c) Microsoft Corporation.
94
+
95
+ Permission is hereby granted, free of charge, to any person obtaining a copy
96
+ of this software and associated documentation files (the "Software"), to deal
97
+ in the Software without restriction, including without limitation the rights
98
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
99
+ copies of the Software, and to permit persons to whom the Software is
100
+ furnished to do so, subject to the following conditions:
101
+
102
+ The above copyright notice and this permission notice shall be included in all
103
+ copies or substantial portions of the Software.
104
+
105
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
106
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
107
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
108
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
109
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
110
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
111
+ SOFTWARE
112
+
113
+
114
+ ----------------------------------------------------------------------------------------
115
+
116
+ @types/w3c-image-capture 1.0.7
117
+ (https://github.com/DefinitelyTyped/DefinitelyTyped)
118
+
119
+ MIT License
120
+
121
+ Copyright (c) Microsoft Corporation.
122
+
123
+ Permission is hereby granted, free of charge, to any person obtaining a copy
124
+ of this software and associated documentation files (the "Software"), to deal
125
+ in the Software without restriction, including without limitation the rights
126
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
127
+ copies of the Software, and to permit persons to whom the Software is
128
+ furnished to do so, subject to the following conditions:
129
+
130
+ The above copyright notice and this permission notice shall be included in all
131
+ copies or substantial portions of the Software.
132
+
133
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
134
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
135
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
136
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
137
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
138
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
139
+ SOFTWARE
140
+
141
+
142
+ ----------------------------------------------------------------------------------------
143
+
144
+ @types/node 22.0.0
145
+ (https://github.com/DefinitelyTyped/DefinitelyTyped)
146
+
147
+ MIT License
148
+
149
+ Copyright (c) Microsoft Corporation.
150
+
151
+ Permission is hereby granted, free of charge, to any person obtaining a copy
152
+ of this software and associated documentation files (the "Software"), to deal
153
+ in the Software without restriction, including without limitation the rights
154
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
155
+ copies of the Software, and to permit persons to whom the Software is
156
+ furnished to do so, subject to the following conditions:
157
+
158
+ The above copyright notice and this permission notice shall be included in all
159
+ copies or substantial portions of the Software.
160
+
161
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
162
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
163
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
164
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
165
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
166
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
167
+ SOFTWARE
168
+
169
+
170
+ ----------------------------------------------------------------------------------------
171
+
172
+ babel-cli 6.26.0
173
+ (https://github.com/babel/babel/tree/master/packages/babel-cli)
174
+
175
+ MIT License
176
+
177
+ Copyright (c) 2014-2017 Sebastian McKenzie <sebmck@gmail.com>
178
+
179
+ Permission is hereby granted, free of charge, to any person obtaining
180
+ a copy of this software and associated documentation files (the
181
+ "Software"), to deal in the Software without restriction, including
182
+ without limitation the rights to use, copy, modify, merge, publish,
183
+ distribute, sublicense, and/or sell copies of the Software, and to
184
+ permit persons to whom the Software is furnished to do so, subject to
185
+ the following conditions:
186
+
187
+ The above copyright notice and this permission notice shall be
188
+ included in all copies or substantial portions of the Software.
189
+
190
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
191
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
192
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
193
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
194
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
195
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
196
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
197
+
198
+
199
+ ----------------------------------------------------------------------------------------
200
+
201
+ babel-core 6.26.3
202
+ (https://github.com/babel/babel/tree/master/packages/babel-core)
203
+
204
+ MIT License
205
+
206
+ Copyright (c) 2014-2017 Sebastian McKenzie <sebmck@gmail.com>
207
+
208
+ Permission is hereby granted, free of charge, to any person obtaining
209
+ a copy of this software and associated documentation files (the
210
+ "Software"), to deal in the Software without restriction, including
211
+ without limitation the rights to use, copy, modify, merge, publish,
212
+ distribute, sublicense, and/or sell copies of the Software, and to
213
+ permit persons to whom the Software is furnished to do so, subject to
214
+ the following conditions:
215
+
216
+ The above copyright notice and this permission notice shall be
217
+ included in all copies or substantial portions of the Software.
218
+
219
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
220
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
221
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
222
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
223
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
224
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
225
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
226
+
227
+
228
+ ----------------------------------------------------------------------------------------
229
+
230
+ babel-loader 7.1.5
231
+ (https://github.com/babel/babel-loader)
232
+
233
+ Copyright (c) 2014-2016 Luís Couto <hello@luiscouto.pt>
234
+
235
+ MIT License
236
+
237
+ Permission is hereby granted, free of charge, to any person obtaining
238
+ a copy of this software and associated documentation files (the
239
+ "Software"), to deal in the Software without restriction, including
240
+ without limitation the rights to use, copy, modify, merge, publish,
241
+ distribute, sublicense, and/or sell copies of the Software, and to
242
+ permit persons to whom the Software is furnished to do so, subject to
243
+ the following conditions:
244
+
245
+ The above copyright notice and this permission notice shall be
246
+ included in all copies or substantial portions of the Software.
247
+
248
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
249
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
250
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
251
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
252
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
253
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
254
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
255
+
256
+
257
+ ----------------------------------------------------------------------------------------
258
+
259
+ babel-plugin-transform-class-properties 6.24.1
260
+ (https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-class-properties)
261
+
262
+ MIT License
263
+
264
+ Copyright (c) 2014-2017 Sebastian McKenzie <sebmck@gmail.com>
265
+
266
+ Permission is hereby granted, free of charge, to any person obtaining
267
+ a copy of this software and associated documentation files (the
268
+ "Software"), to deal in the Software without restriction, including
269
+ without limitation the rights to use, copy, modify, merge, publish,
270
+ distribute, sublicense, and/or sell copies of the Software, and to
271
+ permit persons to whom the Software is furnished to do so, subject to
272
+ the following conditions:
273
+
274
+ The above copyright notice and this permission notice shall be
275
+ included in all copies or substantial portions of the Software.
276
+
277
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
278
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
279
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
280
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
281
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
282
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
283
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
284
+
285
+
286
+ ----------------------------------------------------------------------------------------
287
+
288
+ babel-preset-env 1.7.0
289
+ (https://github.com/babel/babel-preset-env)
290
+
291
+ MIT License
292
+
293
+ Copyright (c) 2016-2017 Babel
294
+
295
+ Permission is hereby granted, free of charge, to any person obtaining a copy
296
+ of this software and associated documentation files (the "Software"), to deal
297
+ in the Software without restriction, including without limitation the rights
298
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
299
+ copies of the Software, and to permit persons to whom the Software is
300
+ furnished to do so, subject to the following conditions:
301
+
302
+ The above copyright notice and this permission notice shall be included in all
303
+ copies or substantial portions of the Software.
304
+
305
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
306
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
307
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
308
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
309
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
310
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
311
+ SOFTWARE.
312
+
313
+
314
+ ----------------------------------------------------------------------------------------
315
+
316
+ babel-preset-react 6.24.1
317
+ (https://github.com/babel/babel/tree/master/packages/babel-preset-react)
318
+
319
+ MIT License
320
+
321
+ Copyright (c) 2014-2017 Sebastian McKenzie <sebmck@gmail.com>
322
+
323
+ Permission is hereby granted, free of charge, to any person obtaining
324
+ a copy of this software and associated documentation files (the
325
+ "Software"), to deal in the Software without restriction, including
326
+ without limitation the rights to use, copy, modify, merge, publish,
327
+ distribute, sublicense, and/or sell copies of the Software, and to
328
+ permit persons to whom the Software is furnished to do so, subject to
329
+ the following conditions:
330
+
331
+ The above copyright notice and this permission notice shall be
332
+ included in all copies or substantial portions of the Software.
333
+
334
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
335
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
336
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
337
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
338
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
339
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
340
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
341
+
342
+
343
+ ----------------------------------------------------------------------------------------
344
+
345
+ copy-webpack-plugin 6.4.1
346
+ (https://github.com/webpack-contrib/copy-webpack-plugin)
347
+
348
+ Copyright JS Foundation and other contributors
349
+
350
+ Permission is hereby granted, free of charge, to any person obtaining
351
+ a copy of this software and associated documentation files (the
352
+ 'Software'), to deal in the Software without restriction, including
353
+ without limitation the rights to use, copy, modify, merge, publish,
354
+ distribute, sublicense, and/or sell copies of the Software, and to
355
+ permit persons to whom the Software is furnished to do so, subject to
356
+ the following conditions:
357
+
358
+ The above copyright notice and this permission notice shall be
359
+ included in all copies or substantial portions of the Software.
360
+
361
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
362
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
363
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
364
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
365
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
366
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
367
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
368
+
369
+
370
+ ----------------------------------------------------------------------------------------
371
+
372
+ create-file-webpack 1.0.2
373
+ (https://github.com/Appius/create-file-webpack)
374
+
375
+ MIT License
376
+
377
+ Copyright (c) 2017 Appius
378
+
379
+ Permission is hereby granted, free of charge, to any person obtaining a copy
380
+ of this software and associated documentation files (the "Software"), to deal
381
+ in the Software without restriction, including without limitation the rights
382
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
383
+ copies of the Software, and to permit persons to whom the Software is
384
+ furnished to do so, subject to the following conditions:
385
+
386
+ The above copyright notice and this permission notice shall be included in all
387
+ copies or substantial portions of the Software.
388
+
389
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
390
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
391
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
392
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
393
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
394
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
395
+ SOFTWARE.
396
+
397
+
398
+ ----------------------------------------------------------------------------------------
399
+
400
+ css-loader 5.2.7
401
+ (https://github.com/webpack-contrib/css-loader)
402
+
403
+ Copyright JS Foundation and other contributors
404
+
405
+ Permission is hereby granted, free of charge, to any person obtaining
406
+ a copy of this software and associated documentation files (the
407
+ 'Software'), to deal in the Software without restriction, including
408
+ without limitation the rights to use, copy, modify, merge, publish,
409
+ distribute, sublicense, and/or sell copies of the Software, and to
410
+ permit persons to whom the Software is furnished to do so, subject to
411
+ the following conditions:
412
+
413
+ The above copyright notice and this permission notice shall be
414
+ included in all copies or substantial portions of the Software.
415
+
416
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
417
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
418
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
419
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
420
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
421
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
422
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
423
+
424
+
425
+ ----------------------------------------------------------------------------------------
426
+
427
+ embla-carousel-react 8.3.0
428
+ (https://github.com/davidjerleke/embla-carousel)
429
+
430
+ MIT License
431
+
432
+ Copyright (c) David Jerleke.
433
+
434
+ Permission is hereby granted, free of charge, to any person obtaining a copy
435
+ of this software and associated documentation files (the "Software"), to deal
436
+ in the Software without restriction, including without limitation the rights
437
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
438
+ copies of the Software, and to permit persons to whom the Software is
439
+ furnished to do so, subject to the following conditions:
440
+
441
+ The above copyright notice and this permission notice shall be included in all
442
+ copies or substantial portions of the Software.
443
+
444
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
445
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
446
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
447
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
448
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
449
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
450
+ SOFTWARE.
451
+
452
+
453
+ ----------------------------------------------------------------------------------------
454
+
455
+ file-loader 6.2.0
456
+ (https://github.com/webpack-contrib/file-loader)
457
+
458
+ Copyright JS Foundation and other contributors
459
+
460
+ Permission is hereby granted, free of charge, to any person obtaining
461
+ a copy of this software and associated documentation files (the
462
+ 'Software'), to deal in the Software without restriction, including
463
+ without limitation the rights to use, copy, modify, merge, publish,
464
+ distribute, sublicense, and/or sell copies of the Software, and to
465
+ permit persons to whom the Software is furnished to do so, subject to
466
+ the following conditions:
467
+
468
+ The above copyright notice and this permission notice shall be
469
+ included in all copies or substantial portions of the Software.
470
+
471
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
472
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
473
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
474
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
475
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
476
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
477
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
478
+
479
+
480
+ ----------------------------------------------------------------------------------------
481
+
482
+ html-webpack-plugin 4.5.2
483
+ (https://github.com/jantimon/html-webpack-plugin)
484
+
485
+ Copyright JS Foundation and other contributors
486
+
487
+ Permission is hereby granted, free of charge, to any person obtaining
488
+ a copy of this software and associated documentation files (the
489
+ 'Software'), to deal in the Software without restriction, including
490
+ without limitation the rights to use, copy, modify, merge, publish,
491
+ distribute, sublicense, and/or sell copies of the Software, and to
492
+ permit persons to whom the Software is furnished to do so, subject to
493
+ the following conditions:
494
+
495
+ The above copyright notice and this permission notice shall be
496
+ included in all copies or substantial portions of the Software.
497
+
498
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
499
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
500
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
501
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
502
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
503
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
504
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
505
+
506
+
507
+ ----------------------------------------------------------------------------------------
508
+
509
+ null-loader 4.0.1
510
+ (https://github.com/webpack-contrib/null-loader)
511
+
512
+ Copyright JS Foundation and other contributors
513
+
514
+ Permission is hereby granted, free of charge, to any person obtaining
515
+ a copy of this software and associated documentation files (the
516
+ 'Software'), to deal in the Software without restriction, including
517
+ without limitation the rights to use, copy, modify, merge, publish,
518
+ distribute, sublicense, and/or sell copies of the Software, and to
519
+ permit persons to whom the Software is furnished to do so, subject to
520
+ the following conditions:
521
+
522
+ The above copyright notice and this permission notice shall be
523
+ included in all copies or substantial portions of the Software.
524
+
525
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
526
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
527
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
528
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
529
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
530
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
531
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
532
+
533
+
534
+ ----------------------------------------------------------------------------------------
535
+
536
+ preact 10.19.5
537
+ (https://github.com/preactjs/preact)
538
+
539
+ The MIT License (MIT)
540
+
541
+ Copyright (c) 2015-present Jason Miller
542
+
543
+ Permission is hereby granted, free of charge, to any person obtaining a copy
544
+ of this software and associated documentation files (the "Software"), to deal
545
+ in the Software without restriction, including without limitation the rights
546
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
547
+ copies of the Software, and to permit persons to whom the Software is
548
+ furnished to do so, subject to the following conditions:
549
+
550
+ The above copyright notice and this permission notice shall be included in all
551
+ copies or substantial portions of the Software.
552
+
553
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
554
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
555
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
556
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
557
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
558
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
559
+ SOFTWARE.
560
+
561
+
562
+ ----------------------------------------------------------------------------------------
563
+
564
+ react-error-boundary 4.0.13
565
+ (https://github.com/bvaughn/react-error-boundary)
566
+
567
+ The MIT License (MIT)
568
+ Copyright (c) 2020 Brian Vaughn
569
+
570
+ Permission is hereby granted, free of charge, to any person obtaining a copy
571
+ of this software and associated documentation files (the "Software"), to deal
572
+ in the Software without restriction, including without limitation the rights
573
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
574
+ copies of the Software, and to permit persons to whom the Software is
575
+ furnished to do so, subject to the following conditions:
576
+
577
+ The above copyright notice and this permission notice shall be included in all
578
+ copies or substantial portions of the Software.
579
+
580
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
581
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
582
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
583
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
584
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
585
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
586
+ SOFTWARE.
587
+
588
+
589
+ ----------------------------------------------------------------------------------------
590
+
591
+ react-zoom-pan-pinch 3.5.1
592
+ (https://github.com/prc5/react-zoom-pan-pinch)
593
+
594
+ MIT License
595
+
596
+ Copyright (c) 2019 prc5
597
+
598
+ Permission is hereby granted, free of charge, to any person obtaining a copy
599
+ of this software and associated documentation files (the "Software"), to deal
600
+ in the Software without restriction, including without limitation the rights
601
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
602
+ copies of the Software, and to permit persons to whom the Software is
603
+ furnished to do so, subject to the following conditions:
604
+
605
+ The above copyright notice and this permission notice shall be included in all
606
+ copies or substantial portions of the Software.
607
+
608
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
609
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
610
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
611
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
612
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
613
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
614
+ SOFTWARE.
615
+
616
+
617
+ ----------------------------------------------------------------------------------------
618
+
619
+ style-loader 2.0.0
620
+ (https://github.com/webpack-contrib/style-loader)
621
+
622
+ Copyright JS Foundation and other contributors
623
+
624
+ Permission is hereby granted, free of charge, to any person obtaining
625
+ a copy of this software and associated documentation files (the
626
+ 'Software'), to deal in the Software without restriction, including
627
+ without limitation the rights to use, copy, modify, merge, publish,
628
+ distribute, sublicense, and/or sell copies of the Software, and to
629
+ permit persons to whom the Software is furnished to do so, subject to
630
+ the following conditions:
631
+
632
+ The above copyright notice and this permission notice shall be
633
+ included in all copies or substantial portions of the Software.
634
+
635
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
636
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
637
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
638
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
639
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
640
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
641
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
642
+
643
+
644
+ ----------------------------------------------------------------------------------------
645
+
646
+ terser-webpack-plugin 1.4.5
647
+ (https://github.com/webpack-contrib/terser-webpack-plugin)
648
+
649
+ Copyright JS Foundation and other contributors
650
+
651
+ Permission is hereby granted, free of charge, to any person obtaining
652
+ a copy of this software and associated documentation files (the
653
+ 'Software'), to deal in the Software without restriction, including
654
+ without limitation the rights to use, copy, modify, merge, publish,
655
+ distribute, sublicense, and/or sell copies of the Software, and to
656
+ permit persons to whom the Software is furnished to do so, subject to
657
+ the following conditions:
658
+
659
+ The above copyright notice and this permission notice shall be
660
+ included in all copies or substantial portions of the Software.
661
+
662
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
663
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
664
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
665
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
666
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
667
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
668
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
669
+
670
+
671
+ ----------------------------------------------------------------------------------------
672
+
673
+ ts-loader 8.2.0
674
+ (https://github.com/TypeStrong/ts-loader)
675
+
676
+ The MIT License (MIT)
677
+
678
+ Copyright (c) 2015 TypeStrong
679
+
680
+ Permission is hereby granted, free of charge, to any person obtaining a copy
681
+ of this software and associated documentation files (the "Software"), to deal
682
+ in the Software without restriction, including without limitation the rights
683
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
684
+ copies of the Software, and to permit persons to whom the Software is
685
+ furnished to do so, subject to the following conditions:
686
+
687
+ The above copyright notice and this permission notice shall be included in all
688
+ copies or substantial portions of the Software.
689
+
690
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
691
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
692
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
693
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
694
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
695
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
696
+ SOFTWARE.
697
+
698
+
699
+
700
+ ----------------------------------------------------------------------------------------
701
+
702
+ typedoc 0.25.4
703
+ (https://github.com/TypeStrong/TypeDoc)
704
+
705
+ Apache License
706
+ Version 2.0, January 2004
707
+ http://www.apache.org/licenses/
708
+
709
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
710
+
711
+ 1. Definitions.
712
+
713
+ "License" shall mean the terms and conditions for use, reproduction,
714
+ and distribution as defined by Sections 1 through 9 of this document.
715
+
716
+ "Licensor" shall mean the copyright owner or entity authorized by
717
+ the copyright owner that is granting the License.
718
+
719
+ "Legal Entity" shall mean the union of the acting entity and all
720
+ other entities that control, are controlled by, or are under common
721
+ control with that entity. For the purposes of this definition,
722
+ "control" means (i) the power, direct or indirect, to cause the
723
+ direction or management of such entity, whether by contract or
724
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
725
+ outstanding shares, or (iii) beneficial ownership of such entity.
726
+
727
+ "You" (or "Your") shall mean an individual or Legal Entity
728
+ exercising permissions granted by this License.
729
+
730
+ "Source" form shall mean the preferred form for making modifications,
731
+ including but not limited to software source code, documentation
732
+ source, and configuration files.
733
+
734
+ "Object" form shall mean any form resulting from mechanical
735
+ transformation or translation of a Source form, including but
736
+ not limited to compiled object code, generated documentation,
737
+ and conversions to other media types.
738
+
739
+ "Work" shall mean the work of authorship, whether in Source or
740
+ Object form, made available under the License, as indicated by a
741
+ copyright notice that is included in or attached to the work
742
+ (an example is provided in the Appendix below).
743
+
744
+ "Derivative Works" shall mean any work, whether in Source or Object
745
+ form, that is based on (or derived from) the Work and for which the
746
+ editorial revisions, annotations, elaborations, or other modifications
747
+ represent, as a whole, an original work of authorship. For the purposes
748
+ of this License, Derivative Works shall not include works that remain
749
+ separable from, or merely link (or bind by name) to the interfaces of,
750
+ the Work and Derivative Works thereof.
751
+
752
+ "Contribution" shall mean any work of authorship, including
753
+ the original version of the Work and any modifications or additions
754
+ to that Work or Derivative Works thereof, that is intentionally
755
+ submitted to Licensor for inclusion in the Work by the copyright owner
756
+ or by an individual or Legal Entity authorized to submit on behalf of
757
+ the copyright owner. For the purposes of this definition, "submitted"
758
+ means any form of electronic, verbal, or written communication sent
759
+ to the Licensor or its representatives, including but not limited to
760
+ communication on electronic mailing lists, source code control systems,
761
+ and issue tracking systems that are managed by, or on behalf of, the
762
+ Licensor for the purpose of discussing and improving the Work, but
763
+ excluding communication that is conspicuously marked or otherwise
764
+ designated in writing by the copyright owner as "Not a Contribution."
765
+
766
+ "Contributor" shall mean Licensor and any individual or Legal Entity
767
+ on behalf of whom a Contribution has been received by Licensor and
768
+ subsequently incorporated within the Work.
769
+
770
+ 2. Grant of Copyright License. Subject to the terms and conditions of
771
+ this License, each Contributor hereby grants to You a perpetual,
772
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
773
+ copyright license to reproduce, prepare Derivative Works of,
774
+ publicly display, publicly perform, sublicense, and distribute the
775
+ Work and such Derivative Works in Source or Object form.
776
+
777
+ 3. Grant of Patent License. Subject to the terms and conditions of
778
+ this License, each Contributor hereby grants to You a perpetual,
779
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
780
+ (except as stated in this section) patent license to make, have made,
781
+ use, offer to sell, sell, import, and otherwise transfer the Work,
782
+ where such license applies only to those patent claims licensable
783
+ by such Contributor that are necessarily infringed by their
784
+ Contribution(s) alone or by combination of their Contribution(s)
785
+ with the Work to which such Contribution(s) was submitted. If You
786
+ institute patent litigation against any entity (including a
787
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
788
+ or a Contribution incorporated within the Work constitutes direct
789
+ or contributory patent infringement, then any patent licenses
790
+ granted to You under this License for that Work shall terminate
791
+ as of the date such litigation is filed.
792
+
793
+ 4. Redistribution. You may reproduce and distribute copies of the
794
+ Work or Derivative Works thereof in any medium, with or without
795
+ modifications, and in Source or Object form, provided that You
796
+ meet the following conditions:
797
+
798
+ (a) You must give any other recipients of the Work or
799
+ Derivative Works a copy of this License; and
800
+
801
+ (b) You must cause any modified files to carry prominent notices
802
+ stating that You changed the files; and
803
+
804
+ (c) You must retain, in the Source form of any Derivative Works
805
+ that You distribute, all copyright, patent, trademark, and
806
+ attribution notices from the Source form of the Work,
807
+ excluding those notices that do not pertain to any part of
808
+ the Derivative Works; and
809
+
810
+ (d) If the Work includes a "NOTICE" text file as part of its
811
+ distribution, then any Derivative Works that You distribute must
812
+ include a readable copy of the attribution notices contained
813
+ within such NOTICE file, excluding those notices that do not
814
+ pertain to any part of the Derivative Works, in at least one
815
+ of the following places: within a NOTICE text file distributed
816
+ as part of the Derivative Works; within the Source form or
817
+ documentation, if provided along with the Derivative Works; or,
818
+ within a display generated by the Derivative Works, if and
819
+ wherever such third-party notices normally appear. The contents
820
+ of the NOTICE file are for informational purposes only and
821
+ do not modify the License. You may add Your own attribution
822
+ notices within Derivative Works that You distribute, alongside
823
+ or as an addendum to the NOTICE text from the Work, provided
824
+ that such additional attribution notices cannot be construed
825
+ as modifying the License.
826
+
827
+ You may add Your own copyright statement to Your modifications and
828
+ may provide additional or different license terms and conditions
829
+ for use, reproduction, or distribution of Your modifications, or
830
+ for any such Derivative Works as a whole, provided Your use,
831
+ reproduction, and distribution of the Work otherwise complies with
832
+ the conditions stated in this License.
833
+
834
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
835
+ any Contribution intentionally submitted for inclusion in the Work
836
+ by You to the Licensor shall be under the terms and conditions of
837
+ this License, without any additional terms or conditions.
838
+ Notwithstanding the above, nothing herein shall supersede or modify
839
+ the terms of any separate license agreement you may have executed
840
+ with Licensor regarding such Contributions.
841
+
842
+ 6. Trademarks. This License does not grant permission to use the trade
843
+ names, trademarks, service marks, or product names of the Licensor,
844
+ except as required for reasonable and customary use in describing the
845
+ origin of the Work and reproducing the content of the NOTICE file.
846
+
847
+ 7. Disclaimer of Warranty. Unless required by applicable law or
848
+ agreed to in writing, Licensor provides the Work (and each
849
+ Contributor provides its Contributions) on an "AS IS" BASIS,
850
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
851
+ implied, including, without limitation, any warranties or conditions
852
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
853
+ PARTICULAR PURPOSE. You are solely responsible for determining the
854
+ appropriateness of using or redistributing the Work and assume any
855
+ risks associated with Your exercise of permissions under this License.
856
+
857
+ 8. Limitation of Liability. In no event and under no legal theory,
858
+ whether in tort (including negligence), contract, or otherwise,
859
+ unless required by applicable law (such as deliberate and grossly
860
+ negligent acts) or agreed to in writing, shall any Contributor be
861
+ liable to You for damages, including any direct, indirect, special,
862
+ incidental, or consequential damages of any character arising as a
863
+ result of this License or out of the use or inability to use the
864
+ Work (including but not limited to damages for loss of goodwill,
865
+ work stoppage, computer failure or malfunction, or any and all
866
+ other commercial damages or losses), even if such Contributor
867
+ has been advised of the possibility of such damages.
868
+
869
+ 9. Accepting Warranty or Additional Liability. While redistributing
870
+ the Work or Derivative Works thereof, You may choose to offer,
871
+ and charge a fee for, acceptance of support, warranty, indemnity,
872
+ or other liability obligations and/or rights consistent with this
873
+ License. However, in accepting such obligations, You may act only
874
+ on Your own behalf and on Your sole responsibility, not on behalf
875
+ of any other Contributor, and only if You agree to indemnify,
876
+ defend, and hold each Contributor harmless for any liability
877
+ incurred by, or claims asserted against, such Contributor by reason
878
+ of your accepting any such warranty or additional liability.
879
+
880
+ END OF TERMS AND CONDITIONS
881
+
882
+ APPENDIX: How to apply the Apache License to your work.
883
+
884
+ To apply the Apache License to your work, attach the following
885
+ boilerplate notice, with the fields enclosed by brackets "{}"
886
+ replaced with your own identifying information. (Don't include
887
+ the brackets!) The text should be enclosed in the appropriate
888
+ comment syntax for the file format. We also recommend that a
889
+ file or class name and description of purpose be included on the
890
+ same "printed page" as the copyright notice for easier
891
+ identification within third-party archives.
892
+
893
+ Copyright {yyyy} {name of copyright owner}
894
+
895
+ Licensed under the Apache License, Version 2.0 (the "License");
896
+ you may not use this file except in compliance with the License.
897
+ You may obtain a copy of the License at
898
+
899
+ http://www.apache.org/licenses/LICENSE-2.0
900
+
901
+ Unless required by applicable law or agreed to in writing, software
902
+ distributed under the License is distributed on an "AS IS" BASIS,
903
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
904
+ See the License for the specific language governing permissions and
905
+ limitations under the License.
906
+
907
+ ----------------------------------------------------------------------------------------
908
+
909
+ typedoc-plugin-merge-modules 5.1.0
910
+ (https://github.com/krisztianb/typedoc-plugin-merge-modules)
911
+
912
+ Copyright (c) 2021, Krisztián Balla
913
+
914
+ Permission to use, copy, modify, and/or distribute this software for any
915
+ purpose with or without fee is hereby granted, provided that the above
916
+ copyright notice and this permission notice appear in all copies.
917
+
918
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
919
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
920
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
921
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
922
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
923
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
924
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
925
+
926
+ ----------------------------------------------------------------------------------------
927
+
928
+ typedoc-plugin-rename-defaults 0.7.0
929
+ (https://github.com/felipecrs/typedoc-plugin-rename-defaults)
930
+
931
+ MIT License
932
+
933
+ Copyright (c) 2021 Felipe Santos
934
+
935
+ Permission is hereby granted, free of charge, to any person obtaining a copy
936
+ of this software and associated documentation files (the "Software"), to deal
937
+ in the Software without restriction, including without limitation the rights
938
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
939
+ copies of the Software, and to permit persons to whom the Software is
940
+ furnished to do so, subject to the following conditions:
941
+
942
+ The above copyright notice and this permission notice shall be included in all
943
+ copies or substantial portions of the Software.
944
+
945
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
946
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
947
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
948
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
949
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
950
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
951
+ SOFTWARE.
952
+
953
+ ----------------------------------------------------------------------------------------
954
+
955
+ typescript 5.3.3
956
+ (https://github.com/Microsoft/TypeScript)
957
+
958
+ Apache License
959
+
960
+ Version 2.0, January 2004
961
+
962
+ http://www.apache.org/licenses/
963
+
964
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
965
+
966
+ 1. Definitions.
967
+
968
+ "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
969
+
970
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
971
+
972
+ "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
973
+
974
+ "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
975
+
976
+ "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
977
+
978
+ "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
979
+
980
+ "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
981
+
982
+ "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
983
+
984
+ "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
985
+
986
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
987
+
988
+ 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
989
+
990
+ 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
991
+
992
+ 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
993
+
994
+ You must give any other recipients of the Work or Derivative Works a copy of this License; and
995
+
996
+ You must cause any modified files to carry prominent notices stating that You changed the files; and
997
+
998
+ You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
999
+
1000
+ If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
1001
+
1002
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
1003
+
1004
+ 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
1005
+
1006
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
1007
+
1008
+ 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
1009
+
1010
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
1011
+
1012
+ END OF TERMS AND CONDITIONS
1013
+
1014
+
1015
+ ----------------------------------------------------------------------------------------
1016
+
1017
+ url-loader 4.1.1
1018
+ (https://github.com/webpack-contrib/url-loader)
1019
+
1020
+ Copyright JS Foundation and other contributors
1021
+
1022
+ Permission is hereby granted, free of charge, to any person obtaining
1023
+ a copy of this software and associated documentation files (the
1024
+ 'Software'), to deal in the Software without restriction, including
1025
+ without limitation the rights to use, copy, modify, merge, publish,
1026
+ distribute, sublicense, and/or sell copies of the Software, and to
1027
+ permit persons to whom the Software is furnished to do so, subject to
1028
+ the following conditions:
1029
+
1030
+ The above copyright notice and this permission notice shall be
1031
+ included in all copies or substantial portions of the Software.
1032
+
1033
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1034
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1035
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1036
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1037
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1038
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1039
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1040
+
1041
+
1042
+ ----------------------------------------------------------------------------------------
1043
+
1044
+ webpack 4.46.0
1045
+ (https://github.com/webpack/webpack)
1046
+
1047
+ Copyright JS Foundation and other contributors
1048
+
1049
+ Permission is hereby granted, free of charge, to any person obtaining
1050
+ a copy of this software and associated documentation files (the
1051
+ 'Software'), to deal in the Software without restriction, including
1052
+ without limitation the rights to use, copy, modify, merge, publish,
1053
+ distribute, sublicense, and/or sell copies of the Software, and to
1054
+ permit persons to whom the Software is furnished to do so, subject to
1055
+ the following conditions:
1056
+
1057
+ The above copyright notice and this permission notice shall be
1058
+ included in all copies or substantial portions of the Software.
1059
+
1060
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1061
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1062
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1063
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1064
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1065
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1066
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1067
+
1068
+
1069
+ ----------------------------------------------------------------------------------------
1070
+
1071
+ webpack-bundle-analyzer 4.10.2
1072
+ (https://github.com/webpack-contrib/webpack-bundle-analyzer)
1073
+
1074
+ Copyright JS Foundation and other contributors
1075
+
1076
+ Permission is hereby granted, free of charge, to any person obtaining
1077
+ a copy of this software and associated documentation files (the
1078
+ 'Software'), to deal in the Software without restriction, including
1079
+ without limitation the rights to use, copy, modify, merge, publish,
1080
+ distribute, sublicense, and/or sell copies of the Software, and to
1081
+ permit persons to whom the Software is furnished to do so, subject to
1082
+ the following conditions:
1083
+
1084
+ The above copyright notice and this permission notice shall be
1085
+ included in all copies or substantial portions of the Software.
1086
+
1087
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1088
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1089
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1090
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1091
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1092
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1093
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1094
+
1095
+
1096
+ ----------------------------------------------------------------------------------------
1097
+
1098
+ webpack-cli 4.9.2
1099
+ (https://github.com/webpack/webpack-cli)
1100
+
1101
+ Copyright JS Foundation and other contributors
1102
+
1103
+ Permission is hereby granted, free of charge, to any person obtaining
1104
+ a copy of this software and associated documentation files (the
1105
+ 'Software'), to deal in the Software without restriction, including
1106
+ without limitation the rights to use, copy, modify, merge, publish,
1107
+ distribute, sublicense, and/or sell copies of the Software, and to
1108
+ permit persons to whom the Software is furnished to do so, subject to
1109
+ the following conditions:
1110
+
1111
+ The above copyright notice and this permission notice shall be
1112
+ included in all copies or substantial portions of the Software.
1113
+
1114
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1115
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1116
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1117
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1118
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1119
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1120
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1121
+
1122
+ ----------------------------------------------------------------------------------------
1123
+
1124
+ webpack-dev-server 4.7.4
1125
+ (https://github.com/webpack/webpack-dev-server)
1126
+
1127
+ Copyright JS Foundation and other contributors
1128
+
1129
+ Permission is hereby granted, free of charge, to any person obtaining
1130
+ a copy of this software and associated documentation files (the
1131
+ 'Software'), to deal in the Software without restriction, including
1132
+ without limitation the rights to use, copy, modify, merge, publish,
1133
+ distribute, sublicense, and/or sell copies of the Software, and to
1134
+ permit persons to whom the Software is furnished to do so, subject to
1135
+ the following conditions:
1136
+
1137
+ The above copyright notice and this permission notice shall be
1138
+ included in all copies or substantial portions of the Software.
1139
+
1140
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1141
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1142
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1143
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1144
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1145
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1146
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1147
+
1148
+
1149
+ ----------------------------------------------------------------------------------------
1150
+
4
1151
  @fontsource/roboto 5.0.8
5
1152
  (https://github.com/fontsource/font-files)
6
1153
 
@@ -477,7 +1624,7 @@ record keeping.)
477
1624
  * are met:
478
1625
  *
479
1626
  * 1. Redistributions of source code must retain the above copyright
480
- * notice, this list of conditions and the following disclaimer.
1627
+ * notice, this list of conditions and the following disclaimer.
481
1628
  *
482
1629
  * 2. Redistributions in binary form must reproduce the above copyright
483
1630
  * notice, this list of conditions and the following disclaimer in
@@ -532,21 +1679,21 @@ record keeping.)
532
1679
  * This package is an SSL implementation written
533
1680
  * by Eric Young (eay@cryptsoft.com).
534
1681
  * The implementation was written so as to conform with Netscapes SSL.
535
- *
1682
+ *
536
1683
  * This library is free for commercial and non-commercial use as long as
537
1684
  * the following conditions are aheared to. The following conditions
538
1685
  * apply to all code found in this distribution, be it the RC4, RSA,
539
1686
  * lhash, DES, etc., code; not just the SSL code. The SSL documentation
540
1687
  * included with this distribution is covered by the same copyright terms
541
1688
  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
542
- *
1689
+ *
543
1690
  * Copyright remains Eric Young's, and as such any Copyright notices in
544
1691
  * the code are not to be removed.
545
1692
  * If this package is used in a product, Eric Young should be given attribution
546
1693
  * as the author of the parts of the library used.
547
1694
  * This can be in the form of a textual message at program startup or
548
1695
  * in documentation (online or textual) provided with the package.
549
- *
1696
+ *
550
1697
  * Redistribution and use in source and binary forms, with or without
551
1698
  * modification, are permitted provided that the following conditions
552
1699
  * are met:
@@ -561,10 +1708,10 @@ record keeping.)
561
1708
  * Eric Young (eay@cryptsoft.com)"
562
1709
  * The word 'cryptographic' can be left out if the rouines from the library
563
1710
  * being used are not cryptographic related :-).
564
- * 4. If you include any Windows specific code (or a derivative thereof) from
1711
+ * 4. If you include any Windows specific code (or a derivative thereof) from
565
1712
  * the apps directory (application code) you must include an acknowledgement:
566
1713
  * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
567
- *
1714
+ *
568
1715
  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
569
1716
  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
570
1717
  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
@@ -576,7 +1723,7 @@ record keeping.)
576
1723
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
577
1724
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
578
1725
  * SUCH DAMAGE.
579
- *
1726
+ *
580
1727
  * The licence and distribution terms for any publically available version or
581
1728
  * derivative of this code cannot be changed. i.e. this code cannot simply be
582
1729
  * copied and put under another distribution licence
@@ -695,6 +1842,321 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
695
1842
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
696
1843
 
697
1844
 
1845
+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1846
+
1847
+ expected
1848
+
1849
+ Version 1.1
1850
+ (https://github.com/TartanLlama/expected)
1851
+
1852
+ Creative Commons Legal Code
1853
+
1854
+ CC0 1.0 Universal
1855
+
1856
+ CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
1857
+ LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN
1858
+ ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
1859
+ INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
1860
+ REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS
1861
+ PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM
1862
+ THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED
1863
+ HEREUNDER.
1864
+
1865
+ Statement of Purpose
1866
+
1867
+ The laws of most jurisdictions throughout the world automatically confer
1868
+ exclusive Copyright and Related Rights (defined below) upon the creator
1869
+ and subsequent owner(s) (each and all, an "owner") of an original work of
1870
+ authorship and/or a database (each, a "Work").
1871
+
1872
+ Certain owners wish to permanently relinquish those rights to a Work for
1873
+ the purpose of contributing to a commons of creative, cultural and
1874
+ scientific works ("Commons") that the public can reliably and without fear
1875
+ of later claims of infringement build upon, modify, incorporate in other
1876
+ works, reuse and redistribute as freely as possible in any form whatsoever
1877
+ and for any purposes, including without limitation commercial purposes.
1878
+ These owners may contribute to the Commons to promote the ideal of a free
1879
+ culture and the further production of creative, cultural and scientific
1880
+ works, or to gain reputation or greater distribution for their Work in
1881
+ part through the use and efforts of others.
1882
+
1883
+ For these and/or other purposes and motivations, and without any
1884
+ expectation of additional consideration or compensation, the person
1885
+ associating CC0 with a Work (the "Affirmer"), to the extent that he or she
1886
+ is an owner of Copyright and Related Rights in the Work, voluntarily
1887
+ elects to apply CC0 to the Work and publicly distribute the Work under its
1888
+ terms, with knowledge of his or her Copyright and Related Rights in the
1889
+ Work and the meaning and intended legal effect of CC0 on those rights.
1890
+
1891
+ 1. Copyright and Related Rights. A Work made available under CC0 may be
1892
+ protected by copyright and related or neighboring rights ("Copyright and
1893
+ Related Rights"). Copyright and Related Rights include, but are not
1894
+ limited to, the following:
1895
+
1896
+ i. the right to reproduce, adapt, distribute, perform, display,
1897
+ communicate, and translate a Work;
1898
+ ii. moral rights retained by the original author(s) and/or performer(s);
1899
+ iii. publicity and privacy rights pertaining to a person's image or
1900
+ likeness depicted in a Work;
1901
+ iv. rights protecting against unfair competition in regards to a Work,
1902
+ subject to the limitations in paragraph 4(a), below;
1903
+ v. rights protecting the extraction, dissemination, use and reuse of data
1904
+ in a Work;
1905
+ vi. database rights (such as those arising under Directive 96/9/EC of the
1906
+ European Parliament and of the Council of 11 March 1996 on the legal
1907
+ protection of databases, and under any national implementation
1908
+ thereof, including any amended or successor version of such
1909
+ directive); and
1910
+ vii. other similar, equivalent or corresponding rights throughout the
1911
+ world based on applicable law or treaty, and any national
1912
+ implementations thereof.
1913
+
1914
+ 2. Waiver. To the greatest extent permitted by, but not in contravention
1915
+ of, applicable law, Affirmer hereby overtly, fully, permanently,
1916
+ irrevocably and unconditionally waives, abandons, and surrenders all of
1917
+ Affirmer's Copyright and Related Rights and associated claims and causes
1918
+ of action, whether now known or unknown (including existing as well as
1919
+ future claims and causes of action), in the Work (i) in all territories
1920
+ worldwide, (ii) for the maximum duration provided by applicable law or
1921
+ treaty (including future time extensions), (iii) in any current or future
1922
+ medium and for any number of copies, and (iv) for any purpose whatsoever,
1923
+ including without limitation commercial, advertising or promotional
1924
+ purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each
1925
+ member of the public at large and to the detriment of Affirmer's heirs and
1926
+ successors, fully intending that such Waiver shall not be subject to
1927
+ revocation, rescission, cancellation, termination, or any other legal or
1928
+ equitable action to disrupt the quiet enjoyment of the Work by the public
1929
+ as contemplated by Affirmer's express Statement of Purpose.
1930
+
1931
+ 3. Public License Fallback. Should any part of the Waiver for any reason
1932
+ be judged legally invalid or ineffective under applicable law, then the
1933
+ Waiver shall be preserved to the maximum extent permitted taking into
1934
+ account Affirmer's express Statement of Purpose. In addition, to the
1935
+ extent the Waiver is so judged Affirmer hereby grants to each affected
1936
+ person a royalty-free, non transferable, non sublicensable, non exclusive,
1937
+ irrevocable and unconditional license to exercise Affirmer's Copyright and
1938
+ Related Rights in the Work (i) in all territories worldwide, (ii) for the
1939
+ maximum duration provided by applicable law or treaty (including future
1940
+ time extensions), (iii) in any current or future medium and for any number
1941
+ of copies, and (iv) for any purpose whatsoever, including without
1942
+ limitation commercial, advertising or promotional purposes (the
1943
+ "License"). The License shall be deemed effective as of the date CC0 was
1944
+ applied by Affirmer to the Work. Should any part of the License for any
1945
+ reason be judged legally invalid or ineffective under applicable law, such
1946
+ partial invalidity or ineffectiveness shall not invalidate the remainder
1947
+ of the License, and in such case Affirmer hereby affirms that he or she
1948
+ will not (i) exercise any of his or her remaining Copyright and Related
1949
+ Rights in the Work or (ii) assert any associated claims and causes of
1950
+ action with respect to the Work, in either case contrary to Affirmer's
1951
+ express Statement of Purpose.
1952
+
1953
+ 4. Limitations and Disclaimers.
1954
+
1955
+ a. No trademark or patent rights held by Affirmer are waived, abandoned,
1956
+ surrendered, licensed or otherwise affected by this document.
1957
+ b. Affirmer offers the Work as-is and makes no representations or
1958
+ warranties of any kind concerning the Work, express, implied,
1959
+ statutory or otherwise, including without limitation warranties of
1960
+ title, merchantability, fitness for a particular purpose, non
1961
+ infringement, or the absence of latent or other defects, accuracy, or
1962
+ the present or absence of errors, whether or not discoverable, all to
1963
+ the greatest extent permissible under applicable law.
1964
+ c. Affirmer disclaims responsibility for clearing rights of other persons
1965
+ that may apply to the Work or any use thereof, including without
1966
+ limitation any person's Copyright and Related Rights in the Work.
1967
+ Further, Affirmer disclaims responsibility for obtaining any necessary
1968
+ consents, permissions or other rights required for any use of the
1969
+ Work.
1970
+ d. Affirmer understands and acknowledges that Creative Commons is not a
1971
+ party to this document and has no duty or obligation with respect to
1972
+ this CC0 or use of the Work.
1973
+
1974
+
1975
+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1976
+
1977
+ gs1-syntax-dictionary
1978
+
1979
+ Version 2023-12-11
1980
+ (https://github.com/gs1/gs1-syntax-dictionary)
1981
+
1982
+ Apache License
1983
+ Version 2.0, January 2004
1984
+ http://www.apache.org/licenses/
1985
+
1986
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1987
+
1988
+ 1. Definitions.
1989
+
1990
+ "License" shall mean the terms and conditions for use, reproduction,
1991
+ and distribution as defined by Sections 1 through 9 of this document.
1992
+
1993
+ "Licensor" shall mean the copyright owner or entity authorized by
1994
+ the copyright owner that is granting the License.
1995
+
1996
+ "Legal Entity" shall mean the union of the acting entity and all
1997
+ other entities that control, are controlled by, or are under common
1998
+ control with that entity. For the purposes of this definition,
1999
+ "control" means (i) the power, direct or indirect, to cause the
2000
+ direction or management of such entity, whether by contract or
2001
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
2002
+ outstanding shares, or (iii) beneficial ownership of such entity.
2003
+
2004
+ "You" (or "Your") shall mean an individual or Legal Entity
2005
+ exercising permissions granted by this License.
2006
+
2007
+ "Source" form shall mean the preferred form for making modifications,
2008
+ including but not limited to software source code, documentation
2009
+ source, and configuration files.
2010
+
2011
+ "Object" form shall mean any form resulting from mechanical
2012
+ transformation or translation of a Source form, including but
2013
+ not limited to compiled object code, generated documentation,
2014
+ and conversions to other media types.
2015
+
2016
+ "Work" shall mean the work of authorship, whether in Source or
2017
+ Object form, made available under the License, as indicated by a
2018
+ copyright notice that is included in or attached to the work
2019
+ (an example is provided in the Appendix below).
2020
+
2021
+ "Derivative Works" shall mean any work, whether in Source or Object
2022
+ form, that is based on (or derived from) the Work and for which the
2023
+ editorial revisions, annotations, elaborations, or other modifications
2024
+ represent, as a whole, an original work of authorship. For the purposes
2025
+ of this License, Derivative Works shall not include works that remain
2026
+ separable from, or merely link (or bind by name) to the interfaces of,
2027
+ the Work and Derivative Works thereof.
2028
+
2029
+ "Contribution" shall mean any work of authorship, including
2030
+ the original version of the Work and any modifications or additions
2031
+ to that Work or Derivative Works thereof, that is intentionally
2032
+ submitted to Licensor for inclusion in the Work by the copyright owner
2033
+ or by an individual or Legal Entity authorized to submit on behalf of
2034
+ the copyright owner. For the purposes of this definition, "submitted"
2035
+ means any form of electronic, verbal, or written communication sent
2036
+ to the Licensor or its representatives, including but not limited to
2037
+ communication on electronic mailing lists, source code control systems,
2038
+ and issue tracking systems that are managed by, or on behalf of, the
2039
+ Licensor for the purpose of discussing and improving the Work, but
2040
+ excluding communication that is conspicuously marked or otherwise
2041
+ designated in writing by the copyright owner as "Not a Contribution."
2042
+
2043
+ "Contributor" shall mean Licensor and any individual or Legal Entity
2044
+ on behalf of whom a Contribution has been received by Licensor and
2045
+ subsequently incorporated within the Work.
2046
+
2047
+ 2. Grant of Copyright License. Subject to the terms and conditions of
2048
+ this License, each Contributor hereby grants to You a perpetual,
2049
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2050
+ copyright license to reproduce, prepare Derivative Works of,
2051
+ publicly display, publicly perform, sublicense, and distribute the
2052
+ Work and such Derivative Works in Source or Object form.
2053
+
2054
+ 3. Grant of Patent License. Subject to the terms and conditions of
2055
+ this License, each Contributor hereby grants to You a perpetual,
2056
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2057
+ (except as stated in this section) patent license to make, have made,
2058
+ use, offer to sell, sell, import, and otherwise transfer the Work,
2059
+ where such license applies only to those patent claims licensable
2060
+ by such Contributor that are necessarily infringed by their
2061
+ Contribution(s) alone or by combination of their Contribution(s)
2062
+ with the Work to which such Contribution(s) was submitted. If You
2063
+ institute patent litigation against any entity (including a
2064
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
2065
+ or a Contribution incorporated within the Work constitutes direct
2066
+ or contributory patent infringement, then any patent licenses
2067
+ granted to You under this License for that Work shall terminate
2068
+ as of the date such litigation is filed.
2069
+
2070
+ 4. Redistribution. You may reproduce and distribute copies of the
2071
+ Work or Derivative Works thereof in any medium, with or without
2072
+ modifications, and in Source or Object form, provided that You
2073
+ meet the following conditions:
2074
+
2075
+ (a) You must give any other recipients of the Work or
2076
+ Derivative Works a copy of this License; and
2077
+
2078
+ (b) You must cause any modified files to carry prominent notices
2079
+ stating that You changed the files; and
2080
+
2081
+ (c) You must retain, in the Source form of any Derivative Works
2082
+ that You distribute, all copyright, patent, trademark, and
2083
+ attribution notices from the Source form of the Work,
2084
+ excluding those notices that do not pertain to any part of
2085
+ the Derivative Works; and
2086
+
2087
+ (d) If the Work includes a "NOTICE" text file as part of its
2088
+ distribution, then any Derivative Works that You distribute must
2089
+ include a readable copy of the attribution notices contained
2090
+ within such NOTICE file, excluding those notices that do not
2091
+ pertain to any part of the Derivative Works, in at least one
2092
+ of the following places: within a NOTICE text file distributed
2093
+ as part of the Derivative Works; within the Source form or
2094
+ documentation, if provided along with the Derivative Works; or,
2095
+ within a display generated by the Derivative Works, if and
2096
+ wherever such third-party notices normally appear. The contents
2097
+ of the NOTICE file are for informational purposes only and
2098
+ do not modify the License. You may add Your own attribution
2099
+ notices within Derivative Works that You distribute, alongside
2100
+ or as an addendum to the NOTICE text from the Work, provided
2101
+ that such additional attribution notices cannot be construed
2102
+ as modifying the License.
2103
+
2104
+ You may add Your own copyright statement to Your modifications and
2105
+ may provide additional or different license terms and conditions
2106
+ for use, reproduction, or distribution of Your modifications, or
2107
+ for any such Derivative Works as a whole, provided Your use,
2108
+ reproduction, and distribution of the Work otherwise complies with
2109
+ the conditions stated in this License.
2110
+
2111
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
2112
+ any Contribution intentionally submitted for inclusion in the Work
2113
+ by You to the Licensor shall be under the terms and conditions of
2114
+ this License, without any additional terms or conditions.
2115
+ Notwithstanding the above, nothing herein shall supersede or modify
2116
+ the terms of any separate license agreement you may have executed
2117
+ with Licensor regarding such Contributions.
2118
+
2119
+ 6. Trademarks. This License does not grant permission to use the trade
2120
+ names, trademarks, service marks, or product names of the Licensor,
2121
+ except as required for reasonable and customary use in describing the
2122
+ origin of the Work and reproducing the content of the NOTICE file.
2123
+
2124
+ 7. Disclaimer of Warranty. Unless required by applicable law or
2125
+ agreed to in writing, Licensor provides the Work (and each
2126
+ Contributor provides its Contributions) on an "AS IS" BASIS,
2127
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
2128
+ implied, including, without limitation, any warranties or conditions
2129
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
2130
+ PARTICULAR PURPOSE. You are solely responsible for determining the
2131
+ appropriateness of using or redistributing the Work and assume any
2132
+ risks associated with Your exercise of permissions under this License.
2133
+
2134
+ 8. Limitation of Liability. In no event and under no legal theory,
2135
+ whether in tort (including negligence), contract, or otherwise,
2136
+ unless required by applicable law (such as deliberate and grossly
2137
+ negligent acts) or agreed to in writing, shall any Contributor be
2138
+ liable to You for damages, including any direct, indirect, special,
2139
+ incidental, or consequential damages of any character arising as a
2140
+ result of this License or out of the use or inability to use the
2141
+ Work (including but not limited to damages for loss of goodwill,
2142
+ work stoppage, computer failure or malfunction, or any and all
2143
+ other commercial damages or losses), even if such Contributor
2144
+ has been advised of the possibility of such damages.
2145
+
2146
+ 9. Accepting Warranty or Additional Liability. While redistributing
2147
+ the Work or Derivative Works thereof, You may choose to offer,
2148
+ and charge a fee for, acceptance of support, warranty, indemnity,
2149
+ or other liability obligations and/or rights consistent with this
2150
+ License. However, in accepting such obligations, You may act only
2151
+ on Your own behalf and on Your sole responsibility, not on behalf
2152
+ of any other Contributor, and only if You agree to indemnify,
2153
+ defend, and hold each Contributor harmless for any liability
2154
+ incurred by, or claims asserted against, such Contributor by reason
2155
+ of your accepting any such warranty or additional liability.
2156
+
2157
+ END OF TERMS AND CONDITIONS
2158
+
2159
+
698
2160
  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
699
2161
 
700
2162
  icu4c
@@ -1223,14 +2685,25 @@ suitability of this software for any purpose. It is provided "as is"
1223
2685
  without express or implied warranty.
1224
2686
 
1225
2687
 
2688
+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2689
+
2690
+ ISO-3166-Countries-with-Regional-Codes
2691
+
2692
+ Version 10.0
2693
+ (https://github.com/lukes/ISO-3166-Countries-with-Regional-Codes)
2694
+
2695
+ ![license](https://i.creativecommons.org/l/by-sa/4.0/88x31.png)
2696
+ This work is licensed under a [Creative Commons Attribution-ShareAlike 4.0 International License](https://creativecommons.org/licenses/by-sa/4.0/).
2697
+
2698
+
1226
2699
  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1227
2700
 
1228
2701
  JSON for Modern C++
1229
2702
 
1230
- Version v3.11.2
2703
+ Version v3.11.3
1231
2704
  (https://github.com/nlohmann/json)
1232
2705
 
1233
- MIT License
2706
+ MIT License
1234
2707
 
1235
2708
  Copyright (c) 2013-2022 Niels Lohmann
1236
2709
 
@@ -1301,18 +2774,18 @@ Copyright (C) 2007-2009 Antony Dovgal
1301
2774
 
1302
2775
  This software is provided 'as-is', without any express or implied warranty.
1303
2776
 
1304
- In no event will the authors be held liable for any damages arising from the
2777
+ In no event will the authors be held liable for any damages arising from the
1305
2778
  use of this software.
1306
2779
 
1307
- Permission is granted to anyone to use this software for any purpose,including
1308
- commercial applications, and to alter it and redistribute it freely, subject
2780
+ Permission is granted to anyone to use this software for any purpose,including
2781
+ commercial applications, and to alter it and redistribute it freely, subject
1309
2782
  to the following restrictions:
1310
2783
 
1311
- 1. The origin of this software must not be misrepresented; you must not claim
1312
- that you wrote the original software. If you use this software in a
1313
- product, an acknowledgment in the product documentation would be
2784
+ 1. The origin of this software must not be misrepresented; you must not claim
2785
+ that you wrote the original software. If you use this software in a
2786
+ product, an acknowledgment in the product documentation would be
1314
2787
  appreciated but is not required.
1315
- 2. Altered source versions must be plainly marked as such, and must not be
2788
+ 2. Altered source versions must be plainly marked as such, and must not be
1316
2789
  misrepresented as being the original software.
1317
2790
  3. This notice may not be removed or altered from any source distribution.
1318
2791
 
@@ -1613,7 +3086,7 @@ Version 4.6.0
1613
3086
  Copyright © 1988-1997 Sam Leffler\
1614
3087
  Copyright © 1991-1997 Silicon Graphics, Inc.
1615
3088
 
1616
- Permission to use, copy, modify, distribute, and sell this software and
3089
+ Permission to use, copy, modify, distribute, and sell this software and
1617
3090
  its documentation for any purpose is hereby granted without fee, provided
1618
3091
  that (i) the above copyright notices and this permission notice appear in
1619
3092
  all copies of the software and related documentation, and (ii) the names of
@@ -1621,15 +3094,15 @@ Sam Leffler and Silicon Graphics may not be used in any advertising or
1621
3094
  publicity relating to the software without the specific, prior written
1622
3095
  permission of Sam Leffler and Silicon Graphics.
1623
3096
 
1624
- THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
1625
- EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
1626
- WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
3097
+ THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
3098
+ EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
3099
+ WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
1627
3100
 
1628
3101
  IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
1629
3102
  ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
1630
3103
  OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
1631
- WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
1632
- LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
3104
+ WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
3105
+ LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
1633
3106
  OF THIS SOFTWARE.
1634
3107
 
1635
3108
 
@@ -1709,7 +3182,7 @@ SOFTWARE.
1709
3182
 
1710
3183
  OpenCV
1711
3184
 
1712
- Version 4.8.0
3185
+ Version 4.10.0
1713
3186
  (https://github.com/opencv/opencv)
1714
3187
 
1715
3188
 
@@ -1942,7 +3415,7 @@ Version 1.1.0h
1942
3415
  * are met:
1943
3416
  *
1944
3417
  * 1. Redistributions of source code must retain the above copyright
1945
- * notice, this list of conditions and the following disclaimer.
3418
+ * notice, this list of conditions and the following disclaimer.
1946
3419
  *
1947
3420
  * 2. Redistributions in binary form must reproduce the above copyright
1948
3421
  * notice, this list of conditions and the following disclaimer in
@@ -1997,21 +3470,21 @@ Version 1.1.0h
1997
3470
  * This package is an SSL implementation written
1998
3471
  * by Eric Young (eay@cryptsoft.com).
1999
3472
  * The implementation was written so as to conform with Netscapes SSL.
2000
- *
3473
+ *
2001
3474
  * This library is free for commercial and non-commercial use as long as
2002
3475
  * the following conditions are aheared to. The following conditions
2003
3476
  * apply to all code found in this distribution, be it the RC4, RSA,
2004
3477
  * lhash, DES, etc., code; not just the SSL code. The SSL documentation
2005
3478
  * included with this distribution is covered by the same copyright terms
2006
3479
  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
2007
- *
3480
+ *
2008
3481
  * Copyright remains Eric Young's, and as such any Copyright notices in
2009
3482
  * the code are not to be removed.
2010
3483
  * If this package is used in a product, Eric Young should be given attribution
2011
3484
  * as the author of the parts of the library used.
2012
3485
  * This can be in the form of a textual message at program startup or
2013
3486
  * in documentation (online or textual) provided with the package.
2014
- *
3487
+ *
2015
3488
  * Redistribution and use in source and binary forms, with or without
2016
3489
  * modification, are permitted provided that the following conditions
2017
3490
  * are met:
@@ -2026,10 +3499,10 @@ Version 1.1.0h
2026
3499
  * Eric Young (eay@cryptsoft.com)"
2027
3500
  * The word 'cryptographic' can be left out if the rouines from the library
2028
3501
  * being used are not cryptographic related :-).
2029
- * 4. If you include any Windows specific code (or a derivative thereof) from
3502
+ * 4. If you include any Windows specific code (or a derivative thereof) from
2030
3503
  * the apps directory (application code) you must include an acknowledgement:
2031
3504
  * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
2032
- *
3505
+ *
2033
3506
  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
2034
3507
  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2035
3508
  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
@@ -2041,7 +3514,7 @@ Version 1.1.0h
2041
3514
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2042
3515
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2043
3516
  * SUCH DAMAGE.
2044
- *
3517
+ *
2045
3518
  * The licence and distribution terms for any publically available version or
2046
3519
  * derivative of this code cannot be changed. i.e. this code cannot simply be
2047
3520
  * copied and put under another distribution licence
@@ -2054,12 +3527,12 @@ Version 1.1.0h
2054
3527
 
2055
3528
  spdlog
2056
3529
 
2057
- Version v1.9.2
3530
+ Version v1.14.1
2058
3531
  (https://github.com/gabime/spdlog)
2059
3532
 
2060
3533
  The MIT License (MIT)
2061
3534
 
2062
- Copyright (c) 2016 Gabi Melman.
3535
+ Copyright (c) 2016 Gabi Melman.
2063
3536
 
2064
3537
  Permission is hereby granted, free of charge, to any person obtaining a copy
2065
3538
  of this software and associated documentation files (the "Software"), to deal
@@ -2081,7 +3554,7 @@ THE SOFTWARE.
2081
3554
 
2082
3555
  -- NOTE: Third party dependency used by this software --
2083
3556
  This software depends on the fmt lib (MIT License),
2084
- and users must comply to its license: https://github.com/fmtlib/fmt/blob/master/LICENSE.rst
3557
+ and users must comply to its license: https://raw.githubusercontent.com/fmtlib/fmt/master/LICENSE
2085
3558
 
2086
3559
 
2087
3560
 
@@ -2599,11 +4072,12 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2599
4072
 
2600
4073
  xsimd
2601
4074
 
2602
- Version 7.4.9-18-g3d17850
4075
+ Version 13.0.0
2603
4076
  (https://github.com/xtensor-stack/xsimd)
2604
4077
 
2605
4078
  Copyright (c) 2016, Johan Mabille, Sylvain Corlay, Wolf Vollprecht and Martin Renou
2606
4079
  Copyright (c) 2016, QuantStack
4080
+ Copyright (c) 2018, Serge Guelton
2607
4081
  All rights reserved.
2608
4082
 
2609
4083
  Redistribution and use in source and binary forms, with or without
@@ -2636,7 +4110,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2636
4110
 
2637
4111
  xtensor
2638
4112
 
2639
- Version 0.23.4-35-gbe35a267
4113
+ Version 0.25.0
2640
4114
  (https://github.com/doo/xtensor)
2641
4115
 
2642
4116
  Copyright (c) 2016, Johan Mabille, Sylvain Corlay and Wolf Vollprecht
@@ -2673,7 +4147,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2673
4147
 
2674
4148
  xtl
2675
4149
 
2676
- Version 0.7.2
4150
+ Version 0.7.7
2677
4151
  (https://github.com/xtensor-stack/xtl)
2678
4152
 
2679
4153
  BSD 3-Clause License