scanbot-web-sdk 6.0.0-dev.1 → 6.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 (177) hide show
  1. package/@types/barcode-scanner-view.d.ts +10 -10
  2. package/@types/consume-type.d.ts +7 -0
  3. package/@types/core/bridge/common.d.ts +24 -0
  4. package/@types/core/bridge/compiled/BarcodeConfigs.d.ts +973 -0
  5. package/@types/core/bridge/compiled/BarcodeScannerTypes.d.ts +183 -0
  6. package/@types/core/bridge/compiled/BarcodeTypes.d.ts +183 -0
  7. package/@types/core/bridge/compiled/CheckRecognizerTypes.d.ts +29 -0
  8. package/@types/core/bridge/compiled/CommonFieldType.d.ts +59 -0
  9. package/@types/core/bridge/compiled/DocumentDetectorTypes.d.ts +196 -0
  10. package/@types/core/bridge/compiled/DocumentQualityAnalyzerTypes.d.ts +105 -0
  11. package/@types/core/bridge/compiled/EhicTypes.d.ts +218 -0
  12. package/@types/core/bridge/compiled/FrameUtilities.d.ts +18 -0
  13. package/@types/core/bridge/compiled/GenericDocument.d.ts +198 -0
  14. package/@types/core/bridge/compiled/GenericDocumentRecognizerTypes.d.ts +104 -0
  15. package/@types/core/bridge/compiled/GenericTextLineScannerTypes.d.ts +165 -0
  16. package/@types/core/bridge/compiled/Geometry.d.ts +49 -0
  17. package/@types/core/bridge/compiled/ImageProcessorTypes.d.ts +13 -0
  18. package/@types/core/bridge/compiled/LicensePlateScannerTypes.d.ts +67 -0
  19. package/@types/core/bridge/compiled/MRZTypes.d.ts +52 -0
  20. package/@types/core/bridge/compiled/MedicalCertificateTypes.d.ts +306 -0
  21. package/@types/core/bridge/compiled/OcrElements.d.ts +129 -0
  22. package/@types/core/bridge/compiled/ParametricFilters.d.ts +186 -0
  23. package/@types/core/bridge/compiled/PdfConfig.d.ts +197 -0
  24. package/@types/core/bridge/compiled/TiffTypes.d.ts +183 -0
  25. package/@types/core/bridge/compiled_schemas_v3/BarcodeConfigs.d.ts +973 -0
  26. package/@types/core/bridge/compiled_schemas_v3/BarcodeScannerTypes.d.ts +183 -0
  27. package/@types/core/bridge/compiled_schemas_v3/BarcodeTypes.d.ts +183 -0
  28. package/@types/core/bridge/compiled_schemas_v3/CheckRecognizerTypes.d.ts +29 -0
  29. package/@types/core/bridge/compiled_schemas_v3/CommonFieldType.d.ts +59 -0
  30. package/@types/core/bridge/compiled_schemas_v3/DocumentDetectorTypes.d.ts +196 -0
  31. package/@types/core/bridge/compiled_schemas_v3/DocumentQualityAnalyzerTypes.d.ts +105 -0
  32. package/@types/core/bridge/compiled_schemas_v3/EhicTypes.d.ts +218 -0
  33. package/@types/core/bridge/compiled_schemas_v3/FrameUtilities.d.ts +18 -0
  34. package/@types/core/bridge/compiled_schemas_v3/GenericDocument.d.ts +198 -0
  35. package/@types/core/bridge/compiled_schemas_v3/GenericDocumentRecognizerTypes.d.ts +104 -0
  36. package/@types/core/bridge/compiled_schemas_v3/GenericTextLineScannerTypes.d.ts +165 -0
  37. package/@types/core/bridge/compiled_schemas_v3/Geometry.d.ts +49 -0
  38. package/@types/core/bridge/compiled_schemas_v3/ImageProcessorTypes.d.ts +13 -0
  39. package/@types/core/bridge/compiled_schemas_v3/LicensePlateScannerTypes.d.ts +67 -0
  40. package/@types/core/bridge/compiled_schemas_v3/MRZTypes.d.ts +52 -0
  41. package/@types/core/bridge/compiled_schemas_v3/MedicalCertificateTypes.d.ts +306 -0
  42. package/@types/core/bridge/compiled_schemas_v3/OcrElements.d.ts +129 -0
  43. package/@types/core/bridge/compiled_schemas_v3/ParametricFilters.d.ts +186 -0
  44. package/@types/core/bridge/compiled_schemas_v3/PdfConfig.d.ts +197 -0
  45. package/@types/core/bridge/compiled_schemas_v3/TiffTypes.d.ts +183 -0
  46. package/@types/core/bridge/utils.d.ts +7 -0
  47. package/@types/core/bridge/worker-bridge.d.ts +362 -0
  48. package/@types/core/worker/ScanbotSDK.Core-simd-threads.d.ts +0 -0
  49. package/@types/core/worker/ScanbotSDK.Core-simd.d.ts +0 -0
  50. package/@types/core/worker/ScanbotSDK.Core.d.ts +75 -0
  51. package/@types/core-types.d.ts +23 -0
  52. package/@types/cropping-view.d.ts +4 -2
  53. package/@types/document-scanner-view.d.ts +5 -5
  54. package/@types/generic-document-recognizer-view.d.ts +22 -0
  55. package/@types/index.d.ts +12 -19
  56. package/@types/interfaces/i-document-scanner-handle.d.ts +2 -2
  57. package/@types/interfaces/i-generic-document-recognizer-scanner-handle.d.ts +3 -0
  58. package/@types/model/barcode/barcode-result.d.ts +6 -8
  59. package/@types/model/barcode/barcode.d.ts +3 -14
  60. package/@types/model/configuration/barcode-scanner-configuration.d.ts +12 -8
  61. package/@types/model/configuration/cropping-view-configuration.d.ts +2 -1
  62. package/@types/model/configuration/document-scanner-configuration.d.ts +5 -20
  63. package/@types/model/configuration/generic-document-recognizer-configuration.d.ts +9 -0
  64. package/@types/model/configuration/initialization-options.d.ts +2 -1
  65. package/@types/model/configuration/mrz-scanner-configuration.d.ts +4 -3
  66. package/@types/model/configuration/scanner-configuration.d.ts +1 -0
  67. package/@types/model/configuration/selection-overlay-configuration.d.ts +2 -2
  68. package/@types/model/configuration/text-data-scanner-configuration.d.ts +3 -6
  69. package/@types/model/configuration/view-finder-scanner-configuration.d.ts +3 -2
  70. package/@types/model/configuration/vin-scanner-configuration.d.ts +2 -1
  71. package/@types/model/response/cropping-result.d.ts +2 -1
  72. package/@types/scanbot-sdk.d.ts +208 -29
  73. package/@types/service/document-quality-analyzer.d.ts +7 -5
  74. package/@types/service/generic-document-recognizer.d.ts +11 -0
  75. package/@types/service/ocr-engine.d.ts +8 -5
  76. package/@types/service/pdf-generator.d.ts +7 -95
  77. package/@types/service/public-utils.d.ts +1 -1
  78. package/@types/service/simple-mrz-recognizer.d.ts +5 -5
  79. package/@types/service/text-data-recognizer.d.ts +5 -4
  80. package/@types/service/tiff-generator.d.ts +12 -10
  81. package/@types/ui2/configuration/BarcodeInfoMapping.d.ts +1 -1
  82. package/@types/ui2/configuration/BarcodeItem.d.ts +4 -28
  83. package/@types/ui2/configuration/BarcodeRecognizerConfiguration.d.ts +12 -155
  84. package/@types/ui2/configuration/BarcodeScannerConfiguration.d.ts +2 -18
  85. package/@types/ui2/configuration/BarcodeScannerTypes.d.ts +6 -0
  86. package/@types/ui2/configuration/BarcodeTextLocalization.d.ts +0 -60
  87. package/@types/ui2/configuration/BarcodeTypes.d.ts +1 -0
  88. package/@types/ui2/configuration/BarcodeUseCase.d.ts +3 -0
  89. package/@types/ui2/configuration/CameraConfiguration.d.ts +22 -23
  90. package/@types/ui2/configuration/CameraPermission.d.ts +0 -15
  91. package/@types/ui2/configuration/Common.d.ts +0 -37
  92. package/@types/ui2/configuration/FindAndPickScanningModeUseCase.d.ts +2 -2
  93. package/@types/ui2/configuration/Geometry.d.ts +1 -0
  94. package/@types/ui2/configuration/MultipleScanningModeUseCase.d.ts +1 -1
  95. package/@types/ui2/configuration/SingleScanningModeUseCase.d.ts +1 -1
  96. package/@types/ui2/configuration/TopBarConfiguration.d.ts +0 -16
  97. package/@types/ui2/configuration/ViewFinderConfiguration.d.ts +6 -3
  98. package/@types/ui2/configuration.d.ts +1 -1
  99. package/@types/ui2/controllers/multiple-scanning-mode-controller.d.ts +2 -1
  100. package/@types/ui2/controllers/single-scanning-mode-controller.d.ts +2 -1
  101. package/@types/ui2/model/counted-barcodes.d.ts +13 -12
  102. package/@types/ui2/scanbot-sdk-ui.d.ts +2 -2
  103. package/@types/ui2/utils/barcode-mapper.d.ts +15 -3
  104. package/@types/ui2/utils/camera-config.d.ts +2 -2
  105. package/@types/ui2/utils/styled-input.d.ts +1 -1
  106. package/@types/ui2/views/action-button/action-button-container.d.ts +2 -0
  107. package/@types/ui2/views/barcode-scanner.d.ts +4 -3
  108. package/@types/ui2/views/drawer/subviews/barcode-list-item.d.ts +3 -3
  109. package/@types/ui2/views/form/dialog-button.d.ts +2 -2
  110. package/@types/utils/dto/MagneticLine.d.ts +4 -4
  111. package/@types/utils/dto/Point.d.ts +2 -2
  112. package/@types/utils/image-utils.d.ts +1 -0
  113. package/@types/utils/react/usePromise.d.ts +3 -1
  114. package/@types/utils/utils.d.ts +1 -1
  115. package/@types/utils/video-stream.d.ts +1 -0
  116. package/@types/view/action-bar/bottom-action-bar.d.ts +2 -2
  117. package/@types/view/barcode-calculation/barcode-calculation-popup-list.d.ts +2 -2
  118. package/@types/view/barcode-calculation/barcode-calculation-popup.d.ts +4 -4
  119. package/@types/view/barcode-calculation/scanned-image-with-overlay.d.ts +2 -2
  120. package/@types/view/barcode-polygon/animated-barcode-selection-overlay.d.ts +6 -5
  121. package/@types/view/barcode-polygon/barcode-overlay.d.ts +3 -3
  122. package/@types/view/barcode-polygon/barcode-polygon-label.d.ts +2 -2
  123. package/@types/view/cropping/draggable-base-container.d.ts +8 -2
  124. package/@types/view/cropping/draggable-handles-component.d.ts +9 -2
  125. package/@types/view/view-finder.d.ts +1 -0
  126. package/@types/worker/worker-bridge.d.ts +349 -5
  127. package/Libraries.txt +307 -174
  128. package/README.md +3 -3
  129. package/bundle/ScanbotSDK.min.js +5 -5
  130. package/bundle/ScanbotSDK.ui2.min.js +108 -161
  131. package/bundle/ScanbotSDK.ui2.min.js.LICENSE.txt +0 -18
  132. package/bundle/bin/barcode-scanner/ScanbotSDK.Asm-simd-threads.js +1 -1
  133. package/bundle/bin/barcode-scanner/ScanbotSDK.Asm-simd-threads.wasm +0 -0
  134. package/bundle/bin/barcode-scanner/ScanbotSDK.Asm-simd.wasm +0 -0
  135. package/bundle/bin/barcode-scanner/ScanbotSDK.Asm.wasm +0 -0
  136. package/bundle/bin/barcode-scanner/ScanbotSDK.Core-simd-threads.js +1 -1
  137. package/bundle/bin/barcode-scanner/ScanbotSDK.Core-simd.js +1 -1
  138. package/bundle/bin/barcode-scanner/ScanbotSDK.Core.js +1 -1
  139. package/bundle/bin/complete/ScanbotSDK.Asm-simd-threads.js +1 -1
  140. package/bundle/bin/complete/ScanbotSDK.Asm-simd-threads.wasm +0 -0
  141. package/bundle/bin/complete/ScanbotSDK.Asm-simd.wasm +0 -0
  142. package/bundle/bin/complete/ScanbotSDK.Asm.wasm +0 -0
  143. package/bundle/bin/complete/ScanbotSDK.Core-simd-threads.js +1 -1
  144. package/bundle/bin/complete/ScanbotSDK.Core-simd.js +1 -1
  145. package/bundle/bin/complete/ScanbotSDK.Core.js +1 -1
  146. package/bundle/bin/document-scanner/ScanbotSDK.Asm-simd-threads.js +1 -1
  147. package/bundle/bin/document-scanner/ScanbotSDK.Asm-simd-threads.wasm +0 -0
  148. package/bundle/bin/document-scanner/ScanbotSDK.Asm-simd.wasm +0 -0
  149. package/bundle/bin/document-scanner/ScanbotSDK.Asm.wasm +0 -0
  150. package/bundle/bin/document-scanner/ScanbotSDK.Core-simd-threads.js +1 -1
  151. package/bundle/bin/document-scanner/ScanbotSDK.Core-simd.js +1 -1
  152. package/bundle/bin/document-scanner/ScanbotSDK.Core.js +1 -1
  153. package/package.json +4 -3
  154. package/ui.d.ts +3 -0
  155. package/ui.js +2 -0
  156. package/webpack/fileLoader.js +3 -5
  157. package/@types/core/compiled/ParametricFilters.d.ts +0 -181
  158. package/@types/core/utils.d.ts +0 -1
  159. package/@types/core/worker-bridge.d.ts +0 -20
  160. package/@types/model/barcode/barcode-format.d.ts +0 -1
  161. package/@types/model/barcode/engine-mode.d.ts +0 -1
  162. package/@types/model/configuration/document-quality-analyzer-configuration.d.ts +0 -13
  163. package/@types/model/document/contour-detection-result.d.ts +0 -11
  164. package/@types/model/document/detection-status.d.ts +0 -11
  165. package/@types/model/document/document-detection-result.d.ts +0 -8
  166. package/@types/model/filter-types.d.ts +0 -6
  167. package/@types/model/generic-text-line-recognizer/text-data-scanner-result.d.ts +0 -6
  168. package/@types/model/mrz/mrz-result.d.ts +0 -41
  169. package/@types/model/response/document-quality-analyzer-result.d.ts +0 -8
  170. package/@types/service/image-processor.d.ts +0 -35
  171. package/@types/ui2/configuration/BarcodeResult.d.ts +0 -14
  172. package/@types/utils/networking.d.ts +0 -7
  173. package/bundle/bin/barcode-scanner/ScanbotSDK.Asm.wasm-webpack-file-loader +0 -0
  174. package/bundle/bin/complete/ScanbotSDK.Asm-simd-threads.wasm-webpack-file-loader +0 -0
  175. package/bundle/bin/complete/ScanbotSDK.Asm-simd.wasm-webpack-file-loader +0 -0
  176. package/bundle/bin/complete/ScanbotSDK.Asm.wasm-webpack-file-loader +0 -0
  177. package/bundle/bin/document-scanner/ScanbotSDK.Asm.wasm-webpack-file-loader +0 -0
