@snap/camera-kit 0.16.2 → 0.18.0

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 (1220) hide show
  1. package/LICENSE.md +141 -3875
  2. package/README.md +1 -1
  3. package/dist/CameraKit.d.ts +334 -0
  4. package/dist/CameraKit.d.ts.map +1 -0
  5. package/dist/CameraKit.js +104 -0
  6. package/dist/CameraKit.js.map +1 -0
  7. package/dist/benchmark/benchmarkGflops.d.ts +17 -0
  8. package/dist/benchmark/benchmarkGflops.d.ts.map +1 -0
  9. package/dist/benchmark/benchmarkGflops.js +116 -0
  10. package/dist/benchmark/benchmarkGflops.js.map +1 -0
  11. package/dist/benchmark/estimateLensPerformanceCluster.d.ts +34 -0
  12. package/dist/benchmark/estimateLensPerformanceCluster.d.ts.map +1 -0
  13. package/dist/benchmark/estimateLensPerformanceCluster.js +34 -0
  14. package/dist/benchmark/estimateLensPerformanceCluster.js.map +1 -0
  15. package/dist/benchmark/webglUtils.d.ts +8 -0
  16. package/dist/benchmark/webglUtils.d.ts.map +1 -0
  17. package/dist/bootstrapCameraKit.d.ts +97 -0
  18. package/dist/bootstrapCameraKit.d.ts.map +1 -0
  19. package/dist/bootstrapCameraKit.js +117 -0
  20. package/dist/bootstrapCameraKit.js.map +1 -0
  21. package/dist/clients/createTsProtoClient.d.ts +41 -0
  22. package/dist/clients/createTsProtoClient.d.ts.map +1 -0
  23. package/dist/clients/createTsProtoClient.js +36 -0
  24. package/dist/clients/createTsProtoClient.js.map +1 -0
  25. package/dist/clients/grpcHandler.d.ts +27 -0
  26. package/dist/clients/grpcHandler.d.ts.map +1 -0
  27. package/dist/clients/grpcHandler.js +79 -0
  28. package/dist/clients/grpcHandler.js.map +1 -0
  29. package/dist/clients/lensesClient.d.ts +10 -0
  30. package/dist/clients/lensesClient.d.ts.map +1 -0
  31. package/dist/clients/lensesClient.js.map +1 -0
  32. package/dist/clients/metricsClient.d.ts +27 -0
  33. package/dist/clients/metricsClient.d.ts.map +1 -0
  34. package/dist/clients/metricsClient.js +96 -0
  35. package/dist/clients/metricsClient.js.map +1 -0
  36. package/dist/common/assertions.d.ts +28 -0
  37. package/dist/common/assertions.d.ts.map +1 -0
  38. package/dist/common/assertions.js +14 -0
  39. package/dist/common/assertions.js.map +1 -0
  40. package/dist/common/copyDefinedProperties.d.ts +14 -0
  41. package/dist/common/copyDefinedProperties.d.ts.map +1 -0
  42. package/dist/common/copyDefinedProperties.js +4 -0
  43. package/dist/common/copyDefinedProperties.js.map +1 -0
  44. package/dist/common/date.d.ts +4 -0
  45. package/dist/common/date.d.ts.map +1 -0
  46. package/dist/common/dialog.d.ts +60 -0
  47. package/dist/common/dialog.d.ts.map +1 -0
  48. package/dist/common/dialog.js +158 -0
  49. package/dist/common/dialog.js.map +1 -0
  50. package/dist/common/entries.d.ts +5 -0
  51. package/dist/common/entries.d.ts.map +1 -0
  52. package/dist/common/entries.js +3 -0
  53. package/dist/common/entries.js.map +1 -0
  54. package/dist/common/errorHelpers.d.ts +18 -0
  55. package/dist/common/errorHelpers.d.ts.map +1 -0
  56. package/dist/common/errorHelpers.js +20 -0
  57. package/dist/common/errorHelpers.js.map +1 -0
  58. package/dist/common/getFilename.d.ts +2 -0
  59. package/dist/common/getFilename.d.ts.map +1 -0
  60. package/dist/common/hash.d.ts +6 -0
  61. package/dist/common/hash.d.ts.map +1 -0
  62. package/dist/common/hash.js +13 -0
  63. package/dist/common/hash.js.map +1 -0
  64. package/dist/common/loadScript.d.ts +7 -0
  65. package/dist/common/loadScript.d.ts.map +1 -0
  66. package/dist/common/loadScript.js +13 -0
  67. package/dist/common/loadScript.js.map +1 -0
  68. package/dist/common/localization.d.ts +55 -0
  69. package/dist/common/localization.d.ts.map +1 -0
  70. package/dist/common/localization.js +622 -0
  71. package/dist/common/localization.js.map +1 -0
  72. package/dist/common/memoize.d.ts +9 -0
  73. package/dist/common/memoize.d.ts.map +1 -0
  74. package/dist/common/pageVisibility.d.ts +35 -0
  75. package/dist/common/pageVisibility.d.ts.map +1 -0
  76. package/dist/common/pageVisibility.js +52 -0
  77. package/dist/common/pageVisibility.js.map +1 -0
  78. package/dist/common/result.d.ts +37 -0
  79. package/dist/common/result.d.ts.map +1 -0
  80. package/dist/common/result.js +39 -0
  81. package/dist/common/result.js.map +1 -0
  82. package/dist/common/time.d.ts +3 -0
  83. package/dist/common/time.d.ts.map +1 -0
  84. package/dist/common/typeguards.d.ts +68 -0
  85. package/dist/common/typeguards.d.ts.map +1 -0
  86. package/dist/common/typeguards.js +68 -0
  87. package/dist/common/typeguards.js.map +1 -0
  88. package/dist/common/types.d.ts +38 -0
  89. package/dist/common/types.d.ts.map +1 -0
  90. package/dist/common/types.js.map +1 -0
  91. package/dist/common/unionBy.d.ts +29 -0
  92. package/dist/common/unionBy.d.ts.map +1 -0
  93. package/dist/common/unionBy.js +16 -0
  94. package/dist/common/unionBy.js.map +1 -0
  95. package/dist/common/validate.d.ts +16 -0
  96. package/dist/common/validate.d.ts.map +1 -0
  97. package/dist/common/validate.js +57 -0
  98. package/dist/common/validate.js.map +1 -0
  99. package/dist/configuration.d.ts +102 -0
  100. package/dist/configuration.d.ts.map +1 -0
  101. package/dist/configuration.js +30 -0
  102. package/dist/configuration.js.map +1 -0
  103. package/dist/configurationOverrides.d.ts +13 -0
  104. package/dist/configurationOverrides.d.ts.map +1 -0
  105. package/dist/configurationOverrides.js +38 -0
  106. package/dist/configurationOverrides.js.map +1 -0
  107. package/dist/dependency-injection/Container.d.ts +177 -0
  108. package/dist/dependency-injection/Container.d.ts.map +1 -0
  109. package/dist/dependency-injection/Container.js +72 -0
  110. package/dist/dependency-injection/Container.js.map +1 -0
  111. package/dist/dependency-injection/Injectable.d.ts +96 -0
  112. package/dist/dependency-injection/Injectable.d.ts.map +1 -0
  113. package/dist/dependency-injection/Injectable.js.map +1 -0
  114. package/dist/dependency-injection/PartialContainer.d.ts +86 -0
  115. package/dist/dependency-injection/PartialContainer.d.ts.map +1 -0
  116. package/dist/dependency-injection/PartialContainer.js +28 -0
  117. package/dist/dependency-injection/PartialContainer.js.map +1 -0
  118. package/dist/dependency-injection/RootServices.d.ts +74 -0
  119. package/dist/dependency-injection/RootServices.d.ts.map +1 -0
  120. package/dist/dependency-injection/RootServices.js +2 -0
  121. package/dist/dependency-injection/RootServices.js.map +1 -0
  122. package/dist/dependency-injection/types.d.ts +57 -0
  123. package/dist/dependency-injection/types.d.ts.map +1 -0
  124. package/dist/dependency-injection/types.js.map +1 -0
  125. package/dist/environment.d.ts +5 -0
  126. package/dist/environment.d.ts.map +1 -0
  127. package/dist/environment.js +2 -0
  128. package/dist/environment.js.map +1 -0
  129. package/dist/events/TypedCustomEvent.d.ts +11 -0
  130. package/dist/events/TypedCustomEvent.d.ts.map +1 -0
  131. package/dist/events/TypedCustomEvent.js +6 -0
  132. package/dist/events/TypedCustomEvent.js.map +1 -0
  133. package/dist/events/TypedEventTarget.d.ts +26 -0
  134. package/dist/events/TypedEventTarget.d.ts.map +1 -0
  135. package/dist/events/TypedEventTarget.js +42 -0
  136. package/dist/events/TypedEventTarget.js.map +1 -0
  137. package/dist/events/scan.d.ts +18 -0
  138. package/dist/events/scan.d.ts.map +1 -0
  139. package/dist/events/scan.js +29 -0
  140. package/dist/events/scan.js.map +1 -0
  141. package/dist/extensions/RemoteApiServices.d.ts +88 -0
  142. package/dist/extensions/RemoteApiServices.d.ts.map +1 -0
  143. package/dist/extensions/RemoteApiServices.js +155 -0
  144. package/dist/extensions/RemoteApiServices.js.map +1 -0
  145. package/dist/extensions/UriHandlers.d.ts +48 -0
  146. package/dist/extensions/UriHandlers.d.ts.map +1 -0
  147. package/dist/extensions/UriHandlers.js +34 -0
  148. package/dist/extensions/UriHandlers.js.map +1 -0
  149. package/dist/extensions/extensionRequestContext.d.ts +5 -0
  150. package/dist/extensions/extensionRequestContext.d.ts.map +1 -0
  151. package/dist/extensions/extensionRequestContext.js +11 -0
  152. package/dist/extensions/extensionRequestContext.js.map +1 -0
  153. package/dist/extensions/uriHandlersRegister.d.ts +22 -0
  154. package/dist/extensions/uriHandlersRegister.d.ts.map +1 -0
  155. package/dist/extensions/uriHandlersRegister.js +61 -0
  156. package/dist/extensions/uriHandlersRegister.js.map +1 -0
  157. package/dist/generated-proto/blizzard/cameraKitEvents.d.ts +9528 -0
  158. package/dist/generated-proto/blizzard/cameraKitEvents.d.ts.map +1 -0
  159. package/dist/generated-proto/pb_schema/camera_kit/v3/business_events.d.ts +80 -0
  160. package/dist/generated-proto/pb_schema/camera_kit/v3/business_events.d.ts.map +1 -0
  161. package/dist/generated-proto/pb_schema/camera_kit/v3/export.d.ts +529 -0
  162. package/dist/generated-proto/pb_schema/camera_kit/v3/export.d.ts.map +1 -0
  163. package/dist/generated-proto/pb_schema/camera_kit/v3/features/ranking_info.d.ts +35 -0
  164. package/dist/generated-proto/pb_schema/camera_kit/v3/features/ranking_info.d.ts.map +1 -0
  165. package/dist/generated-proto/pb_schema/camera_kit/v3/features/ranking_info.js +42 -0
  166. package/dist/generated-proto/pb_schema/camera_kit/v3/features/ranking_info.js.map +1 -0
  167. package/dist/generated-proto/pb_schema/camera_kit/v3/features/remote_api_info.d.ts +30 -0
  168. package/dist/generated-proto/pb_schema/camera_kit/v3/features/remote_api_info.d.ts.map +1 -0
  169. package/dist/generated-proto/pb_schema/camera_kit/v3/legal_prompt.d.ts +86 -0
  170. package/dist/generated-proto/pb_schema/camera_kit/v3/legal_prompt.d.ts.map +1 -0
  171. package/dist/generated-proto/pb_schema/camera_kit/v3/lens.d.ts +385 -0
  172. package/dist/generated-proto/pb_schema/camera_kit/v3/lens.d.ts.map +1 -0
  173. package/dist/generated-proto/pb_schema/camera_kit/v3/operational_metrics.d.ts +179 -0
  174. package/dist/generated-proto/pb_schema/camera_kit/v3/operational_metrics.d.ts.map +1 -0
  175. package/dist/generated-proto/pb_schema/camera_kit/v3/ranking.d.ts +57 -0
  176. package/dist/generated-proto/pb_schema/camera_kit/v3/ranking.d.ts.map +1 -0
  177. package/dist/generated-proto/pb_schema/camera_kit/v3/service.d.ts +2512 -0
  178. package/dist/generated-proto/pb_schema/camera_kit/v3/service.d.ts.map +1 -0
  179. package/dist/generated-proto/pb_schema/cdp/cof/benchmark.d.ts +79 -0
  180. package/dist/generated-proto/pb_schema/cdp/cof/benchmark.d.ts.map +1 -0
  181. package/dist/generated-proto/pb_schema/cdp/cof/benchmark_name.d.ts +51 -0
  182. package/dist/generated-proto/pb_schema/cdp/cof/benchmark_name.d.ts.map +1 -0
  183. package/dist/generated-proto/pb_schema/cdp/cof/circumstance_service.d.ts +25575 -0
  184. package/dist/generated-proto/pb_schema/cdp/cof/circumstance_service.d.ts.map +1 -0
  185. package/dist/generated-proto/pb_schema/cdp/cof/config_request.d.ts +280 -0
  186. package/dist/generated-proto/pb_schema/cdp/cof/config_request.d.ts.map +1 -0
  187. package/dist/generated-proto/pb_schema/cdp/cof/config_response.d.ts +3726 -0
  188. package/dist/generated-proto/pb_schema/cdp/cof/config_response.d.ts.map +1 -0
  189. package/dist/generated-proto/pb_schema/cdp/cof/config_result.d.ts +10224 -0
  190. package/dist/generated-proto/pb_schema/cdp/cof/config_result.d.ts.map +1 -0
  191. package/dist/generated-proto/pb_schema/cdp/cof/debug_info.d.ts +94 -0
  192. package/dist/generated-proto/pb_schema/cdp/cof/debug_info.d.ts.map +1 -0
  193. package/dist/generated-proto/pb_schema/cdp/cof/namespace.d.ts +9 -0
  194. package/dist/generated-proto/pb_schema/cdp/cof/namespace.d.ts.map +1 -0
  195. package/dist/generated-proto/pb_schema/common/ruid.d.ts +52 -0
  196. package/dist/generated-proto/pb_schema/common/ruid.d.ts.map +1 -0
  197. package/dist/generated-proto/pb_schema/common/value.d.ts +145 -0
  198. package/dist/generated-proto/pb_schema/common/value.d.ts.map +1 -0
  199. package/dist/generated-proto/pb_schema/google/api/annotations.d.ts +2 -0
  200. package/dist/generated-proto/pb_schema/google/api/annotations.d.ts.map +1 -0
  201. package/dist/generated-proto/pb_schema/google/api/annotations.js +8 -0
  202. package/dist/generated-proto/pb_schema/google/api/annotations.js.map +1 -0
  203. package/dist/generated-proto/pb_schema/google/api/http.d.ts +3631 -0
  204. package/dist/generated-proto/pb_schema/google/api/http.d.ts.map +1 -0
  205. package/dist/generated-proto/pb_schema/google/api/http.js +193 -0
  206. package/dist/generated-proto/pb_schema/google/api/http.js.map +1 -0
  207. package/dist/generated-proto/pb_schema/google/protobuf/any.d.ts +33 -0
  208. package/dist/generated-proto/pb_schema/google/protobuf/any.d.ts.map +1 -0
  209. package/dist/generated-proto/pb_schema/google/protobuf/descriptor.d.ts +50897 -0
  210. package/dist/generated-proto/pb_schema/google/protobuf/descriptor.d.ts.map +1 -0
  211. package/dist/generated-proto/pb_schema/google/protobuf/descriptor.js +1818 -0
  212. package/dist/generated-proto/pb_schema/google/protobuf/descriptor.js.map +1 -0
  213. package/dist/generated-proto/pb_schema/google/protobuf/timestamp.d.ts +33 -0
  214. package/dist/generated-proto/pb_schema/google/protobuf/timestamp.d.ts.map +1 -0
  215. package/dist/generated-proto/pb_schema/google/protobuf/wrappers.d.ts +120 -0
  216. package/dist/generated-proto/pb_schema/google/protobuf/wrappers.d.ts.map +1 -0
  217. package/dist/generated-proto/pb_schema/lenses/geocircle.d.ts +43 -0
  218. package/dist/generated-proto/pb_schema/lenses/geocircle.d.ts.map +1 -0
  219. package/dist/generated-proto/pb_schema/lenses/geopoint.d.ts +33 -0
  220. package/dist/generated-proto/pb_schema/lenses/geopoint.d.ts.map +1 -0
  221. package/dist/generated-proto/pb_schema/lenses/launch_params.d.ts +30 -0
  222. package/dist/generated-proto/pb_schema/lenses/launch_params.d.ts.map +1 -0
  223. package/dist/generated-proto/pb_schema/lenses/launchdata.d.ts +397 -0
  224. package/dist/generated-proto/pb_schema/lenses/launchdata.d.ts.map +1 -0
  225. package/dist/generated-proto/pb_schema/lenses/lures.d.ts +112 -0
  226. package/dist/generated-proto/pb_schema/lenses/lures.d.ts.map +1 -0
  227. package/dist/generated-proto/pb_schema/lenses/persistent_store.d.ts +30 -0
  228. package/dist/generated-proto/pb_schema/lenses/persistent_store.d.ts.map +1 -0
  229. package/dist/generated-proto/pb_schema/lenses/remote_api/remote_api_service.d.ts +570 -0
  230. package/dist/generated-proto/pb_schema/lenses/remote_api/remote_api_service.d.ts.map +1 -0
  231. package/dist/generated-proto/pb_schema/lenses/snappable.d.ts +903 -0
  232. package/dist/generated-proto/pb_schema/lenses/snappable.d.ts.map +1 -0
  233. package/dist/generated-proto/pb_schema/lenses/user_data.d.ts +230 -0
  234. package/dist/generated-proto/pb_schema/lenses/user_data.d.ts.map +1 -0
  235. package/dist/handlers/HandlerChainBuilder.d.ts +111 -0
  236. package/dist/handlers/HandlerChainBuilder.d.ts.map +1 -0
  237. package/dist/handlers/HandlerChainBuilder.js +55 -0
  238. package/dist/handlers/HandlerChainBuilder.js.map +1 -0
  239. package/dist/handlers/arrayBufferParsingHandler.d.ts +11 -0
  240. package/dist/handlers/arrayBufferParsingHandler.d.ts.map +1 -0
  241. package/dist/handlers/arrayBufferParsingHandler.js +13 -0
  242. package/dist/handlers/arrayBufferParsingHandler.js.map +1 -0
  243. package/dist/handlers/batchingHandler.d.ts +32 -0
  244. package/dist/handlers/batchingHandler.d.ts.map +1 -0
  245. package/dist/handlers/batchingHandler.js +45 -0
  246. package/dist/handlers/batchingHandler.js.map +1 -0
  247. package/dist/handlers/cameraKitServiceFetchHandlerFactory.d.ts +13 -0
  248. package/dist/handlers/cameraKitServiceFetchHandlerFactory.d.ts.map +1 -0
  249. package/dist/handlers/cameraKitServiceFetchHandlerFactory.js +14 -0
  250. package/dist/handlers/cameraKitServiceFetchHandlerFactory.js.map +1 -0
  251. package/dist/handlers/debugHandler.d.ts +9 -0
  252. package/dist/handlers/debugHandler.d.ts.map +1 -0
  253. package/dist/handlers/debugHandler.js +18 -0
  254. package/dist/handlers/debugHandler.js.map +1 -0
  255. package/dist/handlers/defaultFetchHandler.d.ts +16 -0
  256. package/dist/handlers/defaultFetchHandler.d.ts.map +1 -0
  257. package/dist/handlers/defaultFetchHandler.js +25 -0
  258. package/dist/handlers/defaultFetchHandler.js.map +1 -0
  259. package/dist/handlers/headersModifyingFetchHandler.d.ts +9 -0
  260. package/dist/handlers/headersModifyingFetchHandler.d.ts.map +1 -0
  261. package/dist/handlers/headersModifyingFetchHandler.js +10 -0
  262. package/dist/handlers/headersModifyingFetchHandler.js.map +1 -0
  263. package/dist/handlers/mappingHandler.d.ts +20 -0
  264. package/dist/handlers/mappingHandler.d.ts.map +1 -0
  265. package/dist/handlers/mappingHandler.js +44 -0
  266. package/dist/handlers/mappingHandler.js.map +1 -0
  267. package/dist/handlers/noCorsRetryingFetchHandler.d.ts +49 -0
  268. package/dist/handlers/noCorsRetryingFetchHandler.d.ts.map +1 -0
  269. package/dist/handlers/noCorsRetryingFetchHandler.js +33 -0
  270. package/dist/handlers/noCorsRetryingFetchHandler.js.map +1 -0
  271. package/dist/handlers/persistingHandler.d.ts +15 -0
  272. package/dist/handlers/persistingHandler.d.ts.map +1 -0
  273. package/dist/handlers/persistingHandler.js +43 -0
  274. package/dist/handlers/persistingHandler.js.map +1 -0
  275. package/dist/handlers/rateLimitingHandler.d.ts +25 -0
  276. package/dist/handlers/rateLimitingHandler.d.ts.map +1 -0
  277. package/dist/handlers/rateLimitingHandler.js +21 -0
  278. package/dist/handlers/rateLimitingHandler.js.map +1 -0
  279. package/dist/handlers/requestStateEmittingHandler.d.ts +42 -0
  280. package/dist/handlers/requestStateEmittingHandler.d.ts.map +1 -0
  281. package/dist/handlers/requestStateEmittingHandler.js +42 -0
  282. package/dist/handlers/requestStateEmittingHandler.js.map +1 -0
  283. package/dist/handlers/responseCachingHandler.d.ts +35 -0
  284. package/dist/handlers/responseCachingHandler.d.ts.map +1 -0
  285. package/dist/handlers/responseCachingHandler.js +83 -0
  286. package/dist/handlers/responseCachingHandler.js.map +1 -0
  287. package/dist/handlers/retryingHandler.d.ts +49 -0
  288. package/dist/handlers/retryingHandler.d.ts.map +1 -0
  289. package/dist/handlers/retryingHandler.js +62 -0
  290. package/dist/handlers/retryingHandler.js.map +1 -0
  291. package/dist/handlers/timeoutHandler.d.ts +19 -0
  292. package/dist/handlers/timeoutHandler.d.ts.map +1 -0
  293. package/dist/handlers/timeoutHandler.js +20 -0
  294. package/dist/handlers/timeoutHandler.js.map +1 -0
  295. package/dist/handlers/utils.d.ts +13 -0
  296. package/dist/handlers/utils.d.ts.map +1 -0
  297. package/dist/handlers/utils.js +7 -0
  298. package/dist/handlers/utils.js.map +1 -0
  299. package/dist/index.d.ts +43 -0
  300. package/dist/index.d.ts.map +1 -0
  301. package/dist/index.js +35 -0
  302. package/dist/index.js.map +1 -0
  303. package/dist/legal/legalPrompt.d.ts +21 -0
  304. package/dist/legal/legalPrompt.d.ts.map +1 -0
  305. package/dist/legal/legalPrompt.js +130 -0
  306. package/dist/legal/legalPrompt.js.map +1 -0
  307. package/dist/legal/legalState.d.ts +51 -0
  308. package/dist/legal/legalState.d.ts.map +1 -0
  309. package/dist/legal/legalState.js +100 -0
  310. package/dist/legal/legalState.js.map +1 -0
  311. package/dist/lens/Lens.d.ts +117 -0
  312. package/dist/lens/Lens.d.ts.map +1 -0
  313. package/dist/lens/Lens.js +74 -0
  314. package/dist/lens/Lens.js.map +1 -0
  315. package/dist/lens/LensLaunchData.d.ts +45 -0
  316. package/dist/lens/LensLaunchData.d.ts.map +1 -0
  317. package/dist/lens/LensLaunchData.js +83 -0
  318. package/dist/lens/LensLaunchData.js.map +1 -0
  319. package/dist/lens/LensPersistenceStore.d.ts +8 -0
  320. package/dist/lens/LensPersistenceStore.d.ts.map +1 -0
  321. package/dist/lens/LensPersistenceStore.js.map +1 -0
  322. package/dist/lens/LensRepository.d.ts +133 -0
  323. package/dist/lens/LensRepository.d.ts.map +1 -0
  324. package/dist/lens/LensRepository.js +147 -0
  325. package/dist/lens/LensRepository.js.map +1 -0
  326. package/dist/lens/LensSource.d.ts +44 -0
  327. package/dist/lens/LensSource.d.ts.map +1 -0
  328. package/dist/lens/LensSource.js +18 -0
  329. package/dist/lens/LensSource.js.map +1 -0
  330. package/dist/lens/assets/LensAssetRepository.d.ts +101 -0
  331. package/dist/lens/assets/LensAssetRepository.d.ts.map +1 -0
  332. package/dist/lens/assets/LensAssetRepository.js +139 -0
  333. package/dist/lens/assets/LensAssetRepository.js.map +1 -0
  334. package/dist/lens/assets/LensAssetsProvider.d.ts +28 -0
  335. package/dist/lens/assets/LensAssetsProvider.d.ts.map +1 -0
  336. package/dist/lens/assets/LensAssetsProvider.js +52 -0
  337. package/dist/lens/assets/LensAssetsProvider.js.map +1 -0
  338. package/dist/lens/assets/deviceDependentAssetLoader.d.ts +12 -0
  339. package/dist/lens/assets/deviceDependentAssetLoader.d.ts.map +1 -0
  340. package/dist/lens/assets/deviceDependentAssetLoader.js +49 -0
  341. package/dist/lens/assets/deviceDependentAssetLoader.js.map +1 -0
  342. package/dist/lens/assets/remoteMediaAssetLoaderFactory.d.ts +11 -0
  343. package/dist/lens/assets/remoteMediaAssetLoaderFactory.d.ts.map +1 -0
  344. package/dist/lens/assets/remoteMediaAssetLoaderFactory.js +18 -0
  345. package/dist/lens/assets/remoteMediaAssetLoaderFactory.js.map +1 -0
  346. package/dist/lens/assets/staticAssetLoader.d.ts +11 -0
  347. package/dist/lens/assets/staticAssetLoader.d.ts.map +1 -0
  348. package/dist/lens/assets/staticAssetLoader.js +21 -0
  349. package/dist/lens/assets/staticAssetLoader.js.map +1 -0
  350. package/dist/lens/cameraKitLensSource.d.ts +18 -0
  351. package/dist/lens/cameraKitLensSource.d.ts.map +1 -0
  352. package/dist/lens/cameraKitLensSource.js +93 -0
  353. package/dist/lens/cameraKitLensSource.js.map +1 -0
  354. package/dist/lens/fetchWatermarkLens.d.ts +12 -0
  355. package/dist/lens/fetchWatermarkLens.d.ts.map +1 -0
  356. package/dist/lens/fetchWatermarkLens.js +23 -0
  357. package/dist/lens/fetchWatermarkLens.js.map +1 -0
  358. package/dist/lens-client-interface/exif.d.ts +21 -0
  359. package/dist/lens-client-interface/exif.d.ts.map +1 -0
  360. package/dist/lens-client-interface/exif.js +51 -0
  361. package/dist/lens-client-interface/exif.js.map +1 -0
  362. package/dist/lens-client-interface/imagePicker.d.ts +9 -0
  363. package/dist/lens-client-interface/imagePicker.d.ts.map +1 -0
  364. package/dist/lens-client-interface/imagePicker.js +113 -0
  365. package/dist/lens-client-interface/imagePicker.js.map +1 -0
  366. package/dist/lens-client-interface/lensClientInterface.d.ts +14 -0
  367. package/dist/lens-client-interface/lensClientInterface.d.ts.map +1 -0
  368. package/dist/lens-client-interface/lensClientInterface.js +22 -0
  369. package/dist/lens-client-interface/lensClientInterface.js.map +1 -0
  370. package/dist/lens-core-module/generated-types.d.ts +470 -0
  371. package/dist/lens-core-module/generated-types.d.ts.map +1 -0
  372. package/dist/lens-core-module/lensCore.d.ts +59 -0
  373. package/dist/lens-core-module/lensCore.d.ts.map +1 -0
  374. package/dist/lens-core-module/lensCore.js +95 -0
  375. package/dist/lens-core-module/lensCore.js.map +1 -0
  376. package/dist/lens-core-module/lensCoreError.d.ts +16 -0
  377. package/dist/lens-core-module/lensCoreError.d.ts.map +1 -0
  378. package/dist/lens-core-module/lensCoreError.js +35 -0
  379. package/dist/lens-core-module/lensCoreError.js.map +1 -0
  380. package/dist/lens-core-module/loader/bootstrapURLs.d.ts +13 -0
  381. package/dist/lens-core-module/loader/bootstrapURLs.d.ts.map +1 -0
  382. package/dist/lens-core-module/loader/bootstrapURLs.js +32 -0
  383. package/dist/lens-core-module/loader/bootstrapURLs.js.map +1 -0
  384. package/dist/lens-core-module/loader/lensCoreFactory.d.ts +18 -0
  385. package/dist/lens-core-module/loader/lensCoreFactory.d.ts.map +1 -0
  386. package/dist/lens-core-module/loader/lensCoreFactory.js +54 -0
  387. package/dist/lens-core-module/loader/lensCoreFactory.js.map +1 -0
  388. package/dist/lensCoreWasmVersions.d.ts +7 -0
  389. package/dist/lensCoreWasmVersions.d.ts.map +1 -0
  390. package/dist/lensCoreWasmVersions.js +6 -0
  391. package/dist/lensCoreWasmVersions.js.map +1 -0
  392. package/dist/logger/errorLoggingDecorator.d.ts +10 -0
  393. package/dist/logger/errorLoggingDecorator.d.ts.map +1 -0
  394. package/dist/logger/errorLoggingDecorator.js +19 -0
  395. package/dist/logger/errorLoggingDecorator.js.map +1 -0
  396. package/dist/logger/logEntries.d.ts +16 -0
  397. package/dist/logger/logEntries.d.ts.map +1 -0
  398. package/dist/logger/logEntries.js +4 -0
  399. package/dist/logger/logEntries.js.map +1 -0
  400. package/dist/logger/logger.d.ts +41 -0
  401. package/dist/logger/logger.d.ts.map +1 -0
  402. package/dist/logger/logger.js +27 -0
  403. package/dist/logger/logger.js.map +1 -0
  404. package/dist/logger/registerLogEntriesSubscriber.d.ts +15 -0
  405. package/dist/logger/registerLogEntriesSubscriber.d.ts.map +1 -0
  406. package/dist/logger/registerLogEntriesSubscriber.js +27 -0
  407. package/dist/logger/registerLogEntriesSubscriber.js.map +1 -0
  408. package/dist/media-sources/CameraKitSource.d.ts +130 -0
  409. package/dist/media-sources/CameraKitSource.d.ts.map +1 -0
  410. package/dist/media-sources/CameraKitSource.js +96 -0
  411. package/dist/media-sources/CameraKitSource.js.map +1 -0
  412. package/dist/media-sources/FunctionSource.d.ts +42 -0
  413. package/dist/media-sources/FunctionSource.d.ts.map +1 -0
  414. package/dist/media-sources/FunctionSource.js +105 -0
  415. package/dist/media-sources/FunctionSource.js.map +1 -0
  416. package/dist/media-sources/ImageSource.d.ts +13 -0
  417. package/dist/media-sources/ImageSource.d.ts.map +1 -0
  418. package/dist/media-sources/ImageSource.js +7 -0
  419. package/dist/media-sources/ImageSource.js.map +1 -0
  420. package/dist/media-sources/MediaStreamSource.d.ts +31 -0
  421. package/dist/media-sources/MediaStreamSource.d.ts.map +1 -0
  422. package/dist/media-sources/MediaStreamSource.js +140 -0
  423. package/dist/media-sources/MediaStreamSource.js.map +1 -0
  424. package/dist/media-sources/VideoSource.d.ts +27 -0
  425. package/dist/media-sources/VideoSource.d.ts.map +1 -0
  426. package/dist/media-sources/VideoSource.js +12 -0
  427. package/dist/media-sources/VideoSource.js.map +1 -0
  428. package/dist/metrics/businessEventsReporter.d.ts +40 -0
  429. package/dist/metrics/businessEventsReporter.d.ts.map +1 -0
  430. package/dist/metrics/businessEventsReporter.js +156 -0
  431. package/dist/metrics/businessEventsReporter.js.map +1 -0
  432. package/dist/metrics/metricsEventTarget.d.ts +42 -0
  433. package/dist/metrics/metricsEventTarget.d.ts.map +1 -0
  434. package/dist/metrics/metricsEventTarget.js +4 -0
  435. package/dist/metrics/metricsEventTarget.js.map +1 -0
  436. package/dist/metrics/operational/Count.d.ts +21 -0
  437. package/dist/metrics/operational/Count.d.ts.map +1 -0
  438. package/dist/metrics/operational/Count.js +31 -0
  439. package/dist/metrics/operational/Count.js.map +1 -0
  440. package/dist/metrics/operational/Histogram.d.ts +19 -0
  441. package/dist/metrics/operational/Histogram.d.ts.map +1 -0
  442. package/dist/metrics/operational/Histogram.js +26 -0
  443. package/dist/metrics/operational/Histogram.js.map +1 -0
  444. package/dist/metrics/operational/Metric.d.ts +21 -0
  445. package/dist/metrics/operational/Metric.d.ts.map +1 -0
  446. package/dist/metrics/operational/Metric.js +23 -0
  447. package/dist/metrics/operational/Metric.js.map +1 -0
  448. package/dist/metrics/operational/Timer.d.ts +96 -0
  449. package/dist/metrics/operational/Timer.d.ts.map +1 -0
  450. package/dist/metrics/operational/Timer.js +64 -0
  451. package/dist/metrics/operational/Timer.js.map +1 -0
  452. package/dist/metrics/reporters/reportBenchmarks.d.ts +11 -0
  453. package/dist/metrics/reporters/reportBenchmarks.d.ts.map +1 -0
  454. package/dist/metrics/reporters/reportBenchmarks.js +27 -0
  455. package/dist/metrics/reporters/reportBenchmarks.js.map +1 -0
  456. package/dist/metrics/reporters/reportGlobalException.d.ts +27 -0
  457. package/dist/metrics/reporters/reportGlobalException.d.ts.map +1 -0
  458. package/dist/metrics/reporters/reportGlobalException.js +82 -0
  459. package/dist/metrics/reporters/reportGlobalException.js.map +1 -0
  460. package/dist/metrics/reporters/reportHttpMetrics.d.ts +11 -0
  461. package/dist/metrics/reporters/reportHttpMetrics.d.ts.map +1 -0
  462. package/dist/metrics/reporters/reportHttpMetrics.js +107 -0
  463. package/dist/metrics/reporters/reportHttpMetrics.js.map +1 -0
  464. package/dist/metrics/reporters/reportLegalState.d.ts +16 -0
  465. package/dist/metrics/reporters/reportLegalState.d.ts.map +1 -0
  466. package/dist/metrics/reporters/reportLegalState.js +29 -0
  467. package/dist/metrics/reporters/reportLegalState.js.map +1 -0
  468. package/dist/metrics/reporters/reportLensAndAssetDownload.d.ts +39 -0
  469. package/dist/metrics/reporters/reportLensAndAssetDownload.d.ts.map +1 -0
  470. package/dist/metrics/reporters/reportLensAndAssetDownload.js +91 -0
  471. package/dist/metrics/reporters/reportLensAndAssetDownload.js.map +1 -0
  472. package/dist/metrics/reporters/reportLensValidationFailed.d.ts +21 -0
  473. package/dist/metrics/reporters/reportLensValidationFailed.d.ts.map +1 -0
  474. package/dist/metrics/reporters/reportLensValidationFailed.js +21 -0
  475. package/dist/metrics/reporters/reportLensValidationFailed.js.map +1 -0
  476. package/dist/metrics/reporters/reportLensView.d.ts +37 -0
  477. package/dist/metrics/reporters/reportLensView.d.ts.map +1 -0
  478. package/dist/metrics/reporters/reportLensView.js +102 -0
  479. package/dist/metrics/reporters/reportLensView.js.map +1 -0
  480. package/dist/metrics/reporters/reportLensWait.d.ts +33 -0
  481. package/dist/metrics/reporters/reportLensWait.d.ts.map +1 -0
  482. package/dist/metrics/reporters/reportLensWait.js +35 -0
  483. package/dist/metrics/reporters/reportLensWait.js.map +1 -0
  484. package/dist/metrics/reporters/reportPlatformCapabilities.d.ts +13 -0
  485. package/dist/metrics/reporters/reportPlatformCapabilities.d.ts.map +1 -0
  486. package/dist/metrics/reporters/reportPlatformCapabilities.js +13 -0
  487. package/dist/metrics/reporters/reportPlatformCapabilities.js.map +1 -0
  488. package/dist/metrics/reporters/reportSessionException.d.ts +18 -0
  489. package/dist/metrics/reporters/reportSessionException.d.ts.map +1 -0
  490. package/dist/metrics/reporters/reportSessionException.js +7 -0
  491. package/dist/metrics/reporters/reportSessionException.js.map +1 -0
  492. package/dist/metrics/reporters/reportUserSession.d.ts +15 -0
  493. package/dist/metrics/reporters/reportUserSession.d.ts.map +1 -0
  494. package/dist/metrics/reporters/reportUserSession.js +61 -0
  495. package/dist/metrics/reporters/reportUserSession.js.map +1 -0
  496. package/dist/metrics/reporters/reporters.d.ts +47 -0
  497. package/dist/metrics/reporters/reporters.d.ts.map +1 -0
  498. package/dist/metrics/reporters/reporters.js +24 -0
  499. package/dist/metrics/reporters/reporters.js.map +1 -0
  500. package/dist/namedErrors.d.ts +131 -0
  501. package/dist/namedErrors.d.ts.map +1 -0
  502. package/dist/namedErrors.js +29 -0
  503. package/dist/namedErrors.js.map +1 -0
  504. package/dist/observable-operators/debounceTimeAfter.d.ts +26 -0
  505. package/dist/observable-operators/debounceTimeAfter.d.ts.map +1 -0
  506. package/dist/observable-operators/debounceTimeAfter.js +22 -0
  507. package/dist/observable-operators/debounceTimeAfter.js.map +1 -0
  508. package/dist/observable-operators/unsubscribed.d.ts +13 -0
  509. package/dist/observable-operators/unsubscribed.d.ts.map +1 -0
  510. package/dist/observable-operators/unsubscribed.js +15 -0
  511. package/dist/observable-operators/unsubscribed.js.map +1 -0
  512. package/dist/persistence/ExpiringPersistence.d.ts +22 -0
  513. package/dist/persistence/ExpiringPersistence.d.ts.map +1 -0
  514. package/dist/persistence/ExpiringPersistence.js +64 -0
  515. package/dist/persistence/ExpiringPersistence.js.map +1 -0
  516. package/dist/persistence/IndexedDBPersistence.d.ts +48 -0
  517. package/dist/persistence/IndexedDBPersistence.d.ts.map +1 -0
  518. package/dist/persistence/IndexedDBPersistence.js +127 -0
  519. package/dist/persistence/IndexedDBPersistence.js.map +1 -0
  520. package/dist/persistence/Persistence.d.ts +26 -0
  521. package/dist/persistence/Persistence.d.ts.map +1 -0
  522. package/dist/persistence/Persistence.js +4 -0
  523. package/dist/persistence/Persistence.js.map +1 -0
  524. package/dist/platform/assertPlatformSupported.d.ts +5 -0
  525. package/dist/platform/assertPlatformSupported.d.ts.map +1 -0
  526. package/dist/platform/assertPlatformSupported.js +12 -0
  527. package/dist/platform/assertPlatformSupported.js.map +1 -0
  528. package/dist/platform/cameraKitUserAgent.d.ts +3 -0
  529. package/dist/platform/cameraKitUserAgent.d.ts.map +1 -0
  530. package/dist/platform/cameraKitUserAgent.js +13 -0
  531. package/dist/platform/cameraKitUserAgent.js.map +1 -0
  532. package/dist/platform/platformCapabilities.d.ts +58 -0
  533. package/dist/platform/platformCapabilities.d.ts.map +1 -0
  534. package/dist/platform/platformCapabilities.js +98 -0
  535. package/dist/platform/platformCapabilities.js.map +1 -0
  536. package/dist/platform/platformInfo.d.ts +44 -0
  537. package/dist/platform/platformInfo.d.ts.map +1 -0
  538. package/dist/platform/platformInfo.js +156 -0
  539. package/dist/platform/platformInfo.js.map +1 -0
  540. package/dist/remote-configuration/cofHandler.d.ts +30 -0
  541. package/dist/remote-configuration/cofHandler.d.ts.map +1 -0
  542. package/dist/remote-configuration/cofHandler.js +83 -0
  543. package/dist/remote-configuration/cofHandler.js.map +1 -0
  544. package/dist/remote-configuration/preloadConfiguration.d.ts +8 -0
  545. package/dist/remote-configuration/preloadConfiguration.d.ts.map +1 -0
  546. package/dist/remote-configuration/preloadConfiguration.js +20 -0
  547. package/dist/remote-configuration/preloadConfiguration.js.map +1 -0
  548. package/dist/remote-configuration/remoteConfiguration.d.ts +36 -0
  549. package/dist/remote-configuration/remoteConfiguration.d.ts.map +1 -0
  550. package/dist/remote-configuration/remoteConfiguration.js +59 -0
  551. package/dist/remote-configuration/remoteConfiguration.js.map +1 -0
  552. package/dist/session/CameraKitSession.d.ts +257 -0
  553. package/dist/session/CameraKitSession.d.ts.map +1 -0
  554. package/dist/session/CameraKitSession.js +242 -0
  555. package/dist/session/CameraKitSession.js.map +1 -0
  556. package/dist/session/CameraKitSessionEvents.d.ts +29 -0
  557. package/dist/session/CameraKitSessionEvents.d.ts.map +1 -0
  558. package/dist/session/CameraKitSessionEvents.js +15 -0
  559. package/dist/session/CameraKitSessionEvents.js.map +1 -0
  560. package/dist/session/LensKeyboard.d.ts +90 -0
  561. package/dist/session/LensKeyboard.d.ts.map +1 -0
  562. package/dist/session/LensKeyboard.js +89 -0
  563. package/dist/session/LensKeyboard.js.map +1 -0
  564. package/dist/session/LensPerformanceMeasurement.d.ts +58 -0
  565. package/dist/session/LensPerformanceMeasurement.d.ts.map +1 -0
  566. package/dist/session/LensPerformanceMeasurement.js +63 -0
  567. package/dist/session/LensPerformanceMeasurement.js.map +1 -0
  568. package/dist/session/LensPerformanceMetrics.d.ts +32 -0
  569. package/dist/session/LensPerformanceMetrics.d.ts.map +1 -0
  570. package/dist/session/LensPerformanceMetrics.js +39 -0
  571. package/dist/session/LensPerformanceMetrics.js.map +1 -0
  572. package/dist/session/lensState.d.ts +32 -0
  573. package/dist/session/lensState.d.ts.map +1 -0
  574. package/dist/session/lensState.js +194 -0
  575. package/dist/session/lensState.js.map +1 -0
  576. package/dist/session/sessionState.d.ts +11 -0
  577. package/dist/session/sessionState.d.ts.map +1 -0
  578. package/dist/session/sessionState.js.map +1 -0
  579. package/dist/transforms/Transform2D.d.ts +27 -0
  580. package/dist/transforms/Transform2D.d.ts.map +1 -0
  581. package/dist/transforms/Transform2D.js +13 -0
  582. package/dist/transforms/Transform2D.js.map +1 -0
  583. package/dist/utils.d.ts +4 -0
  584. package/dist/utils.d.ts.map +1 -0
  585. package/docs/html/assets/navigation.js +1 -1
  586. package/docs/html/assets/search.js +1 -1
  587. package/docs/html/classes/CameraKit.html +2 -2
  588. package/docs/html/classes/CameraKitSession.html +2 -2
  589. package/docs/html/classes/CameraKitSource.html +2 -2
  590. package/docs/html/classes/LensPerformanceMeasurement.html +2 -2
  591. package/docs/html/classes/LensPerformanceMetrics.html +2 -2
  592. package/docs/html/classes/LensRepository.html +3 -3
  593. package/docs/html/classes/Transform2D.html +2 -2
  594. package/docs/html/classes/TypedCustomEvent.html +2 -2
  595. package/docs/html/classes/TypedEventTarget.html +2 -2
  596. package/docs/html/enums/Lens_CameraFacing.html +2 -2
  597. package/docs/html/functions/ConcatInjectable.html +2 -2
  598. package/docs/html/functions/Injectable.html +2 -2
  599. package/docs/html/functions/bootstrapCameraKit.html +2 -2
  600. package/docs/html/functions/createExtension.html +2 -2
  601. package/docs/html/functions/createImageSource.html +2 -2
  602. package/docs/html/functions/createMediaStreamSource.html +2 -2
  603. package/docs/html/functions/createVideoSource.html +2 -2
  604. package/docs/html/functions/estimateLensPerformance.html +2 -2
  605. package/docs/html/functions/lensSourcesFactory.html +2 -2
  606. package/docs/html/functions/remoteApiServicesFactory.html +2 -2
  607. package/docs/html/hierarchy.html +1 -1
  608. package/docs/html/index.html +3 -3
  609. package/docs/html/interfaces/BitmojiUserInfo.html +3 -0
  610. package/docs/html/interfaces/CameraKitBootstrapConfiguration.html +2 -2
  611. package/docs/html/interfaces/CameraKitDeviceOptions.html +2 -2
  612. package/docs/html/interfaces/CameraKitSourceInfo.html +2 -2
  613. package/docs/html/interfaces/CameraKitSourceSubscriber.html +2 -2
  614. package/docs/html/interfaces/ComputedFrameMetrics.html +2 -2
  615. package/docs/html/interfaces/CreateSessionOptions.html +2 -2
  616. package/docs/html/interfaces/EstimatedLensPerformance.html +2 -2
  617. package/docs/html/interfaces/FriendUserInfo.html +4 -0
  618. package/docs/html/interfaces/FunctionSourceOptions.html +2 -2
  619. package/docs/html/interfaces/Lens.html +2 -2
  620. package/docs/html/interfaces/LensCreator.html +2 -2
  621. package/docs/html/interfaces/LensLaunchData.html +3 -3
  622. package/docs/html/interfaces/LensSource.html +2 -2
  623. package/docs/html/interfaces/LensUserData.html +10 -0
  624. package/docs/html/interfaces/LoadAssetRequest.html +2 -2
  625. package/docs/html/interfaces/MediaStreamSourceOptions.html +2 -2
  626. package/docs/html/interfaces/Preview.html +2 -2
  627. package/docs/html/interfaces/RemoteApiRequest.html +2 -2
  628. package/docs/html/interfaces/RemoteApiResponse.html +4 -4
  629. package/docs/html/interfaces/RemoteApiService.html +3 -3
  630. package/docs/html/interfaces/Snapcode.html +2 -2
  631. package/docs/html/interfaces/UriCancelRequest.html +2 -2
  632. package/docs/html/interfaces/UriRequest.html +2 -2
  633. package/docs/html/interfaces/UriResponse.html +2 -2
  634. package/docs/html/interfaces/VideoSourceOptions.html +2 -2
  635. package/docs/html/modules.html +7 -3
  636. package/docs/html/types/ArgumentValidationError.html +2 -0
  637. package/docs/html/types/AssetLoader.html +2 -2
  638. package/docs/html/types/AssetResponse.html +1 -1
  639. package/docs/html/types/AssetTiming.html +2 -2
  640. package/docs/html/types/BenchmarkError.html +1 -1
  641. package/docs/html/types/BootstrapError.html +2 -2
  642. package/docs/html/types/CacheKeyNotFoundError.html +1 -1
  643. package/docs/html/types/CameraKitSessionEventListener.html +2 -2
  644. package/docs/html/types/CameraKitSessionEvents.html +2 -2
  645. package/docs/html/types/CameraKitSourceError.html +1 -1
  646. package/docs/html/types/ConfigurationError.html +2 -2
  647. package/docs/html/types/FetchHandler.html +1 -1
  648. package/docs/html/types/Keyboard.html +2 -2
  649. package/docs/html/types/KeyboardEvents.html +2 -2
  650. package/docs/html/types/LegalError.html +1 -1
  651. package/docs/html/types/LensAbortError.html +2 -2
  652. package/docs/html/types/LensAssetError.html +2 -2
  653. package/docs/html/types/LensContentValidationError.html +1 -1
  654. package/docs/html/types/LensError.html +1 -1
  655. package/docs/html/types/LensExecutionError.html +2 -2
  656. package/docs/html/types/LensImagePickerError.html +2 -2
  657. package/docs/html/types/LensLaunchParams.html +2 -2
  658. package/docs/html/types/LensMetricsEvents.html +2 -2
  659. package/docs/html/types/LensPerformanceCluster.html +1 -1
  660. package/docs/html/types/LensView.html +2 -2
  661. package/docs/html/types/LensWait.html +2 -2
  662. package/docs/html/types/Matrix.html +2 -2
  663. package/docs/html/types/PersistentStoreError.html +2 -2
  664. package/docs/html/types/PlatformNotSupportedError.html +2 -2
  665. package/docs/html/types/PublicContainer.html +2 -2
  666. package/docs/html/types/PublicServices.html +2 -2
  667. package/docs/html/types/RemoteApiCancelRequestHandler.html +2 -2
  668. package/docs/html/types/RemoteApiRequestHandler.html +2 -2
  669. package/docs/html/types/RemoteApiServices.html +1 -1
  670. package/docs/html/types/RemoteApiStatus.html +2 -2
  671. package/docs/html/types/RenderTarget.html +2 -2
  672. package/docs/html/types/Uri.html +1 -1
  673. package/docs/html/types/WebGLError.html +1 -1
  674. package/docs/html/types/Zodiac.html +1 -0
  675. package/docs/html/variables/extensionRequestContext.html +2 -2
  676. package/docs/md/README.md +1 -1
  677. package/docs/md/classes/CameraKit.md +1 -1
  678. package/docs/md/classes/CameraKitSession.md +1 -1
  679. package/docs/md/classes/CameraKitSource.md +1 -1
  680. package/docs/md/classes/LensPerformanceMeasurement.md +1 -1
  681. package/docs/md/classes/LensPerformanceMetrics.md +1 -1
  682. package/docs/md/classes/LensRepository.md +2 -2
  683. package/docs/md/classes/Transform2D.md +1 -1
  684. package/docs/md/classes/TypedCustomEvent.md +1 -1
  685. package/docs/md/classes/TypedEventTarget.md +1 -1
  686. package/docs/md/enums/Lens_CameraFacing.md +1 -1
  687. package/docs/md/interfaces/BitmojiUserInfo.md +22 -0
  688. package/docs/md/interfaces/CameraKitBootstrapConfiguration.md +1 -1
  689. package/docs/md/interfaces/CameraKitDeviceOptions.md +1 -1
  690. package/docs/md/interfaces/CameraKitSourceInfo.md +1 -1
  691. package/docs/md/interfaces/CameraKitSourceSubscriber.md +1 -1
  692. package/docs/md/interfaces/ComputedFrameMetrics.md +1 -1
  693. package/docs/md/interfaces/CreateSessionOptions.md +1 -1
  694. package/docs/md/interfaces/EstimatedLensPerformance.md +1 -1
  695. package/docs/md/interfaces/FriendUserInfo.md +29 -0
  696. package/docs/md/interfaces/FunctionSourceOptions.md +1 -1
  697. package/docs/md/interfaces/Lens.md +1 -1
  698. package/docs/md/interfaces/LensCreator.md +1 -1
  699. package/docs/md/interfaces/LensLaunchData.md +2 -21
  700. package/docs/md/interfaces/LensSource.md +1 -1
  701. package/docs/md/interfaces/LensUserData.md +71 -0
  702. package/docs/md/interfaces/LoadAssetRequest.md +1 -1
  703. package/docs/md/interfaces/MediaStreamSourceOptions.md +1 -1
  704. package/docs/md/interfaces/Preview.md +1 -1
  705. package/docs/md/interfaces/RemoteApiRequest.md +1 -1
  706. package/docs/md/interfaces/RemoteApiResponse.md +2 -2
  707. package/docs/md/interfaces/RemoteApiService.md +2 -2
  708. package/docs/md/interfaces/Snapcode.md +1 -1
  709. package/docs/md/interfaces/UriCancelRequest.md +1 -1
  710. package/docs/md/interfaces/UriRequest.md +1 -1
  711. package/docs/md/interfaces/UriResponse.md +1 -1
  712. package/docs/md/interfaces/VideoSourceOptions.md +1 -1
  713. package/docs/md/modules.md +23 -5
  714. package/package.json +14 -12
  715. package/docs/html/enums/UserData_Zodiac.html +0 -15
  716. package/docs/md/enums/UserData_Zodiac.md +0 -106
  717. package/lib/CameraKit.d.ts +0 -333
  718. package/lib/CameraKit.js +0 -176
  719. package/lib/CameraKit.js.map +0 -1
  720. package/lib/__tests__/data.d.ts +0 -14
  721. package/lib/__tests__/data.js +0 -69
  722. package/lib/__tests__/data.js.map +0 -1
  723. package/lib/__tests__/deferred.d.ts +0 -16
  724. package/lib/__tests__/deferred.js +0 -29
  725. package/lib/__tests__/deferred.js.map +0 -1
  726. package/lib/__tests__/jest.matchers.d.ts +0 -17
  727. package/lib/__tests__/jest.matchers.js +0 -67
  728. package/lib/__tests__/jest.matchers.js.map +0 -1
  729. package/lib/benchmark/benchmarkGflops.d.ts +0 -16
  730. package/lib/benchmark/benchmarkGflops.js +0 -129
  731. package/lib/benchmark/benchmarkGflops.js.map +0 -1
  732. package/lib/benchmark/estimateLensPerformanceCluster.d.ts +0 -33
  733. package/lib/benchmark/estimateLensPerformanceCluster.js +0 -48
  734. package/lib/benchmark/estimateLensPerformanceCluster.js.map +0 -1
  735. package/lib/benchmark/webglUtils.d.ts +0 -7
  736. package/lib/bootstrapCameraKit.d.ts +0 -96
  737. package/lib/bootstrapCameraKit.js +0 -220
  738. package/lib/bootstrapCameraKit.js.map +0 -1
  739. package/lib/clients/createTsProtoClient.d.ts +0 -40
  740. package/lib/clients/createTsProtoClient.js +0 -52
  741. package/lib/clients/createTsProtoClient.js.map +0 -1
  742. package/lib/clients/grpcHandler.d.ts +0 -26
  743. package/lib/clients/grpcHandler.js +0 -90
  744. package/lib/clients/grpcHandler.js.map +0 -1
  745. package/lib/clients/lensesClient.d.ts +0 -9
  746. package/lib/clients/lensesClient.js.map +0 -1
  747. package/lib/clients/metricsClient.d.ts +0 -26
  748. package/lib/clients/metricsClient.js +0 -120
  749. package/lib/clients/metricsClient.js.map +0 -1
  750. package/lib/common/__mocks__/loadScript.d.ts +0 -1
  751. package/lib/common/__mocks__/loadScript.js +0 -10
  752. package/lib/common/__mocks__/loadScript.js.map +0 -1
  753. package/lib/common/assertions.d.ts +0 -27
  754. package/lib/common/assertions.js +0 -39
  755. package/lib/common/assertions.js.map +0 -1
  756. package/lib/common/copyDefinedProperties.d.ts +0 -13
  757. package/lib/common/copyDefinedProperties.js +0 -16
  758. package/lib/common/copyDefinedProperties.js.map +0 -1
  759. package/lib/common/date.d.ts +0 -3
  760. package/lib/common/dialog.d.ts +0 -59
  761. package/lib/common/dialog.js +0 -160
  762. package/lib/common/dialog.js.map +0 -1
  763. package/lib/common/entries.d.ts +0 -4
  764. package/lib/common/entries.js +0 -5
  765. package/lib/common/entries.js.map +0 -1
  766. package/lib/common/errorHelpers.d.ts +0 -10
  767. package/lib/common/errorHelpers.js +0 -24
  768. package/lib/common/errorHelpers.js.map +0 -1
  769. package/lib/common/getFilename.d.ts +0 -1
  770. package/lib/common/hash.d.ts +0 -5
  771. package/lib/common/hash.js +0 -17
  772. package/lib/common/hash.js.map +0 -1
  773. package/lib/common/loadScript.d.ts +0 -6
  774. package/lib/common/loadScript.js +0 -18
  775. package/lib/common/loadScript.js.map +0 -1
  776. package/lib/common/localization.d.ts +0 -54
  777. package/lib/common/localization.js +0 -654
  778. package/lib/common/localization.js.map +0 -1
  779. package/lib/common/memoize.d.ts +0 -8
  780. package/lib/common/pageVisibility.d.ts +0 -34
  781. package/lib/common/pageVisibility.js +0 -71
  782. package/lib/common/pageVisibility.js.map +0 -1
  783. package/lib/common/result.d.ts +0 -36
  784. package/lib/common/result.js +0 -40
  785. package/lib/common/result.js.map +0 -1
  786. package/lib/common/time.d.ts +0 -2
  787. package/lib/common/typeguards.d.ts +0 -53
  788. package/lib/common/typeguards.js +0 -92
  789. package/lib/common/typeguards.js.map +0 -1
  790. package/lib/common/types.d.ts +0 -18
  791. package/lib/common/types.js.map +0 -1
  792. package/lib/common/unionBy.d.ts +0 -28
  793. package/lib/common/unionBy.js +0 -46
  794. package/lib/common/unionBy.js.map +0 -1
  795. package/lib/common/validate.d.ts +0 -14
  796. package/lib/common/validate.js +0 -112
  797. package/lib/common/validate.js.map +0 -1
  798. package/lib/configuration.d.ts +0 -101
  799. package/lib/configuration.js +0 -51
  800. package/lib/configuration.js.map +0 -1
  801. package/lib/configurationOverrides.d.ts +0 -12
  802. package/lib/configurationOverrides.js +0 -46
  803. package/lib/configurationOverrides.js.map +0 -1
  804. package/lib/dependency-injection/Container.d.ts +0 -176
  805. package/lib/dependency-injection/Container.js +0 -160
  806. package/lib/dependency-injection/Container.js.map +0 -1
  807. package/lib/dependency-injection/Injectable.d.ts +0 -95
  808. package/lib/dependency-injection/Injectable.js.map +0 -1
  809. package/lib/dependency-injection/PartialContainer.d.ts +0 -85
  810. package/lib/dependency-injection/PartialContainer.js +0 -85
  811. package/lib/dependency-injection/PartialContainer.js.map +0 -1
  812. package/lib/dependency-injection/RootServices.d.ts +0 -73
  813. package/lib/dependency-injection/RootServices.js +0 -2
  814. package/lib/dependency-injection/RootServices.js.map +0 -1
  815. package/lib/dependency-injection/types.d.ts +0 -56
  816. package/lib/dependency-injection/types.js.map +0 -1
  817. package/lib/environment.d.ts +0 -4
  818. package/lib/environment.js +0 -2
  819. package/lib/environment.js.map +0 -1
  820. package/lib/events/TypedCustomEvent.d.ts +0 -10
  821. package/lib/events/TypedCustomEvent.js +0 -11
  822. package/lib/events/TypedCustomEvent.js.map +0 -1
  823. package/lib/events/TypedEventTarget.d.ts +0 -25
  824. package/lib/events/TypedEventTarget.js +0 -57
  825. package/lib/events/TypedEventTarget.js.map +0 -1
  826. package/lib/events/scan.d.ts +0 -15
  827. package/lib/events/scan.js +0 -46
  828. package/lib/events/scan.js.map +0 -1
  829. package/lib/extensions/RemoteApiServices.d.ts +0 -101
  830. package/lib/extensions/RemoteApiServices.js +0 -203
  831. package/lib/extensions/RemoteApiServices.js.map +0 -1
  832. package/lib/extensions/UriHandlers.d.ts +0 -47
  833. package/lib/extensions/UriHandlers.js +0 -38
  834. package/lib/extensions/UriHandlers.js.map +0 -1
  835. package/lib/extensions/extensionRequestContext.d.ts +0 -4
  836. package/lib/extensions/extensionRequestContext.js +0 -14
  837. package/lib/extensions/extensionRequestContext.js.map +0 -1
  838. package/lib/extensions/uriHandlersRegister.d.ts +0 -21
  839. package/lib/extensions/uriHandlersRegister.js +0 -72
  840. package/lib/extensions/uriHandlersRegister.js.map +0 -1
  841. package/lib/generated-proto/blizzard/cameraKitEvents.d.ts +0 -9527
  842. package/lib/generated-proto/pb_schema/camera_kit/v3/business_events.d.ts +0 -79
  843. package/lib/generated-proto/pb_schema/camera_kit/v3/export.d.ts +0 -528
  844. package/lib/generated-proto/pb_schema/camera_kit/v3/features/ranking_info.d.ts +0 -34
  845. package/lib/generated-proto/pb_schema/camera_kit/v3/features/ranking_info.js +0 -43
  846. package/lib/generated-proto/pb_schema/camera_kit/v3/features/ranking_info.js.map +0 -1
  847. package/lib/generated-proto/pb_schema/camera_kit/v3/features/remote_api_info.d.ts +0 -29
  848. package/lib/generated-proto/pb_schema/camera_kit/v3/legal_prompt.d.ts +0 -85
  849. package/lib/generated-proto/pb_schema/camera_kit/v3/lens.d.ts +0 -384
  850. package/lib/generated-proto/pb_schema/camera_kit/v3/operational_metrics.d.ts +0 -178
  851. package/lib/generated-proto/pb_schema/camera_kit/v3/ranking.d.ts +0 -56
  852. package/lib/generated-proto/pb_schema/camera_kit/v3/service.d.ts +0 -2511
  853. package/lib/generated-proto/pb_schema/cdp/cof/benchmark.d.ts +0 -78
  854. package/lib/generated-proto/pb_schema/cdp/cof/benchmark_name.d.ts +0 -50
  855. package/lib/generated-proto/pb_schema/cdp/cof/circumstance_service.d.ts +0 -25574
  856. package/lib/generated-proto/pb_schema/cdp/cof/config_request.d.ts +0 -279
  857. package/lib/generated-proto/pb_schema/cdp/cof/config_response.d.ts +0 -3725
  858. package/lib/generated-proto/pb_schema/cdp/cof/config_result.d.ts +0 -10223
  859. package/lib/generated-proto/pb_schema/cdp/cof/debug_info.d.ts +0 -93
  860. package/lib/generated-proto/pb_schema/cdp/cof/namespace.d.ts +0 -8
  861. package/lib/generated-proto/pb_schema/common/ruid.d.ts +0 -51
  862. package/lib/generated-proto/pb_schema/common/value.d.ts +0 -144
  863. package/lib/generated-proto/pb_schema/google/api/annotations.d.ts +0 -1
  864. package/lib/generated-proto/pb_schema/google/api/annotations.js +0 -9
  865. package/lib/generated-proto/pb_schema/google/api/annotations.js.map +0 -1
  866. package/lib/generated-proto/pb_schema/google/api/http.d.ts +0 -3630
  867. package/lib/generated-proto/pb_schema/google/api/http.js +0 -194
  868. package/lib/generated-proto/pb_schema/google/api/http.js.map +0 -1
  869. package/lib/generated-proto/pb_schema/google/protobuf/any.d.ts +0 -32
  870. package/lib/generated-proto/pb_schema/google/protobuf/descriptor.d.ts +0 -50896
  871. package/lib/generated-proto/pb_schema/google/protobuf/descriptor.js +0 -1857
  872. package/lib/generated-proto/pb_schema/google/protobuf/descriptor.js.map +0 -1
  873. package/lib/generated-proto/pb_schema/google/protobuf/timestamp.d.ts +0 -32
  874. package/lib/generated-proto/pb_schema/google/protobuf/wrappers.d.ts +0 -119
  875. package/lib/generated-proto/pb_schema/lenses/geocircle.d.ts +0 -42
  876. package/lib/generated-proto/pb_schema/lenses/geopoint.d.ts +0 -32
  877. package/lib/generated-proto/pb_schema/lenses/launch_params.d.ts +0 -29
  878. package/lib/generated-proto/pb_schema/lenses/launchdata.d.ts +0 -396
  879. package/lib/generated-proto/pb_schema/lenses/lures.d.ts +0 -111
  880. package/lib/generated-proto/pb_schema/lenses/persistent_store.d.ts +0 -29
  881. package/lib/generated-proto/pb_schema/lenses/remote_api/remote_api_service.d.ts +0 -569
  882. package/lib/generated-proto/pb_schema/lenses/snappable.d.ts +0 -902
  883. package/lib/generated-proto/pb_schema/lenses/user_data.d.ts +0 -229
  884. package/lib/handlers/HandlerChainBuilder.d.ts +0 -110
  885. package/lib/handlers/HandlerChainBuilder.js +0 -199
  886. package/lib/handlers/HandlerChainBuilder.js.map +0 -1
  887. package/lib/handlers/arrayBufferParsingHandler.d.ts +0 -10
  888. package/lib/handlers/arrayBufferParsingHandler.js +0 -18
  889. package/lib/handlers/arrayBufferParsingHandler.js.map +0 -1
  890. package/lib/handlers/batchingHandler.d.ts +0 -31
  891. package/lib/handlers/batchingHandler.js +0 -76
  892. package/lib/handlers/batchingHandler.js.map +0 -1
  893. package/lib/handlers/cameraKitServiceFetchHandlerFactory.d.ts +0 -12
  894. package/lib/handlers/cameraKitServiceFetchHandlerFactory.js +0 -19
  895. package/lib/handlers/cameraKitServiceFetchHandlerFactory.js.map +0 -1
  896. package/lib/handlers/debugHandler.d.ts +0 -8
  897. package/lib/handlers/debugHandler.js +0 -27
  898. package/lib/handlers/debugHandler.js.map +0 -1
  899. package/lib/handlers/defaultFetchHandler.d.ts +0 -15
  900. package/lib/handlers/defaultFetchHandler.js +0 -38
  901. package/lib/handlers/defaultFetchHandler.js.map +0 -1
  902. package/lib/handlers/headersModifyingFetchHandler.d.ts +0 -8
  903. package/lib/handlers/headersModifyingFetchHandler.js +0 -17
  904. package/lib/handlers/headersModifyingFetchHandler.js.map +0 -1
  905. package/lib/handlers/mappingHandler.d.ts +0 -19
  906. package/lib/handlers/mappingHandler.js +0 -67
  907. package/lib/handlers/mappingHandler.js.map +0 -1
  908. package/lib/handlers/noCorsRetryingFetchHandler.d.ts +0 -48
  909. package/lib/handlers/noCorsRetryingFetchHandler.js +0 -95
  910. package/lib/handlers/noCorsRetryingFetchHandler.js.map +0 -1
  911. package/lib/handlers/persistingHandler.d.ts +0 -14
  912. package/lib/handlers/persistingHandler.js +0 -71
  913. package/lib/handlers/persistingHandler.js.map +0 -1
  914. package/lib/handlers/rateLimitingHandler.d.ts +0 -24
  915. package/lib/handlers/rateLimitingHandler.js +0 -45
  916. package/lib/handlers/rateLimitingHandler.js.map +0 -1
  917. package/lib/handlers/requestStateEmittingHandler.d.ts +0 -41
  918. package/lib/handlers/requestStateEmittingHandler.js +0 -45
  919. package/lib/handlers/requestStateEmittingHandler.js.map +0 -1
  920. package/lib/handlers/responseCachingHandler.d.ts +0 -34
  921. package/lib/handlers/responseCachingHandler.js +0 -109
  922. package/lib/handlers/responseCachingHandler.js.map +0 -1
  923. package/lib/handlers/retryingHandler.d.ts +0 -48
  924. package/lib/handlers/retryingHandler.js +0 -86
  925. package/lib/handlers/retryingHandler.js.map +0 -1
  926. package/lib/handlers/timeoutHandler.d.ts +0 -18
  927. package/lib/handlers/timeoutHandler.js +0 -30
  928. package/lib/handlers/timeoutHandler.js.map +0 -1
  929. package/lib/handlers/utils.d.ts +0 -12
  930. package/lib/handlers/utils.js +0 -19
  931. package/lib/handlers/utils.js.map +0 -1
  932. package/lib/index.d.ts +0 -42
  933. package/lib/index.js +0 -36
  934. package/lib/index.js.map +0 -1
  935. package/lib/legal/legalPrompt.d.ts +0 -20
  936. package/lib/legal/legalPrompt.js +0 -135
  937. package/lib/legal/legalPrompt.js.map +0 -1
  938. package/lib/legal/legalState.d.ts +0 -50
  939. package/lib/legal/legalState.js +0 -163
  940. package/lib/legal/legalState.js.map +0 -1
  941. package/lib/lens/Lens.d.ts +0 -115
  942. package/lib/lens/Lens.js +0 -84
  943. package/lib/lens/Lens.js.map +0 -1
  944. package/lib/lens/LensLaunchData.d.ts +0 -40
  945. package/lib/lens/LensLaunchData.js +0 -37
  946. package/lib/lens/LensLaunchData.js.map +0 -1
  947. package/lib/lens/LensPersistenceStore.d.ts +0 -7
  948. package/lib/lens/LensPersistenceStore.js.map +0 -1
  949. package/lib/lens/LensRepository.d.ts +0 -137
  950. package/lib/lens/LensRepository.js +0 -237
  951. package/lib/lens/LensRepository.js.map +0 -1
  952. package/lib/lens/LensSource.d.ts +0 -43
  953. package/lib/lens/LensSource.js +0 -42
  954. package/lib/lens/LensSource.js.map +0 -1
  955. package/lib/lens/assets/LensAssetRepository.d.ts +0 -99
  956. package/lib/lens/assets/LensAssetRepository.js +0 -184
  957. package/lib/lens/assets/LensAssetRepository.js.map +0 -1
  958. package/lib/lens/assets/LensAssetsProvider.d.ts +0 -27
  959. package/lib/lens/assets/LensAssetsProvider.js +0 -68
  960. package/lib/lens/assets/LensAssetsProvider.js.map +0 -1
  961. package/lib/lens/assets/deviceDependentAssetLoader.d.ts +0 -11
  962. package/lib/lens/assets/deviceDependentAssetLoader.js +0 -59
  963. package/lib/lens/assets/deviceDependentAssetLoader.js.map +0 -1
  964. package/lib/lens/assets/remoteMediaAssetLoaderFactory.d.ts +0 -10
  965. package/lib/lens/assets/remoteMediaAssetLoaderFactory.js +0 -27
  966. package/lib/lens/assets/remoteMediaAssetLoaderFactory.js.map +0 -1
  967. package/lib/lens/assets/staticAssetLoader.d.ts +0 -10
  968. package/lib/lens/assets/staticAssetLoader.js +0 -25
  969. package/lib/lens/assets/staticAssetLoader.js.map +0 -1
  970. package/lib/lens/cameraKitLensSource.d.ts +0 -16
  971. package/lib/lens/cameraKitLensSource.js +0 -59
  972. package/lib/lens/cameraKitLensSource.js.map +0 -1
  973. package/lib/lens-client-interface/exif.d.ts +0 -20
  974. package/lib/lens-client-interface/exif.js +0 -61
  975. package/lib/lens-client-interface/exif.js.map +0 -1
  976. package/lib/lens-client-interface/imagePicker.d.ts +0 -8
  977. package/lib/lens-client-interface/imagePicker.js +0 -128
  978. package/lib/lens-client-interface/imagePicker.js.map +0 -1
  979. package/lib/lens-client-interface/lensClientInterface.d.ts +0 -13
  980. package/lib/lens-client-interface/lensClientInterface.js +0 -30
  981. package/lib/lens-client-interface/lensClientInterface.js.map +0 -1
  982. package/lib/lens-core-module/generated-types.d.ts +0 -469
  983. package/lib/lens-core-module/lensCore.d.ts +0 -43
  984. package/lib/lens-core-module/lensCore.js +0 -59
  985. package/lib/lens-core-module/lensCore.js.map +0 -1
  986. package/lib/lens-core-module/lensCoreError.d.ts +0 -15
  987. package/lib/lens-core-module/lensCoreError.js +0 -43
  988. package/lib/lens-core-module/lensCoreError.js.map +0 -1
  989. package/lib/lens-core-module/loader/bootstrapURLs.d.ts +0 -12
  990. package/lib/lens-core-module/loader/bootstrapURLs.js +0 -48
  991. package/lib/lens-core-module/loader/bootstrapURLs.js.map +0 -1
  992. package/lib/lens-core-module/loader/lensCoreFactory.d.ts +0 -17
  993. package/lib/lens-core-module/loader/lensCoreFactory.js +0 -76
  994. package/lib/lens-core-module/loader/lensCoreFactory.js.map +0 -1
  995. package/lib/lensCoreWasmVersions.d.ts +0 -6
  996. package/lib/lensCoreWasmVersions.js +0 -6
  997. package/lib/lensCoreWasmVersions.js.map +0 -1
  998. package/lib/logger/errorLoggingDecorator.d.ts +0 -9
  999. package/lib/logger/errorLoggingDecorator.js +0 -32
  1000. package/lib/logger/errorLoggingDecorator.js.map +0 -1
  1001. package/lib/logger/logEntries.d.ts +0 -15
  1002. package/lib/logger/logEntries.js +0 -14
  1003. package/lib/logger/logEntries.js.map +0 -1
  1004. package/lib/logger/logger.d.ts +0 -40
  1005. package/lib/logger/logger.js +0 -53
  1006. package/lib/logger/logger.js.map +0 -1
  1007. package/lib/logger/registerLogEntriesSubscriber.d.ts +0 -14
  1008. package/lib/logger/registerLogEntriesSubscriber.js +0 -35
  1009. package/lib/logger/registerLogEntriesSubscriber.js.map +0 -1
  1010. package/lib/media-sources/CameraKitSource.d.ts +0 -126
  1011. package/lib/media-sources/CameraKitSource.js +0 -138
  1012. package/lib/media-sources/CameraKitSource.js.map +0 -1
  1013. package/lib/media-sources/FunctionSource.d.ts +0 -41
  1014. package/lib/media-sources/FunctionSource.js +0 -128
  1015. package/lib/media-sources/FunctionSource.js.map +0 -1
  1016. package/lib/media-sources/ImageSource.d.ts +0 -11
  1017. package/lib/media-sources/ImageSource.js +0 -16
  1018. package/lib/media-sources/ImageSource.js.map +0 -1
  1019. package/lib/media-sources/MediaStreamSource.d.ts +0 -29
  1020. package/lib/media-sources/MediaStreamSource.js +0 -137
  1021. package/lib/media-sources/MediaStreamSource.js.map +0 -1
  1022. package/lib/media-sources/VideoSource.d.ts +0 -25
  1023. package/lib/media-sources/VideoSource.js +0 -22
  1024. package/lib/media-sources/VideoSource.js.map +0 -1
  1025. package/lib/metrics/businessEventsReporter.d.ts +0 -39
  1026. package/lib/metrics/businessEventsReporter.js +0 -195
  1027. package/lib/metrics/businessEventsReporter.js.map +0 -1
  1028. package/lib/metrics/metricsEventTarget.d.ts +0 -41
  1029. package/lib/metrics/metricsEventTarget.js +0 -11
  1030. package/lib/metrics/metricsEventTarget.js.map +0 -1
  1031. package/lib/metrics/operational/Count.d.ts +0 -19
  1032. package/lib/metrics/operational/Count.js +0 -33
  1033. package/lib/metrics/operational/Count.js.map +0 -1
  1034. package/lib/metrics/operational/Histogram.d.ts +0 -17
  1035. package/lib/metrics/operational/Histogram.js +0 -27
  1036. package/lib/metrics/operational/Histogram.js.map +0 -1
  1037. package/lib/metrics/operational/Metric.d.ts +0 -20
  1038. package/lib/metrics/operational/Metric.js +0 -28
  1039. package/lib/metrics/operational/Metric.js.map +0 -1
  1040. package/lib/metrics/operational/Timer.d.ts +0 -94
  1041. package/lib/metrics/operational/Timer.js +0 -108
  1042. package/lib/metrics/operational/Timer.js.map +0 -1
  1043. package/lib/metrics/reporters/reportBenchmarks.d.ts +0 -10
  1044. package/lib/metrics/reporters/reportBenchmarks.js +0 -30
  1045. package/lib/metrics/reporters/reportBenchmarks.js.map +0 -1
  1046. package/lib/metrics/reporters/reportGlobalException.d.ts +0 -26
  1047. package/lib/metrics/reporters/reportGlobalException.js +0 -106
  1048. package/lib/metrics/reporters/reportGlobalException.js.map +0 -1
  1049. package/lib/metrics/reporters/reportHttpMetrics.d.ts +0 -10
  1050. package/lib/metrics/reporters/reportHttpMetrics.js +0 -110
  1051. package/lib/metrics/reporters/reportHttpMetrics.js.map +0 -1
  1052. package/lib/metrics/reporters/reportLegalState.d.ts +0 -15
  1053. package/lib/metrics/reporters/reportLegalState.js +0 -32
  1054. package/lib/metrics/reporters/reportLegalState.js.map +0 -1
  1055. package/lib/metrics/reporters/reportLensAndAssetDownload.d.ts +0 -38
  1056. package/lib/metrics/reporters/reportLensAndAssetDownload.js +0 -92
  1057. package/lib/metrics/reporters/reportLensAndAssetDownload.js.map +0 -1
  1058. package/lib/metrics/reporters/reportLensValidationFailed.d.ts +0 -20
  1059. package/lib/metrics/reporters/reportLensValidationFailed.js +0 -24
  1060. package/lib/metrics/reporters/reportLensValidationFailed.js.map +0 -1
  1061. package/lib/metrics/reporters/reportLensView.d.ts +0 -36
  1062. package/lib/metrics/reporters/reportLensView.js +0 -137
  1063. package/lib/metrics/reporters/reportLensView.js.map +0 -1
  1064. package/lib/metrics/reporters/reportLensWait.d.ts +0 -32
  1065. package/lib/metrics/reporters/reportLensWait.js +0 -60
  1066. package/lib/metrics/reporters/reportLensWait.js.map +0 -1
  1067. package/lib/metrics/reporters/reportPlatformCapabilities.d.ts +0 -12
  1068. package/lib/metrics/reporters/reportPlatformCapabilities.js +0 -19
  1069. package/lib/metrics/reporters/reportPlatformCapabilities.js.map +0 -1
  1070. package/lib/metrics/reporters/reportSessionException.d.ts +0 -17
  1071. package/lib/metrics/reporters/reportSessionException.js +0 -12
  1072. package/lib/metrics/reporters/reportSessionException.js.map +0 -1
  1073. package/lib/metrics/reporters/reportUserSession.d.ts +0 -14
  1074. package/lib/metrics/reporters/reportUserSession.js +0 -66
  1075. package/lib/metrics/reporters/reportUserSession.js.map +0 -1
  1076. package/lib/metrics/reporters/reporters.d.ts +0 -46
  1077. package/lib/metrics/reporters/reporters.js +0 -35
  1078. package/lib/metrics/reporters/reporters.js.map +0 -1
  1079. package/lib/namedErrors.d.ts +0 -124
  1080. package/lib/namedErrors.js +0 -58
  1081. package/lib/namedErrors.js.map +0 -1
  1082. package/lib/observable-operators/unsubscribed.d.ts +0 -12
  1083. package/lib/observable-operators/unsubscribed.js +0 -27
  1084. package/lib/observable-operators/unsubscribed.js.map +0 -1
  1085. package/lib/persistence/ExpiringPersistence.d.ts +0 -21
  1086. package/lib/persistence/ExpiringPersistence.js +0 -71
  1087. package/lib/persistence/ExpiringPersistence.js.map +0 -1
  1088. package/lib/persistence/IndexedDBPersistence.d.ts +0 -47
  1089. package/lib/persistence/IndexedDBPersistence.js +0 -190
  1090. package/lib/persistence/IndexedDBPersistence.js.map +0 -1
  1091. package/lib/persistence/Persistence.d.ts +0 -25
  1092. package/lib/persistence/Persistence.js +0 -10
  1093. package/lib/persistence/Persistence.js.map +0 -1
  1094. package/lib/platform/assertPlatformSupported.d.ts +0 -4
  1095. package/lib/platform/assertPlatformSupported.js +0 -15
  1096. package/lib/platform/assertPlatformSupported.js.map +0 -1
  1097. package/lib/platform/cameraKitUserAgent.d.ts +0 -2
  1098. package/lib/platform/cameraKitUserAgent.js +0 -20
  1099. package/lib/platform/cameraKitUserAgent.js.map +0 -1
  1100. package/lib/platform/platformCapabilities.d.ts +0 -50
  1101. package/lib/platform/platformCapabilities.js +0 -128
  1102. package/lib/platform/platformCapabilities.js.map +0 -1
  1103. package/lib/platform/platformInfo.d.ts +0 -43
  1104. package/lib/platform/platformInfo.js +0 -228
  1105. package/lib/platform/platformInfo.js.map +0 -1
  1106. package/lib/remote-configuration/cofHandler.d.ts +0 -29
  1107. package/lib/remote-configuration/cofHandler.js +0 -115
  1108. package/lib/remote-configuration/cofHandler.js.map +0 -1
  1109. package/lib/remote-configuration/preloadConfiguration.d.ts +0 -7
  1110. package/lib/remote-configuration/preloadConfiguration.js +0 -15
  1111. package/lib/remote-configuration/preloadConfiguration.js.map +0 -1
  1112. package/lib/remote-configuration/remoteConfiguration.d.ts +0 -34
  1113. package/lib/remote-configuration/remoteConfiguration.js +0 -73
  1114. package/lib/remote-configuration/remoteConfiguration.js.map +0 -1
  1115. package/lib/session/CameraKitSession.d.ts +0 -255
  1116. package/lib/session/CameraKitSession.js +0 -440
  1117. package/lib/session/CameraKitSession.js.map +0 -1
  1118. package/lib/session/CameraKitSessionEvents.d.ts +0 -37
  1119. package/lib/session/CameraKitSessionEvents.js +0 -38
  1120. package/lib/session/CameraKitSessionEvents.js.map +0 -1
  1121. package/lib/session/LensKeyboard.d.ts +0 -94
  1122. package/lib/session/LensKeyboard.js +0 -95
  1123. package/lib/session/LensKeyboard.js.map +0 -1
  1124. package/lib/session/LensPerformanceMeasurement.d.ts +0 -57
  1125. package/lib/session/LensPerformanceMeasurement.js +0 -114
  1126. package/lib/session/LensPerformanceMeasurement.js.map +0 -1
  1127. package/lib/session/LensPerformanceMetrics.d.ts +0 -31
  1128. package/lib/session/LensPerformanceMetrics.js +0 -59
  1129. package/lib/session/LensPerformanceMetrics.js.map +0 -1
  1130. package/lib/session/lensState.d.ts +0 -30
  1131. package/lib/session/lensState.js +0 -238
  1132. package/lib/session/lensState.js.map +0 -1
  1133. package/lib/session/sessionState.d.ts +0 -10
  1134. package/lib/session/sessionState.js.map +0 -1
  1135. package/lib/transforms/Transform2D.d.ts +0 -22
  1136. package/lib/transforms/Transform2D.js +0 -19
  1137. package/lib/transforms/Transform2D.js.map +0 -1
  1138. package/lib/utils.d.ts +0 -3
  1139. /package/{lib → dist}/benchmark/webglUtils.js +0 -0
  1140. /package/{lib → dist}/benchmark/webglUtils.js.map +0 -0
  1141. /package/{lib → dist}/clients/lensesClient.js +0 -0
  1142. /package/{lib → dist}/common/date.js +0 -0
  1143. /package/{lib → dist}/common/date.js.map +0 -0
  1144. /package/{lib → dist}/common/getFilename.js +0 -0
  1145. /package/{lib → dist}/common/getFilename.js.map +0 -0
  1146. /package/{lib → dist}/common/memoize.js +0 -0
  1147. /package/{lib → dist}/common/memoize.js.map +0 -0
  1148. /package/{lib → dist}/common/time.js +0 -0
  1149. /package/{lib → dist}/common/time.js.map +0 -0
  1150. /package/{lib → dist}/common/types.js +0 -0
  1151. /package/{lib → dist}/dependency-injection/Injectable.js +0 -0
  1152. /package/{lib → dist}/dependency-injection/types.js +0 -0
  1153. /package/{lib → dist}/generated-proto/blizzard/cameraKitEvents.js +0 -0
  1154. /package/{lib → dist}/generated-proto/blizzard/cameraKitEvents.js.map +0 -0
  1155. /package/{lib → dist}/generated-proto/pb_schema/camera_kit/v3/business_events.js +0 -0
  1156. /package/{lib → dist}/generated-proto/pb_schema/camera_kit/v3/business_events.js.map +0 -0
  1157. /package/{lib → dist}/generated-proto/pb_schema/camera_kit/v3/export.js +0 -0
  1158. /package/{lib → dist}/generated-proto/pb_schema/camera_kit/v3/export.js.map +0 -0
  1159. /package/{lib → dist}/generated-proto/pb_schema/camera_kit/v3/features/remote_api_info.js +0 -0
  1160. /package/{lib → dist}/generated-proto/pb_schema/camera_kit/v3/features/remote_api_info.js.map +0 -0
  1161. /package/{lib → dist}/generated-proto/pb_schema/camera_kit/v3/legal_prompt.js +0 -0
  1162. /package/{lib → dist}/generated-proto/pb_schema/camera_kit/v3/legal_prompt.js.map +0 -0
  1163. /package/{lib → dist}/generated-proto/pb_schema/camera_kit/v3/lens.js +0 -0
  1164. /package/{lib → dist}/generated-proto/pb_schema/camera_kit/v3/lens.js.map +0 -0
  1165. /package/{lib → dist}/generated-proto/pb_schema/camera_kit/v3/operational_metrics.js +0 -0
  1166. /package/{lib → dist}/generated-proto/pb_schema/camera_kit/v3/operational_metrics.js.map +0 -0
  1167. /package/{lib → dist}/generated-proto/pb_schema/camera_kit/v3/ranking.js +0 -0
  1168. /package/{lib → dist}/generated-proto/pb_schema/camera_kit/v3/ranking.js.map +0 -0
  1169. /package/{lib → dist}/generated-proto/pb_schema/camera_kit/v3/service.js +0 -0
  1170. /package/{lib → dist}/generated-proto/pb_schema/camera_kit/v3/service.js.map +0 -0
  1171. /package/{lib → dist}/generated-proto/pb_schema/cdp/cof/benchmark.js +0 -0
  1172. /package/{lib → dist}/generated-proto/pb_schema/cdp/cof/benchmark.js.map +0 -0
  1173. /package/{lib → dist}/generated-proto/pb_schema/cdp/cof/benchmark_name.js +0 -0
  1174. /package/{lib → dist}/generated-proto/pb_schema/cdp/cof/benchmark_name.js.map +0 -0
  1175. /package/{lib → dist}/generated-proto/pb_schema/cdp/cof/circumstance_service.js +0 -0
  1176. /package/{lib → dist}/generated-proto/pb_schema/cdp/cof/circumstance_service.js.map +0 -0
  1177. /package/{lib → dist}/generated-proto/pb_schema/cdp/cof/config_request.js +0 -0
  1178. /package/{lib → dist}/generated-proto/pb_schema/cdp/cof/config_request.js.map +0 -0
  1179. /package/{lib → dist}/generated-proto/pb_schema/cdp/cof/config_response.js +0 -0
  1180. /package/{lib → dist}/generated-proto/pb_schema/cdp/cof/config_response.js.map +0 -0
  1181. /package/{lib → dist}/generated-proto/pb_schema/cdp/cof/config_result.js +0 -0
  1182. /package/{lib → dist}/generated-proto/pb_schema/cdp/cof/config_result.js.map +0 -0
  1183. /package/{lib → dist}/generated-proto/pb_schema/cdp/cof/debug_info.js +0 -0
  1184. /package/{lib → dist}/generated-proto/pb_schema/cdp/cof/debug_info.js.map +0 -0
  1185. /package/{lib → dist}/generated-proto/pb_schema/cdp/cof/namespace.js +0 -0
  1186. /package/{lib → dist}/generated-proto/pb_schema/cdp/cof/namespace.js.map +0 -0
  1187. /package/{lib → dist}/generated-proto/pb_schema/common/ruid.js +0 -0
  1188. /package/{lib → dist}/generated-proto/pb_schema/common/ruid.js.map +0 -0
  1189. /package/{lib → dist}/generated-proto/pb_schema/common/value.js +0 -0
  1190. /package/{lib → dist}/generated-proto/pb_schema/common/value.js.map +0 -0
  1191. /package/{lib → dist}/generated-proto/pb_schema/google/protobuf/any.js +0 -0
  1192. /package/{lib → dist}/generated-proto/pb_schema/google/protobuf/any.js.map +0 -0
  1193. /package/{lib → dist}/generated-proto/pb_schema/google/protobuf/timestamp.js +0 -0
  1194. /package/{lib → dist}/generated-proto/pb_schema/google/protobuf/timestamp.js.map +0 -0
  1195. /package/{lib → dist}/generated-proto/pb_schema/google/protobuf/wrappers.js +0 -0
  1196. /package/{lib → dist}/generated-proto/pb_schema/google/protobuf/wrappers.js.map +0 -0
  1197. /package/{lib → dist}/generated-proto/pb_schema/lenses/geocircle.js +0 -0
  1198. /package/{lib → dist}/generated-proto/pb_schema/lenses/geocircle.js.map +0 -0
  1199. /package/{lib → dist}/generated-proto/pb_schema/lenses/geopoint.js +0 -0
  1200. /package/{lib → dist}/generated-proto/pb_schema/lenses/geopoint.js.map +0 -0
  1201. /package/{lib → dist}/generated-proto/pb_schema/lenses/launch_params.js +0 -0
  1202. /package/{lib → dist}/generated-proto/pb_schema/lenses/launch_params.js.map +0 -0
  1203. /package/{lib → dist}/generated-proto/pb_schema/lenses/launchdata.js +0 -0
  1204. /package/{lib → dist}/generated-proto/pb_schema/lenses/launchdata.js.map +0 -0
  1205. /package/{lib → dist}/generated-proto/pb_schema/lenses/lures.js +0 -0
  1206. /package/{lib → dist}/generated-proto/pb_schema/lenses/lures.js.map +0 -0
  1207. /package/{lib → dist}/generated-proto/pb_schema/lenses/persistent_store.js +0 -0
  1208. /package/{lib → dist}/generated-proto/pb_schema/lenses/persistent_store.js.map +0 -0
  1209. /package/{lib → dist}/generated-proto/pb_schema/lenses/remote_api/remote_api_service.js +0 -0
  1210. /package/{lib → dist}/generated-proto/pb_schema/lenses/remote_api/remote_api_service.js.map +0 -0
  1211. /package/{lib → dist}/generated-proto/pb_schema/lenses/snappable.js +0 -0
  1212. /package/{lib → dist}/generated-proto/pb_schema/lenses/snappable.js.map +0 -0
  1213. /package/{lib → dist}/generated-proto/pb_schema/lenses/user_data.js +0 -0
  1214. /package/{lib → dist}/generated-proto/pb_schema/lenses/user_data.js.map +0 -0
  1215. /package/{lib → dist}/lens/LensPersistenceStore.js +0 -0
  1216. /package/{lib → dist}/lens-core-module/generated-types.js +0 -0
  1217. /package/{lib → dist}/lens-core-module/generated-types.js.map +0 -0
  1218. /package/{lib → dist}/session/sessionState.js +0 -0
  1219. /package/{lib → dist}/utils.js +0 -0
  1220. /package/{lib → dist}/utils.js.map +0 -0
