bedrock-agentcore 0.1.1 → 0.2.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.
- package/README.md +102 -114
- package/dist/src/_utils/endpoints.d.ts +28 -0
- package/dist/src/_utils/endpoints.d.ts.map +1 -0
- package/dist/src/_utils/endpoints.js +44 -0
- package/dist/src/_utils/endpoints.js.map +1 -0
- package/dist/src/identity/client.d.ts +40 -0
- package/dist/src/identity/client.d.ts.map +1 -0
- package/dist/src/identity/client.js +109 -0
- package/dist/src/identity/client.js.map +1 -0
- package/dist/src/identity/index.d.ts +22 -0
- package/dist/src/identity/index.d.ts.map +1 -0
- package/dist/src/identity/index.js +24 -0
- package/dist/src/identity/index.js.map +1 -0
- package/dist/src/identity/types.d.ts +82 -0
- package/dist/src/identity/types.d.ts.map +1 -0
- package/dist/src/identity/types.js +5 -0
- package/dist/src/identity/types.js.map +1 -0
- package/dist/src/identity/wrappers.d.ts +54 -0
- package/dist/src/identity/wrappers.d.ts.map +1 -0
- package/dist/src/identity/wrappers.js +95 -0
- package/dist/src/identity/wrappers.js.map +1 -0
- package/dist/src/runtime/app.d.ts +144 -0
- package/dist/src/runtime/app.d.ts.map +1 -0
- package/dist/src/runtime/app.js +485 -0
- package/dist/src/runtime/app.js.map +1 -0
- package/dist/src/runtime/client.d.ts +154 -0
- package/dist/src/runtime/client.d.ts.map +1 -0
- package/dist/src/runtime/client.js +319 -0
- package/dist/src/runtime/client.js.map +1 -0
- package/dist/src/runtime/context.d.ts +33 -0
- package/dist/src/runtime/context.d.ts.map +1 -0
- package/dist/src/runtime/context.js +49 -0
- package/dist/src/runtime/context.js.map +1 -0
- package/dist/src/runtime/index.d.ts +8 -0
- package/dist/src/runtime/index.d.ts.map +1 -0
- package/dist/src/runtime/index.js +7 -0
- package/dist/src/runtime/index.js.map +1 -0
- package/dist/src/runtime/types.d.ts +429 -0
- package/dist/src/runtime/types.d.ts.map +1 -0
- package/dist/src/runtime/types.js +26 -0
- package/dist/src/runtime/types.js.map +1 -0
- package/dist/src/tools/browser/client.d.ts +19 -0
- package/dist/src/tools/browser/client.d.ts.map +1 -1
- package/dist/src/tools/browser/client.js +56 -0
- package/dist/src/tools/browser/client.js.map +1 -1
- package/dist/src/tools/browser/index.d.ts +1 -1
- package/dist/src/tools/browser/index.d.ts.map +1 -1
- package/dist/src/tools/browser/index.js.map +1 -1
- package/dist/src/tools/browser/integrations/strands/click-tool.d.ts +20 -0
- package/dist/src/tools/browser/integrations/strands/click-tool.d.ts.map +1 -0
- package/dist/src/tools/browser/integrations/strands/click-tool.js +33 -0
- package/dist/src/tools/browser/integrations/strands/click-tool.js.map +1 -0
- package/dist/src/tools/browser/integrations/strands/evaluate-tool.d.ts +20 -0
- package/dist/src/tools/browser/integrations/strands/evaluate-tool.d.ts.map +1 -0
- package/dist/src/tools/browser/integrations/strands/evaluate-tool.js +34 -0
- package/dist/src/tools/browser/integrations/strands/evaluate-tool.js.map +1 -0
- package/dist/src/tools/browser/integrations/strands/get-html-tool.d.ts +19 -0
- package/dist/src/tools/browser/integrations/strands/get-html-tool.d.ts.map +1 -0
- package/dist/src/tools/browser/integrations/strands/get-html-tool.js +32 -0
- package/dist/src/tools/browser/integrations/strands/get-html-tool.js.map +1 -0
- package/dist/src/tools/browser/integrations/strands/get-text-tool.d.ts +19 -0
- package/dist/src/tools/browser/integrations/strands/get-text-tool.d.ts.map +1 -0
- package/dist/src/tools/browser/integrations/strands/get-text-tool.js +32 -0
- package/dist/src/tools/browser/integrations/strands/get-text-tool.js.map +1 -0
- package/dist/src/tools/browser/integrations/strands/index.d.ts +25 -0
- package/dist/src/tools/browser/integrations/strands/index.d.ts.map +1 -0
- package/dist/src/tools/browser/integrations/strands/index.js +25 -0
- package/dist/src/tools/browser/integrations/strands/index.js.map +1 -0
- package/dist/src/tools/browser/integrations/strands/navigate-tool.d.ts +21 -0
- package/dist/src/tools/browser/integrations/strands/navigate-tool.d.ts.map +1 -0
- package/dist/src/tools/browser/integrations/strands/navigate-tool.js +41 -0
- package/dist/src/tools/browser/integrations/strands/navigate-tool.js.map +1 -0
- package/dist/src/tools/browser/integrations/strands/screenshot-tool.d.ts +29 -0
- package/dist/src/tools/browser/integrations/strands/screenshot-tool.d.ts.map +1 -0
- package/dist/src/tools/browser/integrations/strands/screenshot-tool.js +52 -0
- package/dist/src/tools/browser/integrations/strands/screenshot-tool.js.map +1 -0
- package/dist/src/tools/browser/integrations/strands/tools.d.ts +119 -0
- package/dist/src/tools/browser/integrations/strands/tools.d.ts.map +1 -0
- package/dist/src/tools/browser/integrations/strands/tools.js +141 -0
- package/dist/src/tools/browser/integrations/strands/tools.js.map +1 -0
- package/dist/src/tools/browser/integrations/strands/type-tool.d.ts +22 -0
- package/dist/src/tools/browser/integrations/strands/type-tool.d.ts.map +1 -0
- package/dist/src/tools/browser/integrations/strands/type-tool.js +37 -0
- package/dist/src/tools/browser/integrations/strands/type-tool.js.map +1 -0
- package/dist/src/tools/browser/integrations/vercel-ai/tools.d.ts +1 -1
- package/dist/src/tools/browser/integrations/vercel-ai/tools.js +1 -1
- package/dist/src/tools/browser/live-view/BrowserLiveView.d.ts +10 -0
- package/dist/src/tools/browser/live-view/BrowserLiveView.d.ts.map +1 -0
- package/dist/src/tools/browser/live-view/BrowserLiveView.js +180 -0
- package/dist/src/tools/browser/live-view/BrowserLiveView.js.map +1 -0
- package/dist/src/tools/browser/live-view/index.d.ts +4 -0
- package/dist/src/tools/browser/live-view/index.d.ts.map +1 -0
- package/dist/src/tools/browser/live-view/index.js +3 -0
- package/dist/src/tools/browser/live-view/index.js.map +1 -0
- package/dist/src/tools/browser/live-view/nice-dcv-web-client-sdk/README.md +26 -0
- package/dist/src/tools/browser/live-view/nice-dcv-web-client-sdk/dcv-ui/EULA.txt +403 -0
- package/dist/src/tools/browser/live-view/nice-dcv-web-client-sdk/dcv-ui/README.md +57 -0
- package/dist/src/tools/browser/live-view/nice-dcv-web-client-sdk/dcv-ui/dcv-ui.js +7 -0
- package/dist/src/tools/browser/live-view/nice-dcv-web-client-sdk/dcv-ui/third-party-licenses.txt +145 -0
- package/dist/src/tools/browser/live-view/nice-dcv-web-client-sdk/dcvjs-esm/EULA.txt +403 -0
- package/dist/src/tools/browser/live-view/nice-dcv-web-client-sdk/dcvjs-esm/README.md +50 -0
- package/dist/src/tools/browser/live-view/nice-dcv-web-client-sdk/dcvjs-esm/dcv/broadwayh264decoder-worker.js +1 -0
- package/dist/src/tools/browser/live-view/nice-dcv-web-client-sdk/dcvjs-esm/dcv/jsmpegdecoder-worker.js +1 -0
- package/dist/src/tools/browser/live-view/nice-dcv-web-client-sdk/dcvjs-esm/dcv/lz4decoder-worker.js +1 -0
- package/dist/src/tools/browser/live-view/nice-dcv-web-client-sdk/dcvjs-esm/dcv/microphoneprocessor.js +1 -0
- package/dist/src/tools/browser/live-view/nice-dcv-web-client-sdk/dcvjs-esm/dcv.js +33 -0
- package/dist/src/tools/browser/live-view/nice-dcv-web-client-sdk/dcvjs-esm/lib/broadway/Decoder.js +850 -0
- package/dist/src/tools/browser/live-view/nice-dcv-web-client-sdk/dcvjs-esm/lib/jsmpeg/jsmpeg.min.js +1 -0
- package/dist/src/tools/browser/live-view/nice-dcv-web-client-sdk/dcvjs-esm/lib/lz4/lz4_decoder.js +12 -0
- package/dist/src/tools/browser/live-view/nice-dcv-web-client-sdk/dcvjs-esm/third-party-licenses.txt +1068 -0
- package/dist/src/tools/browser/live-view/nice-dcv-web-client-sdk/dcvjs-umd/EULA.txt +403 -0
- package/dist/src/tools/browser/live-view/nice-dcv-web-client-sdk/dcvjs-umd/README.md +50 -0
- package/dist/src/tools/browser/live-view/nice-dcv-web-client-sdk/dcvjs-umd/dcv/broadwayh264decoder-worker.js +1 -0
- package/dist/src/tools/browser/live-view/nice-dcv-web-client-sdk/dcvjs-umd/dcv/jsmpegdecoder-worker.js +1 -0
- package/dist/src/tools/browser/live-view/nice-dcv-web-client-sdk/dcvjs-umd/dcv/lz4decoder-worker.js +1 -0
- package/dist/src/tools/browser/live-view/nice-dcv-web-client-sdk/dcvjs-umd/dcv/microphoneprocessor.js +1 -0
- package/dist/src/tools/browser/live-view/nice-dcv-web-client-sdk/dcvjs-umd/dcv.js +33 -0
- package/dist/src/tools/browser/live-view/nice-dcv-web-client-sdk/dcvjs-umd/lib/broadway/Decoder.js +850 -0
- package/dist/src/tools/browser/live-view/nice-dcv-web-client-sdk/dcvjs-umd/lib/jsmpeg/jsmpeg.min.js +1 -0
- package/dist/src/tools/browser/live-view/nice-dcv-web-client-sdk/dcvjs-umd/lib/lz4/lz4_decoder.js +12 -0
- package/dist/src/tools/browser/live-view/nice-dcv-web-client-sdk/dcvjs-umd/third-party-licenses.txt +1068 -0
- package/dist/src/tools/browser/live-view/scaling.d.ts +9 -0
- package/dist/src/tools/browser/live-view/scaling.d.ts.map +1 -0
- package/dist/src/tools/browser/live-view/scaling.js +13 -0
- package/dist/src/tools/browser/live-view/scaling.js.map +1 -0
- package/dist/src/tools/browser/types.d.ts +152 -0
- package/dist/src/tools/browser/types.d.ts.map +1 -1
- package/dist/src/tools/code-interpreter/client.d.ts +2 -0
- package/dist/src/tools/code-interpreter/client.d.ts.map +1 -1
- package/dist/src/tools/code-interpreter/client.js +31 -25
- package/dist/src/tools/code-interpreter/client.js.map +1 -1
- package/dist/src/tools/code-interpreter/integrations/strands/execute-code-tool.d.ts +28 -0
- package/dist/src/tools/code-interpreter/integrations/strands/execute-code-tool.d.ts.map +1 -0
- package/dist/src/tools/code-interpreter/integrations/strands/execute-code-tool.js +47 -0
- package/dist/src/tools/code-interpreter/integrations/strands/execute-code-tool.js.map +1 -0
- package/dist/src/tools/code-interpreter/integrations/strands/execute-command-tool.d.ts +27 -0
- package/dist/src/tools/code-interpreter/integrations/strands/execute-command-tool.d.ts.map +1 -0
- package/dist/src/tools/code-interpreter/integrations/strands/execute-command-tool.js +42 -0
- package/dist/src/tools/code-interpreter/integrations/strands/execute-command-tool.js.map +1 -0
- package/dist/src/tools/code-interpreter/integrations/strands/file-operations-tool.d.ts +33 -0
- package/dist/src/tools/code-interpreter/integrations/strands/file-operations-tool.d.ts.map +1 -0
- package/dist/src/tools/code-interpreter/integrations/strands/file-operations-tool.js +78 -0
- package/dist/src/tools/code-interpreter/integrations/strands/file-operations-tool.js.map +1 -0
- package/dist/src/tools/code-interpreter/integrations/strands/index.d.ts +32 -0
- package/dist/src/tools/code-interpreter/integrations/strands/index.d.ts.map +1 -0
- package/dist/src/tools/code-interpreter/integrations/strands/index.js +32 -0
- package/dist/src/tools/code-interpreter/integrations/strands/index.js.map +1 -0
- package/dist/src/tools/code-interpreter/integrations/strands/tools.d.ts +94 -0
- package/dist/src/tools/code-interpreter/integrations/strands/tools.d.ts.map +1 -0
- package/dist/src/tools/code-interpreter/integrations/strands/tools.js +112 -0
- package/dist/src/tools/code-interpreter/integrations/strands/tools.js.map +1 -0
- package/dist/src/tools/code-interpreter/integrations/vercel-ai/execute-code-tool.d.ts +2 -2
- package/dist/src/tools/code-interpreter/integrations/vercel-ai/execute-code-tool.js +2 -2
- package/dist/src/tools/code-interpreter/integrations/vercel-ai/execute-command-tool.d.ts +2 -2
- package/dist/src/tools/code-interpreter/integrations/vercel-ai/execute-command-tool.js +2 -2
- package/dist/src/tools/code-interpreter/integrations/vercel-ai/file-operations-tool.d.ts +3 -3
- package/dist/src/tools/code-interpreter/integrations/vercel-ai/file-operations-tool.js +2 -2
- package/dist/src/tools/code-interpreter/integrations/vercel-ai/index.d.ts +1 -1
- package/dist/src/tools/code-interpreter/integrations/vercel-ai/index.js +1 -1
- package/dist/src/tools/code-interpreter/integrations/vercel-ai/tools.d.ts +1 -1
- package/dist/src/tools/code-interpreter/integrations/vercel-ai/tools.js +1 -1
- package/package.json +69 -14
package/dist/src/tools/browser/live-view/nice-dcv-web-client-sdk/dcvjs-esm/third-party-licenses.txt
ADDED
|
@@ -0,0 +1,1068 @@
|
|
|
1
|
+
** @protobufjs/aspromise; version 1.1.2 -- https://github.com/dcodeIO/protobuf.js
|
|
2
|
+
BSD-3-Clause
|
|
3
|
+
Copyright (c) 2016, Daniel Wirtz All rights reserved.
|
|
4
|
+
Redistribution and use in source and binary forms, with or without
|
|
5
|
+
modification, are permitted provided that the following conditions are
|
|
6
|
+
met:
|
|
7
|
+
* Redistributions of source code must retain the above copyright
|
|
8
|
+
notice, this list of conditions and the following disclaimer.
|
|
9
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
10
|
+
notice, this list of conditions and the following disclaimer in the
|
|
11
|
+
documentation and/or other materials provided with the distribution.
|
|
12
|
+
* Neither the name of its author, nor the names of its contributors
|
|
13
|
+
may be used to endorse or promote products derived from this software
|
|
14
|
+
without specific prior written permission.
|
|
15
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
16
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
17
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
18
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
19
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
20
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
21
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
22
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
23
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
24
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
25
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
26
|
+
|
|
27
|
+
------
|
|
28
|
+
|
|
29
|
+
** @protobufjs/base64; version 1.1.2 -- https://github.com/dcodeIO/protobuf.js
|
|
30
|
+
BSD-3-Clause
|
|
31
|
+
Copyright (c) 2016, Daniel Wirtz All rights reserved.
|
|
32
|
+
Redistribution and use in source and binary forms, with or without
|
|
33
|
+
modification, are permitted provided that the following conditions are
|
|
34
|
+
met:
|
|
35
|
+
* Redistributions of source code must retain the above copyright
|
|
36
|
+
notice, this list of conditions and the following disclaimer.
|
|
37
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
38
|
+
notice, this list of conditions and the following disclaimer in the
|
|
39
|
+
documentation and/or other materials provided with the distribution.
|
|
40
|
+
* Neither the name of its author, nor the names of its contributors
|
|
41
|
+
may be used to endorse or promote products derived from this software
|
|
42
|
+
without specific prior written permission.
|
|
43
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
44
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
45
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
46
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
47
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
48
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
49
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
50
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
51
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
52
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
53
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
54
|
+
|
|
55
|
+
------
|
|
56
|
+
|
|
57
|
+
** @protobufjs/codegen; version 2.0.4 -- https://github.com/dcodeIO/protobuf.js
|
|
58
|
+
BSD-3-Clause
|
|
59
|
+
Copyright (c) 2016, Daniel Wirtz All rights reserved.
|
|
60
|
+
Redistribution and use in source and binary forms, with or without
|
|
61
|
+
modification, are permitted provided that the following conditions are
|
|
62
|
+
met:
|
|
63
|
+
* Redistributions of source code must retain the above copyright
|
|
64
|
+
notice, this list of conditions and the following disclaimer.
|
|
65
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
66
|
+
notice, this list of conditions and the following disclaimer in the
|
|
67
|
+
documentation and/or other materials provided with the distribution.
|
|
68
|
+
* Neither the name of its author, nor the names of its contributors
|
|
69
|
+
may be used to endorse or promote products derived from this software
|
|
70
|
+
without specific prior written permission.
|
|
71
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
72
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
73
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
74
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
75
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
76
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
77
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
78
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
79
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
80
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
81
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
82
|
+
|
|
83
|
+
------
|
|
84
|
+
|
|
85
|
+
** @protobufjs/eventemitter; version 1.1.0 -- https://github.com/dcodeIO/protobuf.js
|
|
86
|
+
BSD-3-Clause
|
|
87
|
+
Copyright (c) 2016, Daniel Wirtz All rights reserved.
|
|
88
|
+
Redistribution and use in source and binary forms, with or without
|
|
89
|
+
modification, are permitted provided that the following conditions are
|
|
90
|
+
met:
|
|
91
|
+
* Redistributions of source code must retain the above copyright
|
|
92
|
+
notice, this list of conditions and the following disclaimer.
|
|
93
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
94
|
+
notice, this list of conditions and the following disclaimer in the
|
|
95
|
+
documentation and/or other materials provided with the distribution.
|
|
96
|
+
* Neither the name of its author, nor the names of its contributors
|
|
97
|
+
may be used to endorse or promote products derived from this software
|
|
98
|
+
without specific prior written permission.
|
|
99
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
100
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
101
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
102
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
103
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
104
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
105
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
106
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
107
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
108
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
109
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
110
|
+
|
|
111
|
+
------
|
|
112
|
+
|
|
113
|
+
** @protobufjs/fetch; version 1.1.0 -- https://github.com/dcodeIO/protobuf.js
|
|
114
|
+
BSD-3-Clause
|
|
115
|
+
Copyright (c) 2016, Daniel Wirtz All rights reserved.
|
|
116
|
+
Redistribution and use in source and binary forms, with or without
|
|
117
|
+
modification, are permitted provided that the following conditions are
|
|
118
|
+
met:
|
|
119
|
+
* Redistributions of source code must retain the above copyright
|
|
120
|
+
notice, this list of conditions and the following disclaimer.
|
|
121
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
122
|
+
notice, this list of conditions and the following disclaimer in the
|
|
123
|
+
documentation and/or other materials provided with the distribution.
|
|
124
|
+
* Neither the name of its author, nor the names of its contributors
|
|
125
|
+
may be used to endorse or promote products derived from this software
|
|
126
|
+
without specific prior written permission.
|
|
127
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
128
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
129
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
130
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
131
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
132
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
133
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
134
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
135
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
136
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
137
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
138
|
+
|
|
139
|
+
------
|
|
140
|
+
|
|
141
|
+
** @protobufjs/float; version 1.0.2 -- https://github.com/dcodeIO/protobuf.js
|
|
142
|
+
BSD-3-Clause
|
|
143
|
+
Copyright (c) 2016, Daniel Wirtz All rights reserved.
|
|
144
|
+
Redistribution and use in source and binary forms, with or without
|
|
145
|
+
modification, are permitted provided that the following conditions are
|
|
146
|
+
met:
|
|
147
|
+
* Redistributions of source code must retain the above copyright
|
|
148
|
+
notice, this list of conditions and the following disclaimer.
|
|
149
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
150
|
+
notice, this list of conditions and the following disclaimer in the
|
|
151
|
+
documentation and/or other materials provided with the distribution.
|
|
152
|
+
* Neither the name of its author, nor the names of its contributors
|
|
153
|
+
may be used to endorse or promote products derived from this software
|
|
154
|
+
without specific prior written permission.
|
|
155
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
156
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
157
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
158
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
159
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
160
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
161
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
162
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
163
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
164
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
165
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
166
|
+
|
|
167
|
+
------
|
|
168
|
+
|
|
169
|
+
** @protobufjs/inquire; version 1.1.0 -- https://github.com/dcodeIO/protobuf.js
|
|
170
|
+
BSD-3-Clause
|
|
171
|
+
Copyright (c) 2016, Daniel Wirtz All rights reserved.
|
|
172
|
+
Redistribution and use in source and binary forms, with or without
|
|
173
|
+
modification, are permitted provided that the following conditions are
|
|
174
|
+
met:
|
|
175
|
+
* Redistributions of source code must retain the above copyright
|
|
176
|
+
notice, this list of conditions and the following disclaimer.
|
|
177
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
178
|
+
notice, this list of conditions and the following disclaimer in the
|
|
179
|
+
documentation and/or other materials provided with the distribution.
|
|
180
|
+
* Neither the name of its author, nor the names of its contributors
|
|
181
|
+
may be used to endorse or promote products derived from this software
|
|
182
|
+
without specific prior written permission.
|
|
183
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
184
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
185
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
186
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
187
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
188
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
189
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
190
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
191
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
192
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
193
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
194
|
+
|
|
195
|
+
------
|
|
196
|
+
|
|
197
|
+
** @protobufjs/path; version 1.1.2 -- https://github.com/dcodeIO/protobuf.js
|
|
198
|
+
BSD-3-Clause
|
|
199
|
+
Copyright (c) 2016, Daniel Wirtz All rights reserved.
|
|
200
|
+
Redistribution and use in source and binary forms, with or without
|
|
201
|
+
modification, are permitted provided that the following conditions are
|
|
202
|
+
met:
|
|
203
|
+
* Redistributions of source code must retain the above copyright
|
|
204
|
+
notice, this list of conditions and the following disclaimer.
|
|
205
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
206
|
+
notice, this list of conditions and the following disclaimer in the
|
|
207
|
+
documentation and/or other materials provided with the distribution.
|
|
208
|
+
* Neither the name of its author, nor the names of its contributors
|
|
209
|
+
may be used to endorse or promote products derived from this software
|
|
210
|
+
without specific prior written permission.
|
|
211
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
212
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
213
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
214
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
215
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
216
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
217
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
218
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
219
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
220
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
221
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
222
|
+
|
|
223
|
+
------
|
|
224
|
+
|
|
225
|
+
** @protobufjs/pool; version 1.1.0 -- https://github.com/dcodeIO/protobuf.js
|
|
226
|
+
BSD-3-Clause
|
|
227
|
+
Copyright (c) 2016, Daniel Wirtz All rights reserved.
|
|
228
|
+
Redistribution and use in source and binary forms, with or without
|
|
229
|
+
modification, are permitted provided that the following conditions are
|
|
230
|
+
met:
|
|
231
|
+
* Redistributions of source code must retain the above copyright
|
|
232
|
+
notice, this list of conditions and the following disclaimer.
|
|
233
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
234
|
+
notice, this list of conditions and the following disclaimer in the
|
|
235
|
+
documentation and/or other materials provided with the distribution.
|
|
236
|
+
* Neither the name of its author, nor the names of its contributors
|
|
237
|
+
may be used to endorse or promote products derived from this software
|
|
238
|
+
without specific prior written permission.
|
|
239
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
240
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
241
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
242
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
243
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
244
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
245
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
246
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
247
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
248
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
249
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
250
|
+
|
|
251
|
+
------
|
|
252
|
+
|
|
253
|
+
** @protobufjs/utf8; version 1.1.0 -- https://github.com/dcodeIO/protobuf.js
|
|
254
|
+
BSD-3-Clause
|
|
255
|
+
Copyright (c) 2016, Daniel Wirtz All rights reserved.
|
|
256
|
+
Redistribution and use in source and binary forms, with or without
|
|
257
|
+
modification, are permitted provided that the following conditions are
|
|
258
|
+
met:
|
|
259
|
+
* Redistributions of source code must retain the above copyright
|
|
260
|
+
notice, this list of conditions and the following disclaimer.
|
|
261
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
262
|
+
notice, this list of conditions and the following disclaimer in the
|
|
263
|
+
documentation and/or other materials provided with the distribution.
|
|
264
|
+
* Neither the name of its author, nor the names of its contributors
|
|
265
|
+
may be used to endorse or promote products derived from this software
|
|
266
|
+
without specific prior written permission.
|
|
267
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
268
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
269
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
270
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
271
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
272
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
273
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
274
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
275
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
276
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
277
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
278
|
+
|
|
279
|
+
------
|
|
280
|
+
|
|
281
|
+
** avc; version 0.1.0 -- https://github.com/mbebenita/Broadway
|
|
282
|
+
Apache 2.0
|
|
283
|
+
Copyright (C) 2011 The Android Open Source Project
|
|
284
|
+
|
|
285
|
+
------
|
|
286
|
+
|
|
287
|
+
** bowser; version 2.13.1 -- https://github.com/lancedikson/bowser
|
|
288
|
+
MIT
|
|
289
|
+
Copyright 2015, Dustin Diaz (the "Original Author")
|
|
290
|
+
All rights reserved.
|
|
291
|
+
MIT License
|
|
292
|
+
Permission is hereby granted, free of charge, to any person
|
|
293
|
+
obtaining a copy of this software and associated documentation
|
|
294
|
+
files (the "Software"), to deal in the Software without
|
|
295
|
+
restriction, including without limitation the rights to use,
|
|
296
|
+
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
297
|
+
copies of the Software, and to permit persons to whom the
|
|
298
|
+
Software is furnished to do so, subject to the following
|
|
299
|
+
conditions:
|
|
300
|
+
The above copyright notice and this permission notice shall be
|
|
301
|
+
included in all copies or substantial portions of the Software.
|
|
302
|
+
Distributions of all or part of the Software intended to be used
|
|
303
|
+
by the recipients as they would use the unmodified Software,
|
|
304
|
+
containing modifications that substantially alter, remove, or
|
|
305
|
+
disable functionality of the Software, outside of the documented
|
|
306
|
+
configuration mechanisms provided by the Software, shall be
|
|
307
|
+
modified such that the Original Author's bug reporting email
|
|
308
|
+
addresses and urls are either replaced with the contact information
|
|
309
|
+
of the parties responsible for the changes, or removed entirely.
|
|
310
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
311
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
312
|
+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
313
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
314
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
315
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
316
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
317
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
|
318
|
+
Except where noted, this license applies to any and all software
|
|
319
|
+
programs and associated documentation files created by the
|
|
320
|
+
Original Author, when distributed with the Software.
|
|
321
|
+
|
|
322
|
+
------
|
|
323
|
+
|
|
324
|
+
** broadway; version 0.1.0 -- https://github.com/mbebenita/Broadway
|
|
325
|
+
BSD-3-Clause
|
|
326
|
+
Copyright (c) 2011, Project Authors (see AUTHORS file)
|
|
327
|
+
All rights reserved.
|
|
328
|
+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
329
|
+
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|
330
|
+
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
|
331
|
+
* Neither the names of the Project Authors nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
|
332
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
333
|
+
--
|
|
334
|
+
The 3-clause BSD above applies to all code except for code originating
|
|
335
|
+
from the Android project (the .cpp files in Avc/). Those files are under
|
|
336
|
+
the Android project's Apache 2.0 license.
|
|
337
|
+
|
|
338
|
+
------
|
|
339
|
+
|
|
340
|
+
** bytebuffer; version 5.0.1 -- https://github.com/dcodeIO/bytebuffer.js
|
|
341
|
+
Apache-2.0
|
|
342
|
+
Apache License
|
|
343
|
+
Version 2.0, January 2004
|
|
344
|
+
http://www.apache.org/licenses/
|
|
345
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
346
|
+
1. Definitions.
|
|
347
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
348
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
349
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
350
|
+
the copyright owner that is granting the License.
|
|
351
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
352
|
+
other entities that control, are controlled by, or are under common
|
|
353
|
+
control with that entity. For the purposes of this definition,
|
|
354
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
355
|
+
direction or management of such entity, whether by contract or
|
|
356
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
357
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
358
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
359
|
+
exercising permissions granted by this License.
|
|
360
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
361
|
+
including but not limited to software source code, documentation
|
|
362
|
+
source, and configuration files.
|
|
363
|
+
"Object" form shall mean any form resulting from mechanical
|
|
364
|
+
transformation or translation of a Source form, including but
|
|
365
|
+
not limited to compiled object code, generated documentation,
|
|
366
|
+
and conversions to other media types.
|
|
367
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
368
|
+
Object form, made available under the License, as indicated by a
|
|
369
|
+
copyright notice that is included in or attached to the work
|
|
370
|
+
(an example is provided in the Appendix below).
|
|
371
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
372
|
+
form, that is based on (or derived from) the Work and for which the
|
|
373
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
374
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
375
|
+
of this License, Derivative Works shall not include works that remain
|
|
376
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
377
|
+
the Work and Derivative Works thereof.
|
|
378
|
+
"Contribution" shall mean any work of authorship, including
|
|
379
|
+
the original version of the Work and any modifications or additions
|
|
380
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
381
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
382
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
383
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
384
|
+
means any form of electronic, verbal, or written communication sent
|
|
385
|
+
to the Licensor or its representatives, including but not limited to
|
|
386
|
+
communication on electronic mailing lists, source code control systems,
|
|
387
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
388
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
389
|
+
excluding communication that is conspicuously marked or otherwise
|
|
390
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
391
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
392
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
393
|
+
subsequently incorporated within the Work.
|
|
394
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
395
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
396
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
397
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
398
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
399
|
+
Work and such Derivative Works in Source or Object form.
|
|
400
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
401
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
402
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
403
|
+
(except as stated in this section) patent license to make, have made,
|
|
404
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
405
|
+
where such license applies only to those patent claims licensable
|
|
406
|
+
by such Contributor that are necessarily infringed by their
|
|
407
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
408
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
409
|
+
institute patent litigation against any entity (including a
|
|
410
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
411
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
412
|
+
or contributory patent infringement, then any patent licenses
|
|
413
|
+
granted to You under this License for that Work shall terminate
|
|
414
|
+
as of the date such litigation is filed.
|
|
415
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
416
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
417
|
+
modifications, and in Source or Object form, provided that You
|
|
418
|
+
meet the following conditions:
|
|
419
|
+
(a) You must give any other recipients of the Work or
|
|
420
|
+
Derivative Works a copy of this License; and
|
|
421
|
+
(b) You must cause any modified files to carry prominent notices
|
|
422
|
+
stating that You changed the files; and
|
|
423
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
424
|
+
that You distribute, all copyright, patent, trademark, and
|
|
425
|
+
attribution notices from the Source form of the Work,
|
|
426
|
+
excluding those notices that do not pertain to any part of
|
|
427
|
+
the Derivative Works; and
|
|
428
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
429
|
+
distribution, then any Derivative Works that You distribute must
|
|
430
|
+
include a readable copy of the attribution notices contained
|
|
431
|
+
within such NOTICE file, excluding those notices that do not
|
|
432
|
+
pertain to any part of the Derivative Works, in at least one
|
|
433
|
+
of the following places: within a NOTICE text file distributed
|
|
434
|
+
as part of the Derivative Works; within the Source form or
|
|
435
|
+
documentation, if provided along with the Derivative Works; or,
|
|
436
|
+
within a display generated by the Derivative Works, if and
|
|
437
|
+
wherever such third-party notices normally appear. The contents
|
|
438
|
+
of the NOTICE file are for informational purposes only and
|
|
439
|
+
do not modify the License. You may add Your own attribution
|
|
440
|
+
notices within Derivative Works that You distribute, alongside
|
|
441
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
442
|
+
that such additional attribution notices cannot be construed
|
|
443
|
+
as modifying the License.
|
|
444
|
+
You may add Your own copyright statement to Your modifications and
|
|
445
|
+
may provide additional or different license terms and conditions
|
|
446
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
447
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
448
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
449
|
+
the conditions stated in this License.
|
|
450
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
451
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
452
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
453
|
+
this License, without any additional terms or conditions.
|
|
454
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
455
|
+
the terms of any separate license agreement you may have executed
|
|
456
|
+
with Licensor regarding such Contributions.
|
|
457
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
458
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
459
|
+
except as required for reasonable and customary use in describing the
|
|
460
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
461
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
462
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
463
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
464
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
465
|
+
implied, including, without limitation, any warranties or conditions
|
|
466
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
467
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
468
|
+
appropriateness of using or redistributing the Work and assume any
|
|
469
|
+
risks associated with Your exercise of permissions under this License.
|
|
470
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
471
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
472
|
+
unless required by applicable law (such as deliberate and grossly
|
|
473
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
474
|
+
liable to You for damages, including any direct, indirect, special,
|
|
475
|
+
incidental, or consequential damages of any character arising as a
|
|
476
|
+
result of this License or out of the use or inability to use the
|
|
477
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
478
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
479
|
+
other commercial damages or losses), even if such Contributor
|
|
480
|
+
has been advised of the possibility of such damages.
|
|
481
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
482
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
483
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
484
|
+
or other liability obligations and/or rights consistent with this
|
|
485
|
+
License. However, in accepting such obligations, You may act only
|
|
486
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
487
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
488
|
+
defend, and hold each Contributor harmless for any liability
|
|
489
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
490
|
+
of your accepting any such warranty or additional liability.
|
|
491
|
+
END OF TERMS AND CONDITIONS
|
|
492
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
493
|
+
To apply the Apache License to your work, attach the following
|
|
494
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
495
|
+
replaced with your own identifying information. (Don't include
|
|
496
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
497
|
+
comment syntax for the file format. We also recommend that a
|
|
498
|
+
file or class name and description of purpose be included on the
|
|
499
|
+
same "printed page" as the copyright notice for easier
|
|
500
|
+
identification within third-party archives.
|
|
501
|
+
Copyright [yyyy] [name of copyright owner]
|
|
502
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
503
|
+
you may not use this file except in compliance with the License.
|
|
504
|
+
You may obtain a copy of the License at
|
|
505
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
506
|
+
Unless required by applicable law or agreed to in writing, software
|
|
507
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
508
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
509
|
+
See the License for the specific language governing permissions and
|
|
510
|
+
limitations under the License.
|
|
511
|
+
|
|
512
|
+
------
|
|
513
|
+
|
|
514
|
+
** core-js; version 3.48.0 -- https://core-js.io
|
|
515
|
+
MIT
|
|
516
|
+
Copyright (c) 2013–2025 Denis Pushkarev (zloirock.ru)
|
|
517
|
+
Copyright (c) 2025–2026 CoreJS Company (core-js.io)
|
|
518
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
519
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
520
|
+
in the Software without restriction, including without limitation the rights
|
|
521
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
522
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
523
|
+
furnished to do so, subject to the following conditions:
|
|
524
|
+
The above copyright notice and this permission notice shall be included in
|
|
525
|
+
all copies or substantial portions of the Software.
|
|
526
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
527
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
528
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
529
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
530
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
531
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
532
|
+
THE SOFTWARE.
|
|
533
|
+
|
|
534
|
+
------
|
|
535
|
+
|
|
536
|
+
** js-sasl; version 0.1.1
|
|
537
|
+
MIT
|
|
538
|
+
Copyright (c) 2012-2013 Jared Hanson
|
|
539
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
540
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
541
|
+
the Software without restriction, including without limitation the rights to
|
|
542
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
543
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
544
|
+
subject to the following conditions:
|
|
545
|
+
The above copyright notice and this permission notice shall be included in all
|
|
546
|
+
copies or substantial portions of the Software.
|
|
547
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
548
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
549
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
550
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
551
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
552
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
553
|
+
|
|
554
|
+
------
|
|
555
|
+
|
|
556
|
+
** jsmpeg; version N/A -- https://github.com/qazbob/jsmpeg
|
|
557
|
+
MIT
|
|
558
|
+
The MIT License (MIT)
|
|
559
|
+
Copyright (c) 2017 Dominic Szablewski
|
|
560
|
+
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:
|
|
561
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
562
|
+
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.
|
|
563
|
+
|
|
564
|
+
------
|
|
565
|
+
|
|
566
|
+
** jssha; version 3.2.0 -- https://github.com/Caligatio/jsSHA
|
|
567
|
+
BSD-3-Clause
|
|
568
|
+
Copyright (c) 2008-2017, Brian Turek
|
|
569
|
+
All rights reserved.
|
|
570
|
+
Redistribution and use in source and binary forms, with or without
|
|
571
|
+
modification, are permitted provided that the following conditions are met:
|
|
572
|
+
* Redistributions of source code must retain the above copyright notice, this
|
|
573
|
+
list of conditions and the following disclaimer.
|
|
574
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
|
575
|
+
this list of conditions and the following disclaimer in the documentation
|
|
576
|
+
and/or other materials provided with the distribution.
|
|
577
|
+
* Neither the name of the the copyright holder nor the names of its
|
|
578
|
+
contributors may be used to endorse or promote products derived from this
|
|
579
|
+
software without specific prior written permission.
|
|
580
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
581
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
582
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
583
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
|
584
|
+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
585
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
586
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
587
|
+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
588
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
589
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
590
|
+
--------------------------------------------------------------------------------
|
|
591
|
+
Portions of this software are derived from code under the same license and with
|
|
592
|
+
the following copyright notice:
|
|
593
|
+
Copyright (c) 1998 - 2009, Paul Johnston & Contributors
|
|
594
|
+
All rights reserved.
|
|
595
|
+
Original code is available on http://pajhome.org.uk/crypt/md5
|
|
596
|
+
|
|
597
|
+
------
|
|
598
|
+
|
|
599
|
+
** loglevel; version 1.9.2 -- https://github.com/pimterry/loglevel
|
|
600
|
+
MIT
|
|
601
|
+
Copyright (c) 2013 Tim Perry
|
|
602
|
+
Permission is hereby granted, free of charge, to any person
|
|
603
|
+
obtaining a copy of this software and associated documentation
|
|
604
|
+
files (the "Software"), to deal in the Software without
|
|
605
|
+
restriction, including without limitation the rights to use,
|
|
606
|
+
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
607
|
+
copies of the Software, and to permit persons to whom the
|
|
608
|
+
Software is furnished to do so, subject to the following
|
|
609
|
+
conditions:
|
|
610
|
+
The above copyright notice and this permission notice shall be
|
|
611
|
+
included in all copies or substantial portions of the Software.
|
|
612
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
613
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
614
|
+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
615
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
616
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
617
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
618
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
619
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
|
620
|
+
|
|
621
|
+
------
|
|
622
|
+
|
|
623
|
+
** long; version 5.3.2 -- https://github.com/dcodeIO/long.js
|
|
624
|
+
Apache-2.0
|
|
625
|
+
Apache License
|
|
626
|
+
Version 2.0, January 2004
|
|
627
|
+
http://www.apache.org/licenses/
|
|
628
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
629
|
+
1. Definitions.
|
|
630
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
631
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
632
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
633
|
+
the copyright owner that is granting the License.
|
|
634
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
635
|
+
other entities that control, are controlled by, or are under common
|
|
636
|
+
control with that entity. For the purposes of this definition,
|
|
637
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
638
|
+
direction or management of such entity, whether by contract or
|
|
639
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
640
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
641
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
642
|
+
exercising permissions granted by this License.
|
|
643
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
644
|
+
including but not limited to software source code, documentation
|
|
645
|
+
source, and configuration files.
|
|
646
|
+
"Object" form shall mean any form resulting from mechanical
|
|
647
|
+
transformation or translation of a Source form, including but
|
|
648
|
+
not limited to compiled object code, generated documentation,
|
|
649
|
+
and conversions to other media types.
|
|
650
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
651
|
+
Object form, made available under the License, as indicated by a
|
|
652
|
+
copyright notice that is included in or attached to the work
|
|
653
|
+
(an example is provided in the Appendix below).
|
|
654
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
655
|
+
form, that is based on (or derived from) the Work and for which the
|
|
656
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
657
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
658
|
+
of this License, Derivative Works shall not include works that remain
|
|
659
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
660
|
+
the Work and Derivative Works thereof.
|
|
661
|
+
"Contribution" shall mean any work of authorship, including
|
|
662
|
+
the original version of the Work and any modifications or additions
|
|
663
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
664
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
665
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
666
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
667
|
+
means any form of electronic, verbal, or written communication sent
|
|
668
|
+
to the Licensor or its representatives, including but not limited to
|
|
669
|
+
communication on electronic mailing lists, source code control systems,
|
|
670
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
671
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
672
|
+
excluding communication that is conspicuously marked or otherwise
|
|
673
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
674
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
675
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
676
|
+
subsequently incorporated within the Work.
|
|
677
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
678
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
679
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
680
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
681
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
682
|
+
Work and such Derivative Works in Source or Object form.
|
|
683
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
684
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
685
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
686
|
+
(except as stated in this section) patent license to make, have made,
|
|
687
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
688
|
+
where such license applies only to those patent claims licensable
|
|
689
|
+
by such Contributor that are necessarily infringed by their
|
|
690
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
691
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
692
|
+
institute patent litigation against any entity (including a
|
|
693
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
694
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
695
|
+
or contributory patent infringement, then any patent licenses
|
|
696
|
+
granted to You under this License for that Work shall terminate
|
|
697
|
+
as of the date such litigation is filed.
|
|
698
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
699
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
700
|
+
modifications, and in Source or Object form, provided that You
|
|
701
|
+
meet the following conditions:
|
|
702
|
+
(a) You must give any other recipients of the Work or
|
|
703
|
+
Derivative Works a copy of this License; and
|
|
704
|
+
(b) You must cause any modified files to carry prominent notices
|
|
705
|
+
stating that You changed the files; and
|
|
706
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
707
|
+
that You distribute, all copyright, patent, trademark, and
|
|
708
|
+
attribution notices from the Source form of the Work,
|
|
709
|
+
excluding those notices that do not pertain to any part of
|
|
710
|
+
the Derivative Works; and
|
|
711
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
712
|
+
distribution, then any Derivative Works that You distribute must
|
|
713
|
+
include a readable copy of the attribution notices contained
|
|
714
|
+
within such NOTICE file, excluding those notices that do not
|
|
715
|
+
pertain to any part of the Derivative Works, in at least one
|
|
716
|
+
of the following places: within a NOTICE text file distributed
|
|
717
|
+
as part of the Derivative Works; within the Source form or
|
|
718
|
+
documentation, if provided along with the Derivative Works; or,
|
|
719
|
+
within a display generated by the Derivative Works, if and
|
|
720
|
+
wherever such third-party notices normally appear. The contents
|
|
721
|
+
of the NOTICE file are for informational purposes only and
|
|
722
|
+
do not modify the License. You may add Your own attribution
|
|
723
|
+
notices within Derivative Works that You distribute, alongside
|
|
724
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
725
|
+
that such additional attribution notices cannot be construed
|
|
726
|
+
as modifying the License.
|
|
727
|
+
You may add Your own copyright statement to Your modifications and
|
|
728
|
+
may provide additional or different license terms and conditions
|
|
729
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
730
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
731
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
732
|
+
the conditions stated in this License.
|
|
733
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
734
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
735
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
736
|
+
this License, without any additional terms or conditions.
|
|
737
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
738
|
+
the terms of any separate license agreement you may have executed
|
|
739
|
+
with Licensor regarding such Contributions.
|
|
740
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
741
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
742
|
+
except as required for reasonable and customary use in describing the
|
|
743
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
744
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
745
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
746
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
747
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
748
|
+
implied, including, without limitation, any warranties or conditions
|
|
749
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
750
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
751
|
+
appropriateness of using or redistributing the Work and assume any
|
|
752
|
+
risks associated with Your exercise of permissions under this License.
|
|
753
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
754
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
755
|
+
unless required by applicable law (such as deliberate and grossly
|
|
756
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
757
|
+
liable to You for damages, including any direct, indirect, special,
|
|
758
|
+
incidental, or consequential damages of any character arising as a
|
|
759
|
+
result of this License or out of the use or inability to use the
|
|
760
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
761
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
762
|
+
other commercial damages or losses), even if such Contributor
|
|
763
|
+
has been advised of the possibility of such damages.
|
|
764
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
765
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
766
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
767
|
+
or other liability obligations and/or rights consistent with this
|
|
768
|
+
License. However, in accepting such obligations, You may act only
|
|
769
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
770
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
771
|
+
defend, and hold each Contributor harmless for any liability
|
|
772
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
773
|
+
of your accepting any such warranty or additional liability.
|
|
774
|
+
END OF TERMS AND CONDITIONS
|
|
775
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
776
|
+
To apply the Apache License to your work, attach the following
|
|
777
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
778
|
+
replaced with your own identifying information. (Don't include
|
|
779
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
780
|
+
comment syntax for the file format. We also recommend that a
|
|
781
|
+
file or class name and description of purpose be included on the
|
|
782
|
+
same "printed page" as the copyright notice for easier
|
|
783
|
+
identification within third-party archives.
|
|
784
|
+
Copyright [yyyy] [name of copyright owner]
|
|
785
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
786
|
+
you may not use this file except in compliance with the License.
|
|
787
|
+
You may obtain a copy of the License at
|
|
788
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
789
|
+
Unless required by applicable law or agreed to in writing, software
|
|
790
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
791
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
792
|
+
See the License for the specific language governing permissions and
|
|
793
|
+
limitations under the License.
|
|
794
|
+
|
|
795
|
+
------
|
|
796
|
+
|
|
797
|
+
** lz4; version 1.9.4 -- https://github.com/lz4/lz4
|
|
798
|
+
BSD-2-Clause
|
|
799
|
+
LZ4 Library
|
|
800
|
+
Copyright (c) 2011-2016, Yann Collet
|
|
801
|
+
All rights reserved.
|
|
802
|
+
Redistribution and use in source and binary forms, with or without modification,
|
|
803
|
+
are permitted provided that the following conditions are met:
|
|
804
|
+
* Redistributions of source code must retain the above copyright notice, this
|
|
805
|
+
list of conditions and the following disclaimer.
|
|
806
|
+
* Redistributions in binary form must reproduce the above copyright notice, this
|
|
807
|
+
list of conditions and the following disclaimer in the documentation and/or
|
|
808
|
+
other materials provided with the distribution.
|
|
809
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
810
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
811
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
812
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
|
813
|
+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
814
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
815
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
816
|
+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
817
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
818
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
819
|
+
|
|
820
|
+
------
|
|
821
|
+
|
|
822
|
+
** musl libc; version N/A -- https://musl.libc.org/
|
|
823
|
+
MIT
|
|
824
|
+
Copyright © 2005-2020 Rich Felker, et al.
|
|
825
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
826
|
+
a copy of this software and associated documentation files (the
|
|
827
|
+
"Software"), to deal in the Software without restriction, including
|
|
828
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
829
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
830
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
831
|
+
the following conditions:
|
|
832
|
+
The above copyright notice and this permission notice shall be
|
|
833
|
+
included in all copies or substantial portions of the Software.
|
|
834
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
835
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
836
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
837
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
838
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
839
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
840
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
841
|
+
----------------------------------------------------------------------
|
|
842
|
+
Authors/contributors include:
|
|
843
|
+
A. Wilcox
|
|
844
|
+
Ada Worcester
|
|
845
|
+
Alex Dowad
|
|
846
|
+
Alex Suykov
|
|
847
|
+
Alexander Monakov
|
|
848
|
+
Andre McCurdy
|
|
849
|
+
Andrew Kelley
|
|
850
|
+
Anthony G. Basile
|
|
851
|
+
Aric Belsito
|
|
852
|
+
Arvid Picciani
|
|
853
|
+
Bartosz Brachaczek
|
|
854
|
+
Benjamin Peterson
|
|
855
|
+
Bobby Bingham
|
|
856
|
+
Boris Brezillon
|
|
857
|
+
Brent Cook
|
|
858
|
+
Chris Spiegel
|
|
859
|
+
Clément Vasseur
|
|
860
|
+
Daniel Micay
|
|
861
|
+
Daniel Sabogal
|
|
862
|
+
Daurnimator
|
|
863
|
+
David Carlier
|
|
864
|
+
David Edelsohn
|
|
865
|
+
Denys Vlasenko
|
|
866
|
+
Dmitry Ivanov
|
|
867
|
+
Dmitry V. Levin
|
|
868
|
+
Drew DeVault
|
|
869
|
+
Emil Renner Berthing
|
|
870
|
+
Fangrui Song
|
|
871
|
+
Felix Fietkau
|
|
872
|
+
Felix Janda
|
|
873
|
+
Gianluca Anzolin
|
|
874
|
+
Hauke Mehrtens
|
|
875
|
+
He X
|
|
876
|
+
Hiltjo Posthuma
|
|
877
|
+
Isaac Dunham
|
|
878
|
+
Jaydeep Patil
|
|
879
|
+
Jens Gustedt
|
|
880
|
+
Jeremy Huntwork
|
|
881
|
+
Jo-Philipp Wich
|
|
882
|
+
Joakim Sindholt
|
|
883
|
+
John Spencer
|
|
884
|
+
Julien Ramseier
|
|
885
|
+
Justin Cormack
|
|
886
|
+
Kaarle Ritvanen
|
|
887
|
+
Khem Raj
|
|
888
|
+
Kylie McClain
|
|
889
|
+
Leah Neukirchen
|
|
890
|
+
Luca Barbato
|
|
891
|
+
Luka Perkov
|
|
892
|
+
M Farkas-Dyck (Strake)
|
|
893
|
+
Mahesh Bodapati
|
|
894
|
+
Markus Wichmann
|
|
895
|
+
Masanori Ogino
|
|
896
|
+
Michael Clark
|
|
897
|
+
Michael Forney
|
|
898
|
+
Mikhail Kremnyov
|
|
899
|
+
Natanael Copa
|
|
900
|
+
Nicholas J. Kain
|
|
901
|
+
orc
|
|
902
|
+
Pascal Cuoq
|
|
903
|
+
Patrick Oppenlander
|
|
904
|
+
Petr Hosek
|
|
905
|
+
Petr Skocik
|
|
906
|
+
Pierre Carrier
|
|
907
|
+
Reini Urban
|
|
908
|
+
Rich Felker
|
|
909
|
+
Richard Pennington
|
|
910
|
+
Ryan Fairfax
|
|
911
|
+
Samuel Holland
|
|
912
|
+
Segev Finer
|
|
913
|
+
Shiz
|
|
914
|
+
sin
|
|
915
|
+
Solar Designer
|
|
916
|
+
Stefan Kristiansson
|
|
917
|
+
Stefan O'Rear
|
|
918
|
+
Szabolcs Nagy
|
|
919
|
+
Timo Teräs
|
|
920
|
+
Trutz Behn
|
|
921
|
+
Valentin Ochs
|
|
922
|
+
Will Dietz
|
|
923
|
+
William Haddon
|
|
924
|
+
William Pitcock
|
|
925
|
+
Portions of this software are derived from third-party works licensed
|
|
926
|
+
under terms compatible with the above MIT license:
|
|
927
|
+
The TRE regular expression implementation (src/regex/reg* and
|
|
928
|
+
src/regex/tre*) is Copyright © 2001-2008 Ville Laurikari and licensed
|
|
929
|
+
under a 2-clause BSD license (license text in the source files). The
|
|
930
|
+
included version has been heavily modified by Rich Felker in 2012, in
|
|
931
|
+
the interests of size, simplicity, and namespace cleanliness.
|
|
932
|
+
Much of the math library code (src/math/* and src/complex/*) is
|
|
933
|
+
Copyright © 1993,2004 Sun Microsystems or
|
|
934
|
+
Copyright © 2003-2011 David Schultz or
|
|
935
|
+
Copyright © 2003-2009 Steven G. Kargl or
|
|
936
|
+
Copyright © 2003-2009 Bruce D. Evans or
|
|
937
|
+
Copyright © 2008 Stephen L. Moshier or
|
|
938
|
+
Copyright © 2017-2018 Arm Limited
|
|
939
|
+
and labelled as such in comments in the individual source files. All
|
|
940
|
+
have been licensed under extremely permissive terms.
|
|
941
|
+
The ARM memcpy code (src/string/arm/memcpy.S) is Copyright © 2008
|
|
942
|
+
The Android Open Source Project and is licensed under a two-clause BSD
|
|
943
|
+
license. It was taken from Bionic libc, used on Android.
|
|
944
|
+
The AArch64 memcpy and memset code (src/string/aarch64/*) are
|
|
945
|
+
Copyright © 1999-2019, Arm Limited.
|
|
946
|
+
The implementation of DES for crypt (src/crypt/crypt_des.c) is
|
|
947
|
+
Copyright © 1994 David Burren. It is licensed under a BSD license.
|
|
948
|
+
The implementation of blowfish crypt (src/crypt/crypt_blowfish.c) was
|
|
949
|
+
originally written by Solar Designer and placed into the public
|
|
950
|
+
domain. The code also comes with a fallback permissive license for use
|
|
951
|
+
in jurisdictions that may not recognize the public domain.
|
|
952
|
+
The smoothsort implementation (src/stdlib/qsort.c) is Copyright © 2011
|
|
953
|
+
Valentin Ochs and is licensed under an MIT-style license.
|
|
954
|
+
The x86_64 port was written by Nicholas J. Kain and is licensed under
|
|
955
|
+
the standard MIT terms.
|
|
956
|
+
The mips and microblaze ports were originally written by Richard
|
|
957
|
+
Pennington for use in the ellcc project. The original code was adapted
|
|
958
|
+
by Rich Felker for build system and code conventions during upstream
|
|
959
|
+
integration. It is licensed under the standard MIT terms.
|
|
960
|
+
The mips64 port was contributed by Imagination Technologies and is
|
|
961
|
+
licensed under the standard MIT terms.
|
|
962
|
+
The powerpc port was also originally written by Richard Pennington,
|
|
963
|
+
and later supplemented and integrated by John Spencer. It is licensed
|
|
964
|
+
under the standard MIT terms.
|
|
965
|
+
All other files which have no copyright comments are original works
|
|
966
|
+
produced specifically for use as part of this library, written either
|
|
967
|
+
by Rich Felker, the main author of the library, or by one or more
|
|
968
|
+
contibutors listed above. Details on authorship of individual files
|
|
969
|
+
can be found in the git version control history of the project. The
|
|
970
|
+
omission of copyright and license comments in each file is in the
|
|
971
|
+
interest of source tree size.
|
|
972
|
+
In addition, permission is hereby granted for all public header files
|
|
973
|
+
(include/* and arch/*/bits/*) and crt files intended to be linked into
|
|
974
|
+
applications (crt/*, ldso/dlstart.c, and arch/*/crt_arch.h) to omit
|
|
975
|
+
the copyright notice and permission notice otherwise required by the
|
|
976
|
+
license, and to use these files without any requirement of
|
|
977
|
+
attribution. These files include substantial contributions from:
|
|
978
|
+
Bobby Bingham
|
|
979
|
+
John Spencer
|
|
980
|
+
Nicholas J. Kain
|
|
981
|
+
Rich Felker
|
|
982
|
+
Richard Pennington
|
|
983
|
+
Stefan Kristiansson
|
|
984
|
+
Szabolcs Nagy
|
|
985
|
+
all of whom have explicitly granted such permission.
|
|
986
|
+
This file previously contained text expressing a belief that most of
|
|
987
|
+
the files covered by the above exception were sufficiently trivial not
|
|
988
|
+
to be subject to copyright, resulting in confusion over whether it
|
|
989
|
+
negated the permissions granted in the license. In the spirit of
|
|
990
|
+
permissive licensing, and of not having licensing issues being an
|
|
991
|
+
obstacle to adoption, that text has been removed.
|
|
992
|
+
|
|
993
|
+
------
|
|
994
|
+
|
|
995
|
+
** opus; version 1.3.1 -- https://github.com/xiph/opus
|
|
996
|
+
BSD-3-Clause
|
|
997
|
+
Copyright 2001-2011 Xiph.Org, Skype Limited, Octasic,
|
|
998
|
+
Jean-Marc Valin, Timothy B. Terriberry,
|
|
999
|
+
CSIRO, Gregory Maxwell, Mark Borgerding,
|
|
1000
|
+
Erik de Castro Lopo
|
|
1001
|
+
Redistribution and use in source and binary forms, with or without
|
|
1002
|
+
modification, are permitted provided that the following conditions
|
|
1003
|
+
are met:
|
|
1004
|
+
- Redistributions of source code must retain the above copyright
|
|
1005
|
+
notice, this list of conditions and the following disclaimer.
|
|
1006
|
+
- Redistributions in binary form must reproduce the above copyright
|
|
1007
|
+
notice, this list of conditions and the following disclaimer in the
|
|
1008
|
+
documentation and/or other materials provided with the distribution.
|
|
1009
|
+
- Neither the name of Internet Society, IETF or IETF Trust, nor the
|
|
1010
|
+
names of specific contributors, may be used to endorse or promote
|
|
1011
|
+
products derived from this software without specific prior written
|
|
1012
|
+
permission.
|
|
1013
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
1014
|
+
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
1015
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
1016
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
|
|
1017
|
+
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
1018
|
+
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
1019
|
+
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
1020
|
+
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
1021
|
+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
1022
|
+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
1023
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1024
|
+
Opus is subject to the royalty-free patent licenses which are
|
|
1025
|
+
specified at:
|
|
1026
|
+
Xiph.Org Foundation:
|
|
1027
|
+
https://datatracker.ietf.org/ipr/1524/
|
|
1028
|
+
Microsoft Corporation:
|
|
1029
|
+
https://datatracker.ietf.org/ipr/1914/
|
|
1030
|
+
Broadcom Corporation:
|
|
1031
|
+
https://datatracker.ietf.org/ipr/1526/
|
|
1032
|
+
|
|
1033
|
+
------
|
|
1034
|
+
|
|
1035
|
+
** protobufjs; version 7.3.0 -- https://protobufjs.github.io/protobuf.js/
|
|
1036
|
+
BSD-3-Clause
|
|
1037
|
+
This license applies to all parts of protobuf.js except those files
|
|
1038
|
+
either explicitly including or referencing a different license or
|
|
1039
|
+
located in a directory containing a different LICENSE file.
|
|
1040
|
+
---
|
|
1041
|
+
Copyright (c) 2016, Daniel Wirtz All rights reserved.
|
|
1042
|
+
Redistribution and use in source and binary forms, with or without
|
|
1043
|
+
modification, are permitted provided that the following conditions are
|
|
1044
|
+
met:
|
|
1045
|
+
* Redistributions of source code must retain the above copyright
|
|
1046
|
+
notice, this list of conditions and the following disclaimer.
|
|
1047
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
1048
|
+
notice, this list of conditions and the following disclaimer in the
|
|
1049
|
+
documentation and/or other materials provided with the distribution.
|
|
1050
|
+
* Neither the name of its author, nor the names of its contributors
|
|
1051
|
+
may be used to endorse or promote products derived from this software
|
|
1052
|
+
without specific prior written permission.
|
|
1053
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
1054
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
1055
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
1056
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
1057
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
1058
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
1059
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
1060
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
1061
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
1062
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
1063
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1064
|
+
---
|
|
1065
|
+
Code generated by the command line utilities is owned by the owner
|
|
1066
|
+
of the input file used when generating it. This code is not
|
|
1067
|
+
standalone and requires a support library to be linked with it. This
|
|
1068
|
+
support library is itself covered by the above license.
|