package/Libraries.txt CHANGED
@@ -1,106 +1,8 @@
1
1
  Open Source libraries used in Scanbot Web SDK
2
2
  ----------------------------------------------------------------------------------------
3
3
 
4
- framer-motion 4.1.17
5
- (https://github.com/framer/motion/)
6
-
7
- The MIT License (MIT)
8
-
9
- Copyright (c) 2018 Framer B.V.
10
-
11
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
12
-
13
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
16
-
17
-
18
- ----------------------------------------------------------------------------------------
19
-
20
- styled-components 5.3.3
21
- (https://github.com/styled-components/styled-components/)
22
-
23
- MIT License
24
-
25
- Copyright (c) 2016-present Glen Maddern and Maximilian Stoiber
26
-
27
- Permission is hereby granted, free of charge, to any person obtaining a copy
28
- of this software and associated documentation files (the "Software"), to deal
29
- in the Software without restriction, including without limitation the rights
30
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
31
- copies of the Software, and to permit persons to whom the Software is
32
- furnished to do so, subject to the following conditions:
33
-
34
- The above copyright notice and this permission notice shall be included in all
35
- copies or substantial portions of the Software.
36
-
37
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
38
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
39
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
40
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
41
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
42
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
43
- SOFTWARE.
44
-
45
-
46
- ----------------------------------------------------------------------------------------
47
-
48
- classnames 2.3.1
49
- (https://github.com/JedWatson/classnames)
50
-
51
- The MIT License (MIT)
52
-
53
- Copyright (c) 2018 Jed Watson
54
-
55
- Permission is hereby granted, free of charge, to any person obtaining a copy
56
- of this software and associated documentation files (the "Software"), to deal
57
- in the Software without restriction, including without limitation the rights
58
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
59
- copies of the Software, and to permit persons to whom the Software is
60
- furnished to do so, subject to the following conditions:
61
-
62
- The above copyright notice and this permission notice shall be included in all
63
- copies or substantial portions of the Software.
64
-
65
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
66
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
67
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
68
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
69
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
70
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
71
- SOFTWARE.
72
-
73
-
74
- ----------------------------------------------------------------------------------------
75
-
76
- react-is 17.0.2
77
- (https://github.com/facebook/react)
78
-
79
- MIT License
80
-
81
- Copyright (c) Facebook, Inc. and its affiliates.
82
-
83
- Permission is hereby granted, free of charge, to any person obtaining a copy
84
- of this software and associated documentation files (the "Software"), to deal
85
- in the Software without restriction, including without limitation the rights
86
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
87
- copies of the Software, and to permit persons to whom the Software is
88
- furnished to do so, subject to the following conditions:
89
-
90
- The above copyright notice and this permission notice shall be included in all
91
- copies or substantial portions of the Software.
92
-
93
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
94
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
95
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
96
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
97
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
98
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
99
- SOFTWARE.
100
-
101
- ----------------------------------------------------------------------------------------
102
- TensorFlow.js 4.10.0
103
- (https://github.com/tensorflow/tfjs/)
4
+ @fontsource/roboto 5.0.8
5
+ (https://github.com/fontsource/font-files)
104
6
 
105
7
  Apache License
106
8
  Version 2.0, January 2004
@@ -290,7 +192,7 @@ TensorFlow.js 4.10.0
290
192
  same "printed page" as the copyright notice for easier
291
193
  identification within third-party archives.
292
194
 
293
- Copyright [yyyy] [name of copyright owner]
195
+ Copyright 2011 Google Inc. All Rights Reserved.
294
196
 
295
197
  Licensed under the Apache License, Version 2.0 (the "License");
296
198
  you may not use this file except in compliance with the License.
@@ -306,6 +208,200 @@ TensorFlow.js 4.10.0
306
208
 
307
209
  ----------------------------------------------------------------------------------------
308
210
 
211
+ @mui/icons-material 5.15.10
212
+ (https://github.com/mui/material-ui)
213
+
214
+ The MIT License (MIT)
215
+
216
+ Copyright (c) 2014 Call-Em-All
217
+
218
+ Permission is hereby granted, free of charge, to any person obtaining a copy
219
+ of this software and associated documentation files (the "Software"), to deal
220
+ in the Software without restriction, including without limitation the rights
221
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
222
+ copies of the Software, and to permit persons to whom the Software is
223
+ furnished to do so, subject to the following conditions:
224
+
225
+ The above copyright notice and this permission notice shall be included in all
226
+ copies or substantial portions of the Software.
227
+
228
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
229
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
230
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
231
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
232
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
233
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
234
+ SOFTWARE.
235
+
236
+
237
+ ----------------------------------------------------------------------------------------
238
+
239
+ @mui/material 5.15.10
240
+ (https://github.com/mui/material-ui)
241
+
242
+ The MIT License (MIT)
243
+
244
+ Copyright (c) 2014 Call-Em-All
245
+
246
+ Permission is hereby granted, free of charge, to any person obtaining a copy
247
+ of this software and associated documentation files (the "Software"), to deal
248
+ in the Software without restriction, including without limitation the rights
249
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
250
+ copies of the Software, and to permit persons to whom the Software is
251
+ furnished to do so, subject to the following conditions:
252
+
253
+ The above copyright notice and this permission notice shall be included in all
254
+ copies or substantial portions of the Software.
255
+
256
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
257
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
258
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
259
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
260
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
261
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
262
+ SOFTWARE.
263
+
264
+
265
+ ----------------------------------------------------------------------------------------
266
+
267
+ @mui/styled-engine-sc 6.0.0-alpha.16
268
+ (https://github.com/mui/material-ui)
269
+
270
+ The MIT License (MIT)
271
+
272
+ Copyright (c) 2014 Call-Em-All
273
+
274
+ Permission is hereby granted, free of charge, to any person obtaining a copy
275
+ of this software and associated documentation files (the "Software"), to deal
276
+ in the Software without restriction, including without limitation the rights
277
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
278
+ copies of the Software, and to permit persons to whom the Software is
279
+ furnished to do so, subject to the following conditions:
280
+
281
+ The above copyright notice and this permission notice shall be included in all
282
+ copies or substantial portions of the Software.
283
+
284
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
285
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
286
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
287
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
288
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
289
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
290
+ SOFTWARE.
291
+
292
+
293
+ ----------------------------------------------------------------------------------------
294
+
295
+ classnames 2.3.1
296
+ (https://github.com/JedWatson/classnames)
297
+
298
+ The MIT License (MIT)
299
+
300
+ Copyright (c) 2018 Jed Watson
301
+
302
+ Permission is hereby granted, free of charge, to any person obtaining a copy
303
+ of this software and associated documentation files (the "Software"), to deal
304
+ in the Software without restriction, including without limitation the rights
305
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
306
+ copies of the Software, and to permit persons to whom the Software is
307
+ furnished to do so, subject to the following conditions:
308
+
309
+ The above copyright notice and this permission notice shall be included in all
310
+ copies or substantial portions of the Software.
311
+
312
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
313
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
314
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
315
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
316
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
317
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
318
+ SOFTWARE.
319
+
320
+
321
+ ----------------------------------------------------------------------------------------
322
+
323
+ framer-motion 4.1.17
324
+ (https://github.com/framer/motion)
325
+
326
+ The MIT License (MIT)
327
+
328
+ Copyright (c) 2018 Framer B.V.
329
+
330
+ Permission is hereby granted, free of charge, to any person obtaining a copy
331
+ of this software and associated documentation files (the "Software"), to deal
332
+ in the Software without restriction, including without limitation the rights
333
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
334
+ copies of the Software, and to permit persons to whom the Software is
335
+ furnished to do so, subject to the following conditions:
336
+
337
+ The above copyright notice and this permission notice shall be included in all
338
+ copies or substantial portions of the Software.
339
+
340
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
341
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
342
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
343
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
344
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
345
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
346
+ SOFTWARE.
347
+
348
+
349
+ ----------------------------------------------------------------------------------------
350
+
351
+ react-is 16.13.1
352
+ (https://github.com/facebook/react)
353
+
354
+ MIT License
355
+
356
+ Copyright (c) Facebook, Inc. and its affiliates.
357
+
358
+ Permission is hereby granted, free of charge, to any person obtaining a copy
359
+ of this software and associated documentation files (the "Software"), to deal
360
+ in the Software without restriction, including without limitation the rights
361
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
362
+ copies of the Software, and to permit persons to whom the Software is
363
+ furnished to do so, subject to the following conditions:
364
+
365
+ The above copyright notice and this permission notice shall be included in all
366
+ copies or substantial portions of the Software.
367
+
368
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
369
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
370
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
371
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
372
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
373
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
374
+ SOFTWARE.
375
+
376
+
377
+ ----------------------------------------------------------------------------------------
378
+
379
+ styled-components 6.1.8
380
+ (https://github.com/styled-components/styled-components)
381
+
382
+ MIT License
383
+
384
+ Copyright (c) 2016-present Glen Maddern and Maximilian Stoiber
385
+
386
+ Permission is hereby granted, free of charge, to any person obtaining a copy
387
+ of this software and associated documentation files (the "Software"), to deal
388
+ in the Software without restriction, including without limitation the rights
389
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
390
+ copies of the Software, and to permit persons to whom the Software is
391
+ furnished to do so, subject to the following conditions:
392
+
393
+ The above copyright notice and this permission notice shall be included in all
394
+ copies or substantial portions of the Software.
395
+
396
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
397
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
398
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
399
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
400
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
401
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
402
+ SOFTWARE.
403
+
404
+
309
405
  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
310
406
 
311
407
  Boost C++
@@ -381,7 +477,7 @@ record keeping.)
381
477
  * are met:
382
478
  *
383
479
  * 1. Redistributions of source code must retain the above copyright
384
- * notice, this list of conditions and the following disclaimer.
480
+ * notice, this list of conditions and the following disclaimer.
385
481
  *
386
482
  * 2. Redistributions in binary form must reproduce the above copyright
387
483
  * notice, this list of conditions and the following disclaimer in
@@ -436,21 +532,21 @@ record keeping.)
436
532
  * This package is an SSL implementation written
437
533
  * by Eric Young (eay@cryptsoft.com).
438
534
  * The implementation was written so as to conform with Netscapes SSL.
439
- *
535
+ *
440
536
  * This library is free for commercial and non-commercial use as long as
441
537
  * the following conditions are aheared to. The following conditions
442
538
  * apply to all code found in this distribution, be it the RC4, RSA,
443
539
  * lhash, DES, etc., code; not just the SSL code. The SSL documentation
444
540
  * included with this distribution is covered by the same copyright terms
445
541
  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
446
- *
542
+ *
447
543
  * Copyright remains Eric Young's, and as such any Copyright notices in
448
544
  * the code are not to be removed.
449
545
  * If this package is used in a product, Eric Young should be given attribution
450
546
  * as the author of the parts of the library used.
451
547
  * This can be in the form of a textual message at program startup or
452
548
  * in documentation (online or textual) provided with the package.
453
- *
549
+ *
454
550
  * Redistribution and use in source and binary forms, with or without
455
551
  * modification, are permitted provided that the following conditions
456
552
  * are met:
@@ -465,10 +561,10 @@ record keeping.)
465
561
  * Eric Young (eay@cryptsoft.com)"
466
562
  * The word 'cryptographic' can be left out if the rouines from the library
467
563
  * being used are not cryptographic related :-).
468
- * 4. If you include any Windows specific code (or a derivative thereof) from
564
+ * 4. If you include any Windows specific code (or a derivative thereof) from
469
565
  * the apps directory (application code) you must include an acknowledgement:
470
566
  * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
471
- *
567
+ *
472
568
  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
473
569
  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
474
570
  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
@@ -480,7 +576,7 @@ record keeping.)
480
576
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
481
577
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
482
578
  * SUCH DAMAGE.
483
- *
579
+ *
484
580
  * The licence and distribution terms for any publically available version or
485
581
  * derivative of this code cannot be changed. i.e. this code cannot simply be
486
582
  * copied and put under another distribution licence
@@ -1134,7 +1230,7 @@ JSON for Modern C++
1134
1230
  Version v3.11.2
1135
1231
  (https://github.com/nlohmann/json)
1136
1232
 
1137
- MIT License
1233
+ MIT License
1138
1234
 
1139
1235
  Copyright (c) 2013-2022 Niels Lohmann
1140
1236
 
@@ -1192,11 +1288,40 @@ Version 1.82.0
1192
1288
 
1193
1289
 
1194
1290
 
1291
+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1292
+
1293
+ libharu
1294
+
1295
+ Version 2.4.3
1296
+ (https://github.com/libharu/libharu)
1297
+
1298
+
1299
+ Copyright (C) 1999-2006 Takeshi Kanno
1300
+ Copyright (C) 2007-2009 Antony Dovgal
1301
+
1302
+ This software is provided 'as-is', without any express or implied warranty.
1303
+
1304
+ In no event will the authors be held liable for any damages arising from the
1305
+ use of this software.
1306
+
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
1309
+ to the following restrictions:
1310
+
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
1314
+ appreciated but is not required.
1315
+ 2. Altered source versions must be plainly marked as such, and must not be
1316
+ misrepresented as being the original software.
1317
+ 3. This notice may not be removed or altered from any source distribution.
1318
+
1319
+
1195
1320
  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1196
1321
 
1197
1322
  libjpeg-turbo
1198
1323
 
1199
- Version 2.1.2
1324
+ Version 2.1.5.1
1200
1325
  (https://github.com/libjpeg-turbo/libjpeg-turbo)
1201
1326
 
1202
1327
  libjpeg-turbo Licenses
@@ -1292,7 +1417,7 @@ best of our understanding.
1292
1417
  The Modified (3-clause) BSD License
1293
1418
  ===================================
1294
1419
 
1295
- Copyright (C)2009-2021 D. R. Commander. All Rights Reserved.<br>
1420
+ Copyright (C)2009-2023 D. R. Commander. All Rights Reserved.<br>
1296
1421
  Copyright (C)2015 Viktor Szathmáry. All Rights Reserved.
1297
1422
 
1298
1423
  Redistribution and use in source and binary forms, with or without
@@ -1337,7 +1462,7 @@ that were granted to the IJG for code derived from their software.
1337
1462
 
1338
1463
  libpng
1339
1464
 
1340
- Version 1.6.36
1465
+ Version 1.6.40
1341
1466
  (https://github.com/glennrp/libpng)
1342
1467
 
1343
1468
  COPYRIGHT NOTICE, DISCLAIMER, and LICENSE
@@ -1346,8 +1471,8 @@ COPYRIGHT NOTICE, DISCLAIMER, and LICENSE
1346
1471
  PNG Reference Library License version 2
1347
1472
  ---------------------------------------
1348
1473
 
1349
- * Copyright (c) 1995-2018 The PNG Reference Library Authors.
1350
- * Copyright (c) 2018 Cosmin Truta.
1474
+ * Copyright (c) 1995-2023 The PNG Reference Library Authors.
1475
+ * Copyright (c) 2018-2023 Cosmin Truta.
1351
1476
  * Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson.
1352
1477
  * Copyright (c) 1996-1997 Andreas Dilger.
1353
1478
  * Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.
@@ -1355,7 +1480,7 @@ PNG Reference Library License version 2
1355
1480
  The software is supplied "as is", without warranty of any kind,
1356
1481
  express or implied, including, without limitation, the warranties
1357
1482
  of merchantability, fitness for a particular purpose, title, and
1358
- non-infringement. In no even shall the Copyright owners, or
1483
+ non-infringement. In no event shall the Copyright owners, or
1359
1484
  anyone distributing the software, be liable for any damages or
1360
1485
  other liability, whether in contract, tort or otherwise, arising
1361
1486
  from, out of, or in connection with the software, or the use or
@@ -1381,7 +1506,7 @@ subject to the following restrictions:
1381
1506
  PNG Reference Library License version 1 (for libpng 0.5 through 1.6.35)
1382
1507
  -----------------------------------------------------------------------
1383
1508
 
1384
- libpng versions 1.0.7, July 1, 2000 through 1.6.35, July 15, 2018 are
1509
+ libpng versions 1.0.7, July 1, 2000, through 1.6.35, July 15, 2018 are
1385
1510
  Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson, are
1386
1511
  derived from libpng-1.0.6, and are distributed according to the same
1387
1512
  disclaimer and license as libpng-1.0.6 with the following individuals
@@ -1480,13 +1605,15 @@ be appreciated.
1480
1605
 
1481
1606
  libtiff
1482
1607
 
1483
- Version 4.2.0
1608
+ Version 4.6.0
1484
1609
  (https://libtiff.gitlab.io/libtiff/)
1485
1610
 
1486
- Copyright (c) 1988-1997 Sam Leffler
1487
- Copyright (c) 1991-1997 Silicon Graphics, Inc.
1611
+ # LibTIFF license
1612
+
1613
+ Copyright © 1988-1997 Sam Leffler\
1614
+ Copyright © 1991-1997 Silicon Graphics, Inc.
1488
1615
 
1489
- Permission to use, copy, modify, distribute, and sell this software and
1616
+ Permission to use, copy, modify, distribute, and sell this software and
1490
1617
  its documentation for any purpose is hereby granted without fee, provided
1491
1618
  that (i) the above copyright notices and this permission notice appear in
1492
1619
  all copies of the software and related documentation, and (ii) the names of
@@ -1494,18 +1621,30 @@ Sam Leffler and Silicon Graphics may not be used in any advertising or
1494
1621
  publicity relating to the software without the specific, prior written
1495
1622
  permission of Sam Leffler and Silicon Graphics.
1496
1623
 
1497
- THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
1498
- EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
1499
- WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
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.
1500
1627
 
1501
1628
  IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
1502
1629
  ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
1503
1630
  OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
1504
- WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
1505
- LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
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
1506
1633
  OF THIS SOFTWARE.
1507
1634
 
1508
1635
 
1636
+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1637
+
1638
+ libzueci
1639
+
1640
+ Version 1.0.0
1641
+ (https://sourceforge.net/projects/libzueci/)
1642
+
1643
+ A simple, standalone, BSD-3-Clause C library for converting UTF-8 to/from Extended Channel Interpretations, as
1644
+ defined by AIM ITS/04-023 International Technical Standard - Extended Channel Interpretations Part 3: Register
1645
+ (Version 2, February 2022).
1646
+
1647
+
1509
1648
  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1510
1649
 
1511
1650
  magic-enum
@@ -1540,12 +1679,12 @@ SOFTWARE.
1540
1679
 
1541
1680
  Nameof C++
1542
1681
 
1543
- Version v0.10.1
1682
+ Version v0.10.3
1544
1683
  (https://github.com/Neargye/nameof)
1545
1684
 
1546
1685
  MIT License
1547
1686
 
1548
- Copyright (c) 2016, 2018 - 2021 Daniil Goncharov
1687
+ Copyright (c) 2016 - 2023 Daniil Goncharov
1549
1688
 
1550
1689
  Permission is hereby granted, free of charge, to any person obtaining a copy
1551
1690
  of this software and associated documentation files (the "Software"), to deal
@@ -1570,7 +1709,7 @@ SOFTWARE.
1570
1709
 
1571
1710
  OpenCV
1572
1711
 
1573
- Version 4.5.3
1712
+ Version 4.8.0
1574
1713
  (https://github.com/opencv/opencv)
1575
1714
 
1576
1715
 
@@ -1803,7 +1942,7 @@ Version 1.1.0h
1803
1942
  * are met:
1804
1943
  *
1805
1944
  * 1. Redistributions of source code must retain the above copyright
1806
- * notice, this list of conditions and the following disclaimer.
1945
+ * notice, this list of conditions and the following disclaimer.
1807
1946
  *
1808
1947
  * 2. Redistributions in binary form must reproduce the above copyright
1809
1948
  * notice, this list of conditions and the following disclaimer in
@@ -1858,21 +1997,21 @@ Version 1.1.0h
1858
1997
  * This package is an SSL implementation written
1859
1998
  * by Eric Young (eay@cryptsoft.com).
1860
1999
  * The implementation was written so as to conform with Netscapes SSL.
1861
- *
2000
+ *
1862
2001
  * This library is free for commercial and non-commercial use as long as
1863
2002
  * the following conditions are aheared to. The following conditions
1864
2003
  * apply to all code found in this distribution, be it the RC4, RSA,
1865
2004
  * lhash, DES, etc., code; not just the SSL code. The SSL documentation
1866
2005
  * included with this distribution is covered by the same copyright terms
1867
2006
  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
1868
- *
2007
+ *
1869
2008
  * Copyright remains Eric Young's, and as such any Copyright notices in
1870
2009
  * the code are not to be removed.
1871
2010
  * If this package is used in a product, Eric Young should be given attribution
1872
2011
  * as the author of the parts of the library used.
1873
2012
  * This can be in the form of a textual message at program startup or
1874
2013
  * in documentation (online or textual) provided with the package.
1875
- *
2014
+ *
1876
2015
  * Redistribution and use in source and binary forms, with or without
1877
2016
  * modification, are permitted provided that the following conditions
1878
2017
  * are met:
@@ -1887,10 +2026,10 @@ Version 1.1.0h
1887
2026
  * Eric Young (eay@cryptsoft.com)"
1888
2027
  * The word 'cryptographic' can be left out if the rouines from the library
1889
2028
  * being used are not cryptographic related :-).
1890
- * 4. If you include any Windows specific code (or a derivative thereof) from
2029
+ * 4. If you include any Windows specific code (or a derivative thereof) from
1891
2030
  * the apps directory (application code) you must include an acknowledgement:
1892
2031
  * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
1893
- *
2032
+ *
1894
2033
  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
1895
2034
  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1896
2035
  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
@@ -1902,7 +2041,7 @@ Version 1.1.0h
1902
2041
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1903
2042
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1904
2043
  * SUCH DAMAGE.
1905
- *
2044
+ *
1906
2045
  * The licence and distribution terms for any publically available version or
1907
2046
  * derivative of this code cannot be changed. i.e. this code cannot simply be
1908
2047
  * copied and put under another distribution licence
@@ -1911,44 +2050,6 @@ Version 1.1.0h
1911
2050
 
1912
2051
 
1913
2052
 
1914
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1915
-
1916
- Skia
1917
-
1918
- Version 47b4b19
1919
- (https://github.com/google/skia)
1920
-
1921
- Copyright (c) 2011 Google Inc. All rights reserved.
1922
-
1923
- Redistribution and use in source and binary forms, with or without
1924
- modification, are permitted provided that the following conditions are
1925
- met:
1926
-
1927
- * Redistributions of source code must retain the above copyright
1928
- notice, this list of conditions and the following disclaimer.
1929
-
1930
- * Redistributions in binary form must reproduce the above copyright
1931
- notice, this list of conditions and the following disclaimer in
1932
- the documentation and/or other materials provided with the
1933
- distribution.
1934
-
1935
- * Neither the name of the copyright holder nor the names of its
1936
- contributors may be used to endorse or promote products derived
1937
- from this software without specific prior written permission.
1938
-
1939
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1940
- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1941
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1942
- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1943
- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1944
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1945
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1946
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1947
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1948
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1949
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1950
-
1951
-
1952
2053
  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1953
2054
 
1954
2055
  spdlog
@@ -1958,7 +2059,7 @@ Version v1.9.2
1958
2059
 
1959
2060
  The MIT License (MIT)
1960
2061
 
1961
- Copyright (c) 2016 Gabi Melman.
2062
+ Copyright (c) 2016 Gabi Melman.
1962
2063
 
1963
2064
  Permission is hereby granted, free of charge, to any person obtaining a copy
1964
2065
  of this software and associated documentation files (the "Software"), to deal
@@ -2607,6 +2708,37 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2607
2708
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2608
2709
 
2609
2710
 
2711
+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2712
+
2713
+ zlib
2714
+
2715
+ Version 1.3.1
2716
+ (https://github.com/madler/zlib)
2717
+
2718
+ Copyright notice:
2719
+
2720
+ (C) 1995-2022 Jean-loup Gailly and Mark Adler
2721
+
2722
+ This software is provided 'as-is', without any express or implied
2723
+ warranty. In no event will the authors be held liable for any damages
2724
+ arising from the use of this software.
2725
+
2726
+ Permission is granted to anyone to use this software for any purpose,
2727
+ including commercial applications, and to alter it and redistribute it
2728
+ freely, subject to the following restrictions:
2729
+
2730
+ 1. The origin of this software must not be misrepresented; you must not
2731
+ claim that you wrote the original software. If you use this software
2732
+ in a product, an acknowledgment in the product documentation would be
2733
+ appreciated but is not required.
2734
+ 2. Altered source versions must be plainly marked as such, and must not be
2735
+ misrepresented as being the original software.
2736
+ 3. This notice may not be removed or altered from any source distribution.
2737
+
2738
+ Jean-loup Gailly Mark Adler
2739
+ jloup@gzip.org madler@alumni.caltech.edu
2740
+
2741
+
2610
2742
  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2611
2743
 
2612
2744
  ZXing-C++, C++ port of ZXing
@@ -2817,3 +2949,4 @@ Version 1.1.0
2817
2949
  limitations under the License.
2818
2950
 
2819
2951
 
2952
+