package/LICENSE.md CHANGED
@@ -13,9 +13,9 @@ If you no longer want to be a party to these terms or if you do not agree to all
13
13
 
14
14
  The following 3rd-party software packages may be used by or distributed with Camera Kit Web. Any information relevant to third-party vendors listed below are collected using common, reasonable means.
15
15
 
16
- Date generated: 2024-1-29
16
+ Date generated: 2024-4-8
17
17
 
18
- Revision ID: 43449220010a7959579aeb407259518c41499423
18
+ Revision ID: feaa35a3dc391eb2ebdd6861e7a0ca19da2f100e
19
19
 
20
20
  ================================================================================
21
21
  ================================================================================
@@ -31,7 +31,7 @@ Revision ID: 43449220010a7959579aeb407259518c41499423
31
31
  ================================================================================
32
32
 
33
33
  - @improbable-eng/grpc-web (0.15.0) [Apache-2.0]
34
- - @snap/state-management (^0.14.0) [unknown]
34
+ - @snap/state-management (^0.17.0) [No licenses found]
35
35
  - browser-fs-access (0.31.2) [Apache-2.0]
36
36
  - browser-headers (0.4.1) [Apache-2.0]
37
37
  - long (4.0.0) [Apache-2.0]
@@ -69,16 +69,13 @@ See the License for the specific language governing permissions and limitations
69
69
 
