@colijnit/sharedcomponents 254.1.1 → 254.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (74) hide show
  1. package/3rdpartylicenses.txt +1408 -0
  2. package/bundles/colijnit-sharedcomponents.umd.js +609 -153
  3. package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
  4. package/colijnit-sharedcomponents.d.ts +2 -0
  5. package/colijnit-sharedcomponents.metadata.json +1 -1
  6. package/esm2015/colijnit-sharedcomponents.js +3 -1
  7. package/esm2015/lib/components/activity-overview-component/component-activity-overview.component.js +8 -7
  8. package/esm2015/lib/components/activity-overview-component/components/base-activity-overview.component.js +15 -21
  9. package/esm2015/lib/components/modify-task-form/components/base-activity-summary.component.js +8 -10
  10. package/esm2015/lib/components/modify-task-form/components/creation-summary-block/creation-summary-block.component.js +2 -2
  11. package/esm2015/lib/components/modify-task-form/components/executive-summary-block/executive-summary-block.component.js +5 -5
  12. package/esm2015/lib/components/modify-task-form/components/notification-summary-block/notification-summary-block.component.js +2 -2
  13. package/esm2015/lib/components/modify-task-form/components/status-summary-block/status-summary-block.component.js +7 -4
  14. package/esm2015/lib/components/modify-task-form/components/task-details/task-details.component.js +7 -4
  15. package/esm2015/lib/components/modify-task-form/modify-task-form.component.js +39 -13
  16. package/esm2015/lib/components/modify-task-form/modify-task-form.module.js +10 -3
  17. package/esm2015/lib/components/open-activity-list/component-activity-list.component.js +42 -57
  18. package/esm2015/lib/components/open-activity-list/components/base-open-activity-list.component.js +5 -3
  19. package/esm2015/lib/components/simple-tags/simple-tags.component.js +5 -147
  20. package/esm2015/lib/components/simple-tags/simple-tags.module.js +4 -2
  21. package/esm2015/lib/components/simple-tags-form/simple-tags-form.component.js +196 -0
  22. package/esm2015/lib/components/simple-tags-form/simple-tags-form.module.js +26 -0
  23. package/esm2015/lib/components/task-modifyer/task-modifier.component.js +9 -9
  24. package/esm2015/lib/components/workflow-info-tiles/components/workflow-info-tile.component.js +45 -0
  25. package/esm2015/lib/components/workflow-info-tiles/components/workflow-info-tile.module.js +22 -0
  26. package/esm2015/lib/components/workflow-info-tiles/workflow-info-tiles.component.js +55 -0
  27. package/esm2015/lib/components/workflow-info-tiles/workflow-info-tiles.module.js +22 -0
  28. package/esm2015/lib/enum/icon.enum.js +1 -1
  29. package/esm2015/lib/model/icon-svg.js +1 -1
  30. package/esm2015/lib/service/shared-connector.service.js +93 -1
  31. package/esm2015/lib/service/shared.service.js +44 -1
  32. package/esm2015/public-api.js +5 -1
  33. package/favicon.ico +0 -0
  34. package/fesm2015/colijnit-sharedcomponents.js +565 -218
  35. package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
  36. package/index.html +12 -0
  37. package/lib/components/activity-overview-component/component-activity-overview.component.d.ts +3 -1
  38. package/lib/components/activity-overview-component/components/base-activity-overview.component.d.ts +3 -8
  39. package/lib/components/modify-task-form/components/base-activity-summary.component.d.ts +3 -4
  40. package/lib/components/modify-task-form/components/executive-summary-block/executive-summary-block.component.d.ts +2 -2
  41. package/lib/components/modify-task-form/components/status-summary-block/status-summary-block.component.d.ts +3 -1
  42. package/lib/components/modify-task-form/components/task-details/task-details.component.d.ts +3 -1
  43. package/lib/components/modify-task-form/modify-task-form.component.d.ts +9 -4
  44. package/lib/components/modify-task-form/style/_layout.scss +4 -0
  45. package/lib/components/open-activity-list/component-activity-list.component.d.ts +9 -11
  46. package/lib/components/open-activity-list/components/base-open-activity-list.component.d.ts +2 -0
  47. package/lib/components/simple-tags/simple-tags.component.d.ts +1 -8
  48. package/lib/components/simple-tags-form/simple-tags-form.component.d.ts +29 -0
  49. package/lib/components/simple-tags-form/simple-tags-form.module.d.ts +2 -0
  50. package/lib/components/simple-tags-form/style/_layout.scss +257 -0
  51. package/lib/components/simple-tags-form/style/_material-definition.scss +39 -0
  52. package/lib/components/simple-tags-form/style/_theme.scss +4 -0
  53. package/lib/components/simple-tags-form/style/material.scss +4 -0
  54. package/lib/components/task-modifyer/task-modifier.component.d.ts +3 -5
  55. package/lib/components/workflow-info-tiles/components/style/_layout.scss +49 -0
  56. package/lib/components/workflow-info-tiles/components/style/_material-definition.scss +0 -0
  57. package/lib/components/workflow-info-tiles/components/style/_theme.scss +4 -0
  58. package/lib/components/workflow-info-tiles/components/style/material.scss +4 -0
  59. package/lib/components/workflow-info-tiles/components/workflow-info-tile.component.d.ts +15 -0
  60. package/lib/components/workflow-info-tiles/components/workflow-info-tile.module.d.ts +2 -0
  61. package/lib/components/workflow-info-tiles/style/_layout.scss +16 -0
  62. package/lib/components/workflow-info-tiles/style/_material-definition.scss +0 -0
  63. package/lib/components/workflow-info-tiles/style/_theme.scss +4 -0
  64. package/lib/components/workflow-info-tiles/style/material.scss +4 -0
  65. package/lib/components/workflow-info-tiles/workflow-info-tiles.component.d.ts +21 -0
  66. package/lib/components/workflow-info-tiles/workflow-info-tiles.module.d.ts +2 -0
  67. package/lib/service/shared-connector.service.d.ts +10 -0
  68. package/lib/service/shared.service.d.ts +12 -0
  69. package/main.894c3ac9caba556953e2.js +1 -0
  70. package/package.json +2 -1
  71. package/polyfills.907fe9d1887c5de17993.js +1 -0
  72. package/public-api.d.ts +4 -0
  73. package/runtime.8aac21847ed3d3829cca.js +1 -0
  74. package/styles.b92683eab3a233f3fb51.css +1 -0