70
70
 
71
71
  --------------------------------------------------------------------------------
72
- Package Title: @snap/state-management (^0.14.0)
72
+ Package Title: @snap/state-management (^0.17.0)
73
73
 
74
74
  Package Depth: Direct
75
75
  --------------------------------------------------------------------------------
76
76
 
77
77
  * Declared Licenses *
78
- unknown
79
-
80
-
81
- No License Headers Found
78
+ No licenses found
82
79
 
83
80
 
84
81
  --------------------------------------------------------------------------------
@@ -2963,7 +2960,7 @@ This is a catch-all license used when we find many different proprietary license
2963
2960
  --------------------------------------------------------------------------------
2964
2961
  --------------------------------------------------------------------------------
2965
2962
 
2966
- Report Generated by FOSSA on 2024-1-29
2963
+ Report Generated by FOSSA on 2024-4-8
2967
2964
 
2968
2965
  --------------------------------------------------------------------------------
2969
2966
  Package Title: @nanosvg
@@ -4586,14 +4583,14 @@ Package Locator:
4586
4583
  --------------------------------------------------------------------------------
4587
4584
  * Declared Licenses *
4588
4585
  This repository uses 2 different licenses :
4589
- - all files in the `lib` directory use a BSD 2-Clause license
4586
+ - all files in the `dist` directory use a BSD 2-Clause license
4590
4587
  - all other files use a GPLv2 license, unless explicitly stated otherwise
4591
4588
 
4592
4589
  Relevant license is reminded at the top of each source file,
4593
4590
  and with presence of COPYING or LICENSE file in associated directories.
4594
4591
 
4595
4592
  This model is selected to emphasize that
4596
- files in the `lib` directory are designed to be included into 3rd party applications,
4593
+ files in the `dist` directory are designed to be included into 3rd party applications,
4597
4594
  while all other files, in `programs`, `tests` or `examples`,
4598
4595
  receive more limited attention and support for such scenario.
4599
4596
 
@@ -4934,3906 +4931,175 @@ Package Title: @freetype
4934
4931
  Package Locator:
4935
4932
  --------------------------------------------------------------------------------
4936
4933
  * Declared Licenses *
4937
- FREETYPE LICENSES
4938
- -----------------
4939
-
4940
- The FreeType 2 font engine is copyrighted work and cannot be used
4941
- legally without a software license. In order to make this project
4942
- usable to a vast majority of developers, we distribute it under two
4943
- mutually exclusive open-source licenses.
4944
-
4945
- This means that *you* must choose *one* of the two licenses described
4946
- below, then obey all its terms and conditions when using FreeType 2 in
4947
- any of your projects or products.
4948
-
4949
- - The FreeType License, found in the file `docs/FTL.TXT`, which is
4950
- similar to the original BSD license *with* an advertising clause
4951
- that forces you to explicitly cite the FreeType project in your
4952
- product's documentation. All details are in the license file.
4953
- This license is suited to products which don't use the GNU General
4954
- Public License.
4955
-
4956
- Note that this license is compatible to the GNU General Public
4957
- License version 3, but not version 2.
4958
-
4959
- - The GNU General Public License version 2, found in
4960
- `docs/GPLv2.TXT` (any later version can be used also), for
4961
- programs which already use the GPL. Note that the FTL is
4962
- incompatible with GPLv2 due to its advertisement clause.
4963
-
4964
- The contributed BDF and PCF drivers come with a license similar to
4965
- that of the X Window System. It is compatible to the above two
4966
- licenses (see files `src/bdf/README` and `src/pcf/README`). The same
4967
- holds for the source code files `src/base/fthash.c` and
4968
- `include/freetype/internal/fthash.h`; they wer part of the BDF driver
4969
- in earlier FreeType versions.
4970
-
4971
- The gzip module uses the zlib license (see `src/gzip/zlib.h`) which
4972
- too is compatible to the above two licenses.
4973
-
4974
- The MD5 checksum support (only used for debugging in development
4975
- builds) is in the public domain.
4976
-
4977
-
4978
- --- end of LICENSE.TXT ---
4979
-
4980
- --------------------------------------------------------------------------------
4981
- Package Title: @filesystem
4982
- Package Locator:
4983
- --------------------------------------------------------------------------------
4984
- * Declared Licenses *
4985
- Copyright (c) 2018, Steffen Schümann <s.schuemann@pobox.com>
4986
-
4987
- Permission is hereby granted, free of charge, to any person obtaining a copy
4988
- of this software and associated documentation files (the "Software"), to deal
4989
- in the Software without restriction, including without limitation the rights
4990
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
4991
- copies of the Software, and to permit persons to whom the Software is
4992
- furnished to do so, subject to the following conditions:
4993
-
4994
- The above copyright notice and this permission notice shall be included in all
4995
- copies or substantial portions of the Software.
4996
-
4997
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
4998
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
4999
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
5000
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
5001
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
5002
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
5003
- SOFTWARE.
5004
-
5005
- --------------------------------------------------------------------------------
5006
- Package Title: @bullet3
5007
- Package Locator:
5008
- --------------------------------------------------------------------------------
5009
- * Declared Licenses *
5010
-
5011
- The files in this repository are licensed under the zlib license, except for the files under 'Extras' and examples/ThirdPartyLibs.
5012
-
5013
- Bullet Continuous Collision Detection and Physics Library
5014
- http://bulletphysics.org
5015
-
5016
- This software is provided 'as-is', without any express or implied warranty.
5017
- In no event will the authors be held liable for any damages arising from the use of this software.
5018
- Permission is granted to anyone to use this software for any purpose,
5019
- including commercial applications, and to alter it and redistribute it freely,
5020
- subject to the following restrictions:
5021
-
5022
- 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
5023
- 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
5024
- 3. This notice may not be removed or altered from any source distribution.
5025
-
5026
- --------------------------------------------------------------------------------
5027
- Package Title: @maratyszcza-fxdiv
5028
- Package Locator:
5029
- --------------------------------------------------------------------------------
5030
- * Declared Licenses *
5031
- The MIT License (MIT)
5032
-
5033
- Copyright (c) 2017 Facebook Inc.
5034
- Copyright (c) 2016-2017 Marat Dukhan
5035
-
5036
- 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:
5037
-
5038
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
5039
-
5040
- 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.
5041
-
5042
- --------------------------------------------------------------------------------
5043
- Package Title: @draco
5044
- Package Locator:
5045
- --------------------------------------------------------------------------------
5046
- * Declared Licenses *
5047
- Apache License
5048
- Version 2.0, January 2004
5049
- http://www.apache.org/licenses/
5050
-
5051
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
5052
-
5053
- 1. Definitions.
5054
-
5055
- "License" shall mean the terms and conditions for use, reproduction,
5056
- and distribution as defined by Sections 1 through 9 of this document.
5057
-
5058
- "Licensor" shall mean the copyright owner or entity authorized by
5059
- the copyright owner that is granting the License.
5060
-
5061
- "Legal Entity" shall mean the union of the acting entity and all
5062
- other entities that control, are controlled by, or are under common
5063
- control with that entity. For the purposes of this definition,
5064
- "control" means (i) the power, direct or indirect, to cause the
5065
- direction or management of such entity, whether by contract or
5066
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
5067
- outstanding shares, or (iii) beneficial ownership of such entity.
5068
-
5069
- "You" (or "Your") shall mean an individual or Legal Entity
5070
- exercising permissions granted by this License.
4934
+ The FreeType Project LICENSE
4935
+ ----------------------------
5071
4936
 
5072
- "Source" form shall mean the preferred form for making modifications,
5073
- including but not limited to software source code, documentation
5074
- source, and configuration files.
4937
+ 2006-Jan-27
5075
4938
 
5076
- "Object" form shall mean any form resulting from mechanical
5077
- transformation or translation of a Source form, including but
5078
- not limited to compiled object code, generated documentation,
5079
- and conversions to other media types.
4939
+ Copyright 1996-2002, 2006 by
4940
+ David Turner, Robert Wilhelm, and Werner Lemberg
5080
4941
 
5081
- "Work" shall mean the work of authorship, whether in Source or
5082
- Object form, made available under the License, as indicated by a
5083
- copyright notice that is included in or attached to the work
5084
- (an example is provided in the Appendix below).
5085
4942
 
5086
- "Derivative Works" shall mean any work, whether in Source or Object
5087
- form, that is based on (or derived from) the Work and for which the
5088
- editorial revisions, annotations, elaborations, or other modifications
5089
- represent, as a whole, an original work of authorship. For the purposes
5090
- of this License, Derivative Works shall not include works that remain
5091
- separable from, or merely link (or bind by name) to the interfaces of,
5092
- the Work and Derivative Works thereof.
5093
4943
 
5094
- "Contribution" shall mean any work of authorship, including
5095
- the original version of the Work and any modifications or additions
5096
- to that Work or Derivative Works thereof, that is intentionally
5097
- submitted to Licensor for inclusion in the Work by the copyright owner
5098
- or by an individual or Legal Entity authorized to submit on behalf of
5099
- the copyright owner. For the purposes of this definition, "submitted"
5100
- means any form of electronic, verbal, or written communication sent
5101
- to the Licensor or its representatives, including but not limited to
5102
- communication on electronic mailing lists, source code control systems,
5103
- and issue tracking systems that are managed by, or on behalf of, the
5104
- Licensor for the purpose of discussing and improving the Work, but
5105
- excluding communication that is conspicuously marked or otherwise
5106
- designated in writing by the copyright owner as "Not a Contribution."
4944
+ Introduction
4945
+ ============
5107
4946
 
5108
- "Contributor" shall mean Licensor and any individual or Legal Entity
5109
- on behalf of whom a Contribution has been received by Licensor and
5110
- subsequently incorporated within the Work.
4947
+ The FreeType Project is distributed in several archive packages;
4948
+ some of them may contain, in addition to the FreeType font engine,
4949
+ various tools and contributions which rely on, or relate to, the
4950
+ FreeType Project.
5111
4951
 
5112
- 2. Grant of Copyright License. Subject to the terms and conditions of
5113
- this License, each Contributor hereby grants to You a perpetual,
5114
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
5115
- copyright license to reproduce, prepare Derivative Works of,
5116
- publicly display, publicly perform, sublicense, and distribute the
5117
- Work and such Derivative Works in Source or Object form.
4952
+ This license applies to all files found in such packages, and
4953
+ which do not fall under their own explicit license. The license
4954
+ affects thus the FreeType font engine, the test programs,
4955
+ documentation and makefiles, at the very least.
5118
4956
 
5119
- 3. Grant of Patent License. Subject to the terms and conditions of
5120
- this License, each Contributor hereby grants to You a perpetual,
5121
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
5122
- (except as stated in this section) patent license to make, have made,
5123
- use, offer to sell, sell, import, and otherwise transfer the Work,
5124
- where such license applies only to those patent claims licensable
5125
- by such Contributor that are necessarily infringed by their
5126
- Contribution(s) alone or by combination of their Contribution(s)
5127
- with the Work to which such Contribution(s) was submitted. If You
5128
- institute patent litigation against any entity (including a
5129
- cross-claim or counterclaim in a lawsuit) alleging that the Work
5130
- or a Contribution incorporated within the Work constitutes direct
5131
- or contributory patent infringement, then any patent licenses
5132
- granted to You under this License for that Work shall terminate
5133
- as of the date such litigation is filed.
4957
+ This license was inspired by the BSD, Artistic, and IJG
4958
+ (Independent JPEG Group) licenses, which all encourage inclusion
4959
+ and use of free software in commercial and freeware products
4960
+ alike. As a consequence, its main points are that:
5134
4961
 