@@ -0,0 +1,1408 @@
1
+ @angular/animations
2
+ MIT
3
+
4
+ @angular/cdk
5
+ MIT
6
+ The MIT License
7
+
8
+ Copyright (c) 2021 Google LLC.
9
+
10
+ Permission is hereby granted, free of charge, to any person obtaining a copy
11
+ of this software and associated documentation files (the "Software"), to deal
12
+ in the Software without restriction, including without limitation the rights
13
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+ copies of the Software, and to permit persons to whom the Software is
15
+ furnished to do so, subject to the following conditions:
16
+
17
+ The above copyright notice and this permission notice shall be included in
18
+ all copies or substantial portions of the Software.
19
+
20
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26
+ THE SOFTWARE.
27
+
28
+
29
+ @angular/common
30
+ MIT
31
+
32
+ @angular/core
33
+ MIT
34
+
35
+ @angular/forms
36
+ MIT
37
+
38
+ @angular/platform-browser
39
+ MIT
40
+
41
+ @babel/runtime
42
+ MIT
43
+ MIT License
44
+
45
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
46
+
47
+ Permission is hereby granted, free of charge, to any person obtaining
48
+ a copy of this software and associated documentation files (the
49
+ "Software"), to deal in the Software without restriction, including
50
+ without limitation the rights to use, copy, modify, merge, publish,
51
+ distribute, sublicense, and/or sell copies of the Software, and to
52
+ permit persons to whom the Software is furnished to do so, subject to
53
+ the following conditions:
54
+
55
+ The above copyright notice and this permission notice shall be
56
+ included in all copies or substantial portions of the Software.
57
+
58
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
59
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
60
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
61
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
62
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
63
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
64
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
65
+
66
+
67
+ @colijnit/articleapi
68
+ ISC
69
+
70
+ @colijnit/corecomponents_v12
71
+
72
+ @colijnit/ioneconnector
73
+ ISC
74
+
75
+ @colijnit/mainapi
76
+ ISC
77
+
78
+ @colijnit/relationapi
79
+ ISC
80
+
81
+ @colijnit/sharedapi
82
+ ISC
83
+
84
+ @colijnit/sharedcomponents
85
+
86
+ @kurkle/color
87
+ MIT
88
+ The MIT License (MIT)
89
+
90
+ Copyright (c) 2018-2021 Jukka Kurkela
91
+
92
+ 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:
93
+
94
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
95
+
96
+ 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.
97
+
98
+
99
+ @pdf-lib/standard-fonts
100
+ MIT
101
+ MIT License
102
+
103
+ Copyright (c) 2018 Andrew Dillon
104
+
105
+ Permission is hereby granted, free of charge, to any person obtaining a copy
106
+ of this software and associated documentation files (the "Software"), to deal
107
+ in the Software without restriction, including without limitation the rights
108
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
109
+ copies of the Software, and to permit persons to whom the Software is
110
+ furnished to do so, subject to the following conditions:
111
+
112
+ The above copyright notice and this permission notice shall be included in all
113
+ copies or substantial portions of the Software.
114
+
115
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
116
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
117
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
118
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
119
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
120
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
121
+ SOFTWARE.
122
+
123
+
124
+ @pdf-lib/upng
125
+ MIT
126
+ MIT License
127
+
128
+ Copyright (c) 2017 Photopea
129
+
130
+ Permission is hereby granted, free of charge, to any person obtaining a copy
131
+ of this software and associated documentation files (the "Software"), to deal
132
+ in the Software without restriction, including without limitation the rights
133
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
134
+ copies of the Software, and to permit persons to whom the Software is
135
+ furnished to do so, subject to the following conditions:
136
+
137
+ The above copyright notice and this permission notice shall be included in all
138
+ copies or substantial portions of the Software.
139
+
140
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
141
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
142
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
143
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
144
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
145
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
146
+ SOFTWARE.
147
+
148
+
149
+ @tweenjs/tween.js
150
+ MIT
151
+ The MIT License
152
+
153
+ Copyright (c) 2010-2012 Tween.js authors.
154
+
155
+ Easing equations Copyright (c) 2001 Robert Penner http://robertpenner.com/easing/
156
+
157
+ Permission is hereby granted, free of charge, to any person obtaining a copy
158
+ of this software and associated documentation files (the "Software"), to deal
159
+ in the Software without restriction, including without limitation the rights
160
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
161
+ copies of the Software, and to permit persons to whom the Software is
162
+ furnished to do so, subject to the following conditions:
163
+
164
+ The above copyright notice and this permission notice shall be included in
165
+ all copies or substantial portions of the Software.
166
+
167
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
168
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
169
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
170
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
171
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
172
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
173
+ THE SOFTWARE.
174
+
175
+
176
+ axios
177
+ MIT
178
+ Copyright (c) 2014-present Matt Zabriskie
179
+
180
+ Permission is hereby granted, free of charge, to any person obtaining a copy
181
+ of this software and associated documentation files (the "Software"), to deal
182
+ in the Software without restriction, including without limitation the rights
183
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
184
+ copies of the Software, and to permit persons to whom the Software is
185
+ furnished to do so, subject to the following conditions:
186
+
187
+ The above copyright notice and this permission notice shall be included in
188
+ all copies or substantial portions of the Software.
189
+
190
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
191
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
192
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
193
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
194
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
195
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
196
+ THE SOFTWARE.
197
+
198
+
199
+ chart.js
200
+ MIT
201
+ The MIT License (MIT)
202
+
203
+ Copyright (c) 2014-2022 Chart.js Contributors
204
+
205
+ 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:
206
+
207
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
208
+
209
+ 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.
210
+
211
+
212
+ circular-json
213
+ MIT
214
+ Copyright (C) 2013-2017 by Andrea Giammarchi - @WebReflection
215
+
216
+ Permission is hereby granted, free of charge, to any person obtaining a copy
217
+ of this software and associated documentation files (the "Software"), to deal
218
+ in the Software without restriction, including without limitation the rights
219
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
220
+ copies of the Software, and to permit persons to whom the Software is
221
+ furnished to do so, subject to the following conditions:
222
+
223
+ The above copyright notice and this permission notice shall be included in
224
+ all copies or substantial portions of the Software.
225
+
226
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
227
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
228
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
229
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
230
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
231
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
232
+ THE SOFTWARE.
233
+
234
+
235
+ dijkstrajs
236
+ MIT
237
+ ```
238
+ Dijkstra path-finding functions. Adapted from the Dijkstar Python project.
239
+
240
+ Copyright (C) 2008
241
+ Wyatt Baldwin <self@wyattbaldwin.com>
242
+ All rights reserved
243
+
244
+ Licensed under the MIT license.
245
+
246
+ http://www.opensource.org/licenses/mit-license.php
247
+
248
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
249
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
250
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
251
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
252
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
253
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
254
+ THE SOFTWARE.
255
+ ```
256
+
257
+
258
+ encode-utf8
259
+ MIT
260
+
261
+ hammerjs
262
+ MIT
263
+ The MIT License (MIT)
264
+
265
+ Copyright (C) 2011-2014 by Jorik Tangelder (Eight Media)
266
+
267
+ Permission is hereby granted, free of charge, to any person obtaining a copy
268
+ of this software and associated documentation files (the "Software"), to deal
269
+ in the Software without restriction, including without limitation the rights
270
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
271
+ copies of the Software, and to permit persons to whom the Software is
272
+ furnished to do so, subject to the following conditions:
273
+
274
+ The above copyright notice and this permission notice shall be included in
275
+ all copies or substantial portions of the Software.
276
+
277
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
278
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
279
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
280
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
281
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
282
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
283
+ THE SOFTWARE.
284
+
285
+
286
+ jsencrypt
287
+ MIT
288
+ File: /src/LICENSE.txt
289
+ The MIT License (MIT)
290
+ Copyright (c) 2015 Form.io
291
+
292
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
293
+ this software and associated documentation files (the "Software"), to deal in the
294
+ Software without restriction, including without limitation the rights to use,
295
+ copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
296
+ Software, and to permit persons to whom the Software is furnished to do so,
297
+ subject to the following conditions:
298
+
299
+ The above copyright notice and this permission notice shall be included in all
300
+ copies or substantial portions of the Software.
301
+
302
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
303
+ INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
304
+ PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
305
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
306
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
307
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
308
+
309
+ File: /lib/jsrsasign/LICENSE.txt
310
+
311
+
312
+ CONTAINS CODE FROM YUI LIBRARY SEE LICENSE @ http://yuilibrary.com/license/
313
+
314
+ The 'jsrsasign'(RSA-Sign JavaScript Library) License
315
+
316
+ Copyright (c) 2010-2013 Kenji Urushima
317
+
318
+ Permission is hereby granted, free of charge, to any person obtaining a copy
319
+ of this software and associated documentation files (the "Software"), to deal
320
+ in the Software without restriction, including without limitation the rights
321
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
322
+ copies of the Software, and to permit persons to whom the Software is
323
+ furnished to do so, subject to the following conditions:
324
+
325
+ The above copyright notice and this permission notice shall be included in
326
+ all copies or substantial portions of the Software.
327
+
328
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
329
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
330
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
331
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
332
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
333
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
334
+ THE SOFTWARE.
335
+ File: /lib/jsbn/LICENSE.txt
336
+
337
+
338
+ Licensing
339
+ ---------
340
+
341
+ This software is covered under the following copyright:
342
+
343
+ /*
344
+ * Copyright (c) 2003-2005 Tom Wu
345
+ * All Rights Reserved.
346
+ *
347
+ * Permission is hereby granted, free of charge, to any person obtaining
348
+ * a copy of this software and associated documentation files (the
349
+ * "Software"), to deal in the Software without restriction, including
350
+ * without limitation the rights to use, copy, modify, merge, publish,
351
+ * distribute, sublicense, and/or sell copies of the Software, and to
352
+ * permit persons to whom the Software is furnished to do so, subject to
353
+ * the following conditions:
354
+ *
355
+ * The above copyright notice and this permission notice shall be
356
+ * included in all copies or substantial portions of the Software.
357
+ *
358
+ * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
359
+ * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
360
+ * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
361
+ *
362
+ * IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
363
+ * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER
364
+ * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF
365
+ * THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT
366
+ * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
367
+ *
368
+ * In addition, the following condition applies:
369
+ *
370
+ * All redistributions must retain an intact copy of this copyright notice
371
+ * and disclaimer.
372
+ */
373
+
374
+ Address all questions regarding this license to:
375
+
376
+ Tom Wu
377
+ tjw@cs.Stanford.EDU
378
+ File: /lib/asn1js/LICENSE.txt
379
+
380
+
381
+ ASN.1 JavaScript decoder
382
+ Copyright (c) 2008-2013 Lapo Luchini <lapo@lapo.it>
383
+
384
+ Permission to use, copy, modify, and/or distribute this software for any
385
+ purpose with or without fee is hereby granted, provided that the above
386
+ copyright notice and this permission notice appear in all copies.
387
+
388
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
389
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
390
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
391
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
392
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
393
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
394
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
395
+
396
+ jwt-decode
397
+ MIT
398
+ The MIT License (MIT)
399
+
400
+ Copyright (c) 2015 Auth0, Inc. <support@auth0.com> (http://auth0.com)
401
+
402
+ Permission is hereby granted, free of charge, to any person obtaining a copy
403
+ of this software and associated documentation files (the "Software"), to deal
404
+ in the Software without restriction, including without limitation the rights
405
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
406
+ copies of the Software, and to permit persons to whom the Software is
407
+ furnished to do so, subject to the following conditions:
408
+
409
+ The above copyright notice and this permission notice shall be included in all
410
+ copies or substantial portions of the Software.
411
+
412
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
413
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
414
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
415
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
416
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
417
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
418
+ SOFTWARE.
419
+
420
+
421
+ moment
422
+ MIT
423
+ Copyright (c) JS Foundation and other contributors
424
+
425
+ Permission is hereby granted, free of charge, to any person
426
+ obtaining a copy of this software and associated documentation
427
+ files (the "Software"), to deal in the Software without
428
+ restriction, including without limitation the rights to use,
429
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
430
+ copies of the Software, and to permit persons to whom the
431
+ Software is furnished to do so, subject to the following
432
+ conditions:
433
+
434
+ The above copyright notice and this permission notice shall be
435
+ included in all copies or substantial portions of the Software.
436
+
437
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
438
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
439
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
440
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
441
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
442
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
443
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
444
+ OTHER DEALINGS IN THE SOFTWARE.
445
+
446
+
447
+ ng-recaptcha
448
+ MIT
449
+ The MIT License (MIT)
450
+
451
+ Copyright (c) 2016 Ruslan Arkhipau
452
+
453
+ Permission is hereby granted, free of charge, to any person obtaining a copy
454
+ of this software and associated documentation files (the "Software"), to deal
455
+ in the Software without restriction, including without limitation the rights
456
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
457
+ copies of the Software, and to permit persons to whom the Software is
458
+ furnished to do so, subject to the following conditions:
459
+
460
+ The above copyright notice and this permission notice shall be included in all
461
+ copies or substantial portions of the Software.
462
+
463
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
464
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
465
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
466
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
467
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
468
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
469
+ SOFTWARE.
470
+
471
+
472
+ nodejs-jsencrypt
473
+ MIT
474
+ File: /src/LICENSE.txt
475
+ The MIT License (MIT)
476
+ Copyright (c) 2015 Form.io
477
+
478
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
479
+ this software and associated documentation files (the "Software"), to deal in the
480
+ Software without restriction, including without limitation the rights to use,
481
+ copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
482
+ Software, and to permit persons to whom the Software is furnished to do so,
483
+ subject to the following conditions:
484
+
485
+ The above copyright notice and this permission notice shall be included in all
486
+ copies or substantial portions of the Software.
487
+
488
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
489
+ INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
490
+ PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
491
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
492
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
493
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
494
+
495
+ File: /lib/jsrsasign/LICENSE.txt
496
+
497
+
498
+ CONTAINS CODE FROM YUI LIBRARY SEE LICENSE @ http://yuilibrary.com/license/
499
+
500
+ The 'jsrsasign'(RSA-Sign JavaScript Library) License
501
+
502
+ Copyright (c) 2010-2013 Kenji Urushima
503
+
504
+ Permission is hereby granted, free of charge, to any person obtaining a copy
505
+ of this software and associated documentation files (the "Software"), to deal
506
+ in the Software without restriction, including without limitation the rights
507
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
508
+ copies of the Software, and to permit persons to whom the Software is
509
+ furnished to do so, subject to the following conditions:
510
+
511
+ The above copyright notice and this permission notice shall be included in
512
+ all copies or substantial portions of the Software.
513
+
514
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
515
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
516
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
517
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
518
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
519
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
520
+ THE SOFTWARE.
521
+ File: /lib/jsbn/LICENSE.txt
522
+
523
+
524
+ Licensing
525
+ ---------
526
+
527
+ This software is covered under the following copyright:
528
+
529
+ /*
530
+ * Copyright (c) 2003-2005 Tom Wu
531
+ * All Rights Reserved.
532
+ *
533
+ * Permission is hereby granted, free of charge, to any person obtaining
534
+ * a copy of this software and associated documentation files (the
535
+ * "Software"), to deal in the Software without restriction, including
536
+ * without limitation the rights to use, copy, modify, merge, publish,
537
+ * distribute, sublicense, and/or sell copies of the Software, and to
538
+ * permit persons to whom the Software is furnished to do so, subject to
539
+ * the following conditions:
540
+ *
541
+ * The above copyright notice and this permission notice shall be
542
+ * included in all copies or substantial portions of the Software.
543
+ *
544
+ * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
545
+ * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
546
+ * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
547
+ *
548
+ * IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
549
+ * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER
550
+ * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF
551
+ * THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT
552
+ * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
553
+ *
554
+ * In addition, the following condition applies:
555
+ *
556
+ * All redistributions must retain an intact copy of this copyright notice
557
+ * and disclaimer.
558
+ */
559
+
560
+ Address all questions regarding this license to:
561
+
562
+ Tom Wu
563
+ tjw@cs.Stanford.EDU
564
+ File: /lib/asn1js/LICENSE.txt
565
+
566
+
567
+ ASN.1 JavaScript decoder
568
+ Copyright (c) 2008-2013 Lapo Luchini <lapo@lapo.it>
569
+
570
+ Permission to use, copy, modify, and/or distribute this software for any
571
+ purpose with or without fee is hereby granted, provided that the above
572
+ copyright notice and this permission notice appear in all copies.
573
+
574
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
575
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
576
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
577
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
578
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
579
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
580
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
581
+
582
+ pako
583
+ (MIT AND Zlib)
584
+ (The MIT License)
585
+
586
+ Copyright (C) 2014-2017 by Vitaly Puzrin and Andrei Tuputcyn
587
+
588
+ Permission is hereby granted, free of charge, to any person obtaining a copy
589
+ of this software and associated documentation files (the "Software"), to deal
590
+ in the Software without restriction, including without limitation the rights
591
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
592
+ copies of the Software, and to permit persons to whom the Software is
593
+ furnished to do so, subject to the following conditions:
594
+
595
+ The above copyright notice and this permission notice shall be included in
596
+ all copies or substantial portions of the Software.
597
+
598
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
599
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
600
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
601
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
602
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
603
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
604
+ THE SOFTWARE.
605
+
606
+
607
+ path2d-polyfill
608
+ MIT
609
+ MIT License
610
+
611
+ Copyright (c) 2018 Anders Nilsson
612
+
613
+ Permission is hereby granted, free of charge, to any person obtaining a copy
614
+ of this software and associated documentation files (the "Software"), to deal
615
+ in the Software without restriction, including without limitation the rights
616
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
617
+ copies of the Software, and to permit persons to whom the Software is
618
+ furnished to do so, subject to the following conditions:
619
+
620
+ The above copyright notice and this permission notice shall be included in all
621
+ copies or substantial portions of the Software.
622
+
623
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
624
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
625
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
626
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
627
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
628
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
629
+ SOFTWARE.
630
+
631
+
632
+ pdf-lib
633
+ MIT
634
+ MIT License
635
+
636
+ Copyright (c) 2019 Andrew Dillon
637
+
638
+ Permission is hereby granted, free of charge, to any person obtaining a copy
639
+ of this software and associated documentation files (the "Software"), to deal
640
+ in the Software without restriction, including without limitation the rights
641
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
642
+ copies of the Software, and to permit persons to whom the Software is
643
+ furnished to do so, subject to the following conditions:
644
+
645
+ The above copyright notice and this permission notice shall be included in all
646
+ copies or substantial portions of the Software.
647
+
648
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
649
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
650
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
651
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
652
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
653
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
654
+ SOFTWARE.
655
+
656
+
657
+ pdfjs-dist
658
+ Apache-2.0
659
+
660
+ Apache License
661
+ Version 2.0, January 2004
662
+ http://www.apache.org/licenses/
663
+
664
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
665
+
666
+ 1. Definitions.
667
+
668
+ "License" shall mean the terms and conditions for use, reproduction,
669
+ and distribution as defined by Sections 1 through 9 of this document.
670
+
671
+ "Licensor" shall mean the copyright owner or entity authorized by
672
+ the copyright owner that is granting the License.
673
+
674
+ "Legal Entity" shall mean the union of the acting entity and all
675
+ other entities that control, are controlled by, or are under common
676
+ control with that entity. For the purposes of this definition,
677
+ "control" means (i) the power, direct or indirect, to cause the
678
+ direction or management of such entity, whether by contract or
679
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
680
+ outstanding shares, or (iii) beneficial ownership of such entity.
681
+
682
+ "You" (or "Your") shall mean an individual or Legal Entity
683
+ exercising permissions granted by this License.
684
+
685
+ "Source" form shall mean the preferred form for making modifications,
686
+ including but not limited to software source code, documentation
687
+ source, and configuration files.
688
+
689
+ "Object" form shall mean any form resulting from mechanical
690
+ transformation or translation of a Source form, including but
691
+ not limited to compiled object code, generated documentation,
692
+ and conversions to other media types.
693
+
694
+ "Work" shall mean the work of authorship, whether in Source or
695
+ Object form, made available under the License, as indicated by a
696
+ copyright notice that is included in or attached to the work
697
+ (an example is provided in the Appendix below).
698
+
699
+ "Derivative Works" shall mean any work, whether in Source or Object
700
+ form, that is based on (or derived from) the Work and for which the
701
+ editorial revisions, annotations, elaborations, or other modifications
702
+ represent, as a whole, an original work of authorship. For the purposes
703
+ of this License, Derivative Works shall not include works that remain
704
+ separable from, or merely link (or bind by name) to the interfaces of,
705
+ the Work and Derivative Works thereof.
706
+
707
+ "Contribution" shall mean any work of authorship, including
708
+ the original version of the Work and any modifications or additions
709
+ to that Work or Derivative Works thereof, that is intentionally
710
+ submitted to Licensor for inclusion in the Work by the copyright owner
711
+ or by an individual or Legal Entity authorized to submit on behalf of
712
+ the copyright owner. For the purposes of this definition, "submitted"
713
+ means any form of electronic, verbal, or written communication sent
714
+ to the Licensor or its representatives, including but not limited to
715
+ communication on electronic mailing lists, source code control systems,
716
+ and issue tracking systems that are managed by, or on behalf of, the
717
+ Licensor for the purpose of discussing and improving the Work, but
718
+ excluding communication that is conspicuously marked or otherwise
719
+ designated in writing by the copyright owner as "Not a Contribution."
720
+
721
+ "Contributor" shall mean Licensor and any individual or Legal Entity
722
+ on behalf of whom a Contribution has been received by Licensor and
723
+ subsequently incorporated within the Work.
724
+
725
+ 2. Grant of Copyright License. Subject to the terms and conditions of
726
+ this License, each Contributor hereby grants to You a perpetual,
727
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
728
+ copyright license to reproduce, prepare Derivative Works of,
729
+ publicly display, publicly perform, sublicense, and distribute the
730
+ Work and such Derivative Works in Source or Object form.
731
+
732
+ 3. Grant of Patent License. Subject to the terms and conditions of
733
+ this License, each Contributor hereby grants to You a perpetual,
734
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
735
+ (except as stated in this section) patent license to make, have made,
736
+ use, offer to sell, sell, import, and otherwise transfer the Work,
737
+ where such license applies only to those patent claims licensable
738
+ by such Contributor that are necessarily infringed by their
739
+ Contribution(s) alone or by combination of their Contribution(s)
740
+ with the Work to which such Contribution(s) was submitted. If You
741
+ institute patent litigation against any entity (including a
742
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
743
+ or a Contribution incorporated within the Work constitutes direct
744
+ or contributory patent infringement, then any patent licenses
745
+ granted to You under this License for that Work shall terminate
746
+ as of the date such litigation is filed.
747
+
748
+ 4. Redistribution. You may reproduce and distribute copies of the
749
+ Work or Derivative Works thereof in any medium, with or without
750
+ modifications, and in Source or Object form, provided that You
751
+ meet the following conditions:
752
+
753
+ (a) You must give any other recipients of the Work or
754
+ Derivative Works a copy of this License; and
755
+
756
+ (b) You must cause any modified files to carry prominent notices
757
+ stating that You changed the files; and
758
+
759
+ (c) You must retain, in the Source form of any Derivative Works
760
+ that You distribute, all copyright, patent, trademark, and
761
+ attribution notices from the Source form of the Work,
762
+ excluding those notices that do not pertain to any part of
763
+ the Derivative Works; and
764
+
765
+ (d) If the Work includes a "NOTICE" text file as part of its
766
+ distribution, then any Derivative Works that You distribute must
767
+ include a readable copy of the attribution notices contained
768
+ within such NOTICE file, excluding those notices that do not
769
+ pertain to any part of the Derivative Works, in at least one
770
+ of the following places: within a NOTICE text file distributed
771
+ as part of the Derivative Works; within the Source form or
772
+ documentation, if provided along with the Derivative Works; or,
773
+ within a display generated by the Derivative Works, if and
774
+ wherever such third-party notices normally appear. The contents
775
+ of the NOTICE file are for informational purposes only and
776
+ do not modify the License. You may add Your own attribution
777
+ notices within Derivative Works that You distribute, alongside
778
+ or as an addendum to the NOTICE text from the Work, provided
779
+ that such additional attribution notices cannot be construed
780
+ as modifying the License.
781
+
782
+ You may add Your own copyright statement to Your modifications and
783
+ may provide additional or different license terms and conditions
784
+ for use, reproduction, or distribution of Your modifications, or
785
+ for any such Derivative Works as a whole, provided Your use,
786
+ reproduction, and distribution of the Work otherwise complies with
787
+ the conditions stated in this License.
788
+
789
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
790
+ any Contribution intentionally submitted for inclusion in the Work
791
+ by You to the Licensor shall be under the terms and conditions of
792
+ this License, without any additional terms or conditions.
793
+ Notwithstanding the above, nothing herein shall supersede or modify
794
+ the terms of any separate license agreement you may have executed
795
+ with Licensor regarding such Contributions.
796
+
797
+ 6. Trademarks. This License does not grant permission to use the trade
798
+ names, trademarks, service marks, or product names of the Licensor,
799
+ except as required for reasonable and customary use in describing the
800
+ origin of the Work and reproducing the content of the NOTICE file.
801
+
802
+ 7. Disclaimer of Warranty. Unless required by applicable law or
803
+ agreed to in writing, Licensor provides the Work (and each
804
+ Contributor provides its Contributions) on an "AS IS" BASIS,
805
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
806
+ implied, including, without limitation, any warranties or conditions
807
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
808
+ PARTICULAR PURPOSE. You are solely responsible for determining the
809
+ appropriateness of using or redistributing the Work and assume any
810
+ risks associated with Your exercise of permissions under this License.
811
+
812
+ 8. Limitation of Liability. In no event and under no legal theory,
813
+ whether in tort (including negligence), contract, or otherwise,
814
+ unless required by applicable law (such as deliberate and grossly
815
+ negligent acts) or agreed to in writing, shall any Contributor be
816
+ liable to You for damages, including any direct, indirect, special,
817
+ incidental, or consequential damages of any character arising as a
818
+ result of this License or out of the use or inability to use the
819
+ Work (including but not limited to damages for loss of goodwill,
820
+ work stoppage, computer failure or malfunction, or any and all
821
+ other commercial damages or losses), even if such Contributor
822
+ has been advised of the possibility of such damages.
823
+
824
+ 9. Accepting Warranty or Additional Liability. While redistributing
825
+ the Work or Derivative Works thereof, You may choose to offer,
826
+ and charge a fee for, acceptance of support, warranty, indemnity,
827
+ or other liability obligations and/or rights consistent with this
828
+ License. However, in accepting such obligations, You may act only
829
+ on Your own behalf and on Your sole responsibility, not on behalf
830
+ of any other Contributor, and only if You agree to indemnify,
831
+ defend, and hold each Contributor harmless for any liability
832
+ incurred by, or claims asserted against, such Contributor by reason
833
+ of your accepting any such warranty or additional liability.
834
+
835
+ END OF TERMS AND CONDITIONS
836
+
837
+
838
+ qrcode
839
+ MIT
840
+ The MIT License (MIT)
841
+
842
+ Copyright (c) 2012 Ryan Day
843
+
844
+ 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:
845
+
846
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
847
+
848
+ 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.
849
+
850
+
851
+
852
+ reflect-metadata
853
+ Apache-2.0
854
+ Apache License
855
+
856
+ Version 2.0, January 2004
857
+
858
+ http://www.apache.org/licenses/
859
+
860
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
861
+
862
+ 1. Definitions.
863
+
864
+ "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
865
+
866
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
867
+
868
+ "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
869
+
870
+ "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
871
+
872
+ "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
873
+
874
+ "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
875
+
876
+ "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
877
+
878
+ "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
879
+
880
+ "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
881
+
882
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
883
+
884
+ 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
885
+
886
+ 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
887
+
888
+ 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
889
+
890
+ You must give any other recipients of the Work or Derivative Works a copy of this License; and
891
+
892
+ You must cause any modified files to carry prominent notices stating that You changed the files; and
893
+
894
+ You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
895
+
896
+ If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
897
+
898
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
899
+
900
+ 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
901
+
902
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
903
+
904
+ 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
905
+
906
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
907
+
908
+ END OF TERMS AND CONDITIONS
909
+
910
+ rxjs
911
+ Apache-2.0
912
+ Apache License
913
+ Version 2.0, January 2004
914
+ http://www.apache.org/licenses/
915
+
916
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
917
+
918
+ 1. Definitions.
919
+
920
+ "License" shall mean the terms and conditions for use, reproduction,
921
+ and distribution as defined by Sections 1 through 9 of this document.
922
+
923
+ "Licensor" shall mean the copyright owner or entity authorized by
924
+ the copyright owner that is granting the License.
925
+
926
+ "Legal Entity" shall mean the union of the acting entity and all
927
+ other entities that control, are controlled by, or are under common
928
+ control with that entity. For the purposes of this definition,
929
+ "control" means (i) the power, direct or indirect, to cause the
930
+ direction or management of such entity, whether by contract or
931
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
932
+ outstanding shares, or (iii) beneficial ownership of such entity.
933
+
934
+ "You" (or "Your") shall mean an individual or Legal Entity
935
+ exercising permissions granted by this License.
936
+
937
+ "Source" form shall mean the preferred form for making modifications,
938
+ including but not limited to software source code, documentation
939
+ source, and configuration files.
940
+
941
+ "Object" form shall mean any form resulting from mechanical
942
+ transformation or translation of a Source form, including but
943
+ not limited to compiled object code, generated documentation,
944
+ and conversions to other media types.
945
+
946
+ "Work" shall mean the work of authorship, whether in Source or
947
+ Object form, made available under the License, as indicated by a
948
+ copyright notice that is included in or attached to the work
949
+ (an example is provided in the Appendix below).
950
+
951
+ "Derivative Works" shall mean any work, whether in Source or Object
952
+ form, that is based on (or derived from) the Work and for which the
953
+ editorial revisions, annotations, elaborations, or other modifications
954
+ represent, as a whole, an original work of authorship. For the purposes
955
+ of this License, Derivative Works shall not include works that remain
956
+ separable from, or merely link (or bind by name) to the interfaces of,
957
+ the Work and Derivative Works thereof.
958
+
959
+ "Contribution" shall mean any work of authorship, including
960
+ the original version of the Work and any modifications or additions
961
+ to that Work or Derivative Works thereof, that is intentionally
962
+ submitted to Licensor for inclusion in the Work by the copyright owner
963
+ or by an individual or Legal Entity authorized to submit on behalf of
964
+ the copyright owner. For the purposes of this definition, "submitted"
965
+ means any form of electronic, verbal, or written communication sent
966
+ to the Licensor or its representatives, including but not limited to
967
+ communication on electronic mailing lists, source code control systems,
968
+ and issue tracking systems that are managed by, or on behalf of, the
969
+ Licensor for the purpose of discussing and improving the Work, but
970
+ excluding communication that is conspicuously marked or otherwise
971
+ designated in writing by the copyright owner as "Not a Contribution."
972
+
973
+ "Contributor" shall mean Licensor and any individual or Legal Entity
974
+ on behalf of whom a Contribution has been received by Licensor and
975
+ subsequently incorporated within the Work.
976
+
977
+ 2. Grant of Copyright License. Subject to the terms and conditions of
978
+ this License, each Contributor hereby grants to You a perpetual,
979
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
980
+ copyright license to reproduce, prepare Derivative Works of,
981
+ publicly display, publicly perform, sublicense, and distribute the
982
+ Work and such Derivative Works in Source or Object form.
983
+
984
+ 3. Grant of Patent License. Subject to the terms and conditions of
985
+ this License, each Contributor hereby grants to You a perpetual,
986
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
987
+ (except as stated in this section) patent license to make, have made,
988
+ use, offer to sell, sell, import, and otherwise transfer the Work,
989
+ where such license applies only to those patent claims licensable
990
+ by such Contributor that are necessarily infringed by their
991
+ Contribution(s) alone or by combination of their Contribution(s)
992
+ with the Work to which such Contribution(s) was submitted. If You
993
+ institute patent litigation against any entity (including a
994
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
995
+ or a Contribution incorporated within the Work constitutes direct
996
+ or contributory patent infringement, then any patent licenses
997
+ granted to You under this License for that Work shall terminate
998
+ as of the date such litigation is filed.
999
+
1000
+ 4. Redistribution. You may reproduce and distribute copies of the
1001
+ Work or Derivative Works thereof in any medium, with or without
1002
+ modifications, and in Source or Object form, provided that You
1003
+ meet the following conditions:
1004
+
1005
+ (a) You must give any other recipients of the Work or
1006
+ Derivative Works a copy of this License; and
1007
+
1008
+ (b) You must cause any modified files to carry prominent notices
1009
+ stating that You changed the files; and
1010
+
1011
+ (c) You must retain, in the Source form of any Derivative Works
1012
+ that You distribute, all copyright, patent, trademark, and
1013
+ attribution notices from the Source form of the Work,
1014
+ excluding those notices that do not pertain to any part of
1015
+ the Derivative Works; and
1016
+
1017
+ (d) If the Work includes a "NOTICE" text file as part of its
1018
+ distribution, then any Derivative Works that You distribute must
1019
+ include a readable copy of the attribution notices contained
1020
+ within such NOTICE file, excluding those notices that do not
1021
+ pertain to any part of the Derivative Works, in at least one
1022
+ of the following places: within a NOTICE text file distributed
1023
+ as part of the Derivative Works; within the Source form or
1024
+ documentation, if provided along with the Derivative Works; or,
1025
+ within a display generated by the Derivative Works, if and
1026
+ wherever such third-party notices normally appear. The contents
1027
+ of the NOTICE file are for informational purposes only and
1028
+ do not modify the License. You may add Your own attribution
1029
+ notices within Derivative Works that You distribute, alongside
1030
+ or as an addendum to the NOTICE text from the Work, provided
1031
+ that such additional attribution notices cannot be construed
1032
+ as modifying the License.
1033
+
1034
+ You may add Your own copyright statement to Your modifications and
1035
+ may provide additional or different license terms and conditions
1036
+ for use, reproduction, or distribution of Your modifications, or
1037
+ for any such Derivative Works as a whole, provided Your use,
1038
+ reproduction, and distribution of the Work otherwise complies with
1039
+ the conditions stated in this License.
1040
+
1041
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1042
+ any Contribution intentionally submitted for inclusion in the Work
1043
+ by You to the Licensor shall be under the terms and conditions of
1044
+ this License, without any additional terms or conditions.
1045
+ Notwithstanding the above, nothing herein shall supersede or modify
1046
+ the terms of any separate license agreement you may have executed
1047
+ with Licensor regarding such Contributions.
1048
+
1049
+ 6. Trademarks. This License does not grant permission to use the trade
1050
+ names, trademarks, service marks, or product names of the Licensor,
1051
+ except as required for reasonable and customary use in describing the
1052
+ origin of the Work and reproducing the content of the NOTICE file.
1053
+
1054
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1055
+ agreed to in writing, Licensor provides the Work (and each
1056
+ Contributor provides its Contributions) on an "AS IS" BASIS,
1057
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1058
+ implied, including, without limitation, any warranties or conditions
1059
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1060
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1061
+ appropriateness of using or redistributing the Work and assume any
1062
+ risks associated with Your exercise of permissions under this License.
1063
+
1064
+ 8. Limitation of Liability. In no event and under no legal theory,
1065
+ whether in tort (including negligence), contract, or otherwise,
1066
+ unless required by applicable law (such as deliberate and grossly
1067
+ negligent acts) or agreed to in writing, shall any Contributor be
1068
+ liable to You for damages, including any direct, indirect, special,
1069
+ incidental, or consequential damages of any character arising as a
1070
+ result of this License or out of the use or inability to use the
1071
+ Work (including but not limited to damages for loss of goodwill,
1072
+ work stoppage, computer failure or malfunction, or any and all
1073
+ other commercial damages or losses), even if such Contributor
1074
+ has been advised of the possibility of such damages.
1075
+
1076
+ 9. Accepting Warranty or Additional Liability. While redistributing
1077
+ the Work or Derivative Works thereof, You may choose to offer,
1078
+ and charge a fee for, acceptance of support, warranty, indemnity,
1079
+ or other liability obligations and/or rights consistent with this
1080
+ License. However, in accepting such obligations, You may act only
1081
+ on Your own behalf and on Your sole responsibility, not on behalf
1082
+ of any other Contributor, and only if You agree to indemnify,
1083
+ defend, and hold each Contributor harmless for any liability
1084
+ incurred by, or claims asserted against, such Contributor by reason
1085
+ of your accepting any such warranty or additional liability.
1086
+
1087
+ END OF TERMS AND CONDITIONS
1088
+
1089
+ APPENDIX: How to apply the Apache License to your work.
1090
+
1091
+ To apply the Apache License to your work, attach the following
1092
+ boilerplate notice, with the fields enclosed by brackets "[]"
1093
+ replaced with your own identifying information. (Don't include
1094
+ the brackets!) The text should be enclosed in the appropriate
1095
+ comment syntax for the file format. We also recommend that a
1096
+ file or class name and description of purpose be included on the
1097
+ same "printed page" as the copyright notice for easier
1098
+ identification within third-party archives.
1099
+
1100
+ Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors
1101
+
1102
+ Licensed under the Apache License, Version 2.0 (the "License");
1103
+ you may not use this file except in compliance with the License.
1104
+ You may obtain a copy of the License at
1105
+
1106
+ http://www.apache.org/licenses/LICENSE-2.0
1107
+
1108
+ Unless required by applicable law or agreed to in writing, software
1109
+ distributed under the License is distributed on an "AS IS" BASIS,
1110
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
+ See the License for the specific language governing permissions and
1112
+ limitations under the License.
1113
+
1114
+
1115
+
1116
+ signature_pad
1117
+ MIT
1118
+ MIT License
1119
+
1120
+ Copyright (c) 2018 Szymon Nowak
1121
+
1122
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1123
+ of this software and associated documentation files (the "Software"), to deal
1124
+ in the Software without restriction, including without limitation the rights
1125
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1126
+ copies of the Software, and to permit persons to whom the Software is
1127
+ furnished to do so, subject to the following conditions:
1128
+
1129
+ The above copyright notice and this permission notice shall be included in all
1130
+ copies or substantial portions of the Software.
1131
+
1132
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1133
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1134
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1135
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1136
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1137
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1138
+ SOFTWARE.
1139
+
1140
+
1141
+ three
1142
+ MIT
1143
+ The MIT License
1144
+
1145
+ Copyright © 2010-2021 three.js authors
1146
+
1147
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1148
+ of this software and associated documentation files (the "Software"), to deal
1149
+ in the Software without restriction, including without limitation the rights
1150
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1151
+ copies of the Software, and to permit persons to whom the Software is
1152
+ furnished to do so, subject to the following conditions:
1153
+
1154
+ The above copyright notice and this permission notice shall be included in
1155
+ all copies or substantial portions of the Software.
1156
+
1157
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1158
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1159
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1160
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1161
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1162
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1163
+ THE SOFTWARE.
1164
+
1165
+
1166
+ tslib
1167
+ 0BSD
1168
+ Copyright (c) Microsoft Corporation.
1169
+
1170
+ Permission to use, copy, modify, and/or distribute this software for any
1171
+ purpose with or without fee is hereby granted.
1172
+
1173
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
1174
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
1175
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
1176
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
1177
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
1178
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
1179
+ PERFORMANCE OF THIS SOFTWARE.
1180
+
1181
+ xlsx
1182
+ Apache-2.0
1183
+ Apache License
1184
+ Version 2.0, January 2004
1185
+ http://www.apache.org/licenses/
1186
+
1187
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1188
+
1189
+ 1. Definitions.
1190
+
1191
+ "License" shall mean the terms and conditions for use, reproduction,
1192
+ and distribution as defined by Sections 1 through 9 of this document.
1193
+
1194
+ "Licensor" shall mean the copyright owner or entity authorized by
1195
+ the copyright owner that is granting the License.
1196
+
1197
+ "Legal Entity" shall mean the union of the acting entity and all
1198
+ other entities that control, are controlled by, or are under common
1199
+ control with that entity. For the purposes of this definition,
1200
+ "control" means (i) the power, direct or indirect, to cause the
1201
+ direction or management of such entity, whether by contract or
1202
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
1203
+ outstanding shares, or (iii) beneficial ownership of such entity.
1204
+
1205
+ "You" (or "Your") shall mean an individual or Legal Entity
1206
+ exercising permissions granted by this License.
1207
+
1208
+ "Source" form shall mean the preferred form for making modifications,
1209
+ including but not limited to software source code, documentation
1210
+ source, and configuration files.
1211
+
1212
+ "Object" form shall mean any form resulting from mechanical
1213
+ transformation or translation of a Source form, including but
1214
+ not limited to compiled object code, generated documentation,
1215
+ and conversions to other media types.
1216
+
1217
+ "Work" shall mean the work of authorship, whether in Source or
1218
+ Object form, made available under the License, as indicated by a
1219
+ copyright notice that is included in or attached to the work
1220
+ (an example is provided in the Appendix below).
1221
+
1222
+ "Derivative Works" shall mean any work, whether in Source or Object
1223
+ form, that is based on (or derived from) the Work and for which the
1224
+ editorial revisions, annotations, elaborations, or other modifications
1225
+ represent, as a whole, an original work of authorship. For the purposes
1226
+ of this License, Derivative Works shall not include works that remain
1227
+ separable from, or merely link (or bind by name) to the interfaces of,
1228
+ the Work and Derivative Works thereof.
1229
+
1230
+ "Contribution" shall mean any work of authorship, including
1231
+ the original version of the Work and any modifications or additions
1232
+ to that Work or Derivative Works thereof, that is intentionally
1233
+ submitted to Licensor for inclusion in the Work by the copyright owner
1234
+ or by an individual or Legal Entity authorized to submit on behalf of
1235
+ the copyright owner. For the purposes of this definition, "submitted"
1236
+ means any form of electronic, verbal, or written communication sent
1237
+ to the Licensor or its representatives, including but not limited to
1238
+ communication on electronic mailing lists, source code control systems,
1239
+ and issue tracking systems that are managed by, or on behalf of, the
1240
+ Licensor for the purpose of discussing and improving the Work, but
1241
+ excluding communication that is conspicuously marked or otherwise
1242
+ designated in writing by the copyright owner as "Not a Contribution."
1243
+
1244
+ "Contributor" shall mean Licensor and any individual or Legal Entity
1245
+ on behalf of whom a Contribution has been received by Licensor and
1246
+ subsequently incorporated within the Work.
1247
+
1248
+ 2. Grant of Copyright License. Subject to the terms and conditions of
1249
+ this License, each Contributor hereby grants to You a perpetual,
1250
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1251
+ copyright license to reproduce, prepare Derivative Works of,
1252
+ publicly display, publicly perform, sublicense, and distribute the
1253
+ Work and such Derivative Works in Source or Object form.
1254
+
1255
+ 3. Grant of Patent License. Subject to the terms and conditions of
1256
+ this License, each Contributor hereby grants to You a perpetual,
1257
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1258
+ (except as stated in this section) patent license to make, have made,
1259
+ use, offer to sell, sell, import, and otherwise transfer the Work,
1260
+ where such license applies only to those patent claims licensable
1261
+ by such Contributor that are necessarily infringed by their
1262
+ Contribution(s) alone or by combination of their Contribution(s)
1263
+ with the Work to which such Contribution(s) was submitted. If You
1264
+ institute patent litigation against any entity (including a
1265
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
1266
+ or a Contribution incorporated within the Work constitutes direct
1267
+ or contributory patent infringement, then any patent licenses
1268
+ granted to You under this License for that Work shall terminate
1269
+ as of the date such litigation is filed.
1270
+
1271
+ 4. Redistribution. You may reproduce and distribute copies of the
1272
+ Work or Derivative Works thereof in any medium, with or without
1273
+ modifications, and in Source or Object form, provided that You
1274
+ meet the following conditions:
1275
+
1276
+ (a) You must give any other recipients of the Work or
1277
+ Derivative Works a copy of this License; and
1278
+
1279
+ (b) You must cause any modified files to carry prominent notices
1280
+ stating that You changed the files; and
1281
+
1282
+ (c) You must retain, in the Source form of any Derivative Works
1283
+ that You distribute, all copyright, patent, trademark, and
1284
+ attribution notices from the Source form of the Work,
1285
+ excluding those notices that do not pertain to any part of
1286
+ the Derivative Works; and
1287
+
1288
+ (d) If the Work includes a "NOTICE" text file as part of its
1289
+ distribution, then any Derivative Works that You distribute must
1290
+ include a readable copy of the attribution notices contained
1291
+ within such NOTICE file, excluding those notices that do not
1292
+ pertain to any part of the Derivative Works, in at least one
1293
+ of the following places: within a NOTICE text file distributed
1294
+ as part of the Derivative Works; within the Source form or
1295
+ documentation, if provided along with the Derivative Works; or,
1296
+ within a display generated by the Derivative Works, if and
1297
+ wherever such third-party notices normally appear. The contents
1298
+ of the NOTICE file are for informational purposes only and
1299
+ do not modify the License. You may add Your own attribution
1300
+ notices within Derivative Works that You distribute, alongside
1301
+ or as an addendum to the NOTICE text from the Work, provided
1302
+ that such additional attribution notices cannot be construed
1303
+ as modifying the License.
1304
+
1305
+ You may add Your own copyright statement to Your modifications and
1306
+ may provide additional or different license terms and conditions
1307
+ for use, reproduction, or distribution of Your modifications, or
1308
+ for any such Derivative Works as a whole, provided Your use,
1309
+ reproduction, and distribution of the Work otherwise complies with
1310
+ the conditions stated in this License.
1311
+
1312
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1313
+ any Contribution intentionally submitted for inclusion in the Work
1314
+ by You to the Licensor shall be under the terms and conditions of
1315
+ this License, without any additional terms or conditions.
1316
+ Notwithstanding the above, nothing herein shall supersede or modify
1317
+ the terms of any separate license agreement you may have executed
1318
+ with Licensor regarding such Contributions.
1319
+
1320
+ 6. Trademarks. This License does not grant permission to use the trade
1321
+ names, trademarks, service marks, or product names of the Licensor,
1322
+ except as required for reasonable and customary use in describing the
1323
+ origin of the Work and reproducing the content of the NOTICE file.
1324
+
1325
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1326
+ agreed to in writing, Licensor provides the Work (and each
1327
+ Contributor provides its Contributions) on an "AS IS" BASIS,
1328
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1329
+ implied, including, without limitation, any warranties or conditions
1330
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1331
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1332
+ appropriateness of using or redistributing the Work and assume any
1333
+ risks associated with Your exercise of permissions under this License.
1334
+
1335
+ 8. Limitation of Liability. In no event and under no legal theory,
1336
+ whether in tort (including negligence), contract, or otherwise,
1337
+ unless required by applicable law (such as deliberate and grossly
1338
+ negligent acts) or agreed to in writing, shall any Contributor be
1339
+ liable to You for damages, including any direct, indirect, special,
1340
+ incidental, or consequential damages of any character arising as a
1341
+ result of this License or out of the use or inability to use the
1342
+ Work (including but not limited to damages for loss of goodwill,
1343
+ work stoppage, computer failure or malfunction, or any and all
1344
+ other commercial damages or losses), even if such Contributor
1345
+ has been advised of the possibility of such damages.
1346
+
1347
+ 9. Accepting Warranty or Additional Liability. While redistributing
1348
+ the Work or Derivative Works thereof, You may choose to offer,
1349
+ and charge a fee for, acceptance of support, warranty, indemnity,
1350
+ or other liability obligations and/or rights consistent with this
1351
+ License. However, in accepting such obligations, You may act only
1352
+ on Your own behalf and on Your sole responsibility, not on behalf
1353
+ of any other Contributor, and only if You agree to indemnify,
1354
+ defend, and hold each Contributor harmless for any liability
1355
+ incurred by, or claims asserted against, such Contributor by reason
1356
+ of your accepting any such warranty or additional liability.
1357
+
1358
+ END OF TERMS AND CONDITIONS
1359
+
1360
+ APPENDIX: How to apply the Apache License to your work.
1361
+
1362
+ To apply the Apache License to your work, attach the following
1363
+ boilerplate notice, with the fields enclosed by brackets "{}"
1364
+ replaced with your own identifying information. (Don't include
1365
+ the brackets!) The text should be enclosed in the appropriate
1366
+ comment syntax for the file format. We also recommend that a
1367
+ file or class name and description of purpose be included on the
1368
+ same "printed page" as the copyright notice for easier
1369
+ identification within third-party archives.
1370
+
1371
+ Copyright (C) 2012-present SheetJS LLC
1372
+
1373
+ Licensed under the Apache License, Version 2.0 (the "License");
1374
+ you may not use this file except in compliance with the License.
1375
+ You may obtain a copy of the License at
1376
+
1377
+ http://www.apache.org/licenses/LICENSE-2.0
1378
+
1379
+ Unless required by applicable law or agreed to in writing, software
1380
+ distributed under the License is distributed on an "AS IS" BASIS,
1381
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1382
+ See the License for the specific language governing permissions and
1383
+ limitations under the License.
1384
+
1385
+
1386
+ zone.js
1387
+ MIT
1388
+ The MIT License
1389
+
1390
+ Copyright (c) 2010-2022 Google LLC. https://angular.io/license
1391
+
1392
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1393
+ of this software and associated documentation files (the "Software"), to deal
1394
+ in the Software without restriction, including without limitation the rights
1395
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1396
+ copies of the Software, and to permit persons to whom the Software is
1397
+ furnished to do so, subject to the following conditions:
1398
+
1399
+ The above copyright notice and this permission notice shall be included in
1400
+ all copies or substantial portions of the Software.
1401
+
1402
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1403
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1404
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1405
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1406
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1407
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1408
+ THE SOFTWARE.