5135
- 4. Redistribution. You may reproduce and distribute copies of the
5136
- Work or Derivative Works thereof in any medium, with or without
5137
- modifications, and in Source or Object form, provided that You
5138
- meet the following conditions:
4962
+ o We don't promise that this software works. However, we will be
4963
+ interested in any kind of bug reports. (`as is' distribution)
5139
4964
 
5140
- (a) You must give any other recipients of the Work or
5141
- Derivative Works a copy of this License; and
4965
+ o You can use this software for whatever you want, in parts or
4966
+ full form, without having to pay us. (`royalty-free' usage)
5142
4967
 
5143
- (b) You must cause any modified files to carry prominent notices
5144
- stating that You changed the files; and
4968
+ o You may not pretend that you wrote this software. If you use
4969
+ it, or only parts of it, in a program, you must acknowledge
4970
+ somewhere in your documentation that you have used the
4971
+ FreeType code. (`credits')
5145
4972
 
5146
- (c) You must retain, in the Source form of any Derivative Works
5147
- that You distribute, all copyright, patent, trademark, and
5148
- attribution notices from the Source form of the Work,
5149
- excluding those notices that do not pertain to any part of
5150
- the Derivative Works; and
4973
+ We specifically permit and encourage the inclusion of this
4974
+ software, with or without modifications, in commercial products.
4975
+ We disclaim all warranties covering The FreeType Project and
4976
+ assume no liability related to The FreeType Project.
5151
4977
 
5152
- (d) If the Work includes a "NOTICE" text file as part of its
5153
- distribution, then any Derivative Works that You distribute must
5154
- include a readable copy of the attribution notices contained
5155
- within such NOTICE file, excluding those notices that do not
5156
- pertain to any part of the Derivative Works, in at least one
5157
- of the following places: within a NOTICE text file distributed
5158
- as part of the Derivative Works; within the Source form or
5159
- documentation, if provided along with the Derivative Works; or,
5160
- within a display generated by the Derivative Works, if and
5161
- wherever such third-party notices normally appear. The contents
5162
- of the NOTICE file are for informational purposes only and
5163
- do not modify the License. You may add Your own attribution
5164
- notices within Derivative Works that You distribute, alongside
5165
- or as an addendum to the NOTICE text from the Work, provided
5166
- that such additional attribution notices cannot be construed
5167
- as modifying the License.
5168
4978
 
5169
- You may add Your own copyright statement to Your modifications and
5170
- may provide additional or different license terms and conditions
5171
- for use, reproduction, or distribution of Your modifications, or
5172
- for any such Derivative Works as a whole, provided Your use,
5173
- reproduction, and distribution of the Work otherwise complies with
5174
- the conditions stated in this License.
4979
+ Finally, many people asked us for a preferred form for a
4980
+ credit/disclaimer to use in compliance with this license. We thus
4981
+ encourage you to use the following text:
5175
4982
 
5176
- 5. Submission of Contributions. Unless You explicitly state otherwise,
5177
- any Contribution intentionally submitted for inclusion in the Work
5178
- by You to the Licensor shall be under the terms and conditions of
5179
- this License, without any additional terms or conditions.
5180
- Notwithstanding the above, nothing herein shall supersede or modify
5181
- the terms of any separate license agreement you may have executed
5182
- with Licensor regarding such Contributions.
4983
+ """
4984
+ Portions of this software are copyright © <year> The FreeType
4985
+ Project (www.freetype.org). All rights reserved.
4986
+ """
5183
4987
 
5184
- 6. Trademarks. This License does not grant permission to use the trade
5185
- names, trademarks, service marks, or product names of the Licensor,
5186
- except as required for reasonable and customary use in describing the
5187
- origin of the Work and reproducing the content of the NOTICE file.
4988
+ Please replace <year> with the value from the FreeType version you
4989
+ actually use.
5188
4990
 
5189
- 7. Disclaimer of Warranty. Unless required by applicable law or
5190
- agreed to in writing, Licensor provides the Work (and each
5191
- Contributor provides its Contributions) on an "AS IS" BASIS,
5192
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
5193
- implied, including, without limitation, any warranties or conditions
5194
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
5195
- PARTICULAR PURPOSE. You are solely responsible for determining the
5196
- appropriateness of using or redistributing the Work and assume any
5197
- risks associated with Your exercise of permissions under this License.
5198
4991
 
5199
- 8. Limitation of Liability. In no event and under no legal theory,
5200
- whether in tort (including negligence), contract, or otherwise,
5201
- unless required by applicable law (such as deliberate and grossly
5202
- negligent acts) or agreed to in writing, shall any Contributor be
5203
- liable to You for damages, including any direct, indirect, special,
5204
- incidental, or consequential damages of any character arising as a
5205
- result of this License or out of the use or inability to use the
5206
- Work (including but not limited to damages for loss of goodwill,
5207
- work stoppage, computer failure or malfunction, or any and all
5208
- other commercial damages or losses), even if such Contributor
5209
- has been advised of the possibility of such damages.
4992
+ Legal Terms
4993
+ ===========
5210
4994
 
5211
- 9. Accepting Warranty or Additional Liability. While redistributing
5212
- the Work or Derivative Works thereof, You may choose to offer,
5213
- and charge a fee for, acceptance of support, warranty, indemnity,
5214
- or other liability obligations and/or rights consistent with this
5215
- License. However, in accepting such obligations, You may act only
5216
- on Your own behalf and on Your sole responsibility, not on behalf
5217
- of any other Contributor, and only if You agree to indemnify,
5218
- defend, and hold each Contributor harmless for any liability
5219
- incurred by, or claims asserted against, such Contributor by reason
5220
- of your accepting any such warranty or additional liability.
4995
+ 0. Definitions
4996
+ --------------
5221
4997
 
5222
- END OF TERMS AND CONDITIONS
4998
+ Throughout this license, the terms `package', `FreeType Project',
4999
+ and `FreeType archive' refer to the set of files originally
5000
+ distributed by the authors (David Turner, Robert Wilhelm, and
5001
+ Werner Lemberg) as the `FreeType Project', be they named as alpha,
5002
+ beta or final release.
5003
+
5004
+ `You' refers to the licensee, or person using the project, where
5005
+ `using' is a generic term including compiling the project's source
5006
+ code as well as linking it to form a `program' or `executable'.
5007
+ This program is referred to as `a program using the FreeType
5008
+ engine'.
5009
+
5010
+ This license applies to all files distributed in the original
5011
+ FreeType Project, including all source code, binaries and
5012
+ documentation, unless otherwise stated in the file in its
5013
+ original, unmodified form as distributed in the original archive.
5014
+ If you are unsure whether or not a particular file is covered by
5015
+ this license, you must contact us to verify this.
5016
+
5017
+ The FreeType Project is copyright (C) 1996-2000 by David Turner,
5018
+ Robert Wilhelm, and Werner Lemberg. All rights reserved except as
5019
+ specified below.
5020
+
5021
+ 1. No Warranty
5022
+ --------------
5223
5023
 
5224
- APPENDIX: How to apply the Apache License to your work.
5024
+ THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY
5025
+ KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
5026
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
5027
+ PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS
5028
+ BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO
5029
+ USE, OF THE FREETYPE PROJECT.
5225
5030
 
5226
- To apply the Apache License to your work, attach the following
5227
- boilerplate notice, with the fields enclosed by brackets "[]"
5228
- replaced with your own identifying information. (Don't include
5229
- the brackets!) The text should be enclosed in the appropriate
5230
- comment syntax for the file format. We also recommend that a
5231
- file or class name and description of purpose be included on the
5232
- same "printed page" as the copyright notice for easier
5233
- identification within third-party archives.
5031
+ 2. Redistribution
5032
+ -----------------
5234
5033
 
5235
- Copyright [yyyy] [name of copyright owner]
5034
+ This license grants a worldwide, royalty-free, perpetual and
5035
+ irrevocable right and license to use, execute, perform, compile,
5036
+ display, copy, create derivative works of, distribute and
5037
+ sublicense the FreeType Project (in both source and object code
5038
+ forms) and derivative works thereof for any purpose; and to
5039
+ authorize others to exercise some or all of the rights granted
5040
+ herein, subject to the following conditions:
5041
+
5042
+ o Redistribution of source code must retain this license file
5043
+ (`FTL.TXT') unaltered; any additions, deletions or changes to
5044
+ the original files must be clearly indicated in accompanying
5045
+ documentation. The copyright notices of the unaltered,
5046
+ original files must be preserved in all copies of source
5047
+ files.
5048
+
5049
+ o Redistribution in binary form must provide a disclaimer that
5050
+ states that the software is based in part of the work of the
5051
+ FreeType Team, in the distribution documentation. We also
5052
+ encourage you to put an URL to the FreeType web page in your
5053
+ documentation, though this isn't mandatory.
5054
+
5055
+ These conditions apply to any software derived from or based on
5056
+ the FreeType Project, not just the unmodified files. If you use
5057
+ our work, you must acknowledge us. However, no fee need be paid
5058
+ to us.
5059
+
5060
+ 3. Advertising
5061
+ --------------
5236
5062
 
5237
- Licensed under the Apache License, Version 2.0 (the "License");
5238
- you may not use this file except in compliance with the License.
5239
- You may obtain a copy of the License at
5063
+ Neither the FreeType authors and contributors nor you shall use
5064
+ the name of the other for commercial, advertising, or promotional
5065
+ purposes without specific prior written permission.
5240
5066
 
5241
- http://www.apache.org/licenses/LICENSE-2.0
5067
+ We suggest, but do not require, that you use one or more of the
5068
+ following phrases to refer to this software in your documentation
5069
+ or advertising materials: `FreeType Project', `FreeType Engine',
5070
+ `FreeType library', or `FreeType Distribution'.
5242
5071
 
5243
- Unless required by applicable law or agreed to in writing, software
5244
- distributed under the License is distributed on an "AS IS" BASIS,
5245
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
5246
- See the License for the specific language governing permissions and
5247
- limitations under the License.
5248
-
5249
- --------------------------------------------------------------------------------
5250
- Files: docs/assets/js/ASCIIMathML.js
5251
-
5252
- Copyright (c) 2014 Peter Jipsen and other ASCIIMathML.js contributors
5253
-
5254
- Permission is hereby granted, free of charge, to any person obtaining a copy
5255
- of this software and associated documentation files (the "Software"), to deal
5256
- in the Software without restriction, including without limitation the rights
5257
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
5258
- copies of the Software, and to permit persons to whom the Software is
5259
- furnished to do so, subject to the following conditions:
5260
-
5261
- The above copyright notice and this permission notice shall be included in
5262
- all copies or substantial portions of the Software.
5263
-
5264
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
5265
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
5266
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
5267
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
5268
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
5269
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
5270
- THE SOFTWARE.
5271
-
5272
- --------------------------------------------------------------------------------
5273
- Files: docs/assets/css/pygments/*
5274
-
5275
- This is free and unencumbered software released into the public domain.
5276
-
5277
- Anyone is free to copy, modify, publish, use, compile, sell, or
5278
- distribute this software, either in source code form or as a compiled
5279
- binary, for any purpose, commercial or non-commercial, and by any
5280
- means.
5281
-
5282
- In jurisdictions that recognize copyright laws, the author or authors
5283
- of this software dedicate any and all copyright interest in the
5284
- software to the public domain. We make this dedication for the benefit
5285
- of the public at large and to the detriment of our heirs and
5286
- successors. We intend this dedication to be an overt act of
5287
- relinquishment in perpetuity of all present and future rights to this
5288
- software under copyright law.
5289
-
5290
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
5291
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
5292
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
5293
- IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
5294
- OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
5295
- ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
5296
- OTHER DEALINGS IN THE SOFTWARE.
5297
-
5298
- For more information, please refer to <http://unlicense.org>
5299
-
5300
- --------------------------------------------------------------------------------
5301
- Package Title: @NE10
5302
- Package Locator:
5303
- --------------------------------------------------------------------------------
5304
- * Declared Licenses *
5305
- /*
5306
- * Copyright 2012-16 ARM Limited and Contributors.
5307
- * All rights reserved.
5308
- *
5309
- * Redistribution and use in source and binary forms, with or without
5310
- * modification, are permitted provided that the following conditions are met:
5311
- * * Redistributions of source code must retain the above copyright
5312
- * notice, this list of conditions and the following disclaimer.
5313
- * * Redistributions in binary form must reproduce the above copyright
5314
- * notice, this list of conditions and the following disclaimer in the
5315
- * documentation and/or other materials provided with the distribution.
5316
- * * Neither the name of ARM Limited nor the
5317
- * names of its contributors may be used to endorse or promote products
5318
- * derived from this software without specific prior written permission.
5319
- *
5320
- * THIS SOFTWARE IS PROVIDED BY ARM LIMITED AND CONTRIBUTORS "AS IS" AND
5321
- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
5322
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
5323
- * DISCLAIMED. IN NO EVENT SHALL ARM LIMITED AND CONTRIBUTORS BE LIABLE FOR ANY
5324
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
5325
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
5326
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
5327
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
5328
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
5329
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
5330
- */
5331
-
5332
- /*
5333
- * See: http://opensource.org/licenses/BSD-3-Clause for template
5334
- */
5335
-
5336
- --------------------------------------------------------------------------------
5337
- Package Title: @simde
5338
- Package Locator:
5339
- --------------------------------------------------------------------------------
5340
- * Declared Licenses *
5341
- Copyright (c) 2017 Evan Nemerson <evan@nemerson.com>
5342
-
5343
- Permission is hereby granted, free of charge, to any person obtaining
5344
- a copy of this software and associated documentation files (the
5345
- "Software"), to deal in the Software without restriction, including
5346
- without limitation the rights to use, copy, modify, merge, publish,
5347
- distribute, sublicense, and/or sell copies of the Software, and to
5348
- permit persons to whom the Software is furnished to do so, subject to
5349
- the following conditions:
5350
-
5351
- The above copyright notice and this permission notice shall be
5352
- included in all copies or substantial portions of the Software.
5353
-
5354
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
5355
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
5356
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
5357
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
5358
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
5359
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
5360
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
5361
-
5362
- --------------------------------------------------------------------------------
5363
- Package Title: @toon
5364
- Package Locator:
5365
- --------------------------------------------------------------------------------
5366
- * Declared Licenses *
5367
- Copyright (c) 2005--2013, Tom Drummond, Edward Rosten, Gerhard
5368
- Reitmayr, Georg Klein, Qi Pan
5369
- All rights reserved.
5370
-
5371
- Redistribution and use in source and binary forms, with or without
5372
- modification, are permitted provided that the following conditions
5373
- are met:
5374
- 1. Redistributions of source code must retain the above copyright
5375
- notice, this list of conditions and the following disclaimer.
5376
- 2. Redistributions in binary form must reproduce the above copyright
5377
- notice, this list of conditions and the following disclaimer in the
5378
- documentation and/or other materials provided with the distribution.
5379
-
5380
- THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND OTHER CONTRIBUTORS ``AS IS''
5381
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
5382
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
5383
- ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR OTHER CONTRIBUTORS BE
5384
- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
5385
- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
5386
- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
5387
- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
5388
- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
5389
- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
5390
- POSSIBILITY OF SUCH DAMAGE.
5391
-
5392
-
5393
- --------------------------------------------------------------------------------
5394
- Package Title: @ctti
5395
- Package Locator:
5396
- --------------------------------------------------------------------------------
5397
- * Declared Licenses *
5398
- The MIT License
5399
-
5400
- Copyright (c) 2015 Manuel Sánchez
5401
-
5402
- Permission is hereby granted, free of charge, to any person obtaining a copy
5403
- of this software and associated documentation files (the "Software"), to deal
5404
- in the Software without restriction, including without limitation the rights
5405
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
5406
- copies of the Software, and to permit persons to whom the Software is
5407
- furnished to do so, subject to the following conditions:
5408
-
5409
- The above copyright notice and this permission notice shall be included in
5410
- all copies or substantial portions of the Software.
5411
-
5412
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
5413
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
5414
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
5415
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
5416
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
5417
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
5418
- THE SOFTWARE.
5419
- --------------------------------------------------------------------------------
5420
- Package Title: @arm_neon_2_x86_sse
5421
- Package Locator:
5422
- --------------------------------------------------------------------------------
5423
- * Declared Licenses *
5424
- created by Victoria Zhislina, the Senior Application Engineer, Intel Corporation, victoria.zhislina@intel.com
5425
-
5426
- *** Copyright (C) 2012-2016 Intel Corporation. All rights reserved.
5427
-
5428
- IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
5429
-
5430
- By downloading, copying, installing or using the software you agree to this license.
5431
- If you do not agree to this license, do not download, install, copy or use the software.
5432
-
5433
- License Agreement
5434
- Redistribution and use in source and binary forms, with or without modification,
5435
- are permitted provided that the following conditions are met:
5436
-
5437
- * Redistributions of source code must retain the above copyright notice,
5438
- this list of conditions and the following disclaimer.
5439
-
5440
- * The name of the copyright holders may not be used to endorse or promote products
5441
- derived from this software without specific prior written permission.
5442
-
5443
- This software is provided by the copyright holders and contributors "as is" and
5444
- any express or implied warranties, including, but not limited to, the implied
5445
- warranties of merchantability and fitness for a particular purpose are disclaimed.
5446
- In no event shall the Intel Corporation or contributors be liable for any direct,
5447
- indirect, incidental, special, exemplary, or consequential damages
5448
- (including, but not limited to, procurement of substitute goods or services;
5449
- loss of use, data, or profits; or business interruption) however caused
5450
- and on any theory of liability, whether in contract, strict liability,
5451
- or tort (including negligence or otherwise) arising in any way out of
5452
- the use of this software, even if advised of the possibility of such damage.
5453
-
5454
- --------------------------------------------------------------------------------
5455
- Package Title: @xnnpack
5456
- Package Locator:
5457
- --------------------------------------------------------------------------------
5458
- * Declared Licenses *
5459
- BSD License
5460
-
5461
- For XNNPACK software
5462
-
5463
- Copyright (c) Facebook, Inc. and its affiliates. All rights reserved.
5464
- Copyright 2019 Google LLC
5465
-
5466
- Redistribution and use in source and binary forms, with or without modification,
5467
- are permitted provided that the following conditions are met:
5468
-
5469
- * Redistributions of source code must retain the above copyright notice, this
5470
- list of conditions and the following disclaimer.
5471
-
5472
- * Redistributions in binary form must reproduce the above copyright notice,
5473
- this list of conditions and the following disclaimer in the documentation
5474
- and/or other materials provided with the distribution.
5475
-
5476
- * Neither the name Facebook nor the names of its contributors may be used to
5477
- endorse or promote products derived from this software without specific
5478
- prior written permission.
5479
-
5480
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
5481
- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
5482
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
5483
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
5484
- ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
5485
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
5486
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
5487
- ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
5488
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
5489
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
5490
-
5491
- --------------------------------------------------------------------------------
5492
- Package Title: @libcvd
5493
- Package Locator:
5494
- --------------------------------------------------------------------------------
5495
- * Declared Licenses *
5496
- libCVD is licensed under the two clause BSD license (below).
5497
-
5498
- Some optional modules for libCVD use code licensed under the GPL.
5499
- These are not compiled into libCVD by default. If these are compiled
5500
- then the results must be distributed under the GPL also.
5501
-
5502
- If you wish to use these modules you must compile with "--enable-gpl".
5503
-
5504
-
5505
-
5506
- Copyright Notice
5507
- ----------------
5508
-
5509
- Copyright (c) 2005--2013, The Authors
5510
- All rights reserved.
5511
-
5512
- Redistribution and use in source and binary forms, with or without
5513
- modification, are permitted provided that the following conditions
5514
- are met:
5515
- 1. Redistributions of source code must retain the above copyright
5516
- notice, this list of conditions and the following disclaimer.
5517
- 2. Redistributions in binary form must reproduce the above copyright
5518
- notice, this list of conditions and the following disclaimer in the
5519
- documentation and/or other materials provided with the distribution.
5520
-
5521
- THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND OTHER CONTRIBUTORS ``AS IS''
5522
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
5523
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
5524
- ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR OTHER CONTRIBUTORS BE
5525
- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
5526
- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
5527
- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
5528
- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
5529
- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
5530
- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
5531
- POSSIBILITY OF SUCH DAMAGE.
5532
-
5533
- --------------------------------------------------------------------------------
5534
- Package Title: @glog
5535
- Package Locator:
5536
- --------------------------------------------------------------------------------
5537
- * Declared Licenses *
5538
- Copyright (c) 2008, Google Inc.
5539
- All rights reserved.
5540
-
5541
- Redistribution and use in source and binary forms, with or without
5542
- modification, are permitted provided that the following conditions are
5543
- met:
5544
-
5545
- * Redistributions of source code must retain the above copyright
5546
- notice, this list of conditions and the following disclaimer.
5547
- * Redistributions in binary form must reproduce the above
5548
- copyright notice, this list of conditions and the following disclaimer
5549
- in the documentation and/or other materials provided with the
5550
- distribution.
5551
- * Neither the name of Google Inc. nor the names of its
5552
- contributors may be used to endorse or promote products derived from
5553
- this software without specific prior written permission.
5554
-
5555
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
5556
- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
5557
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
5558
- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
5559
- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
5560
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
5561
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
5562
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
5563
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
5564
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
5565
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
5566
-
5567
-
5568
- A function gettimeofday in utilities.cc is based on
5569
-
5570
- http://www.google.com/codesearch/p?hl=en#dR3YEbitojA/COPYING&q=GetSystemTimeAsFileTime%20license:bsd
5571
-
5572
- The license of this code is:
5573
-
5574
- Copyright (c) 2003-2008, Jouni Malinen <j@w1.fi> and contributors
5575
- All Rights Reserved.
5576
-
5577
- Redistribution and use in source and binary forms, with or without
5578
- modification, are permitted provided that the following conditions are
5579
- met:
5580
-
5581
- 1. Redistributions of source code must retain the above copyright
5582
- notice, this list of conditions and the following disclaimer.
5583
-
5584
- 2. Redistributions in binary form must reproduce the above copyright
5585
- notice, this list of conditions and the following disclaimer in the
5586
- documentation and/or other materials provided with the distribution.
5587
-
5588
- 3. Neither the name(s) of the above-listed copyright holder(s) nor the
5589
- names of its contributors may be used to endorse or promote products
5590
- derived from this software without specific prior written permission.
5591
-
5592
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
5593
- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
5594
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
5595
- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
5596
- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
5597
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
5598
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
5599
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
5600
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
5601
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
5602
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
5603
-
5604
- --------------------------------------------------------------------------------
5605
- Package Title: @harfbuzz
5606
- Package Locator:
5607
- --------------------------------------------------------------------------------
5608
- * Declared Licenses *
5609
- HarfBuzz is licensed under the so-called "Old MIT" license. Details follow.
5610
- For parts of HarfBuzz that are licensed under different licenses see individual
5611
- files names COPYING in subdirectories where applicable.
5612
-
5613
- Copyright © 2010,2011,2012,2013,2014,2015,2016,2017,2018,2019 Google, Inc.
5614
- Copyright © 2019 Facebook, Inc.
5615
- Copyright © 2012 Mozilla Foundation
5616
- Copyright © 2011 Codethink Limited
5617
- Copyright © 2008,2010 Nokia Corporation and/or its subsidiary(-ies)
5618
- Copyright © 2009 Keith Stribley
5619
- Copyright © 2009 Martin Hosken and SIL International
5620
- Copyright © 2007 Chris Wilson
5621
- Copyright © 2006 Behdad Esfahbod
5622
- Copyright © 2005 David Turner
5623
- Copyright © 2004,2007,2008,2009,2010 Red Hat, Inc.
5624
- Copyright © 1998-2004 David Turner and Werner Lemberg
5625
-
5626
- For full copyright notices consult the individual files in the package.
5627
-
5628
-
5629
- Permission is hereby granted, without written agreement and without
5630
- license or royalty fees, to use, copy, modify, and distribute this
5631
- software and its documentation for any purpose, provided that the
5632
- above copyright notice and the following two paragraphs appear in
5633
- all copies of this software.
5634
-
5635
- IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
5636
- DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
5637
- ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
5638
- IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
5639
- DAMAGE.
5640
-
5641
- THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
5642
- BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
5643
- FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
5644
- ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
5645
- PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
5646
-
5647
- --------------------------------------------------------------------------------
5648
- Package Title: @protoc-scripts
5649
- Package Locator:
5650
- --------------------------------------------------------------------------------
5651
- * Declared Licenses *
5652
- Copyright 2008 Google Inc. All rights reserved.
5653
-
5654
- Redistribution and use in source and binary forms, with or without
5655
- modification, are permitted provided that the following conditions are
5656
- met:
5657
-
5658
- * Redistributions of source code must retain the above copyright
5659
- notice, this list of conditions and the following disclaimer.
5660
- * Redistributions in binary form must reproduce the above
5661
- copyright notice, this list of conditions and the following disclaimer
5662
- in the documentation and/or other materials provided with the
5663
- distribution.
5664
- * Neither the name of Google Inc. nor the names of its
5665
- contributors may be used to endorse or promote products derived from
5666
- this software without specific prior written permission.
5667
-
5668
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
5669
- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
5670
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
5671
- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
5672
- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
5673
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
5674
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
5675
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
5676
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
5677
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
5678
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
5679
-
5680
- Code generated by the Protocol Buffer compiler is owned by the owner
5681
- of the input file used when generating it. This code is not
5682
- standalone and requires a support library to be linked with it. This
5683
- support library is itself covered by the above license.
5684
-
5685
- --------------------------------------------------------------------------------
5686
- Package Title: @boost
5687
- Package Locator:
5688
- --------------------------------------------------------------------------------
5689
- * Declared Licenses *
5690
- Boost Software License - Version 1.0 - August 17th, 2003
5691
-
5692
- Permission is hereby granted, free of charge, to any person or organization
5693
- obtaining a copy of the software and accompanying documentation covered by
5694
- this license (the "Software") to use, reproduce, display, distribute,
5695
- execute, and transmit the Software, and to prepare derivative works of the
5696
- Software, and to permit third-parties to whom the Software is furnished to
5697
- do so, all subject to the following:
5698
-
5699
- The copyright notices in the Software and this entire statement, including
5700
- the above license grant, this restriction and the following disclaimer,
5701
- must be included in all copies of the Software, in whole or in part, and
5702
- all derivative works of the Software, unless such copies or derivative
5703
- works are solely in the form of machine-executable object code generated by
5704
- a source language processor.
5705
-
5706
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
5707
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
5708
- FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
5709
- SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
5710
- FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
5711
- ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
5712
- DEALINGS IN THE SOFTWARE.
5713
-
5714
- --------------------------------------------------------------------------------
5715
- Package Title: @libpng
5716
- Package Locator:
5717
- --------------------------------------------------------------------------------
5718
- * Declared Licenses *
5719
- COPYRIGHT NOTICE, DISCLAIMER, and LICENSE
5720
- =========================================
5721
-
5722
- PNG Reference Library License version 2
5723
- ---------------------------------------
5724
-
5725
- * Copyright (c) 1995-2019 The PNG Reference Library Authors.
5726
- * Copyright (c) 2018-2019 Cosmin Truta.
5727
- * Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson.
5728
- * Copyright (c) 1996-1997 Andreas Dilger.
5729
- * Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.
5730
-
5731
- The software is supplied "as is", without warranty of any kind,
5732
- express or implied, including, without limitation, the warranties
5733
- of merchantability, fitness for a particular purpose, title, and
5734
- non-infringement. In no event shall the Copyright owners, or
5735
- anyone distributing the software, be liable for any damages or
5736
- other liability, whether in contract, tort or otherwise, arising
5737
- from, out of, or in connection with the software, or the use or
5738
- other dealings in the software, even if advised of the possibility
5739
- of such damage.
5740
-
5741
- Permission is hereby granted to use, copy, modify, and distribute
5742
- this software, or portions hereof, for any purpose, without fee,
5743
- subject to the following restrictions:
5744
-
5745
- 1. The origin of this software must not be misrepresented; you
5746
- must not claim that you wrote the original software. If you
5747
- use this software in a product, an acknowledgment in the product
5748
- documentation would be appreciated, but is not required.
5749
-
5750
- 2. Altered source versions must be plainly marked as such, and must
5751
- not be misrepresented as being the original software.
5752
-
5753
- 3. This Copyright notice may not be removed or altered from any
5754
- source or altered source distribution.
5755
-
5756
-
5757
- PNG Reference Library License version 1 (for libpng 0.5 through 1.6.35)
5758
- -----------------------------------------------------------------------
5759
-
5760
- libpng versions 1.0.7, July 1, 2000, through 1.6.35, July 15, 2018 are
5761
- Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson, are
5762
- derived from libpng-1.0.6, and are distributed according to the same
5763
- disclaimer and license as libpng-1.0.6 with the following individuals
5764
- added to the list of Contributing Authors:
5765
-
5766
- Simon-Pierre Cadieux
5767
- Eric S. Raymond
5768
- Mans Rullgard
5769
- Cosmin Truta
5770
- Gilles Vollant
5771
- James Yu
5772
- Mandar Sahastrabuddhe
5773
- Google Inc.
5774
- Vadim Barkov
5775
-
5776
- and with the following additions to the disclaimer:
5777
-
5778
- There is no warranty against interference with your enjoyment of
5779
- the library or against infringement. There is no warranty that our
5780
- efforts or the library will fulfill any of your particular purposes
5781
- or needs. This library is provided with all faults, and the entire
5782
- risk of satisfactory quality, performance, accuracy, and effort is
5783
- with the user.
5784
-
5785
- Some files in the "contrib" directory and some configure-generated
5786
- files that are distributed with libpng have other copyright owners, and
5787
- are released under other open source licenses.
5788
-
5789
- libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are
5790
- Copyright (c) 1998-2000 Glenn Randers-Pehrson, are derived from
5791
- libpng-0.96, and are distributed according to the same disclaimer and
5792
- license as libpng-0.96, with the following individuals added to the
5793
- list of Contributing Authors:
5794
-
5795
- Tom Lane
5796
- Glenn Randers-Pehrson
5797
- Willem van Schaik
5798
-
5799
- libpng versions 0.89, June 1996, through 0.96, May 1997, are
5800
- Copyright (c) 1996-1997 Andreas Dilger, are derived from libpng-0.88,
5801
- and are distributed according to the same disclaimer and license as
5802
- libpng-0.88, with the following individuals added to the list of
5803
- Contributing Authors:
5804
-
5805
- John Bowler
5806
- Kevin Bracey
5807
- Sam Bushell
5808
- Magnus Holmgren
5809
- Greg Roelofs
5810
- Tom Tanner
5811
-
5812
- Some files in the "scripts" directory have other copyright owners,
5813
- but are released under this license.
5814
-
5815
- libpng versions 0.5, May 1995, through 0.88, January 1996, are
5816
- Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.
5817
-
5818
- For the purposes of this copyright and license, "Contributing Authors"
5819
- is defined as the following set of individuals:
5820
-
5821
- Andreas Dilger
5822
- Dave Martindale
5823
- Guy Eric Schalnat
5824
- Paul Schmidt
5825
- Tim Wegner
5826
-
5827
- The PNG Reference Library is supplied "AS IS". The Contributing
5828
- Authors and Group 42, Inc. disclaim all warranties, expressed or
5829
- implied, including, without limitation, the warranties of
5830
- merchantability and of fitness for any purpose. The Contributing
5831
- Authors and Group 42, Inc. assume no liability for direct, indirect,
5832
- incidental, special, exemplary, or consequential damages, which may
5833
- result from the use of the PNG Reference Library, even if advised of
5834
- the possibility of such damage.
5835
-
5836
- Permission is hereby granted to use, copy, modify, and distribute this
5837
- source code, or portions hereof, for any purpose, without fee, subject
5838
- to the following restrictions:
5839
-
5840
- 1. The origin of this source code must not be misrepresented.
5841
-
5842
- 2. Altered versions must be plainly marked as such and must not
5843
- be misrepresented as being the original source.
5844
-
5845
- 3. This Copyright notice may not be removed or altered from any
5846
- source or altered source distribution.
5847
-
5848
- The Contributing Authors and Group 42, Inc. specifically permit,
5849
- without fee, and encourage the use of this source code as a component
5850
- to supporting the PNG file format in commercial products. If you use
5851
- this source code in a product, acknowledgment is not required but would
5852
- be appreciated.
5853
-
5854
- --------------------------------------------------------------------------------
5855
- Package Title: @pthreadpool
5856
- Package Locator:
5857
- --------------------------------------------------------------------------------
5858
- * Declared Licenses *
5859
- Copyright 2019 Google LLC
5860
- Copyright (c) 2017 Facebook Inc.
5861
- Copyright (c) 2015-2017 Georgia Institute of Technology
5862
- All rights reserved.
5863
-
5864
- Redistribution and use in source and binary forms, with or without
5865
- modification, are permitted provided that the following conditions are met:
5866
-
5867
- * Redistributions of source code must retain the above copyright notice, this
5868
- list of conditions and the following disclaimer.
5869
-
5870
- * Redistributions in binary form must reproduce the above copyright notice,
5871
- this list of conditions and the following disclaimer in the documentation
5872
- and/or other materials provided with the distribution.
5873
-
5874
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
5875
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
5876
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
5877
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
5878
- FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
5879
- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
5880
- SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
5881
- CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
5882
- OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
5883
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
5884
-
5885
-
5886
- --------------------------------------------------------------------------------
5887
- Package Title: @maratyszcza-fp16
5888
- Package Locator:
5889
- --------------------------------------------------------------------------------
5890
- * Declared Licenses *
5891
- The MIT License (MIT)
5892
-
5893
- Copyright (c) 2017 Facebook Inc.
5894
- Copyright (c) 2017 Georgia Institute of Technology
5895
- Copyright 2019 Google LLC
5896
-
5897
- 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:
5898
-
5899
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
5900
-
5901
- 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.
5902
-
5903
- --------------------------------------------------------------------------------
5904
- Package Title: @carotene
5905
- Package Locator:
5906
- --------------------------------------------------------------------------------
5907
- * Declared Licenses *
5908
- /*
5909
- * By downloading, copying, installing or using the software you agree to this license.
5910
- * If you do not agree to this license, do not download, install,
5911
- * copy or use the software.
5912
- *
5913
- *
5914
- * License Agreement
5915
- * For Open Source Computer Vision Library
5916
- * (3-clause BSD License)
5917
- *
5918
- * Copyright (C) 2014-2015, NVIDIA Corporation, all rights reserved.
5919
- * Third party copyrights are property of their respective owners.
5920
- *
5921
- * Redistribution and use in source and binary forms, with or without modification,
5922
- * are permitted provided that the following conditions are met:
5923
- *
5924
- * * Redistributions of source code must retain the above copyright notice,
5925
- * this list of conditions and the following disclaimer.
5926
- *
5927
- * * Redistributions in binary form must reproduce the above copyright notice,
5928
- * this list of conditions and the following disclaimer in the documentation
5929
- * and/or other materials provided with the distribution.
5930
- *
5931
- * * Neither the names of the copyright holders nor the names of the contributors
5932
- * may be used to endorse or promote products derived from this software
5933
- * without specific prior written permission.
5934
- *
5935
- * This software is provided by the copyright holders and contributors "as is" and
5936
- * any express or implied warranties, including, but not limited to, the implied
5937
- * warranties of merchantability and fitness for a particular purpose are disclaimed.
5938
- * In no event shall copyright holders or contributors be liable for any direct,
5939
- * indirect, incidental, special, exemplary, or consequential damages
5940
- * (including, but not limited to, procurement of substitute goods or services;
5941
- * loss of use, data, or profits; or business interruption) however caused
5942
- * and on any theory of liability, whether in contract, strict liability,
5943
- * or tort (including negligence or otherwise) arising in any way out of
5944
- * the use of this software, even if advised of the possibility of such damage.
5945
- */
5946
- --------------------------------------------------------------------------------
5947
- Package Title: @gemmlowp
5948
- Package Locator:
5949
- --------------------------------------------------------------------------------
5950
- * Declared Licenses *
5951
-
5952
- Apache License
5953
- Version 2.0, January 2004
5954
- http://www.apache.org/licenses/
5955
-
5956
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
5957
-
5958
- 1. Definitions.
5959
-
5960
- "License" shall mean the terms and conditions for use, reproduction,
5961
- and distribution as defined by Sections 1 through 9 of this document.
5962
-
5963
- "Licensor" shall mean the copyright owner or entity authorized by
5964
- the copyright owner that is granting the License.
5965
-
5966
- "Legal Entity" shall mean the union of the acting entity and all
5967
- other entities that control, are controlled by, or are under common
5968
- control with that entity. For the purposes of this definition,
5969
- "control" means (i) the power, direct or indirect, to cause the
5970
- direction or management of such entity, whether by contract or
5971
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
5972
- outstanding shares, or (iii) beneficial ownership of such entity.
5973
-
5974
- "You" (or "Your") shall mean an individual or Legal Entity
5975
- exercising permissions granted by this License.
5976
-
5977
- "Source" form shall mean the preferred form for making modifications,
5978
- including but not limited to software source code, documentation
5979
- source, and configuration files.
5980
-
5981
- "Object" form shall mean any form resulting from mechanical
5982
- transformation or translation of a Source form, including but
5983
- not limited to compiled object code, generated documentation,
5984
- and conversions to other media types.
5985
-
5986
- "Work" shall mean the work of authorship, whether in Source or
5987
- Object form, made available under the License, as indicated by a
5988
- copyright notice that is included in or attached to the work
5989
- (an example is provided in the Appendix below).
5990
-
5991
- "Derivative Works" shall mean any work, whether in Source or Object
5992
- form, that is based on (or derived from) the Work and for which the
5993
- editorial revisions, annotations, elaborations, or other modifications
5994
- represent, as a whole, an original work of authorship. For the purposes
5995
- of this License, Derivative Works shall not include works that remain
5996
- separable from, or merely link (or bind by name) to the interfaces of,
5997
- the Work and Derivative Works thereof.
5998
-
5999
- "Contribution" shall mean any work of authorship, including
6000
- the original version of the Work and any modifications or additions
6001
- to that Work or Derivative Works thereof, that is intentionally
6002
- submitted to Licensor for inclusion in the Work by the copyright owner
6003
- or by an individual or Legal Entity authorized to submit on behalf of
6004
- the copyright owner. For the purposes of this definition, "submitted"
6005
- means any form of electronic, verbal, or written communication sent
6006
- to the Licensor or its representatives, including but not limited to
6007
- communication on electronic mailing lists, source code control systems,
6008
- and issue tracking systems that are managed by, or on behalf of, the
6009
- Licensor for the purpose of discussing and improving the Work, but
6010
- excluding communication that is conspicuously marked or otherwise
6011
- designated in writing by the copyright owner as "Not a Contribution."
6012
-
6013
- "Contributor" shall mean Licensor and any individual or Legal Entity
6014
- on behalf of whom a Contribution has been received by Licensor and
6015
- subsequently incorporated within the Work.
6016
-
6017
- 2. Grant of Copyright License. Subject to the terms and conditions of
6018
- this License, each Contributor hereby grants to You a perpetual,
6019
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
6020
- copyright license to reproduce, prepare Derivative Works of,
6021
- publicly display, publicly perform, sublicense, and distribute the
6022
- Work and such Derivative Works in Source or Object form.
6023
-
6024
- 3. Grant of Patent License. Subject to the terms and conditions of
6025
- this License, each Contributor hereby grants to You a perpetual,
6026
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
6027
- (except as stated in this section) patent license to make, have made,
6028
- use, offer to sell, sell, import, and otherwise transfer the Work,
6029
- where such license applies only to those patent claims licensable
6030
- by such Contributor that are necessarily infringed by their
6031
- Contribution(s) alone or by combination of their Contribution(s)
6032
- with the Work to which such Contribution(s) was submitted. If You
6033
- institute patent litigation against any entity (including a
6034
- cross-claim or counterclaim in a lawsuit) alleging that the Work
6035
- or a Contribution incorporated within the Work constitutes direct
6036
- or contributory patent infringement, then any patent licenses
6037
- granted to You under this License for that Work shall terminate
6038
- as of the date such litigation is filed.
6039
-
6040
- 4. Redistribution. You may reproduce and distribute copies of the
6041
- Work or Derivative Works thereof in any medium, with or without
6042
- modifications, and in Source or Object form, provided that You
6043
- meet the following conditions:
6044
-
6045
- (a) You must give any other recipients of the Work or
6046
- Derivative Works a copy of this License; and
6047
-
6048
- (b) You must cause any modified files to carry prominent notices
6049
- stating that You changed the files; and
6050
-
6051
- (c) You must retain, in the Source form of any Derivative Works
6052
- that You distribute, all copyright, patent, trademark, and
6053
- attribution notices from the Source form of the Work,
6054
- excluding those notices that do not pertain to any part of
6055
- the Derivative Works; and
6056
-
6057
- (d) If the Work includes a "NOTICE" text file as part of its
6058
- distribution, then any Derivative Works that You distribute must
6059
- include a readable copy of the attribution notices contained
6060
- within such NOTICE file, excluding those notices that do not
6061
- pertain to any part of the Derivative Works, in at least one
6062
- of the following places: within a NOTICE text file distributed
6063
- as part of the Derivative Works; within the Source form or
6064
- documentation, if provided along with the Derivative Works; or,
6065
- within a display generated by the Derivative Works, if and
6066
- wherever such third-party notices normally appear. The contents
6067
- of the NOTICE file are for informational purposes only and
6068
- do not modify the License. You may add Your own attribution
6069
- notices within Derivative Works that You distribute, alongside
6070
- or as an addendum to the NOTICE text from the Work, provided
6071
- that such additional attribution notices cannot be construed
6072
- as modifying the License.
6073
-
6074
- You may add Your own copyright statement to Your modifications and
6075
- may provide additional or different license terms and conditions
6076
- for use, reproduction, or distribution of Your modifications, or
6077
- for any such Derivative Works as a whole, provided Your use,
6078
- reproduction, and distribution of the Work otherwise complies with
6079
- the conditions stated in this License.
6080
-
6081
- 5. Submission of Contributions. Unless You explicitly state otherwise,
6082
- any Contribution intentionally submitted for inclusion in the Work
6083
- by You to the Licensor shall be under the terms and conditions of
6084
- this License, without any additional terms or conditions.
6085
- Notwithstanding the above, nothing herein shall supersede or modify
6086
- the terms of any separate license agreement you may have executed
6087
- with Licensor regarding such Contributions.
6088
-
6089
- 6. Trademarks. This License does not grant permission to use the trade
6090
- names, trademarks, service marks, or product names of the Licensor,
6091
- except as required for reasonable and customary use in describing the
6092
- origin of the Work and reproducing the content of the NOTICE file.
6093
-
6094
- 7. Disclaimer of Warranty. Unless required by applicable law or
6095
- agreed to in writing, Licensor provides the Work (and each
6096
- Contributor provides its Contributions) on an "AS IS" BASIS,
6097
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
6098
- implied, including, without limitation, any warranties or conditions
6099
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
6100
- PARTICULAR PURPOSE. You are solely responsible for determining the
6101
- appropriateness of using or redistributing the Work and assume any
6102
- risks associated with Your exercise of permissions under this License.
6103
-
6104
- 8. Limitation of Liability. In no event and under no legal theory,
6105
- whether in tort (including negligence), contract, or otherwise,
6106
- unless required by applicable law (such as deliberate and grossly
6107
- negligent acts) or agreed to in writing, shall any Contributor be
6108
- liable to You for damages, including any direct, indirect, special,
6109
- incidental, or consequential damages of any character arising as a
6110
- result of this License or out of the use or inability to use the
6111
- Work (including but not limited to damages for loss of goodwill,
6112
- work stoppage, computer failure or malfunction, or any and all
6113
- other commercial damages or losses), even if such Contributor
6114
- has been advised of the possibility of such damages.
6115
-
6116
- 9. Accepting Warranty or Additional Liability. While redistributing
6117
- the Work or Derivative Works thereof, You may choose to offer,
6118
- and charge a fee for, acceptance of support, warranty, indemnity,
6119
- or other liability obligations and/or rights consistent with this
6120
- License. However, in accepting such obligations, You may act only
6121
- on Your own behalf and on Your sole responsibility, not on behalf
6122
- of any other Contributor, and only if You agree to indemnify,
6123
- defend, and hold each Contributor harmless for any liability
6124
- incurred by, or claims asserted against, such Contributor by reason
6125
- of your accepting any such warranty or additional liability.
6126
-
6127
- END OF TERMS AND CONDITIONS
6128
-
6129
- APPENDIX: How to apply the Apache License to your work.
6130
-
6131
- To apply the Apache License to your work, attach the following
6132
- boilerplate notice, with the fields enclosed by brackets "[]"
6133
- replaced with your own identifying information. (Don't include
6134
- the brackets!) The text should be enclosed in the appropriate
6135
- comment syntax for the file format. We also recommend that a
6136
- file or class name and description of purpose be included on the
6137
- same "printed page" as the copyright notice for easier
6138
- identification within third-party archives.
6139
-
6140
- Copyright [yyyy] [name of copyright owner]
6141
-
6142
- Licensed under the Apache License, Version 2.0 (the "License");
6143
- you may not use this file except in compliance with the License.
6144
- You may obtain a copy of the License at
6145
-
6146
- http://www.apache.org/licenses/LICENSE-2.0
6147
-
6148
- Unless required by applicable law or agreed to in writing, software
6149
- distributed under the License is distributed on an "AS IS" BASIS,
6150
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
6151
- See the License for the specific language governing permissions and
6152
- limitations under the License.
6153
-
6154
- --------------------------------------------------------------------------------
6155
- Package Title: @protobuf-lite
6156
- Package Locator:
6157
- --------------------------------------------------------------------------------
6158
- * Declared Licenses *
6159
- Copyright 2008 Google Inc. All rights reserved.
6160
-
6161
- Redistribution and use in source and binary forms, with or without
6162
- modification, are permitted provided that the following conditions are
6163
- met:
6164
-
6165
- * Redistributions of source code must retain the above copyright
6166
- notice, this list of conditions and the following disclaimer.
6167
- * Redistributions in binary form must reproduce the above
6168
- copyright notice, this list of conditions and the following disclaimer
6169
- in the documentation and/or other materials provided with the
6170
- distribution.
6171
- * Neither the name of Google Inc. nor the names of its
6172
- contributors may be used to endorse or promote products derived from
6173
- this software without specific prior written permission.
6174
-
6175
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
6176
- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
6177
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
6178
- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
6179
- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
6180
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
6181
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
6182
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
6183
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
6184
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
6185
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
6186
-
6187
- Code generated by the Protocol Buffer compiler is owned by the owner
6188
- of the input file used when generating it. This code is not
6189
- standalone and requires a support library to be linked with it. This
6190
- support library is itself covered by the above license.
6191
-
6192
- --------------------------------------------------------------------------------
6193
- Package Title: @protobuf
6194
- Package Locator:
6195
- --------------------------------------------------------------------------------
6196
- * Declared Licenses *
6197
- Copyright 2008 Google Inc. All rights reserved.
6198
-
6199
- Redistribution and use in source and binary forms, with or without
6200
- modification, are permitted provided that the following conditions are
6201
- met:
6202
-
6203
- * Redistributions of source code must retain the above copyright
6204
- notice, this list of conditions and the following disclaimer.
6205
- * Redistributions in binary form must reproduce the above
6206
- copyright notice, this list of conditions and the following disclaimer
6207
- in the documentation and/or other materials provided with the
6208
- distribution.
6209
- * Neither the name of Google Inc. nor the names of its
6210
- contributors may be used to endorse or promote products derived from
6211
- this software without specific prior written permission.
6212
-
6213
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
6214
- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
6215
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
6216
- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
6217
- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
6218
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
6219
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
6220
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
6221
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
6222
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
6223
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
6224
-
6225
- Code generated by the Protocol Buffer compiler is owned by the owner
6226
- of the input file used when generating it. This code is not
6227
- standalone and requires a support library to be linked with it. This
6228
- support library is itself covered by the above license.
6229
-
6230
- --------------------------------------------------------------------------------
6231
- Package Title: @pytorch-cpuinfo
6232
- Package Locator:
6233
- --------------------------------------------------------------------------------
6234
- * Declared Licenses *
6235
- Copyright (c) 2019 Google LLC
6236
- Copyright (c) 2017-2018 Facebook Inc.
6237
- Copyright (C) 2012-2017 Georgia Institute of Technology
6238
- Copyright (C) 2010-2012 Marat Dukhan
6239
-
6240
- All rights reserved.
6241
-
6242
- Redistribution and use in source and binary forms, with or without
6243
- modification, are permitted provided that the following conditions are met:
6244
-
6245
- * Redistributions of source code must retain the above copyright notice, this
6246
- list of conditions and the following disclaimer.
6247
-
6248
- * Redistributions in binary form must reproduce the above copyright notice,
6249
- this list of conditions and the following disclaimer in the documentation
6250
- and/or other materials provided with the distribution.
6251
-
6252
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
6253
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
6254
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
6255
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
6256
- FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
6257
- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
6258
- SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
6259
- CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
6260
- OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
6261
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
6262
-
6263
- --------------------------------------------------------------------------------
6264
- Package Title: @fmt
6265
- Package Locator:
6266
- --------------------------------------------------------------------------------
6267
- * Declared Licenses *
6268
- Copyright (c) 2012 - present, Victor Zverovich
6269
-
6270
- Permission is hereby granted, free of charge, to any person obtaining
6271
- a copy of this software and associated documentation files (the
6272
- "Software"), to deal in the Software without restriction, including
6273
- without limitation the rights to use, copy, modify, merge, publish,
6274
- distribute, sublicense, and/or sell copies of the Software, and to
6275
- permit persons to whom the Software is furnished to do so, subject to
6276
- the following conditions:
6277
-
6278
- The above copyright notice and this permission notice shall be
6279
- included in all copies or substantial portions of the Software.
6280
-
6281
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
6282
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
6283
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
6284
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
6285
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
6286
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
6287
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
6288
-
6289
- --- Optional exception to the license ---
6290
-
6291
- As an exception, if, as a result of your compiling your source code, portions
6292
- of this Software are embedded into a machine-executable object form of such
6293
- source code, you may redistribute such embedded portions in such object form
6294
- without including the above copyright and permission notices.
6295
-
6296
- --------------------------------------------------------------------------------
6297
- Package Title: @nlohmann-json
6298
- Package Locator:
6299
- --------------------------------------------------------------------------------
6300
- * Declared Licenses *
6301
- MIT License
6302
-
6303
- Copyright (c) 2013-2020 Niels Lohmann
6304
-
6305
- Permission is hereby granted, free of charge, to any person obtaining a copy
6306
- of this software and associated documentation files (the "Software"), to deal
6307
- in the Software without restriction, including without limitation the rights
6308
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
6309
- copies of the Software, and to permit persons to whom the Software is
6310
- furnished to do so, subject to the following conditions:
6311
-
6312
- The above copyright notice and this permission notice shall be included in all
6313
- copies or substantial portions of the Software.
6314
-
6315
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
6316
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
6317
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
6318
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
6319
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
6320
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
6321
- SOFTWARE.
6322
-
6323
- --------------------------------------------------------------------------------
6324
- Package Title: @snap-tfjs
6325
- Package Locator:
6326
- --------------------------------------------------------------------------------
6327
- * Declared Licenses *
6328
-
6329
- Apache License
6330
- Version 2.0, January 2004
6331
- http://www.apache.org/licenses/
6332
-
6333
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6334
-
6335
- 1. Definitions.
6336
-
6337
- "License" shall mean the terms and conditions for use, reproduction,
6338
- and distribution as defined by Sections 1 through 9 of this document.
6339
-
6340
- "Licensor" shall mean the copyright owner or entity authorized by
6341
- the copyright owner that is granting the License.
6342
-
6343
- "Legal Entity" shall mean the union of the acting entity and all
6344
- other entities that control, are controlled by, or are under common
6345
- control with that entity. For the purposes of this definition,
6346
- "control" means (i) the power, direct or indirect, to cause the
6347
- direction or management of such entity, whether by contract or
6348
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
6349
- outstanding shares, or (iii) beneficial ownership of such entity.
6350
-
6351
- "You" (or "Your") shall mean an individual or Legal Entity
6352
- exercising permissions granted by this License.
6353
-
6354
- "Source" form shall mean the preferred form for making modifications,
6355
- including but not limited to software source code, documentation
6356
- source, and configuration files.
6357
-
6358
- "Object" form shall mean any form resulting from mechanical
6359
- transformation or translation of a Source form, including but
6360
- not limited to compiled object code, generated documentation,
6361
- and conversions to other media types.
6362
-
6363
- "Work" shall mean the work of authorship, whether in Source or
6364
- Object form, made available under the License, as indicated by a
6365
- copyright notice that is included in or attached to the work
6366
- (an example is provided in the Appendix below).
6367
-
6368
- "Derivative Works" shall mean any work, whether in Source or Object
6369
- form, that is based on (or derived from) the Work and for which the
6370
- editorial revisions, annotations, elaborations, or other modifications
6371
- represent, as a whole, an original work of authorship. For the purposes
6372
- of this License, Derivative Works shall not include works that remain
6373
- separable from, or merely link (or bind by name) to the interfaces of,
6374
- the Work and Derivative Works thereof.
6375
-
6376
- "Contribution" shall mean any work of authorship, including
6377
- the original version of the Work and any modifications or additions
6378
- to that Work or Derivative Works thereof, that is intentionally
6379
- submitted to Licensor for inclusion in the Work by the copyright owner
6380
- or by an individual or Legal Entity authorized to submit on behalf of
6381
- the copyright owner. For the purposes of this definition, "submitted"
6382
- means any form of electronic, verbal, or written communication sent
6383
- to the Licensor or its representatives, including but not limited to
6384
- communication on electronic mailing lists, source code control systems,
6385
- and issue tracking systems that are managed by, or on behalf of, the
6386
- Licensor for the purpose of discussing and improving the Work, but
6387
- excluding communication that is conspicuously marked or otherwise
6388
- designated in writing by the copyright owner as "Not a Contribution."
6389
-
6390
- "Contributor" shall mean Licensor and any individual or Legal Entity
6391
- on behalf of whom a Contribution has been received by Licensor and
6392
- subsequently incorporated within the Work.
6393
-
6394
- 2. Grant of Copyright License. Subject to the terms and conditions of
6395
- this License, each Contributor hereby grants to You a perpetual,
6396
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
6397
- copyright license to reproduce, prepare Derivative Works of,
6398
- publicly display, publicly perform, sublicense, and distribute the
6399
- Work and such Derivative Works in Source or Object form.
6400
-
6401
- 3. Grant of Patent License. Subject to the terms and conditions of
6402
- this License, each Contributor hereby grants to You a perpetual,
6403
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
6404
- (except as stated in this section) patent license to make, have made,
6405
- use, offer to sell, sell, import, and otherwise transfer the Work,
6406
- where such license applies only to those patent claims licensable
6407
- by such Contributor that are necessarily infringed by their
6408
- Contribution(s) alone or by combination of their Contribution(s)
6409
- with the Work to which such Contribution(s) was submitted. If You
6410
- institute patent litigation against any entity (including a
6411
- cross-claim or counterclaim in a lawsuit) alleging that the Work
6412
- or a Contribution incorporated within the Work constitutes direct
6413
- or contributory patent infringement, then any patent licenses
6414
- granted to You under this License for that Work shall terminate
6415
- as of the date such litigation is filed.
6416
-
6417
- 4. Redistribution. You may reproduce and distribute copies of the
6418
- Work or Derivative Works thereof in any medium, with or without
6419
- modifications, and in Source or Object form, provided that You
6420
- meet the following conditions:
6421
-
6422
- (a) You must give any other recipients of the Work or
6423
- Derivative Works a copy of this License; and
6424
-
6425
- (b) You must cause any modified files to carry prominent notices
6426
- stating that You changed the files; and
6427
-
6428
- (c) You must retain, in the Source form of any Derivative Works
6429
- that You distribute, all copyright, patent, trademark, and
6430
- attribution notices from the Source form of the Work,
6431
- excluding those notices that do not pertain to any part of
6432
- the Derivative Works; and
6433
-
6434
- (d) If the Work includes a "NOTICE" text file as part of its
6435
- distribution, then any Derivative Works that You distribute must
6436
- include a readable copy of the attribution notices contained
6437
- within such NOTICE file, excluding those notices that do not
6438
- pertain to any part of the Derivative Works, in at least one
6439
- of the following places: within a NOTICE text file distributed
6440
- as part of the Derivative Works; within the Source form or
6441
- documentation, if provided along with the Derivative Works; or,
6442
- within a display generated by the Derivative Works, if and
6443
- wherever such third-party notices normally appear. The contents
6444
- of the NOTICE file are for informational purposes only and
6445
- do not modify the License. You may add Your own attribution
6446
- notices within Derivative Works that You distribute, alongside
6447
- or as an addendum to the NOTICE text from the Work, provided
6448
- that such additional attribution notices cannot be construed
6449
- as modifying the License.
6450
-
6451
- You may add Your own copyright statement to Your modifications and
6452
- may provide additional or different license terms and conditions
6453
- for use, reproduction, or distribution of Your modifications, or
6454
- for any such Derivative Works as a whole, provided Your use,
6455
- reproduction, and distribution of the Work otherwise complies with
6456
- the conditions stated in this License.
6457
-
6458
- 5. Submission of Contributions. Unless You explicitly state otherwise,
6459
- any Contribution intentionally submitted for inclusion in the Work
6460
- by You to the Licensor shall be under the terms and conditions of
6461
- this License, without any additional terms or conditions.
6462
- Notwithstanding the above, nothing herein shall supersede or modify
6463
- the terms of any separate license agreement you may have executed
6464
- with Licensor regarding such Contributions.
6465
-
6466
- 6. Trademarks. This License does not grant permission to use the trade
6467
- names, trademarks, service marks, or product names of the Licensor,
6468
- except as required for reasonable and customary use in describing the
6469
- origin of the Work and reproducing the content of the NOTICE file.
6470
-
6471
- 7. Disclaimer of Warranty. Unless required by applicable law or
6472
- agreed to in writing, Licensor provides the Work (and each
6473
- Contributor provides its Contributions) on an "AS IS" BASIS,
6474
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
6475
- implied, including, without limitation, any warranties or conditions
6476
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
6477
- PARTICULAR PURPOSE. You are solely responsible for determining the
6478
- appropriateness of using or redistributing the Work and assume any
6479
- risks associated with Your exercise of permissions under this License.
6480
-
6481
- 8. Limitation of Liability. In no event and under no legal theory,
6482
- whether in tort (including negligence), contract, or otherwise,
6483
- unless required by applicable law (such as deliberate and grossly
6484
- negligent acts) or agreed to in writing, shall any Contributor be
6485
- liable to You for damages, including any direct, indirect, special,
6486
- incidental, or consequential damages of any character arising as a
6487
- result of this License or out of the use or inability to use the
6488
- Work (including but not limited to damages for loss of goodwill,
6489
- work stoppage, computer failure or malfunction, or any and all
6490
- other commercial damages or losses), even if such Contributor
6491
- has been advised of the possibility of such damages.
6492
-
6493
- 9. Accepting Warranty or Additional Liability. While redistributing
6494
- the Work or Derivative Works thereof, You may choose to offer,
6495
- and charge a fee for, acceptance of support, warranty, indemnity,
6496
- or other liability obligations and/or rights consistent with this
6497
- License. However, in accepting such obligations, You may act only
6498
- on Your own behalf and on Your sole responsibility, not on behalf
6499
- of any other Contributor, and only if You agree to indemnify,
6500
- defend, and hold each Contributor harmless for any liability
6501
- incurred by, or claims asserted against, such Contributor by reason
6502
- of your accepting any such warranty or additional liability.
6503
-
6504
- END OF TERMS AND CONDITIONS
6505
-
6506
- APPENDIX: How to apply the Apache License to your work.
6507
-
6508
- To apply the Apache License to your work, attach the following
6509
- boilerplate notice, with the fields enclosed by brackets "[]"
6510
- replaced with your own identifying information. (Don't include
6511
- the brackets!) The text should be enclosed in the appropriate
6512
- comment syntax for the file format. We also recommend that a
6513
- file or class name and description of purpose be included on the
6514
- same "printed page" as the copyright notice for easier
6515
- identification within third-party archives.
6516
-
6517
- Copyright [yyyy] [name of copyright owner]
6518
-
6519
- Licensed under the Apache License, Version 2.0 (the "License");
6520
- you may not use this file except in compliance with the License.
6521
- You may obtain a copy of the License at
6522
-
6523
- http://www.apache.org/licenses/LICENSE-2.0
6524
-
6525
- Unless required by applicable law or agreed to in writing, software
6526
- distributed under the License is distributed on an "AS IS" BASIS,
6527
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
6528
- See the License for the specific language governing permissions and
6529
- limitations under the License.
6530
-
6531
- --------------------------------------------------------------------------------
6532
- Package Title: @highwayhash
6533
- Package Locator:
6534
- --------------------------------------------------------------------------------
6535
- * Declared Licenses *
6536
-
6537
- Apache License
6538
- Version 2.0, January 2004
6539
- http://www.apache.org/licenses/
6540
-
6541
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6542
-
6543
- 1. Definitions.
6544
-
6545
- "License" shall mean the terms and conditions for use, reproduction,
6546
- and distribution as defined by Sections 1 through 9 of this document.
6547
-
6548
- "Licensor" shall mean the copyright owner or entity authorized by
6549
- the copyright owner that is granting the License.
6550
-
6551
- "Legal Entity" shall mean the union of the acting entity and all
6552
- other entities that control, are controlled by, or are under common
6553
- control with that entity. For the purposes of this definition,
6554
- "control" means (i) the power, direct or indirect, to cause the
6555
- direction or management of such entity, whether by contract or
6556
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
6557
- outstanding shares, or (iii) beneficial ownership of such entity.
6558
-
6559
- "You" (or "Your") shall mean an individual or Legal Entity
6560
- exercising permissions granted by this License.
6561
-
6562
- "Source" form shall mean the preferred form for making modifications,
6563
- including but not limited to software source code, documentation
6564
- source, and configuration files.
6565
-
6566
- "Object" form shall mean any form resulting from mechanical
6567
- transformation or translation of a Source form, including but
6568
- not limited to compiled object code, generated documentation,
6569
- and conversions to other media types.
6570
-
6571
- "Work" shall mean the work of authorship, whether in Source or
6572
- Object form, made available under the License, as indicated by a
6573
- copyright notice that is included in or attached to the work
6574
- (an example is provided in the Appendix below).
6575
-
6576
- "Derivative Works" shall mean any work, whether in Source or Object
6577
- form, that is based on (or derived from) the Work and for which the
6578
- editorial revisions, annotations, elaborations, or other modifications
6579
- represent, as a whole, an original work of authorship. For the purposes
6580
- of this License, Derivative Works shall not include works that remain
6581
- separable from, or merely link (or bind by name) to the interfaces of,
6582
- the Work and Derivative Works thereof.
6583
-
6584
- "Contribution" shall mean any work of authorship, including
6585
- the original version of the Work and any modifications or additions
6586
- to that Work or Derivative Works thereof, that is intentionally
6587
- submitted to Licensor for inclusion in the Work by the copyright owner
6588
- or by an individual or Legal Entity authorized to submit on behalf of
6589
- the copyright owner. For the purposes of this definition, "submitted"
6590
- means any form of electronic, verbal, or written communication sent
6591
- to the Licensor or its representatives, including but not limited to
6592
- communication on electronic mailing lists, source code control systems,
6593
- and issue tracking systems that are managed by, or on behalf of, the
6594
- Licensor for the purpose of discussing and improving the Work, but
6595
- excluding communication that is conspicuously marked or otherwise
6596
- designated in writing by the copyright owner as "Not a Contribution."
6597
-
6598
- "Contributor" shall mean Licensor and any individual or Legal Entity
6599
- on behalf of whom a Contribution has been received by Licensor and
6600
- subsequently incorporated within the Work.
6601
-
6602
- 2. Grant of Copyright License. Subject to the terms and conditions of
6603
- this License, each Contributor hereby grants to You a perpetual,
6604
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
6605
- copyright license to reproduce, prepare Derivative Works of,
6606
- publicly display, publicly perform, sublicense, and distribute the
6607
- Work and such Derivative Works in Source or Object form.
6608
-
6609
- 3. Grant of Patent License. Subject to the terms and conditions of
6610
- this License, each Contributor hereby grants to You a perpetual,
6611
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
6612
- (except as stated in this section) patent license to make, have made,
6613
- use, offer to sell, sell, import, and otherwise transfer the Work,
6614
- where such license applies only to those patent claims licensable
6615
- by such Contributor that are necessarily infringed by their
6616
- Contribution(s) alone or by combination of their Contribution(s)
6617
- with the Work to which such Contribution(s) was submitted. If You
6618
- institute patent litigation against any entity (including a
6619
- cross-claim or counterclaim in a lawsuit) alleging that the Work
6620
- or a Contribution incorporated within the Work constitutes direct
6621
- or contributory patent infringement, then any patent licenses
6622
- granted to You under this License for that Work shall terminate
6623
- as of the date such litigation is filed.
6624
-
6625
- 4. Redistribution. You may reproduce and distribute copies of the
6626
- Work or Derivative Works thereof in any medium, with or without
6627
- modifications, and in Source or Object form, provided that You
6628
- meet the following conditions:
6629
-
6630
- (a) You must give any other recipients of the Work or
6631
- Derivative Works a copy of this License; and
6632
-
6633
- (b) You must cause any modified files to carry prominent notices
6634
- stating that You changed the files; and
6635
-
6636
- (c) You must retain, in the Source form of any Derivative Works
6637
- that You distribute, all copyright, patent, trademark, and
6638
- attribution notices from the Source form of the Work,
6639
- excluding those notices that do not pertain to any part of
6640
- the Derivative Works; and
6641
-
6642
- (d) If the Work includes a "NOTICE" text file as part of its
6643
- distribution, then any Derivative Works that You distribute must
6644
- include a readable copy of the attribution notices contained
6645
- within such NOTICE file, excluding those notices that do not
6646
- pertain to any part of the Derivative Works, in at least one
6647
- of the following places: within a NOTICE text file distributed
6648
- as part of the Derivative Works; within the Source form or
6649
- documentation, if provided along with the Derivative Works; or,
6650
- within a display generated by the Derivative Works, if and
6651
- wherever such third-party notices normally appear. The contents
6652
- of the NOTICE file are for informational purposes only and
6653
- do not modify the License. You may add Your own attribution
6654
- notices within Derivative Works that You distribute, alongside
6655
- or as an addendum to the NOTICE text from the Work, provided
6656
- that such additional attribution notices cannot be construed
6657
- as modifying the License.
6658
-
6659
- You may add Your own copyright statement to Your modifications and
6660
- may provide additional or different license terms and conditions
6661
- for use, reproduction, or distribution of Your modifications, or
6662
- for any such Derivative Works as a whole, provided Your use,
6663
- reproduction, and distribution of the Work otherwise complies with
6664
- the conditions stated in this License.
6665
-
6666
- 5. Submission of Contributions. Unless You explicitly state otherwise,
6667
- any Contribution intentionally submitted for inclusion in the Work
6668
- by You to the Licensor shall be under the terms and conditions of
6669
- this License, without any additional terms or conditions.
6670
- Notwithstanding the above, nothing herein shall supersede or modify
6671
- the terms of any separate license agreement you may have executed
6672
- with Licensor regarding such Contributions.
6673
-
6674
- 6. Trademarks. This License does not grant permission to use the trade
6675
- names, trademarks, service marks, or product names of the Licensor,
6676
- except as required for reasonable and customary use in describing the
6677
- origin of the Work and reproducing the content of the NOTICE file.
6678
-
6679
- 7. Disclaimer of Warranty. Unless required by applicable law or
6680
- agreed to in writing, Licensor provides the Work (and each
6681
- Contributor provides its Contributions) on an "AS IS" BASIS,
6682
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
6683
- implied, including, without limitation, any warranties or conditions
6684
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
6685
- PARTICULAR PURPOSE. You are solely responsible for determining the
6686
- appropriateness of using or redistributing the Work and assume any
6687
- risks associated with Your exercise of permissions under this License.
6688
-
6689
- 8. Limitation of Liability. In no event and under no legal theory,
6690
- whether in tort (including negligence), contract, or otherwise,
6691
- unless required by applicable law (such as deliberate and grossly
6692
- negligent acts) or agreed to in writing, shall any Contributor be
6693
- liable to You for damages, including any direct, indirect, special,
6694
- incidental, or consequential damages of any character arising as a
6695
- result of this License or out of the use or inability to use the
6696
- Work (including but not limited to damages for loss of goodwill,
6697
- work stoppage, computer failure or malfunction, or any and all
6698
- other commercial damages or losses), even if such Contributor
6699
- has been advised of the possibility of such damages.
6700
-
6701
- 9. Accepting Warranty or Additional Liability. While redistributing
6702
- the Work or Derivative Works thereof, You may choose to offer,
6703
- and charge a fee for, acceptance of support, warranty, indemnity,
6704
- or other liability obligations and/or rights consistent with this
6705
- License. However, in accepting such obligations, You may act only
6706
- on Your own behalf and on Your sole responsibility, not on behalf
6707
- of any other Contributor, and only if You agree to indemnify,
6708
- defend, and hold each Contributor harmless for any liability
6709
- incurred by, or claims asserted against, such Contributor by reason
6710
- of your accepting any such warranty or additional liability.
6711
-
6712
- END OF TERMS AND CONDITIONS
6713
-
6714
- APPENDIX: How to apply the Apache License to your work.
6715
-
6716
- To apply the Apache License to your work, attach the following
6717
- boilerplate notice, with the fields enclosed by brackets "[]"
6718
- replaced with your own identifying information. (Don't include
6719
- the brackets!) The text should be enclosed in the appropriate
6720
- comment syntax for the file format. We also recommend that a
6721
- file or class name and description of purpose be included on the
6722
- same "printed page" as the copyright notice for easier
6723
- identification within third-party archives.
6724
-
6725
- Copyright [yyyy] [name of copyright owner]
6726
-
6727
- Licensed under the Apache License, Version 2.0 (the "License");
6728
- you may not use this file except in compliance with the License.
6729
- You may obtain a copy of the License at
6730
-
6731
- http://www.apache.org/licenses/LICENSE-2.0
6732
-
6733
- Unless required by applicable law or agreed to in writing, software
6734
- distributed under the License is distributed on an "AS IS" BASIS,
6735
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
6736
- See the License for the specific language governing permissions and
6737
- limitations under the License.
6738
-
6739
-
6740
- --------------------------------------------------------------------------------
6741
- Package Title: @jsoncpp
6742
- Package Locator:
6743
- --------------------------------------------------------------------------------
6744
- * Declared Licenses *
6745
- The JsonCpp library's source code, including accompanying documentation,
6746
- tests and demonstration applications, are licensed under the following
6747
- conditions...
6748
-
6749
- Baptiste Lepilleur and The JsonCpp Authors explicitly disclaim copyright in all
6750
- jurisdictions which recognize such a disclaimer. In such jurisdictions,
6751
- this software is released into the Public Domain.
6752
-
6753
- In jurisdictions which do not recognize Public Domain property (e.g. Germany as of
6754
- 2010), this software is Copyright (c) 2007-2010 by Baptiste Lepilleur and
6755
- The JsonCpp Authors, and is released under the terms of the MIT License (see below).
6756
-
6757
- In jurisdictions which recognize Public Domain property, the user of this
6758
- software may choose to accept it either as 1) Public Domain, 2) under the
6759
- conditions of the MIT License (see below), or 3) under the terms of dual
6760
- Public Domain/MIT License conditions described here, as they choose.
6761
-
6762
- The MIT License is about as close to Public Domain as a license can get, and is
6763
- described in clear, concise terms at:
6764
-
6765
- http://en.wikipedia.org/wiki/MIT_License
6766
-
6767
- The full text of the MIT License follows:
6768
-
6769
- ========================================================================
6770
- Copyright (c) 2007-2010 Baptiste Lepilleur and The JsonCpp Authors
6771
-
6772
- Permission is hereby granted, free of charge, to any person
6773
- obtaining a copy of this software and associated documentation
6774
- files (the "Software"), to deal in the Software without
6775
- restriction, including without limitation the rights to use, copy,
6776
- modify, merge, publish, distribute, sublicense, and/or sell copies
6777
- of the Software, and to permit persons to whom the Software is
6778
- furnished to do so, subject to the following conditions:
6779
-
6780
- The above copyright notice and this permission notice shall be
6781
- included in all copies or substantial portions of the Software.
6782
-
6783
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
6784
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
6785
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
6786
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
6787
- BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
6788
- ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
6789
- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
6790
- SOFTWARE.
6791
- ========================================================================
6792
- (END LICENSE TEXT)
6793
-
6794
- The MIT license is compatible with both the GPL and commercial
6795
- software, affording one all of the rights of Public Domain with the
6796
- minor nuisance of being required to keep the above copyright notice
6797
- and license text in the source code. Note also that by accepting the
6798
- Public Domain "license" you can re-license your copy using whatever
6799
- license you like.
6800
-
6801
- --------------------------------------------------------------------------------
6802
- Package Title: @sophus
6803
- Package Locator:
6804
- --------------------------------------------------------------------------------
6805
- * Declared Licenses *
6806
- Copyright 2011-2017 Hauke Strasdat
6807
- 2012-2017 Steven Lovegrove
6808
-
6809
- Permission is hereby granted, free of charge, to any person obtaining a copy
6810
- of this software and associated documentation files (the "Software"), to
6811
- deal in the Software without restriction, including without limitation the
6812
- rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
6813
- sell copies of the Software, and to permit persons to whom the Software is
6814
- furnished to do so, subject to the following conditions:
6815
-
6816
- The above copyright notice and this permission notice shall be included in
6817
- all copies or substantial portions of the Software.
6818
-
6819
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
6820
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
6821
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
6822
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
6823
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
6824
- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
6825
- IN THE SOFTWARE.
6826
- --------------------------------------------------------------------------------
6827
- Package Title: @nanosvg
6828
- Package Locator:
6829
- --------------------------------------------------------------------------------
6830
- * Declared Licenses *
6831
- Copyright (c) 2013-14 Mikko Mononen memon@inside.org
6832
-
6833
- This software is provided 'as-is', without any express or implied
6834
- warranty. In no event will the authors be held liable for any damages
6835
- arising from the use of this software.
6836
-
6837
- Permission is granted to anyone to use this software for any purpose,
6838
- including commercial applications, and to alter it and redistribute it
6839
- freely, subject to the following restrictions:
6840
-
6841
- 1. The origin of this software must not be misrepresented; you must not
6842
- claim that you wrote the original software. If you use this software
6843
- in a product, an acknowledgment in the product documentation would be
6844
- appreciated but is not required.
6845
- 2. Altered source versions must be plainly marked as such, and must not be
6846
- misrepresented as being the original software.
6847
- 3. This notice may not be removed or altered from any source distribution.
6848
-
6849
-
6850
- --------------------------------------------------------------------------------
6851
- Package Title: @opencv
6852
- Package Locator:
6853
- --------------------------------------------------------------------------------
6854
- * Declared Licenses *
6855
- By downloading, copying, installing or using the software you agree to this license.
6856
- If you do not agree to this license, do not download, install,
6857
- copy or use the software.
6858
-
6859
-
6860
- License Agreement
6861
- For Open Source Computer Vision Library
6862
- (3-clause BSD License)
6863
-
6864
- Copyright (C) 2000-2015, Intel Corporation, all rights reserved.
6865
- Copyright (C) 2009-2011, Willow Garage Inc., all rights reserved.
6866
- Copyright (C) 2009-2015, NVIDIA Corporation, all rights reserved.
6867
- Copyright (C) 2010-2013, Advanced Micro Devices, Inc., all rights reserved.
6868
- Copyright (C) 2015, OpenCV Foundation, all rights reserved.
6869
- Copyright (C) 2015, Itseez Inc., all rights reserved.
6870
- Third party copyrights are property of their respective owners.
6871
-
6872
- Redistribution and use in source and binary forms, with or without modification,
6873
- are permitted provided that the following conditions are met:
6874
-
6875
- * Redistributions of source code must retain the above copyright notice,
6876
- this list of conditions and the following disclaimer.
6877
-
6878
- * Redistributions in binary form must reproduce the above copyright notice,
6879
- this list of conditions and the following disclaimer in the documentation
6880
- and/or other materials provided with the distribution.
6881
-
6882
- * Neither the names of the copyright holders nor the names of the contributors
6883
- may be used to endorse or promote products derived from this software
6884
- without specific prior written permission.
6885
-
6886
- This software is provided by the copyright holders and contributors "as is" and
6887
- any express or implied warranties, including, but not limited to, the implied
6888
- warranties of merchantability and fitness for a particular purpose are disclaimed.
6889
- In no event shall copyright holders or contributors be liable for any direct,
6890
- indirect, incidental, special, exemplary, or consequential damages
6891
- (including, but not limited to, procurement of substitute goods or services;
6892
- loss of use, data, or profits; or business interruption) however caused
6893
- and on any theory of liability, whether in contract, strict liability,
6894
- or tort (including negligence or otherwise) arising in any way out of
6895
- the use of this software, even if advised of the possibility of such damage.
6896
-
6897
- --------------------------------------------------------------------------------
6898
- Package Title: @stb
6899
- Package Locator:
6900
- --------------------------------------------------------------------------------
6901
- * Declared Licenses *
6902
- This software is available under 2 licenses -- choose whichever you prefer.
6903
- ------------------------------------------------------------------------------
6904
- ALTERNATIVE A - MIT License
6905
- Copyright (c) 2017 Sean Barrett
6906
- Permission is hereby granted, free of charge, to any person obtaining a copy of
6907
- this software and associated documentation files (the "Software"), to deal in
6908
- the Software without restriction, including without limitation the rights to
6909
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
6910
- of the Software, and to permit persons to whom the Software is furnished to do
6911
- so, subject to the following conditions:
6912
- The above copyright notice and this permission notice shall be included in all
6913
- copies or substantial portions of the Software.
6914
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
6915
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
6916
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
6917
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
6918
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
6919
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
6920
- SOFTWARE.
6921
- ------------------------------------------------------------------------------
6922
- ALTERNATIVE B - Public Domain (www.unlicense.org)
6923
- This is free and unencumbered software released into the public domain.
6924
- Anyone is free to copy, modify, publish, use, compile, sell, or distribute this
6925
- software, either in source code form or as a compiled binary, for any purpose,
6926
- commercial or non-commercial, and by any means.
6927
- In jurisdictions that recognize copyright laws, the author or authors of this
6928
- software dedicate any and all copyright interest in the software to the public
6929
- domain. We make this dedication for the benefit of the public at large and to
6930
- the detriment of our heirs and successors. We intend this dedication to be an
6931
- overt act of relinquishment in perpetuity of all present and future rights to
6932
- this software under copyright law.
6933
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
6934
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
6935
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
6936
- AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
6937
- ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
6938
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
6939
-
6940
- --------------------------------------------------------------------------------
6941
- Package Title: @detex
6942
- Package Locator:
6943
- --------------------------------------------------------------------------------
6944
- * Declared Licenses *
6945
- Copyright (c) 2015 Harm Hanemaaijer <fgenfb@yahoo.com>
6946
-
6947
- Permission to use, copy, modify, and/or distribute this software for any
6948
- purpose with or without fee is hereby granted, provided that the above
6949
- copyright notice and this permission notice appear in all copies.
6950
-
6951
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
6952
- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
6953
- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
6954
- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
6955
- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
6956
- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
6957
- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
6958
-
6959
- --------------------------------------------------------------------------------
6960
- Package Title: @zstd
6961
- Package Locator:
6962
- --------------------------------------------------------------------------------
6963
- * Declared Licenses *
6964
- GNU GENERAL PUBLIC LICENSE
6965
- Version 2, June 1991
6966
-
6967
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
6968
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
6969
- Everyone is permitted to copy and distribute verbatim copies
6970
- of this license document, but changing it is not allowed.
6971
-
6972
- Preamble
6973
-
6974
- The licenses for most software are designed to take away your
6975
- freedom to share and change it. By contrast, the GNU General Public
6976
- License is intended to guarantee your freedom to share and change free
6977
- software--to make sure the software is free for all its users. This
6978
- General Public License applies to most of the Free Software
6979
- Foundation's software and to any other program whose authors commit to
6980
- using it. (Some other Free Software Foundation software is covered by
6981
- the GNU Lesser General Public License instead.) You can apply it to
6982
- your programs, too.
6983
-
6984
- When we speak of free software, we are referring to freedom, not
6985
- price. Our General Public Licenses are designed to make sure that you
6986
- have the freedom to distribute copies of free software (and charge for
6987
- this service if you wish), that you receive source code or can get it
6988
- if you want it, that you can change the software or use pieces of it
6989
- in new free programs; and that you know you can do these things.
6990
-
6991
- To protect your rights, we need to make restrictions that forbid
6992
- anyone to deny you these rights or to ask you to surrender the rights.
6993
- These restrictions translate to certain responsibilities for you if you
6994
- distribute copies of the software, or if you modify it.
6995
-
6996
- For example, if you distribute copies of such a program, whether
6997
- gratis or for a fee, you must give the recipients all the rights that
6998
- you have. You must make sure that they, too, receive or can get the
6999
- source code. And you must show them these terms so they know their
7000
- rights.
7001
-
7002
- We protect your rights with two steps: (1) copyright the software, and
7003
- (2) offer you this license which gives you legal permission to copy,
7004
- distribute and/or modify the software.
7005
-
7006
- Also, for each author's protection and ours, we want to make certain
7007
- that everyone understands that there is no warranty for this free
7008
- software. If the software is modified by someone else and passed on, we
7009
- want its recipients to know that what they have is not the original, so
7010
- that any problems introduced by others will not reflect on the original
7011
- authors' reputations.
7012
-
7013
- Finally, any free program is threatened constantly by software
7014
- patents. We wish to avoid the danger that redistributors of a free
7015
- program will individually obtain patent licenses, in effect making the
7016
- program proprietary. To prevent this, we have made it clear that any
7017
- patent must be licensed for everyone's free use or not licensed at all.
7018
-
7019
- The precise terms and conditions for copying, distribution and
7020
- modification follow.
7021
-
7022
- GNU GENERAL PUBLIC LICENSE
7023
- TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
7024
-
7025
- 0. This License applies to any program or other work which contains
7026
- a notice placed by the copyright holder saying it may be distributed
7027
- under the terms of this General Public License. The "Program", below,
7028
- refers to any such program or work, and a "work based on the Program"
7029
- means either the Program or any derivative work under copyright law:
7030
- that is to say, a work containing the Program or a portion of it,
7031
- either verbatim or with modifications and/or translated into another
7032
- language. (Hereinafter, translation is included without limitation in
7033
- the term "modification".) Each licensee is addressed as "you".
7034
-
7035
- Activities other than copying, distribution and modification are not
7036
- covered by this License; they are outside its scope. The act of
7037
- running the Program is not restricted, and the output from the Program
7038
- is covered only if its contents constitute a work based on the
7039
- Program (independent of having been made by running the Program).
7040
- Whether that is true depends on what the Program does.
7041
-
7042
- 1. You may copy and distribute verbatim copies of the Program's
7043
- source code as you receive it, in any medium, provided that you
7044
- conspicuously and appropriately publish on each copy an appropriate
7045
- copyright notice and disclaimer of warranty; keep intact all the
7046
- notices that refer to this License and to the absence of any warranty;
7047
- and give any other recipients of the Program a copy of this License
7048
- along with the Program.
7049
-
7050
- You may charge a fee for the physical act of transferring a copy, and
7051
- you may at your option offer warranty protection in exchange for a fee.
7052
-
7053
- 2. You may modify your copy or copies of the Program or any portion
7054
- of it, thus forming a work based on the Program, and copy and
7055
- distribute such modifications or work under the terms of Section 1
7056
- above, provided that you also meet all of these conditions:
7057
-
7058
- a) You must cause the modified files to carry prominent notices
7059
- stating that you changed the files and the date of any change.
7060
-
7061
- b) You must cause any work that you distribute or publish, that in
7062
- whole or in part contains or is derived from the Program or any
7063
- part thereof, to be licensed as a whole at no charge to all third
7064
- parties under the terms of this License.
7065
-
7066
- c) If the modified program normally reads commands interactively
7067
- when run, you must cause it, when started running for such
7068
- interactive use in the most ordinary way, to print or display an
7069
- announcement including an appropriate copyright notice and a
7070
- notice that there is no warranty (or else, saying that you provide
7071
- a warranty) and that users may redistribute the program under
7072
- these conditions, and telling the user how to view a copy of this
7073
- License. (Exception: if the Program itself is interactive but
7074
- does not normally print such an announcement, your work based on
7075
- the Program is not required to print an announcement.)
7076
-
7077
- These requirements apply to the modified work as a whole. If
7078
- identifiable sections of that work are not derived from the Program,
7079
- and can be reasonably considered independent and separate works in
7080
- themselves, then this License, and its terms, do not apply to those
7081
- sections when you distribute them as separate works. But when you
7082
- distribute the same sections as part of a whole which is a work based
7083
- on the Program, the distribution of the whole must be on the terms of
7084
- this License, whose permissions for other licensees extend to the
7085
- entire whole, and thus to each and every part regardless of who wrote it.
7086
-
7087
- Thus, it is not the intent of this section to claim rights or contest
7088
- your rights to work written entirely by you; rather, the intent is to
7089
- exercise the right to control the distribution of derivative or
7090
- collective works based on the Program.
7091
-
7092
- In addition, mere aggregation of another work not based on the Program
7093
- with the Program (or with a work based on the Program) on a volume of
7094
- a storage or distribution medium does not bring the other work under
7095
- the scope of this License.
7096
-
7097
- 3. You may copy and distribute the Program (or a work based on it,
7098
- under Section 2) in object code or executable form under the terms of
7099
- Sections 1 and 2 above provided that you also do one of the following:
7100
-
7101
- a) Accompany it with the complete corresponding machine-readable
7102
- source code, which must be distributed under the terms of Sections
7103
- 1 and 2 above on a medium customarily used for software interchange; or,
7104
-
7105
- b) Accompany it with a written offer, valid for at least three
7106
- years, to give any third party, for a charge no more than your
7107
- cost of physically performing source distribution, a complete
7108
- machine-readable copy of the corresponding source code, to be
7109
- distributed under the terms of Sections 1 and 2 above on a medium
7110
- customarily used for software interchange; or,
7111
-
7112
- c) Accompany it with the information you received as to the offer
7113
- to distribute corresponding source code. (This alternative is
7114
- allowed only for noncommercial distribution and only if you
7115
- received the program in object code or executable form with such
7116
- an offer, in accord with Subsection b above.)
7117
-
7118
- The source code for a work means the preferred form of the work for
7119
- making modifications to it. For an executable work, complete source
7120
- code means all the source code for all modules it contains, plus any
7121
- associated interface definition files, plus the scripts used to
7122
- control compilation and installation of the executable. However, as a
7123
- special exception, the source code distributed need not include
7124
- anything that is normally distributed (in either source or binary
7125
- form) with the major components (compiler, kernel, and so on) of the
7126
- operating system on which the executable runs, unless that component
7127
- itself accompanies the executable.
7128
-
7129
- If distribution of executable or object code is made by offering
7130
- access to copy from a designated place, then offering equivalent
7131
- access to copy the source code from the same place counts as
7132
- distribution of the source code, even though third parties are not
7133
- compelled to copy the source along with the object code.
7134
-
7135
- 4. You may not copy, modify, sublicense, or distribute the Program
7136
- except as expressly provided under this License. Any attempt
7137
- otherwise to copy, modify, sublicense or distribute the Program is
7138
- void, and will automatically terminate your rights under this License.
7139
- However, parties who have received copies, or rights, from you under
7140
- this License will not have their licenses terminated so long as such
7141
- parties remain in full compliance.
7142
-
7143
- 5. You are not required to accept this License, since you have not
7144
- signed it. However, nothing else grants you permission to modify or
7145
- distribute the Program or its derivative works. These actions are
7146
- prohibited by law if you do not accept this License. Therefore, by
7147
- modifying or distributing the Program (or any work based on the
7148
- Program), you indicate your acceptance of this License to do so, and
7149
- all its terms and conditions for copying, distributing or modifying
7150
- the Program or works based on it.
7151
-
7152
- 6. Each time you redistribute the Program (or any work based on the
7153
- Program), the recipient automatically receives a license from the
7154
- original licensor to copy, distribute or modify the Program subject to
7155
- these terms and conditions. You may not impose any further
7156
- restrictions on the recipients' exercise of the rights granted herein.
7157
- You are not responsible for enforcing compliance by third parties to
7158
- this License.
7159
-
7160
- 7. If, as a consequence of a court judgment or allegation of patent
7161
- infringement or for any other reason (not limited to patent issues),
7162
- conditions are imposed on you (whether by court order, agreement or
7163
- otherwise) that contradict the conditions of this License, they do not
7164
- excuse you from the conditions of this License. If you cannot
7165
- distribute so as to satisfy simultaneously your obligations under this
7166
- License and any other pertinent obligations, then as a consequence you
7167
- may not distribute the Program at all. For example, if a patent
7168
- license would not permit royalty-free redistribution of the Program by
7169
- all those who receive copies directly or indirectly through you, then
7170
- the only way you could satisfy both it and this License would be to
7171
- refrain entirely from distribution of the Program.
7172
-
7173
- If any portion of this section is held invalid or unenforceable under
7174
- any particular circumstance, the balance of the section is intended to
7175
- apply and the section as a whole is intended to apply in other
7176
- circumstances.
7177
-
7178
- It is not the purpose of this section to induce you to infringe any
7179
- patents or other property right claims or to contest validity of any
7180
- such claims; this section has the sole purpose of protecting the
7181
- integrity of the free software distribution system, which is
7182
- implemented by public license practices. Many people have made
7183
- generous contributions to the wide range of software distributed
7184
- through that system in reliance on consistent application of that
7185
- system; it is up to the author/donor to decide if he or she is willing
7186
- to distribute software through any other system and a licensee cannot
7187
- impose that choice.
7188
-
7189
- This section is intended to make thoroughly clear what is believed to
7190
- be a consequence of the rest of this License.
7191
-
7192
- 8. If the distribution and/or use of the Program is restricted in
7193
- certain countries either by patents or by copyrighted interfaces, the
7194
- original copyright holder who places the Program under this License
7195
- may add an explicit geographical distribution limitation excluding
7196
- those countries, so that distribution is permitted only in or among
7197
- countries not thus excluded. In such case, this License incorporates
7198
- the limitation as if written in the body of this License.
7199
-
7200
- 9. The Free Software Foundation may publish revised and/or new versions
7201
- of the General Public License from time to time. Such new versions will
7202
- be similar in spirit to the present version, but may differ in detail to
7203
- address new problems or concerns.
7204
-
7205
- Each version is given a distinguishing version number. If the Program
7206
- specifies a version number of this License which applies to it and "any
7207
- later version", you have the option of following the terms and conditions
7208
- either of that version or of any later version published by the Free
7209
- Software Foundation. If the Program does not specify a version number of
7210
- this License, you may choose any version ever published by the Free Software
7211
- Foundation.
7212
-
7213
- 10. If you wish to incorporate parts of the Program into other free
7214
- programs whose distribution conditions are different, write to the author
7215
- to ask for permission. For software which is copyrighted by the Free
7216
- Software Foundation, write to the Free Software Foundation; we sometimes
7217
- make exceptions for this. Our decision will be guided by the two goals
7218
- of preserving the free status of all derivatives of our free software and
7219
- of promoting the sharing and reuse of software generally.
7220
-
7221
- NO WARRANTY
7222
-
7223
- 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
7224
- FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
7225
- OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
7226
- PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
7227
- OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
7228
- MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
7229
- TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
7230
- PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
7231
- REPAIR OR CORRECTION.
7232
-
7233
- 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
7234
- WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
7235
- REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
7236
- INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
7237
- OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
7238
- TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
7239
- YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
7240
- PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
7241
- POSSIBILITY OF SUCH DAMAGES.
7242
-
7243
- END OF TERMS AND CONDITIONS
7244
-
7245
- How to Apply These Terms to Your New Programs
7246
-
7247
- If you develop a new program, and you want it to be of the greatest
7248
- possible use to the public, the best way to achieve this is to make it
7249
- free software which everyone can redistribute and change under these terms.
7250
-
7251
- To do so, attach the following notices to the program. It is safest
7252
- to attach them to the start of each source file to most effectively
7253
- convey the exclusion of warranty; and each file should have at least
7254
- the "copyright" line and a pointer to where the full notice is found.
7255
-
7256
- <one line to give the program's name and a brief idea of what it does.>
7257
- Copyright (C) <year> <name of author>
7258
-
7259
- This program is free software; you can redistribute it and/or modify
7260
- it under the terms of the GNU General Public License as published by
7261
- the Free Software Foundation; either version 2 of the License, or
7262
- (at your option) any later version.
7263
-
7264
- This program is distributed in the hope that it will be useful,
7265
- but WITHOUT ANY WARRANTY; without even the implied warranty of
7266
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
7267
- GNU General Public License for more details.
7268
-
7269
- You should have received a copy of the GNU General Public License along
7270
- with this program; if not, write to the Free Software Foundation, Inc.,
7271
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
7272
-
7273
- Also add information on how to contact you by electronic and paper mail.
7274
-
7275
- If the program is interactive, make it output a short notice like this
7276
- when it starts in an interactive mode:
7277
-
7278
- Gnomovision version 69, Copyright (C) year name of author
7279
- Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
7280
- This is free software, and you are welcome to redistribute it
7281
- under certain conditions; type `show c' for details.
7282
-
7283
- The hypothetical commands `show w' and `show c' should show the appropriate
7284
- parts of the General Public License. Of course, the commands you use may
7285
- be called something other than `show w' and `show c'; they could even be
7286
- mouse-clicks or menu items--whatever suits your program.
7287
-
7288
- You should also get your employer (if you work as a programmer) or your
7289
- school, if any, to sign a "copyright disclaimer" for the program, if
7290
- necessary. Here is a sample; alter the names:
7291
-
7292
- Yoyodyne, Inc., hereby disclaims all copyright interest in the program
7293
- `Gnomovision' (which makes passes at compilers) written by James Hacker.
7294
-
7295
- <signature of Ty Coon>, 1 April 1989
7296
- Ty Coon, President of Vice
7297
-
7298
- This General Public License does not permit incorporating your program into
7299
- proprietary programs. If your program is a subroutine library, you may
7300
- consider it more useful to permit linking proprietary applications with the
7301
- library. If this is what you want to do, use the GNU Lesser General
7302
- Public License instead of this License.
7303
- --------------------------------------------------------------------------------
7304
- Package Title: @libjpeg-turbo
7305
- Package Locator:
7306
- --------------------------------------------------------------------------------
7307
- * Declared Licenses *
7308
- libjpeg-turbo Licenses
7309
- ======================
7310
-
7311
- libjpeg-turbo is covered by three compatible BSD-style open source licenses:
7312
-
7313
- - The IJG (Independent JPEG Group) License, which is listed in
7314
- [README.ijg](README.ijg)
7315
-
7316
- This license applies to the libjpeg API library and associated programs
7317
- (any code inherited from libjpeg, and any modifications to that code.)
7318
-
7319
- - The Modified (3-clause) BSD License, which is listed below
7320
-
7321
- This license covers the TurboJPEG API library and associated programs, as
7322
- well as the build system.
7323
-
7324
- - The [zlib License](https://opensource.org/licenses/Zlib)
7325
-
7326
- This license is a subset of the other two, and it covers the libjpeg-turbo
7327
- SIMD extensions.
7328
-
7329
-
7330
- Complying with the libjpeg-turbo Licenses
7331
- =========================================
7332
-
7333
- This section provides a roll-up of the libjpeg-turbo licensing terms, to the
7334
- best of our understanding.
7335
-
7336
- 1. If you are distributing a modified version of the libjpeg-turbo source,
7337
- then:
7338
-
7339
- 1. You cannot alter or remove any existing copyright or license notices
7340
- from the source.
7341
-
7342
- **Origin**
7343
- - Clause 1 of the IJG License
7344
- - Clause 1 of the Modified BSD License
7345
- - Clauses 1 and 3 of the zlib License
7346
-
7347
- 2. You must add your own copyright notice to the header of each source
7348
- file you modified, so others can tell that you modified that file (if
7349
- there is not an existing copyright header in that file, then you can
7350
- simply add a notice stating that you modified the file.)
7351
-
7352
- **Origin**
7353
- - Clause 1 of the IJG License
7354
- - Clause 2 of the zlib License
7355
-
7356
- 3. You must include the IJG README file, and you must not alter any of the
7357
- copyright or license text in that file.
7358
-
7359
- **Origin**
7360
- - Clause 1 of the IJG License
7361
-
7362
- 2. If you are distributing only libjpeg-turbo binaries without the source, or
7363
- if you are distributing an application that statically links with
7364
- libjpeg-turbo, then:
7365
-
7366
- 1. Your product documentation must include a message stating:
7367
-
7368
- This software is based in part on the work of the Independent JPEG
7369
- Group.
7370
-
7371
- **Origin**
7372
- - Clause 2 of the IJG license
7373
-
7374
- 2. If your binary distribution includes or uses the TurboJPEG API, then
7375
- your product documentation must include the text of the Modified BSD
7376
- License (see below.)
7377
-
7378
- **Origin**
7379
- - Clause 2 of the Modified BSD License
7380
-
7381
- 3. You cannot use the name of the IJG or The libjpeg-turbo Project or the
7382
- contributors thereof in advertising, publicity, etc.
7383
-
7384
- **Origin**
7385
- - IJG License
7386
- - Clause 3 of the Modified BSD License
7387
-
7388
- 4. The IJG and The libjpeg-turbo Project do not warrant libjpeg-turbo to be
7389
- free of defects, nor do we accept any liability for undesirable
7390
- consequences resulting from your use of the software.
7391
-
7392
- **Origin**
7393
- - IJG License
7394
- - Modified BSD License
7395
- - zlib License
7396
-
7397
-
7398
- The Modified (3-clause) BSD License
7399
- ===================================
7400
-
7401
- Copyright (C)2009-2021 D. R. Commander. All Rights Reserved.<br>
7402
- Copyright (C)2015 Viktor Szathmáry. All Rights Reserved.
7403
-
7404
- Redistribution and use in source and binary forms, with or without
7405
- modification, are permitted provided that the following conditions are met:
7406
-
7407
- - Redistributions of source code must retain the above copyright notice,
7408
- this list of conditions and the following disclaimer.
7409
- - Redistributions in binary form must reproduce the above copyright notice,
7410
- this list of conditions and the following disclaimer in the documentation
7411
- and/or other materials provided with the distribution.
7412
- - Neither the name of the libjpeg-turbo Project nor the names of its
7413
- contributors may be used to endorse or promote products derived from this
7414
- software without specific prior written permission.
7415
-
7416
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS",
7417
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
7418
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
7419
- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
7420
- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
7421
- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
7422
- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
7423
- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
7424
- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
7425
- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
7426
- POSSIBILITY OF SUCH DAMAGE.
7427
-
7428
-
7429
- Why Three Licenses?
7430
- ===================
7431
-
7432
- The zlib License could have been used instead of the Modified (3-clause) BSD
7433
- License, and since the IJG License effectively subsumes the distribution
7434
- conditions of the zlib License, this would have effectively placed
7435
- libjpeg-turbo binary distributions under the IJG License. However, the IJG
7436
- License specifically refers to the Independent JPEG Group and does not extend
7437
- attribution and endorsement protections to other entities. Thus, it was
7438
- desirable to choose a license that granted us the same protections for new code
7439
- that were granted to the IJG for code derived from their software.
7440
-
7441
- --------------------------------------------------------------------------------
7442
- Package Title: @zoo
7443
- Package Locator:
7444
- --------------------------------------------------------------------------------
7445
- * Declared Licenses *
7446
- MIT License
7447
-
7448
- Copyright (c) 2017 thecppzoo
7449
-
7450
- Permission is hereby granted, free of charge, to any person obtaining a copy
7451
- of this software and associated documentation files (the "Software"), to deal
7452
- in the Software without restriction, including without limitation the rights
7453
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7454
- copies of the Software, and to permit persons to whom the Software is
7455
- furnished to do so, subject to the following conditions:
7456
-
7457
- The above copyright notice and this permission notice shall be included in all
7458
- copies or substantial portions of the Software.
7459
-
7460
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
7461
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
7462
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
7463
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
7464
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
7465
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
7466
- SOFTWARE.
7467
-
7468
- --------------------------------------------------------------------------------
7469
- Package Title: @ceres-solver
7470
- Package Locator:
7471
- --------------------------------------------------------------------------------
7472
- * Declared Licenses *
7473
- Ceres Solver - A fast non-linear least squares minimizer
7474
- Copyright 2015 Google Inc. All rights reserved.
7475
- http://ceres-solver.org/
7476
-
7477
- Redistribution and use in source and binary forms, with or without
7478
- modification, are permitted provided that the following conditions are met:
7479
-
7480
- * Redistributions of source code must retain the above copyright notice,
7481
- this list of conditions and the following disclaimer.
7482
- * Redistributions in binary form must reproduce the above copyright notice,
7483
- this list of conditions and the following disclaimer in the documentation
7484
- and/or other materials provided with the distribution.
7485
- * Neither the name of Google Inc. nor the names of its contributors may be
7486
- used to endorse or promote products derived from this software without
7487
- specific prior written permission.
7488
-
7489
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
7490
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
7491
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
7492
- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
7493
- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
7494
- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
7495
- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
7496
- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
7497
- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
7498
- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
7499
- POSSIBILITY OF SUCH DAMAGE.
7500
-
7501
- --------------------------------------------------------------------------------
7502
- Package Title: @concurrentqueue
7503
- Package Locator:
7504
- --------------------------------------------------------------------------------
7505
- * Declared Licenses *
7506
- This license file applies to everything in this repository except that which
7507
- is explicitly annotated as being written by other authors, i.e. the Boost
7508
- queue (included in the benchmarks for comparison), Intel's TBB library (ditto),
7509
- dlib::pipe (ditto),
7510
- the CDSChecker tool (used for verification), the Relacy model checker (ditto),
7511
- and Jeff Preshing's semaphore implementation (used in the blocking queue) which
7512
- has a zlib license (embedded in lightweightsempahore.h).
7513
-
7514
- ---
7515
-
7516
- Simplified BSD License:
7517
-
7518
- Copyright (c) 2013-2016, Cameron Desrochers.
7519
- All rights reserved.
7520
-
7521
- Redistribution and use in source and binary forms, with or without modification,
7522
- are permitted provided that the following conditions are met:
7523
-
7524
- - Redistributions of source code must retain the above copyright notice, this list of
7525
- conditions and the following disclaimer.
7526
- - Redistributions in binary form must reproduce the above copyright notice, this list of
7527
- conditions and the following disclaimer in the documentation and/or other materials
7528
- provided with the distribution.
7529
-
7530
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
7531
- EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
7532
- MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
7533
- THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
7534
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
7535
- OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
7536
- HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
7537
- TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
7538
- EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
7539
-
7540
- ---
7541
-
7542
- I have also chosen to dual-license under the Boost Software License as an alternative to
7543
- the Simplified BSD license above:
7544
-
7545
- Boost Software License - Version 1.0 - August 17th, 2003
7546
-
7547
- Permission is hereby granted, free of charge, to any person or organization
7548
- obtaining a copy of the software and accompanying documentation covered by
7549
- this license (the "Software") to use, reproduce, display, distribute,
7550
- execute, and transmit the Software, and to prepare derivative works of the
7551
- Software, and to permit third-parties to whom the Software is furnished to
7552
- do so, all subject to the following:
7553
-
7554
- The copyright notices in the Software and this entire statement, including
7555
- the above license grant, this restriction and the following disclaimer,
7556
- must be included in all copies of the Software, in whole or in part, and
7557
- all derivative works of the Software, unless such copies or derivative
7558
- works are solely in the form of machine-executable object code generated by
7559
- a source language processor.
7560
-
7561
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
7562
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
7563
- FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
7564
- SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
7565
- FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
7566
- ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
7567
- DEALINGS IN THE SOFTWARE.
7568
-
7569
- --------------------------------------------------------------------------------
7570
- Package Title: @actl
7571
- Package Locator:
7572
- --------------------------------------------------------------------------------
7573
- * Declared Licenses *
7574
- Boost Software License - Version 1.0 - August 17th, 2003
7575
-
7576
- Permission is hereby granted, free of charge, to any person or organization
7577
- obtaining a copy of the software and accompanying documentation covered by
7578
- this license (the "Software") to use, reproduce, display, distribute,
7579
- execute, and transmit the Software, and to prepare derivative works of the
7580
- Software, and to permit third-parties to whom the Software is furnished to
7581
- do so, all subject to the following:
7582
-
7583
- The copyright notices in the Software and this entire statement, including
7584
- the above license grant, this restriction and the following disclaimer,
7585
- must be included in all copies of the Software, in whole or in part, and
7586
- all derivative works of the Software, unless such copies or derivative
7587
- works are solely in the form of machine-executable object code generated by
7588
- a source language processor.
7589
-
7590
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
7591
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
7592
- FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
7593
- SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
7594
- FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
7595
- ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
7596
- DEALINGS IN THE SOFTWARE.
7597
-
7598
- --------------------------------------------------------------------------------
7599
- Package Title: @cereal
7600
- Package Locator:
7601
- --------------------------------------------------------------------------------
7602
- * Declared Licenses *
7603
- Copyright (c) 2013-2022, Randolph Voorhies, Shane Grant
7604
- All rights reserved.
7605
-
7606
- Redistribution and use in source and binary forms, with or without
7607
- modification, are permitted provided that the following conditions are met:
7608
- * Redistributions of source code must retain the above copyright
7609
- notice, this list of conditions and the following disclaimer.
7610
- * Redistributions in binary form must reproduce the above copyright
7611
- notice, this list of conditions and the following disclaimer in the
7612
- documentation and/or other materials provided with the distribution.
7613
- * Neither the name of the copyright holder nor the
7614
- names of its contributors may be used to endorse or promote products
7615
- derived from this software without specific prior written permission.
7616
-
7617
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
7618
- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
7619
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
7620
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY
7621
- DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
7622
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
7623
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
7624
- ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
7625
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
7626
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
7627
-
7628
- --------------------------------------------------------------------------------
7629
- Package Title: @protoc-installer
7630
- Package Locator:
7631
- --------------------------------------------------------------------------------
7632
- * Declared Licenses *
7633
- Copyright 2008 Google Inc. All rights reserved.
7634
-
7635
- Redistribution and use in source and binary forms, with or without
7636
- modification, are permitted provided that the following conditions are
7637
- met:
7638
-
7639
- * Redistributions of source code must retain the above copyright
7640
- notice, this list of conditions and the following disclaimer.
7641
- * Redistributions in binary form must reproduce the above
7642
- copyright notice, this list of conditions and the following disclaimer
7643
- in the documentation and/or other materials provided with the
7644
- distribution.
7645
- * Neither the name of Google Inc. nor the names of its
7646
- contributors may be used to endorse or promote products derived from
7647
- this software without specific prior written permission.
7648
-
7649
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
7650
- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
7651
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
7652
- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
7653
- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
7654
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
7655
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
7656
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
7657
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
7658
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
7659
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
7660
-
7661
- Code generated by the Protocol Buffer compiler is owned by the owner
7662
- of the input file used when generating it. This code is not
7663
- standalone and requires a support library to be linked with it. This
7664
- support library is itself covered by the above license.
7665
-
7666
- --------------------------------------------------------------------------------
7667
- Package Title: @half
7668
- Package Locator:
7669
- --------------------------------------------------------------------------------
7670
- * Declared Licenses *
7671
- The MIT License
7672
-
7673
- Copyright (c) 2012-2017 Christian Rau
7674
-
7675
- Permission is hereby granted, free of charge, to any person obtaining a copy
7676
- of this software and associated documentation files (the "Software"), to deal
7677
- in the Software without restriction, including without limitation the rights
7678
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7679
- copies of the Software, and to permit persons to whom the Software is
7680
- furnished to do so, subject to the following conditions:
7681
-
7682
- The above copyright notice and this permission notice shall be included in
7683
- all copies or substantial portions of the Software.
7684
-
7685
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
7686
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
7687
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
7688
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
7689
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
7690
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
7691
- THE SOFTWARE.
7692
-
7693
- --------------------------------------------------------------------------------
7694
- Package Title: @eigen
7695
- Package Locator:
7696
- --------------------------------------------------------------------------------
7697
- * Declared Licenses *
7698
- Mozilla Public License Version 2.0
7699
- ==================================
7700
-
7701
- 1. Definitions
7702
- --------------
7703
-
7704
- 1.1. "Contributor"
7705
- means each individual or legal entity that creates, contributes to
7706
- the creation of, or owns Covered Software.
7707
-
7708
- 1.2. "Contributor Version"
7709
- means the combination of the Contributions of others (if any) used
7710
- by a Contributor and that particular Contributor's Contribution.
7711
-
7712
- 1.3. "Contribution"
7713
- means Covered Software of a particular Contributor.
7714
-
7715
- 1.4. "Covered Software"
7716
- means Source Code Form to which the initial Contributor has attached
7717
- the notice in Exhibit A, the Executable Form of such Source Code
7718
- Form, and Modifications of such Source Code Form, in each case
7719
- including portions thereof.
7720
-
7721
- 1.5. "Incompatible With Secondary Licenses"
7722
- means
7723
-
7724
- (a) that the initial Contributor has attached the notice described
7725
- in Exhibit B to the Covered Software; or
7726
-
7727
- (b) that the Covered Software was made available under the terms of
7728
- version 1.1 or earlier of the License, but not also under the
7729
- terms of a Secondary License.
7730
-
7731
- 1.6. "Executable Form"
7732
- means any form of the work other than Source Code Form.
7733
-
7734
- 1.7. "Larger Work"
7735
- means a work that combines Covered Software with other material, in
7736
- a separate file or files, that is not Covered Software.
7737
-
7738
- 1.8. "License"
7739
- means this document.
7740
-
7741
- 1.9. "Licensable"
7742
- means having the right to grant, to the maximum extent possible,
7743
- whether at the time of the initial grant or subsequently, any and
7744
- all of the rights conveyed by this License.
7745
-
7746
- 1.10. "Modifications"
7747
- means any of the following:
7748
-
7749
- (a) any file in Source Code Form that results from an addition to,
7750
- deletion from, or modification of the contents of Covered
7751
- Software; or
7752
-
7753
- (b) any new file in Source Code Form that contains any Covered
7754
- Software.
7755
-
7756
- 1.11. "Patent Claims" of a Contributor
7757
- means any patent claim(s), including without limitation, method,
7758
- process, and apparatus claims, in any patent Licensable by such
7759
- Contributor that would be infringed, but for the grant of the
7760
- License, by the making, using, selling, offering for sale, having
7761
- made, import, or transfer of either its Contributions or its
7762
- Contributor Version.
7763
-
7764
- 1.12. "Secondary License"
7765
- means either the GNU General Public License, Version 2.0, the GNU
7766
- Lesser General Public License, Version 2.1, the GNU Affero General
7767
- Public License, Version 3.0, or any later versions of those
7768
- licenses.
7769
-
7770
- 1.13. "Source Code Form"
7771
- means the form of the work preferred for making modifications.
7772
-
7773
- 1.14. "You" (or "Your")
7774
- means an individual or a legal entity exercising rights under this
7775
- License. For legal entities, "You" includes any entity that
7776
- controls, is controlled by, or is under common control with You. For
7777
- purposes of this definition, "control" means (a) the power, direct
7778
- or indirect, to cause the direction or management of such entity,
7779
- whether by contract or otherwise, or (b) ownership of more than
7780
- fifty percent (50%) of the outstanding shares or beneficial
7781
- ownership of such entity.
7782
-
7783
- 2. License Grants and Conditions
7784
- --------------------------------
7785
-
7786
- 2.1. Grants
7787
-
7788
- Each Contributor hereby grants You a world-wide, royalty-free,
7789
- non-exclusive license:
7790
-
7791
- (a) under intellectual property rights (other than patent or trademark)
7792
- Licensable by such Contributor to use, reproduce, make available,
7793
- modify, display, perform, distribute, and otherwise exploit its
7794
- Contributions, either on an unmodified basis, with Modifications, or
7795
- as part of a Larger Work; and
7796
-
7797
- (b) under Patent Claims of such Contributor to make, use, sell, offer
7798
- for sale, have made, import, and otherwise transfer either its
7799
- Contributions or its Contributor Version.
7800
-
7801
- 2.2. Effective Date
7802
-
7803
- The licenses granted in Section 2.1 with respect to any Contribution
7804
- become effective for each Contribution on the date the Contributor first
7805
- distributes such Contribution.
7806
-
7807
- 2.3. Limitations on Grant Scope
7808
-
7809
- The licenses granted in this Section 2 are the only rights granted under
7810
- this License. No additional rights or licenses will be implied from the
7811
- distribution or licensing of Covered Software under this License.
7812
- Notwithstanding Section 2.1(b) above, no patent license is granted by a
7813
- Contributor:
7814
-
7815
- (a) for any code that a Contributor has removed from Covered Software;
7816
- or
7817
-
7818
- (b) for infringements caused by: (i) Your and any other third party's
7819
- modifications of Covered Software, or (ii) the combination of its
7820
- Contributions with other software (except as part of its Contributor
7821
- Version); or
7822
-
7823
- (c) under Patent Claims infringed by Covered Software in the absence of
7824
- its Contributions.
7825
-
7826
- This License does not grant any rights in the trademarks, service marks,
7827
- or logos of any Contributor (except as may be necessary to comply with
7828
- the notice requirements in Section 3.4).
7829
-
7830
- 2.4. Subsequent Licenses
7831
-
7832
- No Contributor makes additional grants as a result of Your choice to
7833
- distribute the Covered Software under a subsequent version of this
7834
- License (see Section 10.2) or under the terms of a Secondary License (if
7835
- permitted under the terms of Section 3.3).
7836
-
7837
- 2.5. Representation
7838
-
7839
- Each Contributor represents that the Contributor believes its
7840
- Contributions are its original creation(s) or it has sufficient rights
7841
- to grant the rights to its Contributions conveyed by this License.
7842
-
7843
- 2.6. Fair Use
7844
-
7845
- This License is not intended to limit any rights You have under
7846
- applicable copyright doctrines of fair use, fair dealing, or other
7847
- equivalents.
7848
-
7849
- 2.7. Conditions
7850
-
7851
- Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
7852
- in Section 2.1.
7853
-
7854
- 3. Responsibilities
7855
- -------------------
7856
-
7857
- 3.1. Distribution of Source Form
7858
-
7859
- All distribution of Covered Software in Source Code Form, including any
7860
- Modifications that You create or to which You contribute, must be under
7861
- the terms of this License. You must inform recipients that the Source
7862
- Code Form of the Covered Software is governed by the terms of this
7863
- License, and how they can obtain a copy of this License. You may not
7864
- attempt to alter or restrict the recipients' rights in the Source Code
7865
- Form.
7866
-
7867
- 3.2. Distribution of Executable Form
7868
-
7869
- If You distribute Covered Software in Executable Form then:
7870
-
7871
- (a) such Covered Software must also be made available in Source Code
7872
- Form, as described in Section 3.1, and You must inform recipients of
7873
- the Executable Form how they can obtain a copy of such Source Code
7874
- Form by reasonable means in a timely manner, at a charge no more
7875
- than the cost of distribution to the recipient; and
7876
-
7877
- (b) You may distribute such Executable Form under the terms of this
7878
- License, or sublicense it under different terms, provided that the
7879
- license for the Executable Form does not attempt to limit or alter
7880
- the recipients' rights in the Source Code Form under this License.
7881
-
7882
- 3.3. Distribution of a Larger Work
7883
-
7884
- You may create and distribute a Larger Work under terms of Your choice,
7885
- provided that You also comply with the requirements of this License for
7886
- the Covered Software. If the Larger Work is a combination of Covered
7887
- Software with a work governed by one or more Secondary Licenses, and the
7888
- Covered Software is not Incompatible With Secondary Licenses, this
7889
- License permits You to additionally distribute such Covered Software
7890
- under the terms of such Secondary License(s), so that the recipient of
7891
- the Larger Work may, at their option, further distribute the Covered
7892
- Software under the terms of either this License or such Secondary
7893
- License(s).
7894
-
7895
- 3.4. Notices
7896
-
7897
- You may not remove or alter the substance of any license notices
7898
- (including copyright notices, patent notices, disclaimers of warranty,
7899
- or limitations of liability) contained within the Source Code Form of
7900
- the Covered Software, except that You may alter any license notices to
7901
- the extent required to remedy known factual inaccuracies.
7902
-
7903
- 3.5. Application of Additional Terms
7904
-
7905
- You may choose to offer, and to charge a fee for, warranty, support,
7906
- indemnity or liability obligations to one or more recipients of Covered
7907
- Software. However, You may do so only on Your own behalf, and not on
7908
- behalf of any Contributor. You must make it absolutely clear that any
7909
- such warranty, support, indemnity, or liability obligation is offered by
7910
- You alone, and You hereby agree to indemnify every Contributor for any
7911
- liability incurred by such Contributor as a result of warranty, support,
7912
- indemnity or liability terms You offer. You may include additional
7913
- disclaimers of warranty and limitations of liability specific to any
7914
- jurisdiction.
7915
-
7916
- 4. Inability to Comply Due to Statute or Regulation
7917
- ---------------------------------------------------
7918
-
7919
- If it is impossible for You to comply with any of the terms of this
7920
- License with respect to some or all of the Covered Software due to
7921
- statute, judicial order, or regulation then You must: (a) comply with
7922
- the terms of this License to the maximum extent possible; and (b)
7923
- describe the limitations and the code they affect. Such description must
7924
- be placed in a text file included with all distributions of the Covered
7925
- Software under this License. Except to the extent prohibited by statute
7926
- or regulation, such description must be sufficiently detailed for a
7927
- recipient of ordinary skill to be able to understand it.
7928
-
7929
- 5. Termination
7930
- --------------
7931
-
7932
- 5.1. The rights granted under this License will terminate automatically
7933
- if You fail to comply with any of its terms. However, if You become
7934
- compliant, then the rights granted under this License from a particular
7935
- Contributor are reinstated (a) provisionally, unless and until such
7936
- Contributor explicitly and finally terminates Your grants, and (b) on an
7937
- ongoing basis, if such Contributor fails to notify You of the
7938
- non-compliance by some reasonable means prior to 60 days after You have
7939
- come back into compliance. Moreover, Your grants from a particular
7940
- Contributor are reinstated on an ongoing basis if such Contributor
7941
- notifies You of the non-compliance by some reasonable means, this is the
7942
- first time You have received notice of non-compliance with this License
7943
- from such Contributor, and You become compliant prior to 30 days after
7944
- Your receipt of the notice.
7945
-
7946
- 5.2. If You initiate litigation against any entity by asserting a patent
7947
- infringement claim (excluding declaratory judgment actions,
7948
- counter-claims, and cross-claims) alleging that a Contributor Version
7949
- directly or indirectly infringes any patent, then the rights granted to
7950
- You by any and all Contributors for the Covered Software under Section
7951
- 2.1 of this License shall terminate.
7952
-
7953
- 5.3. In the event of termination under Sections 5.1 or 5.2 above, all
7954
- end user license agreements (excluding distributors and resellers) which
7955
- have been validly granted by You or Your distributors under this License
7956
- prior to termination shall survive termination.
7957
-
7958
- ************************************************************************
7959
- * *
7960
- * 6. Disclaimer of Warranty *
7961
- * ------------------------- *
7962
- * *
7963
- * Covered Software is provided under this License on an "as is" *
7964
- * basis, without warranty of any kind, either expressed, implied, or *
7965
- * statutory, including, without limitation, warranties that the *
7966
- * Covered Software is free of defects, merchantable, fit for a *
7967
- * particular purpose or non-infringing. The entire risk as to the *
7968
- * quality and performance of the Covered Software is with You. *
7969
- * Should any Covered Software prove defective in any respect, You *
7970
- * (not any Contributor) assume the cost of any necessary servicing, *
7971
- * repair, or correction. This disclaimer of warranty constitutes an *
7972
- * essential part of this License. No use of any Covered Software is *
7973
- * authorized under this License except under this disclaimer. *
7974
- * *
7975
- ************************************************************************
7976
-
7977
- ************************************************************************
7978
- * *
7979
- * 7. Limitation of Liability *
7980
- * -------------------------- *
7981
- * *
7982
- * Under no circumstances and under no legal theory, whether tort *
7983
- * (including negligence), contract, or otherwise, shall any *
7984
- * Contributor, or anyone who distributes Covered Software as *
7985
- * permitted above, be liable to You for any direct, indirect, *
7986
- * special, incidental, or consequential damages of any character *
7987
- * including, without limitation, damages for lost profits, loss of *
7988
- * goodwill, work stoppage, computer failure or malfunction, or any *
7989
- * and all other commercial damages or losses, even if such party *
7990
- * shall have been informed of the possibility of such damages. This *
7991
- * limitation of liability shall not apply to liability for death or *
7992
- * personal injury resulting from such party's negligence to the *
7993
- * extent applicable law prohibits such limitation. Some *
7994
- * jurisdictions do not allow the exclusion or limitation of *
7995
- * incidental or consequential damages, so this exclusion and *
7996
- * limitation may not apply to You. *
7997
- * *
7998
- ************************************************************************
7999
-
8000
- 8. Litigation
8001
- -------------
8002
-
8003
- Any litigation relating to this License may be brought only in the
8004
- courts of a jurisdiction where the defendant maintains its principal
8005
- place of business and such litigation shall be governed by laws of that
8006
- jurisdiction, without reference to its conflict-of-law provisions.
8007
- Nothing in this Section shall prevent a party's ability to bring
8008
- cross-claims or counter-claims.
8009
-
8010
- 9. Miscellaneous
8011
- ----------------
8012
-
8013
- This License represents the complete agreement concerning the subject
8014
- matter hereof. If any provision of this License is held to be
8015
- unenforceable, such provision shall be reformed only to the extent
8016
- necessary to make it enforceable. Any law or regulation which provides
8017
- that the language of a contract shall be construed against the drafter
8018
- shall not be used to construe this License against a Contributor.
8019
-
8020
- 10. Versions of the License
8021
- ---------------------------
8022
-
8023
- 10.1. New Versions
8024
-
8025
- Mozilla Foundation is the license steward. Except as provided in Section
8026
- 10.3, no one other than the license steward has the right to modify or
8027
- publish new versions of this License. Each version will be given a
8028
- distinguishing version number.
8029
-
8030
- 10.2. Effect of New Versions
8031
-
8032
- You may distribute the Covered Software under the terms of the version
8033
- of the License under which You originally received the Covered Software,
8034
- or under the terms of any subsequent version published by the license
8035
- steward.
8036
-
8037
- 10.3. Modified Versions
8038
-
8039
- If you create software not governed by this License, and you want to
8040
- create a new license for such software, you may create and use a
8041
- modified version of this License if you rename the license and remove
8042
- any references to the name of the license steward (except to note that
8043
- such modified license differs from this License).
8044
-
8045
- 10.4. Distributing Source Code Form that is Incompatible With Secondary
8046
- Licenses
8047
-
8048
- If You choose to distribute Source Code Form that is Incompatible With
8049
- Secondary Licenses under the terms of this version of the License, the
8050
- notice described in Exhibit B of this License must be attached.
8051
-
8052
- Exhibit A - Source Code Form License Notice
8053
- -------------------------------------------
8054
-
8055
- This Source Code Form is subject to the terms of the Mozilla Public
8056
- License, v. 2.0. If a copy of the MPL was not distributed with this
8057
- file, You can obtain one at http://mozilla.org/MPL/2.0/.
8058
-
8059
- If it is not possible or desirable to put the notice in a particular
8060
- file, then You may include the notice in a location (such as a LICENSE
8061
- file in a relevant directory) where a recipient would be likely to look
8062
- for such a notice.
8063
-
8064
- You may add additional accurate notices of copyright ownership.
8065
-
8066
- Exhibit B - "Incompatible With Secondary Licenses" Notice
8067
- ---------------------------------------------------------
8068
-
8069
- This Source Code Form is "Incompatible With Secondary Licenses", as
8070
- defined by the Mozilla Public License, v. 2.0.
8071
-
8072
- --------------------------------------------------------------------------------
8073
- Package Title: @glm
8074
- Package Locator:
8075
- --------------------------------------------------------------------------------
8076
- * Declared Licenses *
8077
- ================================================================================
8078
- OpenGL Mathematics (GLM)
8079
- --------------------------------------------------------------------------------
8080
- GLM can be distributed and/or modified under the terms of either
8081
- a) The Happy Bunny License, or b) the MIT License.
8082
-
8083
- ================================================================================
8084
- The Happy Bunny License (Modified MIT License)
8085
- --------------------------------------------------------------------------------
8086
- Copyright (c) 2005 - 2016 G-Truc Creation
8087
-
8088
- Permission is hereby granted, free of charge, to any person obtaining a copy
8089
- of this software and associated documentation files (the "Software"), to deal
8090
- in the Software without restriction, including without limitation the rights
8091
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8092
- copies of the Software, and to permit persons to whom the Software is
8093
- furnished to do so, subject to the following conditions:
8094
-
8095
- The above copyright notice and this permission notice shall be included in
8096
- all copies or substantial portions of the Software.
8097
-
8098
- Restrictions: By making use of the Software for military purposes, you choose
8099
- to make a Bunny unhappy.
8100
-
8101
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
8102
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
8103
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
8104
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
8105
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
8106
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
8107
- THE SOFTWARE.
8108
-
8109
- ================================================================================
8110
- The MIT License
8111
- --------------------------------------------------------------------------------
8112
- Copyright (c) 2005 - 2016 G-Truc Creation
8113
-
8114
- Permission is hereby granted, free of charge, to any person obtaining a copy
8115
- of this software and associated documentation files (the "Software"), to deal
8116
- in the Software without restriction, including without limitation the rights
8117
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8118
- copies of the Software, and to permit persons to whom the Software is
8119
- furnished to do so, subject to the following conditions:
8120
-
8121
- The above copyright notice and this permission notice shall be included in
8122
- all copies or substantial portions of the Software.
8123
-
8124
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
8125
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
8126
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
8127
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
8128
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
8129
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
8130
- THE SOFTWARE.
8131
-
8132
- --------------------------------------------------------------------------------
8133
- Package Title: @ctpl
8134
- Package Locator:
8135
- --------------------------------------------------------------------------------
8136
- * Declared Licenses *
8137
- Apache License
8138
- Version 2.0, January 2004
8139
- http://www.apache.org/licenses/
8140
-
8141
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
8142
-
8143
- 1. Definitions.
8144
-
8145
- "License" shall mean the terms and conditions for use, reproduction,
8146
- and distribution as defined by Sections 1 through 9 of this document.
8147
-
8148
- "Licensor" shall mean the copyright owner or entity authorized by
8149
- the copyright owner that is granting the License.
8150
-
8151
- "Legal Entity" shall mean the union of the acting entity and all
8152
- other entities that control, are controlled by, or are under common
8153
- control with that entity. For the purposes of this definition,
8154
- "control" means (i) the power, direct or indirect, to cause the
8155
- direction or management of such entity, whether by contract or
8156
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
8157
- outstanding shares, or (iii) beneficial ownership of such entity.
8158
-
8159
- "You" (or "Your") shall mean an individual or Legal Entity
8160
- exercising permissions granted by this License.
8161
-
8162
- "Source" form shall mean the preferred form for making modifications,
8163
- including but not limited to software source code, documentation
8164
- source, and configuration files.
8165
-
8166
- "Object" form shall mean any form resulting from mechanical
8167
- transformation or translation of a Source form, including but
8168
- not limited to compiled object code, generated documentation,
8169
- and conversions to other media types.
8170
-
8171
- "Work" shall mean the work of authorship, whether in Source or
8172
- Object form, made available under the License, as indicated by a
8173
- copyright notice that is included in or attached to the work
8174
- (an example is provided in the Appendix below).
8175
-
8176
- "Derivative Works" shall mean any work, whether in Source or Object
8177
- form, that is based on (or derived from) the Work and for which the
8178
- editorial revisions, annotations, elaborations, or other modifications
8179
- represent, as a whole, an original work of authorship. For the purposes
8180
- of this License, Derivative Works shall not include works that remain
8181
- separable from, or merely link (or bind by name) to the interfaces of,
8182
- the Work and Derivative Works thereof.
8183
-
8184
- "Contribution" shall mean any work of authorship, including
8185
- the original version of the Work and any modifications or additions
8186
- to that Work or Derivative Works thereof, that is intentionally
8187
- submitted to Licensor for inclusion in the Work by the copyright owner
8188
- or by an individual or Legal Entity authorized to submit on behalf of
8189
- the copyright owner. For the purposes of this definition, "submitted"
8190
- means any form of electronic, verbal, or written communication sent
8191
- to the Licensor or its representatives, including but not limited to
8192
- communication on electronic mailing lists, source code control systems,
8193
- and issue tracking systems that are managed by, or on behalf of, the
8194
- Licensor for the purpose of discussing and improving the Work, but
8195
- excluding communication that is conspicuously marked or otherwise
8196
- designated in writing by the copyright owner as "Not a Contribution."
8197
-
8198
- "Contributor" shall mean Licensor and any individual or Legal Entity
8199
- on behalf of whom a Contribution has been received by Licensor and
8200
- subsequently incorporated within the Work.
8201
-
8202
- 2. Grant of Copyright License. Subject to the terms and conditions of
8203
- this License, each Contributor hereby grants to You a perpetual,
8204
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
8205
- copyright license to reproduce, prepare Derivative Works of,
8206
- publicly display, publicly perform, sublicense, and distribute the
8207
- Work and such Derivative Works in Source or Object form.
8208
-
8209
- 3. Grant of Patent License. Subject to the terms and conditions of
8210
- this License, each Contributor hereby grants to You a perpetual,
8211
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
8212
- (except as stated in this section) patent license to make, have made,
8213
- use, offer to sell, sell, import, and otherwise transfer the Work,
8214
- where such license applies only to those patent claims licensable
8215
- by such Contributor that are necessarily infringed by their
8216
- Contribution(s) alone or by combination of their Contribution(s)
8217
- with the Work to which such Contribution(s) was submitted. If You
8218
- institute patent litigation against any entity (including a
8219
- cross-claim or counterclaim in a lawsuit) alleging that the Work
8220
- or a Contribution incorporated within the Work constitutes direct
8221
- or contributory patent infringement, then any patent licenses
8222
- granted to You under this License for that Work shall terminate
8223
- as of the date such litigation is filed.
8224
-
8225
- 4. Redistribution. You may reproduce and distribute copies of the
8226
- Work or Derivative Works thereof in any medium, with or without
8227
- modifications, and in Source or Object form, provided that You
8228
- meet the following conditions:
8229
-
8230
- (a) You must give any other recipients of the Work or
8231
- Derivative Works a copy of this License; and
8232
-
8233
- (b) You must cause any modified files to carry prominent notices
8234
- stating that You changed the files; and
8235
-
8236
- (c) You must retain, in the Source form of any Derivative Works
8237
- that You distribute, all copyright, patent, trademark, and
8238
- attribution notices from the Source form of the Work,
8239
- excluding those notices that do not pertain to any part of
8240
- the Derivative Works; and
8241
-
8242
- (d) If the Work includes a "NOTICE" text file as part of its
8243
- distribution, then any Derivative Works that You distribute must
8244
- include a readable copy of the attribution notices contained
8245
- within such NOTICE file, excluding those notices that do not
8246
- pertain to any part of the Derivative Works, in at least one
8247
- of the following places: within a NOTICE text file distributed
8248
- as part of the Derivative Works; within the Source form or
8249
- documentation, if provided along with the Derivative Works; or,
8250
- within a display generated by the Derivative Works, if and
8251
- wherever such third-party notices normally appear. The contents
8252
- of the NOTICE file are for informational purposes only and
8253
- do not modify the License. You may add Your own attribution
8254
- notices within Derivative Works that You distribute, alongside
8255
- or as an addendum to the NOTICE text from the Work, provided
8256
- that such additional attribution notices cannot be construed
8257
- as modifying the License.
8258
-
8259
- You may add Your own copyright statement to Your modifications and
8260
- may provide additional or different license terms and conditions
8261
- for use, reproduction, or distribution of Your modifications, or
8262
- for any such Derivative Works as a whole, provided Your use,
8263
- reproduction, and distribution of the Work otherwise complies with
8264
- the conditions stated in this License.
8265
-
8266
- 5. Submission of Contributions. Unless You explicitly state otherwise,
8267
- any Contribution intentionally submitted for inclusion in the Work
8268
- by You to the Licensor shall be under the terms and conditions of
8269
- this License, without any additional terms or conditions.
8270
- Notwithstanding the above, nothing herein shall supersede or modify
8271
- the terms of any separate license agreement you may have executed
8272
- with Licensor regarding such Contributions.
8273
-
8274
- 6. Trademarks. This License does not grant permission to use the trade
8275
- names, trademarks, service marks, or product names of the Licensor,
8276
- except as required for reasonable and customary use in describing the
8277
- origin of the Work and reproducing the content of the NOTICE file.
8278
-
8279
- 7. Disclaimer of Warranty. Unless required by applicable law or
8280
- agreed to in writing, Licensor provides the Work (and each
8281
- Contributor provides its Contributions) on an "AS IS" BASIS,
8282
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
8283
- implied, including, without limitation, any warranties or conditions
8284
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
8285
- PARTICULAR PURPOSE. You are solely responsible for determining the
8286
- appropriateness of using or redistributing the Work and assume any
8287
- risks associated with Your exercise of permissions under this License.
8288
-
8289
- 8. Limitation of Liability. In no event and under no legal theory,
8290
- whether in tort (including negligence), contract, or otherwise,
8291
- unless required by applicable law (such as deliberate and grossly
8292
- negligent acts) or agreed to in writing, shall any Contributor be
8293
- liable to You for damages, including any direct, indirect, special,
8294
- incidental, or consequential damages of any character arising as a
8295
- result of this License or out of the use or inability to use the
8296
- Work (including but not limited to damages for loss of goodwill,
8297
- work stoppage, computer failure or malfunction, or any and all
8298
- other commercial damages or losses), even if such Contributor
8299
- has been advised of the possibility of such damages.
8300
-
8301
- 9. Accepting Warranty or Additional Liability. While redistributing
8302
- the Work or Derivative Works thereof, You may choose to offer,
8303
- and charge a fee for, acceptance of support, warranty, indemnity,
8304
- or other liability obligations and/or rights consistent with this
8305
- License. However, in accepting such obligations, You may act only
8306
- on Your own behalf and on Your sole responsibility, not on behalf
8307
- of any other Contributor, and only if You agree to indemnify,
8308
- defend, and hold each Contributor harmless for any liability
8309
- incurred by, or claims asserted against, such Contributor by reason
8310
- of your accepting any such warranty or additional liability.
8311
-
8312
- END OF TERMS AND CONDITIONS
8313
-
8314
-
8315
- Copyright (C) 2014 by Vitaliy Vitsentiy
8316
-
8317
- Licensed under the Apache License, Version 2.0 (the "License");
8318
- you may not use this file except in compliance with the License.
8319
- You may obtain a copy of the License at
8320
-
8321
- http://www.apache.org/licenses/LICENSE-2.0
8322
-
8323
- Unless required by applicable law or agreed to in writing, software
8324
- distributed under the License is distributed on an "AS IS" BASIS,
8325
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
8326
- See the License for the specific language governing permissions and
8327
- limitations under the License.
8328
-
8329
- --------------------------------------------------------------------------------
8330
- Package Title: @jsonxx
8331
- Package Locator:
8332
- --------------------------------------------------------------------------------
8333
- * Declared Licenses *
8334
- Copyright (c) 2010 Hong Jiang
8335
-
8336
- Permission is hereby granted, free of charge, to any person
8337
- obtaining a copy of this software and associated documentation
8338
- files (the "Software"), to deal in the Software without
8339
- restriction, including without limitation the rights to use,
8340
- copy, modify, merge, publish, distribute, sublicense, and/or sell
8341
- copies of the Software, and to permit persons to whom the
8342
- Software is furnished to do so, subject to the following
8343
- conditions:
8344
-
8345
- The above copyright notice and this permission notice shall be
8346
- included in all copies or substantial portions of the Software.
8347
-
8348
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
8349
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
8350
- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
8351
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
8352
- HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
8353
- WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
8354
- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
8355
- OTHER DEALINGS IN THE SOFTWARE.
8356
-
8357
-
8358
- --------------------------------------------------------------------------------
8359
- Package Title: @gsl
8360
- Package Locator:
8361
- --------------------------------------------------------------------------------
8362
- * Declared Licenses *
8363
- Copyright (c) 2015 Microsoft Corporation. All rights reserved.
8364
-
8365
- This code is licensed under the MIT License (MIT).
8366
-
8367
- Permission is hereby granted, free of charge, to any person obtaining a copy
8368
- of this software and associated documentation files (the "Software"), to deal
8369
- in the Software without restriction, including without limitation the rights
8370
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
8371
- of the Software, and to permit persons to whom the Software is furnished to do
8372
- so, subject to the following conditions:
8373
-
8374
- The above copyright notice and this permission notice shall be included in all
8375
- copies or substantial portions of the Software.
8376
-
8377
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
8378
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
8379
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
8380
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
8381
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
8382
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
8383
- THE SOFTWARE.
8384
-
8385
- --------------------------------------------------------------------------------
8386
- Package Title: @quickjs
8387
- Package Locator:
8388
- --------------------------------------------------------------------------------
8389
- * Declared Licenses *
8390
- QuickJS Javascript Engine
8391
-
8392
- Copyright (c) 2017-2021 Fabrice Bellard
8393
- Copyright (c) 2017-2021 Charlie Gordon
8394
-
8395
- Permission is hereby granted, free of charge, to any person obtaining a copy
8396
- of this software and associated documentation files (the "Software"), to deal
8397
- in the Software without restriction, including without limitation the rights
8398
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8399
- copies of the Software, and to permit persons to whom the Software is
8400
- furnished to do so, subject to the following conditions:
8401
-
8402
- The above copyright notice and this permission notice shall be included in
8403
- all copies or substantial portions of the Software.
8404
-
8405
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
8406
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
8407
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
8408
- THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
8409
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
8410
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
8411
- THE SOFTWARE.
8412
-
8413
- --------------------------------------------------------------------------------
8414
- Package Title: @fast-guided-filter
8415
- Package Locator:
8416
- --------------------------------------------------------------------------------
8417
- * Declared Licenses *
8418
- The MIT License (MIT)
8419
-
8420
- Copyright (c) 2014 Atilim Cetin
8421
-
8422
- Permission is hereby granted, free of charge, to any person obtaining a copy
8423
- of this software and associated documentation files (the "Software"), to deal
8424
- in the Software without restriction, including without limitation the rights
8425
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8426
- copies of the Software, and to permit persons to whom the Software is
8427
- furnished to do so, subject to the following conditions:
8428
-
8429
- The above copyright notice and this permission notice shall be included in all
8430
- copies or substantial portions of the Software.
8431
-
8432
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
8433
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
8434
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
8435
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
8436
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
8437
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
8438
- SOFTWARE.
8439
-
8440
-
8441
- --------------------------------------------------------------------------------
8442
- Package Title: @lz4
8443
- Package Locator:
8444
- --------------------------------------------------------------------------------
8445
- * Declared Licenses *
8446
- This repository uses 2 different licenses :
8447
- - all files in the `lib` directory use a BSD 2-Clause license
8448
- - all other files use a GPLv2 license, unless explicitly stated otherwise
8449
-
8450
- Relevant license is reminded at the top of each source file,
8451
- and with presence of COPYING or LICENSE file in associated directories.
8452
-
8453
- This model is selected to emphasize that
8454
- files in the `lib` directory are designed to be included into 3rd party applications,
8455
- while all other files, in `programs`, `tests` or `examples`,
8456
- receive more limited attention and support for such scenario.
8457
-
8458
- --------------------------------------------------------------------------------
8459
- Package Title: @zlib
8460
- Package Locator:
8461
- --------------------------------------------------------------------------------
8462
- * Declared Licenses *
8463
- Copyright notice:
8464
-
8465
- (C) 1995-2022 Jean-loup Gailly and Mark Adler
8466
-
8467
- This software is provided 'as-is', without any express or implied
8468
- warranty. In no event will the authors be held liable for any damages
8469
- arising from the use of this software.
8470
-
8471
- Permission is granted to anyone to use this software for any purpose,
8472
- including commercial applications, and to alter it and redistribute it
8473
- freely, subject to the following restrictions:
8474
-
8475
- 1. The origin of this software must not be misrepresented; you must not
8476
- claim that you wrote the original software. If you use this software
8477
- in a product, an acknowledgment in the product documentation would be
8478
- appreciated but is not required.
8479
- 2. Altered source versions must be plainly marked as such, and must not be
8480
- misrepresented as being the original software.
8481
- 3. This notice may not be removed or altered from any source distribution.
8482
-
8483
- Jean-loup Gailly Mark Adler
8484
- jloup@gzip.org madler@alumni.caltech.edu
8485
- --------------------------------------------------------------------------------
8486
- Package Title: @tinygltf
8487
- Package Locator:
8488
- --------------------------------------------------------------------------------
8489
- * Declared Licenses *
8490
- MIT License
8491
-
8492
- Copyright (c) 2017 Syoyo Fujita, Aurélien Chatelain and many contributors
8493
-
8494
- Permission is hereby granted, free of charge, to any person obtaining a copy
8495
- of this software and associated documentation files (the "Software"), to deal
8496
- in the Software without restriction, including without limitation the rights
8497
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8498
- copies of the Software, and to permit persons to whom the Software is
8499
- furnished to do so, subject to the following conditions:
8500
-
8501
- The above copyright notice and this permission notice shall be included in all
8502
- copies or substantial portions of the Software.
8503
-
8504
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
8505
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
8506
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
8507
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
8508
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
8509
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
8510
- SOFTWARE.
8511
-
8512
- --------------------------------------------------------------------------------
8513
- Package Title: @xsimd
8514
- Package Locator:
8515
- --------------------------------------------------------------------------------
8516
- * Declared Licenses *
8517
- Copyright (c) 2016, Johan Mabille, Sylvain Corlay, Wolf Vollprecht and Martin Renou
8518
- Copyright (c) 2016, QuantStack
8519
- All rights reserved.
8520
-
8521
- Redistribution and use in source and binary forms, with or without
8522
- modification, are permitted provided that the following conditions are met:
8523
-
8524
- * Redistributions of source code must retain the above copyright notice, this
8525
- list of conditions and the following disclaimer.
8526
-
8527
- * Redistributions in binary form must reproduce the above copyright notice,
8528
- this list of conditions and the following disclaimer in the documentation
8529
- and/or other materials provided with the distribution.
8530
-
8531
- * Neither the name of the copyright holder nor the names of its
8532
- contributors may be used to endorse or promote products derived from
8533
- this software without specific prior written permission.
8534
-
8535
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
8536
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
8537
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
8538
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
8539
- FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
8540
- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
8541
- SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
8542
- CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
8543
- OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
8544
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
8545
-
8546
- --------------------------------------------------------------------------------
8547
- Package Title: @etc2comp
8548
- Package Locator:
8549
- --------------------------------------------------------------------------------
8550
- * Declared Licenses *
8551
-
8552
- Apache License
8553
- Version 2.0, January 2004
8554
- http://www.apache.org/licenses/
8555
-
8556
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
8557
-
8558
- 1. Definitions.
8559
-
8560
- "License" shall mean the terms and conditions for use, reproduction,
8561
- and distribution as defined by Sections 1 through 9 of this document.
8562
-
8563
- "Licensor" shall mean the copyright owner or entity authorized by
8564
- the copyright owner that is granting the License.
8565
-
8566
- "Legal Entity" shall mean the union of the acting entity and all
8567
- other entities that control, are controlled by, or are under common
8568
- control with that entity. For the purposes of this definition,
8569
- "control" means (i) the power, direct or indirect, to cause the
8570
- direction or management of such entity, whether by contract or
8571
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
8572
- outstanding shares, or (iii) beneficial ownership of such entity.
8573
-
8574
- "You" (or "Your") shall mean an individual or Legal Entity
8575
- exercising permissions granted by this License.
8576
-
8577
- "Source" form shall mean the preferred form for making modifications,
8578
- including but not limited to software source code, documentation
8579
- source, and configuration files.
8580
-
8581
- "Object" form shall mean any form resulting from mechanical
8582
- transformation or translation of a Source form, including but
8583
- not limited to compiled object code, generated documentation,
8584
- and conversions to other media types.
8585
-
8586
- "Work" shall mean the work of authorship, whether in Source or
8587
- Object form, made available under the License, as indicated by a
8588
- copyright notice that is included in or attached to the work
8589
- (an example is provided in the Appendix below).
8590
-
8591
- "Derivative Works" shall mean any work, whether in Source or Object
8592
- form, that is based on (or derived from) the Work and for which the
8593
- editorial revisions, annotations, elaborations, or other modifications
8594
- represent, as a whole, an original work of authorship. For the purposes
8595
- of this License, Derivative Works shall not include works that remain
8596
- separable from, or merely link (or bind by name) to the interfaces of,
8597
- the Work and Derivative Works thereof.
8598
-
8599
- "Contribution" shall mean any work of authorship, including
8600
- the original version of the Work and any modifications or additions
8601
- to that Work or Derivative Works thereof, that is intentionally
8602
- submitted to Licensor for inclusion in the Work by the copyright owner
8603
- or by an individual or Legal Entity authorized to submit on behalf of
8604
- the copyright owner. For the purposes of this definition, "submitted"
8605
- means any form of electronic, verbal, or written communication sent
8606
- to the Licensor or its representatives, including but not limited to
8607
- communication on electronic mailing lists, source code control systems,
8608
- and issue tracking systems that are managed by, or on behalf of, the
8609
- Licensor for the purpose of discussing and improving the Work, but
8610
- excluding communication that is conspicuously marked or otherwise
8611
- designated in writing by the copyright owner as "Not a Contribution."
8612
-
8613
- "Contributor" shall mean Licensor and any individual or Legal Entity
8614
- on behalf of whom a Contribution has been received by Licensor and
8615
- subsequently incorporated within the Work.
8616
-
8617
- 2. Grant of Copyright License. Subject to the terms and conditions of
8618
- this License, each Contributor hereby grants to You a perpetual,
8619
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
8620
- copyright license to reproduce, prepare Derivative Works of,
8621
- publicly display, publicly perform, sublicense, and distribute the
8622
- Work and such Derivative Works in Source or Object form.
8623
-
8624
- 3. Grant of Patent License. Subject to the terms and conditions of
8625
- this License, each Contributor hereby grants to You a perpetual,
8626
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
8627
- (except as stated in this section) patent license to make, have made,
8628
- use, offer to sell, sell, import, and otherwise transfer the Work,
8629
- where such license applies only to those patent claims licensable
8630
- by such Contributor that are necessarily infringed by their
8631
- Contribution(s) alone or by combination of their Contribution(s)
8632
- with the Work to which such Contribution(s) was submitted. If You
8633
- institute patent litigation against any entity (including a
8634
- cross-claim or counterclaim in a lawsuit) alleging that the Work
8635
- or a Contribution incorporated within the Work constitutes direct
8636
- or contributory patent infringement, then any patent licenses
8637
- granted to You under this License for that Work shall terminate
8638
- as of the date such litigation is filed.
8639
-
8640
- 4. Redistribution. You may reproduce and distribute copies of the
8641
- Work or Derivative Works thereof in any medium, with or without
8642
- modifications, and in Source or Object form, provided that You
8643
- meet the following conditions:
8644
-
8645
- (a) You must give any other recipients of the Work or
8646
- Derivative Works a copy of this License; and
8647
-
8648
- (b) You must cause any modified files to carry prominent notices
8649
- stating that You changed the files; and
8650
-
8651
- (c) You must retain, in the Source form of any Derivative Works
8652
- that You distribute, all copyright, patent, trademark, and
8653
- attribution notices from the Source form of the Work,
8654
- excluding those notices that do not pertain to any part of
8655
- the Derivative Works; and
8656
-
8657
- (d) If the Work includes a "NOTICE" text file as part of its
8658
- distribution, then any Derivative Works that You distribute must
8659
- include a readable copy of the attribution notices contained
8660
- within such NOTICE file, excluding those notices that do not
8661
- pertain to any part of the Derivative Works, in at least one
8662
- of the following places: within a NOTICE text file distributed
8663
- as part of the Derivative Works; within the Source form or
8664
- documentation, if provided along with the Derivative Works; or,
8665
- within a display generated by the Derivative Works, if and
8666
- wherever such third-party notices normally appear. The contents
8667
- of the NOTICE file are for informational purposes only and
8668
- do not modify the License. You may add Your own attribution
8669
- notices within Derivative Works that You distribute, alongside
8670
- or as an addendum to the NOTICE text from the Work, provided
8671
- that such additional attribution notices cannot be construed
8672
- as modifying the License.
8673
-
8674
- You may add Your own copyright statement to Your modifications and
8675
- may provide additional or different license terms and conditions
8676
- for use, reproduction, or distribution of Your modifications, or
8677
- for any such Derivative Works as a whole, provided Your use,
8678
- reproduction, and distribution of the Work otherwise complies with
8679
- the conditions stated in this License.
8680
-
8681
- 5. Submission of Contributions. Unless You explicitly state otherwise,
8682
- any Contribution intentionally submitted for inclusion in the Work
8683
- by You to the Licensor shall be under the terms and conditions of
8684
- this License, without any additional terms or conditions.
8685
- Notwithstanding the above, nothing herein shall supersede or modify
8686
- the terms of any separate license agreement you may have executed
8687
- with Licensor regarding such Contributions.
8688
-
8689
- 6. Trademarks. This License does not grant permission to use the trade
8690
- names, trademarks, service marks, or product names of the Licensor,
8691
- except as required for reasonable and customary use in describing the
8692
- origin of the Work and reproducing the content of the NOTICE file.
8693
-
8694
- 7. Disclaimer of Warranty. Unless required by applicable law or
8695
- agreed to in writing, Licensor provides the Work (and each
8696
- Contributor provides its Contributions) on an "AS IS" BASIS,
8697
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
8698
- implied, including, without limitation, any warranties or conditions
8699
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
8700
- PARTICULAR PURPOSE. You are solely responsible for determining the
8701
- appropriateness of using or redistributing the Work and assume any
8702
- risks associated with Your exercise of permissions under this License.
8703
-
8704
- 8. Limitation of Liability. In no event and under no legal theory,
8705
- whether in tort (including negligence), contract, or otherwise,
8706
- unless required by applicable law (such as deliberate and grossly
8707
- negligent acts) or agreed to in writing, shall any Contributor be
8708
- liable to You for damages, including any direct, indirect, special,
8709
- incidental, or consequential damages of any character arising as a
8710
- result of this License or out of the use or inability to use the
8711
- Work (including but not limited to damages for loss of goodwill,
8712
- work stoppage, computer failure or malfunction, or any and all
8713
- other commercial damages or losses), even if such Contributor
8714
- has been advised of the possibility of such damages.
8715
-
8716
- 9. Accepting Warranty or Additional Liability. While redistributing
8717
- the Work or Derivative Works thereof, You may choose to offer,
8718
- and charge a fee for, acceptance of support, warranty, indemnity,
8719
- or other liability obligations and/or rights consistent with this
8720
- License. However, in accepting such obligations, You may act only
8721
- on Your own behalf and on Your sole responsibility, not on behalf
8722
- of any other Contributor, and only if You agree to indemnify,
8723
- defend, and hold each Contributor harmless for any liability
8724
- incurred by, or claims asserted against, such Contributor by reason
8725
- of your accepting any such warranty or additional liability.
8726
-
8727
- END OF TERMS AND CONDITIONS
8728
-
8729
- APPENDIX: How to apply the Apache License to your work.
8730
-
8731
- To apply the Apache License to your work, attach the following
8732
- boilerplate notice, with the fields enclosed by brackets "[]"
8733
- replaced with your own identifying information. (Don't include
8734
- the brackets!) The text should be enclosed in the appropriate
8735
- comment syntax for the file format. We also recommend that a
8736
- file or class name and description of purpose be included on the
8737
- same "printed page" as the copyright notice for easier
8738
- identification within third-party archives.
8739
-
8740
- Copyright [yyyy] [name of copyright owner]
8741
-
8742
- Licensed under the Apache License, Version 2.0 (the "License");
8743
- you may not use this file except in compliance with the License.
8744
- You may obtain a copy of the License at
8745
-
8746
- http://www.apache.org/licenses/LICENSE-2.0
8747
-
8748
- Unless required by applicable law or agreed to in writing, software
8749
- distributed under the License is distributed on an "AS IS" BASIS,
8750
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
8751
- See the License for the specific language governing permissions and
8752
- limitations under the License.
8753
-
8754
- --------------------------------------------------------------------------------
8755
- Package Title: @libwebp
8756
- Package Locator:
8757
- --------------------------------------------------------------------------------
8758
- * Declared Licenses *
8759
- Copyright (c) 2010, Google Inc. All rights reserved.
8760
-
8761
- Redistribution and use in source and binary forms, with or without
8762
- modification, are permitted provided that the following conditions are
8763
- met:
8764
-
8765
- * Redistributions of source code must retain the above copyright
8766
- notice, this list of conditions and the following disclaimer.
8767
-
8768
- * Redistributions in binary form must reproduce the above copyright
8769
- notice, this list of conditions and the following disclaimer in
8770
- the documentation and/or other materials provided with the
8771
- distribution.
8772
-
8773
- * Neither the name of Google nor the names of its contributors may
8774
- be used to endorse or promote products derived from this software
8775
- without specific prior written permission.
8776
-
8777
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
8778
- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
8779
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
8780
- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
8781
- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
8782
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
8783
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
8784
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
8785
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
8786
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
8787
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
8788
-
8789
-
8790
- --------------------------------------------------------------------------------
8791
- Package Title: @freetype
8792
- Package Locator:
8793
- --------------------------------------------------------------------------------
8794
- * Declared Licenses *
8795
- FREETYPE LICENSES
8796
- -----------------
5072
+ As you have not signed this license, you are not required to
5073
+ accept it. However, as the FreeType Project is copyrighted
5074
+ material, only this license, or another one contracted with the
5075
+ authors, grants you the right to use, distribute, and modify it.
5076
+ Therefore, by using, distributing, or modifying the FreeType
5077
+ Project, you indicate that you understand and accept all the terms
5078
+ of this license.
8797
5079
 
8798
- The FreeType 2 font engine is copyrighted work and cannot be used
8799
- legally without a software license. In order to make this project
8800
- usable to a vast majority of developers, we distribute it under two
8801
- mutually exclusive open-source licenses.
5080
+ 4. Contacts
5081
+ -----------
8802
5082
 
8803
- This means that *you* must choose *one* of the two licenses described
8804
- below, then obey all its terms and conditions when using FreeType 2 in
8805
- any of your projects or products.
5083
+ There are two mailing lists related to FreeType:
8806
5084
 
8807
- - The FreeType License, found in the file `docs/FTL.TXT`, which is
8808
- similar to the original BSD license *with* an advertising clause
8809
- that forces you to explicitly cite the FreeType project in your
8810
- product's documentation. All details are in the license file.
8811
- This license is suited to products which don't use the GNU General
8812
- Public License.
5085
+ o freetype@nongnu.org
8813
5086
 
8814
- Note that this license is compatible to the GNU General Public
8815
- License version 3, but not version 2.
5087
+ Discusses general use and applications of FreeType, as well as
5088
+ future and wanted additions to the library and distribution.
5089
+ If you are looking for support, start in this list if you
5090
+ haven't found anything to help you in the documentation.
8816
5091
 
8817
- - The GNU General Public License version 2, found in
8818
- `docs/GPLv2.TXT` (any later version can be used also), for
8819
- programs which already use the GPL. Note that the FTL is
8820
- incompatible with GPLv2 due to its advertisement clause.
5092
+ o freetype-devel@nongnu.org
8821
5093
 
8822
- The contributed BDF and PCF drivers come with a license similar to
8823
- that of the X Window System. It is compatible to the above two
8824
- licenses (see files `src/bdf/README` and `src/pcf/README`). The same
8825
- holds for the source code files `src/base/fthash.c` and
8826
- `include/freetype/internal/fthash.h`; they wer part of the BDF driver
8827
- in earlier FreeType versions.
5094
+ Discusses bugs, as well as engine internals, design issues,
5095
+ specific licenses, porting, etc.
8828
5096
 
8829
- The gzip module uses the zlib license (see `src/gzip/zlib.h`) which
8830
- too is compatible to the above two licenses.
5097
+ Our home page can be found at
8831
5098
 
8832
- The MD5 checksum support (only used for debugging in development
8833
- builds) is in the public domain.
5099
+ https://www.freetype.org
8834
5100
 
8835
5101
 
8836
- --- end of LICENSE.TXT ---
5102
+ --- end of FTL.TXT ---
8837
5103
 
8838
5104
  --------------------------------------------------------------------------------
8839
5105
  Package Title: @filesystem