sass-embedded 1.74.1-riscv64-linux-android

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +20 -0
  3. data/README.md +48 -0
  4. data/exe/sass +21 -0
  5. data/ext/sass/cli.rb +12 -0
  6. data/ext/sass/dart-sass/sass +20 -0
  7. data/ext/sass/dart-sass/src/LICENSE +1687 -0
  8. data/ext/sass/dart-sass/src/dart +0 -0
  9. data/ext/sass/dart-sass/src/sass.snapshot +0 -0
  10. data/ext/sass/embedded_sass_pb.rb +63 -0
  11. data/lib/sass/calculation_value/calculation_operation.rb +49 -0
  12. data/lib/sass/calculation_value.rb +22 -0
  13. data/lib/sass/canonicalize_context.rb +21 -0
  14. data/lib/sass/compile_result.rb +24 -0
  15. data/lib/sass/compiler/channel.rb +68 -0
  16. data/lib/sass/compiler/connection.rb +92 -0
  17. data/lib/sass/compiler/dispatcher.rb +115 -0
  18. data/lib/sass/compiler/host/function_registry.rb +87 -0
  19. data/lib/sass/compiler/host/importer_registry.rb +137 -0
  20. data/lib/sass/compiler/host/logger_registry.rb +55 -0
  21. data/lib/sass/compiler/host/protofier.rb +390 -0
  22. data/lib/sass/compiler/host/structifier.rb +37 -0
  23. data/lib/sass/compiler/host.rb +226 -0
  24. data/lib/sass/compiler/varint.rb +39 -0
  25. data/lib/sass/compiler.rb +212 -0
  26. data/lib/sass/elf.rb +276 -0
  27. data/lib/sass/embedded/version.rb +7 -0
  28. data/lib/sass/embedded.rb +107 -0
  29. data/lib/sass/embedded_protocol.rb +10 -0
  30. data/lib/sass/exception.rb +69 -0
  31. data/lib/sass/fork_tracker.rb +51 -0
  32. data/lib/sass/logger/silent.rb +28 -0
  33. data/lib/sass/logger/source_location.rb +22 -0
  34. data/lib/sass/logger/source_span.rb +28 -0
  35. data/lib/sass/node_package_importer.rb +17 -0
  36. data/lib/sass/serializer.rb +36 -0
  37. data/lib/sass/value/argument_list.rb +37 -0
  38. data/lib/sass/value/boolean.rb +52 -0
  39. data/lib/sass/value/calculation.rb +90 -0
  40. data/lib/sass/value/color.rb +253 -0
  41. data/lib/sass/value/function.rb +51 -0
  42. data/lib/sass/value/fuzzy_math.rb +80 -0
  43. data/lib/sass/value/list.rb +79 -0
  44. data/lib/sass/value/map.rb +71 -0
  45. data/lib/sass/value/mixin.rb +36 -0
  46. data/lib/sass/value/null.rb +48 -0
  47. data/lib/sass/value/number/unit.rb +186 -0
  48. data/lib/sass/value/number.rb +366 -0
  49. data/lib/sass/value/string.rb +61 -0
  50. data/lib/sass/value.rb +136 -0
  51. data/lib/sass-embedded.rb +4 -0
  52. metadata +120 -0
@@ -0,0 +1,1687 @@
1
+ Dart Sass license:
2
+
3
+ Copyright (c) 2016, Google Inc.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23
+
24
+
25
+ --------------------------------------------------------------------------------
26
+
27
+ Dart SDK license:
28
+
29
+ Copyright 2012, the Dart project authors.
30
+
31
+ Redistribution and use in source and binary forms, with or without
32
+ modification, are permitted provided that the following conditions are
33
+ met:
34
+ * Redistributions of source code must retain the above copyright
35
+ notice, this list of conditions and the following disclaimer.
36
+ * Redistributions in binary form must reproduce the above
37
+ copyright notice, this list of conditions and the following
38
+ disclaimer in the documentation and/or other materials provided
39
+ with the distribution.
40
+ * Neither the name of Google LLC nor the names of its
41
+ contributors may be used to endorse or promote products derived
42
+ from this software without specific prior written permission.
43
+
44
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
45
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
46
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
47
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
48
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
49
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
50
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
51
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
52
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
53
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
54
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
55
+
56
+
57
+ --------------------------------------------------------------------------------
58
+
59
+ _fe_analyzer_shared license:
60
+
61
+ Copyright 2019, the Dart project authors.
62
+
63
+ Redistribution and use in source and binary forms, with or without
64
+ modification, are permitted provided that the following conditions are
65
+ met:
66
+
67
+ * Redistributions of source code must retain the above copyright
68
+ notice, this list of conditions and the following disclaimer.
69
+ * Redistributions in binary form must reproduce the above
70
+ copyright notice, this list of conditions and the following
71
+ disclaimer in the documentation and/or other materials provided
72
+ with the distribution.
73
+ * Neither the name of Google LLC nor the names of its
74
+ contributors may be used to endorse or promote products derived
75
+ from this software without specific prior written permission.
76
+
77
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
78
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
79
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
80
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
81
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
82
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
83
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
84
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
85
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
86
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
87
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
88
+
89
+
90
+ --------------------------------------------------------------------------------
91
+
92
+ analyzer, protobuf and protoc_plugin license:
93
+
94
+ Copyright 2013, the Dart project authors.
95
+
96
+ Redistribution and use in source and binary forms, with or without
97
+ modification, are permitted provided that the following conditions are
98
+ met:
99
+
100
+ * Redistributions of source code must retain the above copyright
101
+ notice, this list of conditions and the following disclaimer.
102
+ * Redistributions in binary form must reproduce the above
103
+ copyright notice, this list of conditions and the following
104
+ disclaimer in the documentation and/or other materials provided
105
+ with the distribution.
106
+ * Neither the name of Google LLC nor the names of its
107
+ contributors may be used to endorse or promote products derived
108
+ from this software without specific prior written permission.
109
+
110
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
111
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
112
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
113
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
114
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
115
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
116
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
117
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
118
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
119
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
120
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
121
+
122
+
123
+ --------------------------------------------------------------------------------
124
+
125
+ archive license:
126
+
127
+ The MIT License
128
+
129
+ Copyright (c) 2013-2021 Brendan Duncan.
130
+ All rights reserved.
131
+
132
+ Permission is hereby granted, free of charge, to any person obtaining a copy
133
+ of this software and associated documentation files (the "Software"), to deal
134
+ in the Software without restriction, including without limitation the rights
135
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
136
+ copies of the Software, and to permit persons to whom the Software is
137
+ furnished to do so, subject to the following conditions:
138
+
139
+ The above copyright notice and this permission notice shall be included in
140
+ all copies or substantial portions of the Software.
141
+
142
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
143
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
144
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
145
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
146
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
147
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
148
+ THE SOFTWARE.
149
+
150
+ --------------------------------------------------------------------------------
151
+
152
+ args, csslib and logging license:
153
+
154
+ Copyright 2013, the Dart project authors.
155
+
156
+ Redistribution and use in source and binary forms, with or without
157
+ modification, are permitted provided that the following conditions are
158
+ met:
159
+
160
+ * Redistributions of source code must retain the above copyright
161
+ notice, this list of conditions and the following disclaimer.
162
+ * Redistributions in binary form must reproduce the above
163
+ copyright notice, this list of conditions and the following
164
+ disclaimer in the documentation and/or other materials provided
165
+ with the distribution.
166
+ * Neither the name of Google LLC nor the names of its
167
+ contributors may be used to endorse or promote products derived
168
+ from this software without specific prior written permission.
169
+
170
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
171
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
172
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
173
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
174
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
175
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
176
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
177
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
178
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
179
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
180
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
181
+
182
+
183
+ --------------------------------------------------------------------------------
184
+
185
+ async, cli_util, collection, mime, source_map_stack_trace, stream_channel and
186
+ typed_data license:
187
+
188
+ Copyright 2015, the Dart project authors.
189
+
190
+ Redistribution and use in source and binary forms, with or without
191
+ modification, are permitted provided that the following conditions are
192
+ met:
193
+
194
+ * Redistributions of source code must retain the above copyright
195
+ notice, this list of conditions and the following disclaimer.
196
+ * Redistributions in binary form must reproduce the above
197
+ copyright notice, this list of conditions and the following
198
+ disclaimer in the documentation and/or other materials provided
199
+ with the distribution.
200
+ * Neither the name of Google LLC nor the names of its
201
+ contributors may be used to endorse or promote products derived
202
+ from this software without specific prior written permission.
203
+
204
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
205
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
206
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
207
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
208
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
209
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
210
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
211
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
212
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
213
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
214
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
215
+
216
+
217
+ --------------------------------------------------------------------------------
218
+
219
+ boolean_selector, meta and shelf_packages_handler license:
220
+
221
+ Copyright 2016, the Dart project authors.
222
+
223
+ Redistribution and use in source and binary forms, with or without
224
+ modification, are permitted provided that the following conditions are
225
+ met:
226
+
227
+ * Redistributions of source code must retain the above copyright
228
+ notice, this list of conditions and the following disclaimer.
229
+ * Redistributions in binary form must reproduce the above
230
+ copyright notice, this list of conditions and the following
231
+ disclaimer in the documentation and/or other materials provided
232
+ with the distribution.
233
+ * Neither the name of Google LLC nor the names of its
234
+ contributors may be used to endorse or promote products derived
235
+ from this software without specific prior written permission.
236
+
237
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
238
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
239
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
240
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
241
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
242
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
243
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
244
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
245
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
246
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
247
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
248
+
249
+
250
+ --------------------------------------------------------------------------------
251
+
252
+ charcode license:
253
+
254
+ Copyright 2014, the Dart project authors. All rights reserved.
255
+ Redistribution and use in source and binary forms, with or without
256
+ modification, are permitted provided that the following conditions are
257
+ met:
258
+
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
262
+ copyright notice, this list of conditions and the following
263
+ disclaimer in the documentation and/or other materials provided
264
+ with the distribution.
265
+ * Neither the name of Google Inc. nor the names of its
266
+ contributors may be used to endorse or promote products derived
267
+ from this software without specific prior written permission.
268
+
269
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
270
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
271
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
272
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
273
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
274
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
275
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
276
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
277
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
278
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
279
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
280
+
281
+
282
+ --------------------------------------------------------------------------------
283
+
284
+ checked_yaml license:
285
+
286
+ Copyright 2019, the Dart project authors. All rights reserved.
287
+ Redistribution and use in source and binary forms, with or without
288
+ modification, are permitted provided that the following conditions are
289
+ met:
290
+
291
+ * Redistributions of source code must retain the above copyright
292
+ notice, this list of conditions and the following disclaimer.
293
+ * Redistributions in binary form must reproduce the above
294
+ copyright notice, this list of conditions and the following
295
+ disclaimer in the documentation and/or other materials provided
296
+ with the distribution.
297
+ * Neither the name of Google Inc. nor the names of its
298
+ contributors may be used to endorse or promote products derived
299
+ from this software without specific prior written permission.
300
+
301
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
302
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
303
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
304
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
305
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
306
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
307
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
308
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
309
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
310
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
311
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
312
+
313
+
314
+ --------------------------------------------------------------------------------
315
+
316
+ cli_pkg license:
317
+
318
+ Apache License
319
+ Version 2.0, January 2004
320
+ http://www.apache.org/licenses/
321
+
322
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
323
+
324
+ 1. Definitions.
325
+
326
+ "License" shall mean the terms and conditions for use, reproduction,
327
+ and distribution as defined by Sections 1 through 9 of this document.
328
+
329
+ "Licensor" shall mean the copyright owner or entity authorized by
330
+ the copyright owner that is granting the License.
331
+
332
+ "Legal Entity" shall mean the union of the acting entity and all
333
+ other entities that control, are controlled by, or are under common
334
+ control with that entity. For the purposes of this definition,
335
+ "control" means (i) the power, direct or indirect, to cause the
336
+ direction or management of such entity, whether by contract or
337
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
338
+ outstanding shares, or (iii) beneficial ownership of such entity.
339
+
340
+ "You" (or "Your") shall mean an individual or Legal Entity
341
+ exercising permissions granted by this License.
342
+
343
+ "Source" form shall mean the preferred form for making modifications,
344
+ including but not limited to software source code, documentation
345
+ source, and configuration files.
346
+
347
+ "Object" form shall mean any form resulting from mechanical
348
+ transformation or translation of a Source form, including but
349
+ not limited to compiled object code, generated documentation,
350
+ and conversions to other media types.
351
+
352
+ "Work" shall mean the work of authorship, whether in Source or
353
+ Object form, made available under the License, as indicated by a
354
+ copyright notice that is included in or attached to the work
355
+ (an example is provided in the Appendix below).
356
+
357
+ "Derivative Works" shall mean any work, whether in Source or Object
358
+ form, that is based on (or derived from) the Work and for which the
359
+ editorial revisions, annotations, elaborations, or other modifications
360
+ represent, as a whole, an original work of authorship. For the purposes
361
+ of this License, Derivative Works shall not include works that remain
362
+ separable from, or merely link (or bind by name) to the interfaces of,
363
+ the Work and Derivative Works thereof.
364
+
365
+ "Contribution" shall mean any work of authorship, including
366
+ the original version of the Work and any modifications or additions
367
+ to that Work or Derivative Works thereof, that is intentionally
368
+ submitted to Licensor for inclusion in the Work by the copyright owner
369
+ or by an individual or Legal Entity authorized to submit on behalf of
370
+ the copyright owner. For the purposes of this definition, "submitted"
371
+ means any form of electronic, verbal, or written communication sent
372
+ to the Licensor or its representatives, including but not limited to
373
+ communication on electronic mailing lists, source code control systems,
374
+ and issue tracking systems that are managed by, or on behalf of, the
375
+ Licensor for the purpose of discussing and improving the Work, but
376
+ excluding communication that is conspicuously marked or otherwise
377
+ designated in writing by the copyright owner as "Not a Contribution."
378
+
379
+ "Contributor" shall mean Licensor and any individual or Legal Entity
380
+ on behalf of whom a Contribution has been received by Licensor and
381
+ subsequently incorporated within the Work.
382
+
383
+ 2. Grant of Copyright License. Subject to the terms and conditions of
384
+ this License, each Contributor hereby grants to You a perpetual,
385
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
386
+ copyright license to reproduce, prepare Derivative Works of,
387
+ publicly display, publicly perform, sublicense, and distribute the
388
+ Work and such Derivative Works in Source or Object form.
389
+
390
+ 3. Grant of Patent License. Subject to the terms and conditions of
391
+ this License, each Contributor hereby grants to You a perpetual,
392
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
393
+ (except as stated in this section) patent license to make, have made,
394
+ use, offer to sell, sell, import, and otherwise transfer the Work,
395
+ where such license applies only to those patent claims licensable
396
+ by such Contributor that are necessarily infringed by their
397
+ Contribution(s) alone or by combination of their Contribution(s)
398
+ with the Work to which such Contribution(s) was submitted. If You
399
+ institute patent litigation against any entity (including a
400
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
401
+ or a Contribution incorporated within the Work constitutes direct
402
+ or contributory patent infringement, then any patent licenses
403
+ granted to You under this License for that Work shall terminate
404
+ as of the date such litigation is filed.
405
+
406
+ 4. Redistribution. You may reproduce and distribute copies of the
407
+ Work or Derivative Works thereof in any medium, with or without
408
+ modifications, and in Source or Object form, provided that You
409
+ meet the following conditions:
410
+
411
+ (a) You must give any other recipients of the Work or
412
+ Derivative Works a copy of this License; and
413
+
414
+ (b) You must cause any modified files to carry prominent notices
415
+ stating that You changed the files; and
416
+
417
+ (c) You must retain, in the Source form of any Derivative Works
418
+ that You distribute, all copyright, patent, trademark, and
419
+ attribution notices from the Source form of the Work,
420
+ excluding those notices that do not pertain to any part of
421
+ the Derivative Works; and
422
+
423
+ (d) If the Work includes a "NOTICE" text file as part of its
424
+ distribution, then any Derivative Works that You distribute must
425
+ include a readable copy of the attribution notices contained
426
+ within such NOTICE file, excluding those notices that do not
427
+ pertain to any part of the Derivative Works, in at least one
428
+ of the following places: within a NOTICE text file distributed
429
+ as part of the Derivative Works; within the Source form or
430
+ documentation, if provided along with the Derivative Works; or,
431
+ within a display generated by the Derivative Works, if and
432
+ wherever such third-party notices normally appear. The contents
433
+ of the NOTICE file are for informational purposes only and
434
+ do not modify the License. You may add Your own attribution
435
+ notices within Derivative Works that You distribute, alongside
436
+ or as an addendum to the NOTICE text from the Work, provided
437
+ that such additional attribution notices cannot be construed
438
+ as modifying the License.
439
+
440
+ You may add Your own copyright statement to Your modifications and
441
+ may provide additional or different license terms and conditions
442
+ for use, reproduction, or distribution of Your modifications, or
443
+ for any such Derivative Works as a whole, provided Your use,
444
+ reproduction, and distribution of the Work otherwise complies with
445
+ the conditions stated in this License.
446
+
447
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
448
+ any Contribution intentionally submitted for inclusion in the Work
449
+ by You to the Licensor shall be under the terms and conditions of
450
+ this License, without any additional terms or conditions.
451
+ Notwithstanding the above, nothing herein shall supersede or modify
452
+ the terms of any separate license agreement you may have executed
453
+ with Licensor regarding such Contributions.
454
+
455
+ 6. Trademarks. This License does not grant permission to use the trade
456
+ names, trademarks, service marks, or product names of the Licensor,
457
+ except as required for reasonable and customary use in describing the
458
+ origin of the Work and reproducing the content of the NOTICE file.
459
+
460
+ 7. Disclaimer of Warranty. Unless required by applicable law or
461
+ agreed to in writing, Licensor provides the Work (and each
462
+ Contributor provides its Contributions) on an "AS IS" BASIS,
463
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
464
+ implied, including, without limitation, any warranties or conditions
465
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
466
+ PARTICULAR PURPOSE. You are solely responsible for determining the
467
+ appropriateness of using or redistributing the Work and assume any
468
+ risks associated with Your exercise of permissions under this License.
469
+
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
+
482
+ 9. Accepting Warranty or Additional Liability. While redistributing
483
+ the Work or Derivative Works thereof, You may choose to offer,
484
+ and charge a fee for, acceptance of support, warranty, indemnity,
485
+ or other liability obligations and/or rights consistent with this
486
+ License. However, in accepting such obligations, You may act only
487
+ on Your own behalf and on Your sole responsibility, not on behalf
488
+ of any other Contributor, and only if You agree to indemnify,
489
+ defend, and hold each Contributor harmless for any liability
490
+ incurred by, or claims asserted against, such Contributor by reason
491
+ of your accepting any such warranty or additional liability.
492
+
493
+ END OF TERMS AND CONDITIONS
494
+
495
+ APPENDIX: How to apply the Apache License to your work.
496
+
497
+ To apply the Apache License to your work, attach the following
498
+ boilerplate notice, with the fields enclosed by brackets "[]"
499
+ replaced with your own identifying information. (Don't include
500
+ the brackets!) The text should be enclosed in the appropriate
501
+ comment syntax for the file format. We also recommend that a
502
+ file or class name and description of purpose be included on the
503
+ same "printed page" as the copyright notice for easier
504
+ identification within third-party archives.
505
+
506
+ Copyright [yyyy] [name of copyright owner]
507
+
508
+ Licensed under the Apache License, Version 2.0 (the "License");
509
+ you may not use this file except in compliance with the License.
510
+ You may obtain a copy of the License at
511
+
512
+ http://www.apache.org/licenses/LICENSE-2.0
513
+
514
+ Unless required by applicable law or agreed to in writing, software
515
+ distributed under the License is distributed on an "AS IS" BASIS,
516
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
517
+ See the License for the specific language governing permissions and
518
+ limitations under the License.
519
+
520
+
521
+ --------------------------------------------------------------------------------
522
+
523
+ cli_repl license:
524
+
525
+ Copyright (c) 2018, Jennifer Thakar.
526
+ All rights reserved.
527
+
528
+ Redistribution and use in source and binary forms, with or without
529
+ modification, are permitted provided that the following conditions are met:
530
+ * Redistributions of source code must retain the above copyright
531
+ notice, this list of conditions and the following disclaimer.
532
+ * Redistributions in binary form must reproduce the above copyright
533
+ notice, this list of conditions and the following disclaimer in the
534
+ documentation and/or other materials provided with the distribution.
535
+ * Neither the name of the project nor the names of its contributors may be
536
+ used to endorse or promote products derived from this software without
537
+ specific prior written permission.
538
+
539
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
540
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
541
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
542
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
543
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
544
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
545
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
546
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
547
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
548
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
549
+
550
+
551
+ --------------------------------------------------------------------------------
552
+
553
+ convert, crypto, shelf_static and vm_service license:
554
+
555
+ Copyright 2015, the Dart project authors.
556
+
557
+ Redistribution and use in source and binary forms, with or without
558
+ modification, are permitted provided that the following conditions are
559
+ met:
560
+
561
+ * Redistributions of source code must retain the above copyright
562
+ notice, this list of conditions and the following disclaimer.
563
+ * Redistributions in binary form must reproduce the above
564
+ copyright notice, this list of conditions and the following
565
+ disclaimer in the documentation and/or other materials provided
566
+ with the distribution.
567
+ * Neither the name of Google LLC nor the names of its
568
+ contributors may be used to endorse or promote products derived
569
+ from this software without specific prior written permission.
570
+
571
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
572
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
573
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
574
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
575
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
576
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
577
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
578
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
579
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
580
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
581
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
582
+
583
+
584
+ --------------------------------------------------------------------------------
585
+
586
+ coverage, dart_style, dartdoc, glob, http, http_parser, matcher, path, pool,
587
+ pub_semver, source_span, string_scanner, test and watcher license:
588
+
589
+ Copyright 2014, the Dart project authors.
590
+
591
+ Redistribution and use in source and binary forms, with or without
592
+ modification, are permitted provided that the following conditions are
593
+ met:
594
+
595
+ * Redistributions of source code must retain the above copyright
596
+ notice, this list of conditions and the following disclaimer.
597
+ * Redistributions in binary form must reproduce the above
598
+ copyright notice, this list of conditions and the following
599
+ disclaimer in the documentation and/or other materials provided
600
+ with the distribution.
601
+ * Neither the name of Google LLC nor the names of its
602
+ contributors may be used to endorse or promote products derived
603
+ from this software without specific prior written permission.
604
+
605
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
606
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
607
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
608
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
609
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
610
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
611
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
612
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
613
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
614
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
615
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
616
+
617
+
618
+ --------------------------------------------------------------------------------
619
+
620
+ dart_mappable and type_plus license:
621
+
622
+ MIT License
623
+
624
+ Copyright (c) 2021 Kilian Schulte
625
+
626
+ Permission is hereby granted, free of charge, to any person obtaining a copy
627
+ of this software and associated documentation files (the "Software"), to deal
628
+ in the Software without restriction, including without limitation the rights
629
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
630
+ copies of the Software, and to permit persons to whom the Software is
631
+ furnished to do so, subject to the following conditions:
632
+
633
+ The above copyright notice and this permission notice shall be included in all
634
+ copies or substantial portions of the Software.
635
+
636
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
637
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
638
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
639
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
640
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
641
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
642
+ SOFTWARE.
643
+
644
+ --------------------------------------------------------------------------------
645
+
646
+ ffi and package_config license:
647
+
648
+ Copyright 2019, the Dart project authors.
649
+
650
+ Redistribution and use in source and binary forms, with or without
651
+ modification, are permitted provided that the following conditions are
652
+ met:
653
+
654
+ * Redistributions of source code must retain the above copyright
655
+ notice, this list of conditions and the following disclaimer.
656
+ * Redistributions in binary form must reproduce the above
657
+ copyright notice, this list of conditions and the following
658
+ disclaimer in the documentation and/or other materials provided
659
+ with the distribution.
660
+ * Neither the name of Google LLC nor the names of its
661
+ contributors may be used to endorse or promote products derived
662
+ from this software without specific prior written permission.
663
+
664
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
665
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
666
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
667
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
668
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
669
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
670
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
671
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
672
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
673
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
674
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
675
+
676
+
677
+ --------------------------------------------------------------------------------
678
+
679
+ file license:
680
+
681
+ Copyright 2017, the Dart project authors. All rights reserved.
682
+ Redistribution and use in source and binary forms, with or without
683
+ modification, are permitted provided that the following conditions are
684
+ met:
685
+
686
+ * Redistributions of source code must retain the above copyright
687
+ notice, this list of conditions and the following disclaimer.
688
+ * Redistributions in binary form must reproduce the above
689
+ copyright notice, this list of conditions and the following
690
+ disclaimer in the documentation and/or other materials provided
691
+ with the distribution.
692
+ * Neither the name of Google Inc. nor the names of its
693
+ contributors may be used to endorse or promote products derived
694
+ from this software without specific prior written permission.
695
+
696
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
697
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
698
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
699
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
700
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
701
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
702
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
703
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
704
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
705
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
706
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
707
+
708
+ --------------------------------------------------------------------------------
709
+
710
+ fixnum, http_multi_server, oauth2, shelf, shelf_web_socket, source_maps and
711
+ stack_trace license:
712
+
713
+ Copyright 2014, the Dart project authors.
714
+
715
+ Redistribution and use in source and binary forms, with or without
716
+ modification, are permitted provided that the following conditions are
717
+ met:
718
+
719
+ * Redistributions of source code must retain the above copyright
720
+ notice, this list of conditions and the following disclaimer.
721
+ * Redistributions in binary form must reproduce the above
722
+ copyright notice, this list of conditions and the following
723
+ disclaimer in the documentation and/or other materials provided
724
+ with the distribution.
725
+ * Neither the name of Google LLC nor the names of its
726
+ contributors may be used to endorse or promote products derived
727
+ from this software without specific prior written permission.
728
+
729
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
730
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
731
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
732
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
733
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
734
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
735
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
736
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
737
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
738
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
739
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
740
+
741
+
742
+ --------------------------------------------------------------------------------
743
+
744
+ frontend_server_client license:
745
+
746
+ Copyright 2020, the Dart project authors.
747
+
748
+ Redistribution and use in source and binary forms, with or without
749
+ modification, are permitted provided that the following conditions are
750
+ met:
751
+
752
+ * Redistributions of source code must retain the above copyright
753
+ notice, this list of conditions and the following disclaimer.
754
+ * Redistributions in binary form must reproduce the above
755
+ copyright notice, this list of conditions and the following
756
+ disclaimer in the documentation and/or other materials provided
757
+ with the distribution.
758
+ * Neither the name of Google LLC nor the names of its
759
+ contributors may be used to endorse or promote products derived
760
+ from this software without specific prior written permission.
761
+
762
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
763
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
764
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
765
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
766
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
767
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
768
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
769
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
770
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
771
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
772
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
773
+
774
+
775
+ --------------------------------------------------------------------------------
776
+
777
+ grinder and webkit_inspection_protocol license:
778
+
779
+ Copyright 2013, Google Inc.
780
+ All rights reserved.
781
+
782
+ Redistribution and use in source and binary forms, with or without
783
+ modification, are permitted provided that the following conditions are
784
+ met:
785
+
786
+ * Redistributions of source code must retain the above copyright
787
+ notice, this list of conditions and the following disclaimer.
788
+ * Redistributions in binary form must reproduce the above
789
+ copyright notice, this list of conditions and the following disclaimer
790
+ in the documentation and/or other materials provided with the
791
+ distribution.
792
+ * Neither the name of Google Inc. nor the names of its
793
+ contributors may be used to endorse or promote products derived from
794
+ this software without specific prior written permission.
795
+
796
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
797
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
798
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
799
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
800
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
801
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
802
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
803
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
804
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
805
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
806
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
807
+
808
+
809
+ --------------------------------------------------------------------------------
810
+
811
+ html license:
812
+
813
+ Copyright (c) 2006-2012 The Authors
814
+
815
+ Contributors:
816
+ James Graham - jg307@cam.ac.uk
817
+ Anne van Kesteren - annevankesteren@gmail.com
818
+ Lachlan Hunt - lachlan.hunt@lachy.id.au
819
+ Matt McDonald - kanashii@kanashii.ca
820
+ Sam Ruby - rubys@intertwingly.net
821
+ Ian Hickson (Google) - ian@hixie.ch
822
+ Thomas Broyer - t.broyer@ltgt.net
823
+ Jacques Distler - distler@golem.ph.utexas.edu
824
+ Henri Sivonen - hsivonen@iki.fi
825
+ Adam Barth - abarth@webkit.org
826
+ Eric Seidel - eric@webkit.org
827
+ The Mozilla Foundation (contributions from Henri Sivonen since 2008)
828
+ David Flanagan (Mozilla) - dflanagan@mozilla.com
829
+ Google LLC (contributed the Dart port) - misc@dartlang.org
830
+
831
+ 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:
832
+
833
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
834
+
835
+ 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.
836
+
837
+
838
+ --------------------------------------------------------------------------------
839
+
840
+ io, stream_transform and term_glyph license:
841
+
842
+ Copyright 2017, the Dart project authors.
843
+
844
+ Redistribution and use in source and binary forms, with or without
845
+ modification, are permitted provided that the following conditions are
846
+ met:
847
+
848
+ * Redistributions of source code must retain the above copyright
849
+ notice, this list of conditions and the following disclaimer.
850
+ * Redistributions in binary form must reproduce the above
851
+ copyright notice, this list of conditions and the following
852
+ disclaimer in the documentation and/or other materials provided
853
+ with the distribution.
854
+ * Neither the name of Google LLC nor the names of its
855
+ contributors may be used to endorse or promote products derived
856
+ from this software without specific prior written permission.
857
+
858
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
859
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
860
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
861
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
862
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
863
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
864
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
865
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
866
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
867
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
868
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
869
+
870
+
871
+ --------------------------------------------------------------------------------
872
+
873
+ js license:
874
+
875
+ Copyright 2012, the Dart project authors.
876
+
877
+ Redistribution and use in source and binary forms, with or without
878
+ modification, are permitted provided that the following conditions are
879
+ met:
880
+
881
+ * Redistributions of source code must retain the above copyright
882
+ notice, this list of conditions and the following disclaimer.
883
+ * Redistributions in binary form must reproduce the above
884
+ copyright notice, this list of conditions and the following
885
+ disclaimer in the documentation and/or other materials provided
886
+ with the distribution.
887
+ * Neither the name of Google LLC nor the names of its
888
+ contributors may be used to endorse or promote products derived
889
+ from this software without specific prior written permission.
890
+
891
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
892
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
893
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
894
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
895
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
896
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
897
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
898
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
899
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
900
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
901
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
902
+
903
+
904
+ --------------------------------------------------------------------------------
905
+
906
+ json_annotation license:
907
+
908
+ Copyright 2017, the Dart project authors. All rights reserved.
909
+ Redistribution and use in source and binary forms, with or without
910
+ modification, are permitted provided that the following conditions are
911
+ met:
912
+
913
+ * Redistributions of source code must retain the above copyright
914
+ notice, this list of conditions and the following disclaimer.
915
+ * Redistributions in binary form must reproduce the above
916
+ copyright notice, this list of conditions and the following
917
+ disclaimer in the documentation and/or other materials provided
918
+ with the distribution.
919
+ * Neither the name of Google Inc. nor the names of its
920
+ contributors may be used to endorse or promote products derived
921
+ from this software without specific prior written permission.
922
+
923
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
924
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
925
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
926
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
927
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
928
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
929
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
930
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
931
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
932
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
933
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
934
+
935
+
936
+ --------------------------------------------------------------------------------
937
+
938
+ lints license:
939
+
940
+ Copyright 2021, the Dart project authors.
941
+
942
+ Redistribution and use in source and binary forms, with or without
943
+ modification, are permitted provided that the following conditions are
944
+ met:
945
+
946
+ * Redistributions of source code must retain the above copyright
947
+ notice, this list of conditions and the following disclaimer.
948
+ * Redistributions in binary form must reproduce the above
949
+ copyright notice, this list of conditions and the following
950
+ disclaimer in the documentation and/or other materials provided
951
+ with the distribution.
952
+ * Neither the name of Google LLC nor the names of its
953
+ contributors may be used to endorse or promote products derived
954
+ from this software without specific prior written permission.
955
+
956
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
957
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
958
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
959
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
960
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
961
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
962
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
963
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
964
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
965
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
966
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
967
+
968
+
969
+ --------------------------------------------------------------------------------
970
+
971
+ markdown license:
972
+
973
+ Copyright 2012, the Dart project authors.
974
+
975
+ Redistribution and use in source and binary forms, with or without
976
+ modification, are permitted provided that the following conditions are
977
+ met:
978
+
979
+ * Redistributions of source code must retain the above copyright
980
+ notice, this list of conditions and the following disclaimer.
981
+ * Redistributions in binary form must reproduce the above
982
+ copyright notice, this list of conditions and the following
983
+ disclaimer in the documentation and/or other materials provided
984
+ with the distribution.
985
+ * Neither the name of Google LLC nor the names of its
986
+ contributors may be used to endorse or promote products derived
987
+ from this software without specific prior written permission.
988
+
989
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
990
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
991
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
992
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
993
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
994
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
995
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
996
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
997
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
998
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
999
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1000
+
1001
+
1002
+ --------------------------------------------------------------------------------
1003
+
1004
+ native_stack_traces license:
1005
+
1006
+ Copyright 2020, the Dart project authors.
1007
+
1008
+ Redistribution and use in source and binary forms, with or without
1009
+ modification, are permitted provided that the following conditions are
1010
+ met:
1011
+
1012
+ * Redistributions of source code must retain the above copyright
1013
+ notice, this list of conditions and the following disclaimer.
1014
+ * Redistributions in binary form must reproduce the above
1015
+ copyright notice, this list of conditions and the following
1016
+ disclaimer in the documentation and/or other materials provided
1017
+ with the distribution.
1018
+ * Neither the name of Google LLC nor the names of its
1019
+ contributors may be used to endorse or promote products derived
1020
+ from this software without specific prior written permission.
1021
+
1022
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1023
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1024
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1025
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1026
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1027
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1028
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1029
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1030
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1031
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1032
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1033
+
1034
+
1035
+ --------------------------------------------------------------------------------
1036
+
1037
+ native_synchronization license:
1038
+
1039
+ Copyright 2023, the Dart project authors.
1040
+
1041
+ Redistribution and use in source and binary forms, with or without
1042
+ modification, are permitted provided that the following conditions are
1043
+ met:
1044
+
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
1048
+ copyright notice, this list of conditions and the following
1049
+ disclaimer in the documentation and/or other materials provided
1050
+ with the distribution.
1051
+ * Neither the name of Google LLC nor the names of its
1052
+ contributors may be used to endorse or promote products derived
1053
+ from this software without specific prior written permission.
1054
+
1055
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1056
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1057
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1058
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1059
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1060
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1061
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1062
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1063
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1064
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1065
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1066
+
1067
+
1068
+ --------------------------------------------------------------------------------
1069
+
1070
+ node_interop license:
1071
+
1072
+ Copyright (c) 2017, Anatoly Pulyaevskiy.
1073
+ All rights reserved.
1074
+
1075
+ Redistribution and use in source and binary forms, with or without
1076
+ modification, are permitted provided that the following conditions are met:
1077
+ * Redistributions of source code must retain the above copyright
1078
+ notice, this list of conditions and the following disclaimer.
1079
+ * Redistributions in binary form must reproduce the above copyright
1080
+ notice, this list of conditions and the following disclaimer in the
1081
+ documentation and/or other materials provided with the distribution.
1082
+ * Neither the name of the <organization> nor the
1083
+ names of its contributors may be used to endorse or promote products
1084
+ derived from this software without specific prior written permission.
1085
+
1086
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1087
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1088
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1089
+ DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
1090
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1091
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1092
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
1093
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1094
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
1095
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1096
+
1097
+
1098
+ --------------------------------------------------------------------------------
1099
+
1100
+ node_preamble license:
1101
+
1102
+ The MIT License (MIT)
1103
+
1104
+ Copyright (c) 2015 Michael Bullington
1105
+
1106
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1107
+ of this software and associated documentation files (the "Software"), to deal
1108
+ in the Software without restriction, including without limitation the rights
1109
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1110
+ copies of the Software, and to permit persons to whom the Software is
1111
+ furnished to do so, subject to the following conditions:
1112
+
1113
+ The above copyright notice and this permission notice shall be included in all
1114
+ copies or substantial portions of the Software.
1115
+
1116
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1117
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1118
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1119
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1120
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1121
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1122
+ SOFTWARE.
1123
+
1124
+ ===
1125
+
1126
+ Copyright 2012, the Dart project authors. All rights reserved.
1127
+ Redistribution and use in source and binary forms, with or without
1128
+ modification, are permitted provided that the following conditions are
1129
+ met:
1130
+ * Redistributions of source code must retain the above copyright
1131
+ notice, this list of conditions and the following disclaimer.
1132
+ * Redistributions in binary form must reproduce the above
1133
+ copyright notice, this list of conditions and the following
1134
+ disclaimer in the documentation and/or other materials provided
1135
+ with the distribution.
1136
+ * Neither the name of Google Inc. nor the names of its
1137
+ contributors may be used to endorse or promote products derived
1138
+ from this software without specific prior written permission.
1139
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1140
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1141
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1142
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1143
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1144
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1145
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1146
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1147
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1148
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1149
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1150
+
1151
+
1152
+ --------------------------------------------------------------------------------
1153
+
1154
+ petitparser and xml license:
1155
+
1156
+ The MIT License
1157
+
1158
+ Copyright (c) 2006-2023 Lukas Renggli.
1159
+ All rights reserved.
1160
+
1161
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1162
+ of this software and associated documentation files (the "Software"), to deal
1163
+ in the Software without restriction, including without limitation the rights
1164
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1165
+ copies of the Software, and to permit persons to whom the Software is
1166
+ furnished to do so, subject to the following conditions:
1167
+
1168
+ The above copyright notice and this permission notice shall be included in
1169
+ all copies or substantial portions of the Software.
1170
+
1171
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1172
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1173
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1174
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1175
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1176
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1177
+ THE SOFTWARE.
1178
+
1179
+
1180
+ --------------------------------------------------------------------------------
1181
+
1182
+ pointycastle license:
1183
+
1184
+
1185
+ Copyright (c) 2000 - 2019 The Legion of the Bouncy Castle Inc. (https://www.bouncycastle.org)
1186
+
1187
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
1188
+ this software and associated documentation files (the "Software"), to deal in
1189
+ the Software without restriction, including without limitation the rights to
1190
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
1191
+ of the Software, and to permit persons to whom the Software is furnished to do
1192
+ so, subject to the following conditions:
1193
+
1194
+ The above copyright notice and this permission notice shall be included in all
1195
+ copies or substantial portions of the Software.
1196
+
1197
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1198
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1199
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1200
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1201
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1202
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1203
+
1204
+
1205
+
1206
+ --------------------------------------------------------------------------------
1207
+
1208
+ pub_api_client license:
1209
+
1210
+ MIT License
1211
+
1212
+ Copyright (c) 2020 Leo Farias
1213
+
1214
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1215
+ of this software and associated documentation files (the "Software"), to deal
1216
+ in the Software without restriction, including without limitation the rights
1217
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1218
+ copies of the Software, and to permit persons to whom the Software is
1219
+ furnished to do so, subject to the following conditions:
1220
+
1221
+ The above copyright notice and this permission notice shall be included in all
1222
+ copies or substantial portions of the Software.
1223
+
1224
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1225
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1226
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1227
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1228
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1229
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1230
+ SOFTWARE.
1231
+
1232
+
1233
+ --------------------------------------------------------------------------------
1234
+
1235
+ pubspec license:
1236
+
1237
+ Copyright (c) 2015, Anders Holmgren.
1238
+ All rights reserved.
1239
+
1240
+ Redistribution and use in source and binary forms, with or without
1241
+ modification, are permitted provided that the following conditions are met:
1242
+ * Redistributions of source code must retain the above copyright
1243
+ notice, this list of conditions and the following disclaimer.
1244
+ * Redistributions in binary form must reproduce the above copyright
1245
+ notice, this list of conditions and the following disclaimer in the
1246
+ documentation and/or other materials provided with the distribution.
1247
+ * Neither the name of the <organization> nor the
1248
+ names of its contributors may be used to endorse or promote products
1249
+ derived from this software without specific prior written permission.
1250
+
1251
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1252
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1253
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1254
+ DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
1255
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1256
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1257
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
1258
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1259
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
1260
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1261
+
1262
+
1263
+ --------------------------------------------------------------------------------
1264
+
1265
+ pubspec_parse license:
1266
+
1267
+ Copyright 2018, the Dart project authors.
1268
+
1269
+ Redistribution and use in source and binary forms, with or without
1270
+ modification, are permitted provided that the following conditions are
1271
+ met:
1272
+
1273
+ * Redistributions of source code must retain the above copyright
1274
+ notice, this list of conditions and the following disclaimer.
1275
+ * Redistributions in binary form must reproduce the above
1276
+ copyright notice, this list of conditions and the following
1277
+ disclaimer in the documentation and/or other materials provided
1278
+ with the distribution.
1279
+ * Neither the name of Google LLC nor the names of its
1280
+ contributors may be used to endorse or promote products derived
1281
+ from this software without specific prior written permission.
1282
+
1283
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1284
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1285
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1286
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1287
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1288
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1289
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1290
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1291
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1292
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1293
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1294
+
1295
+
1296
+ --------------------------------------------------------------------------------
1297
+
1298
+ quiver and retry license:
1299
+
1300
+
1301
+ Apache License
1302
+ Version 2.0, January 2004
1303
+ http://www.apache.org/licenses/
1304
+
1305
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1306
+
1307
+ 1. Definitions.
1308
+
1309
+ "License" shall mean the terms and conditions for use, reproduction,
1310
+ and distribution as defined by Sections 1 through 9 of this document.
1311
+
1312
+ "Licensor" shall mean the copyright owner or entity authorized by
1313
+ the copyright owner that is granting the License.
1314
+
1315
+ "Legal Entity" shall mean the union of the acting entity and all
1316
+ other entities that control, are controlled by, or are under common
1317
+ control with that entity. For the purposes of this definition,
1318
+ "control" means (i) the power, direct or indirect, to cause the
1319
+ direction or management of such entity, whether by contract or
1320
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
1321
+ outstanding shares, or (iii) beneficial ownership of such entity.
1322
+
1323
+ "You" (or "Your") shall mean an individual or Legal Entity
1324
+ exercising permissions granted by this License.
1325
+
1326
+ "Source" form shall mean the preferred form for making modifications,
1327
+ including but not limited to software source code, documentation
1328
+ source, and configuration files.
1329
+
1330
+ "Object" form shall mean any form resulting from mechanical
1331
+ transformation or translation of a Source form, including but
1332
+ not limited to compiled object code, generated documentation,
1333
+ and conversions to other media types.
1334
+
1335
+ "Work" shall mean the work of authorship, whether in Source or
1336
+ Object form, made available under the License, as indicated by a
1337
+ copyright notice that is included in or attached to the work
1338
+ (an example is provided in the Appendix below).
1339
+
1340
+ "Derivative Works" shall mean any work, whether in Source or Object
1341
+ form, that is based on (or derived from) the Work and for which the
1342
+ editorial revisions, annotations, elaborations, or other modifications
1343
+ represent, as a whole, an original work of authorship. For the purposes
1344
+ of this License, Derivative Works shall not include works that remain
1345
+ separable from, or merely link (or bind by name) to the interfaces of,
1346
+ the Work and Derivative Works thereof.
1347
+
1348
+ "Contribution" shall mean any work of authorship, including
1349
+ the original version of the Work and any modifications or additions
1350
+ to that Work or Derivative Works thereof, that is intentionally
1351
+ submitted to Licensor for inclusion in the Work by the copyright owner
1352
+ or by an individual or Legal Entity authorized to submit on behalf of
1353
+ the copyright owner. For the purposes of this definition, "submitted"
1354
+ means any form of electronic, verbal, or written communication sent
1355
+ to the Licensor or its representatives, including but not limited to
1356
+ communication on electronic mailing lists, source code control systems,
1357
+ and issue tracking systems that are managed by, or on behalf of, the
1358
+ Licensor for the purpose of discussing and improving the Work, but
1359
+ excluding communication that is conspicuously marked or otherwise
1360
+ designated in writing by the copyright owner as "Not a Contribution."
1361
+
1362
+ "Contributor" shall mean Licensor and any individual or Legal Entity
1363
+ on behalf of whom a Contribution has been received by Licensor and
1364
+ subsequently incorporated within the Work.
1365
+
1366
+ 2. Grant of Copyright License. Subject to the terms and conditions of
1367
+ this License, each Contributor hereby grants to You a perpetual,
1368
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1369
+ copyright license to reproduce, prepare Derivative Works of,
1370
+ publicly display, publicly perform, sublicense, and distribute the
1371
+ Work and such Derivative Works in Source or Object form.
1372
+
1373
+ 3. Grant of Patent License. Subject to the terms and conditions of
1374
+ this License, each Contributor hereby grants to You a perpetual,
1375
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1376
+ (except as stated in this section) patent license to make, have made,
1377
+ use, offer to sell, sell, import, and otherwise transfer the Work,
1378
+ where such license applies only to those patent claims licensable
1379
+ by such Contributor that are necessarily infringed by their
1380
+ Contribution(s) alone or by combination of their Contribution(s)
1381
+ with the Work to which such Contribution(s) was submitted. If You
1382
+ institute patent litigation against any entity (including a
1383
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
1384
+ or a Contribution incorporated within the Work constitutes direct
1385
+ or contributory patent infringement, then any patent licenses
1386
+ granted to You under this License for that Work shall terminate
1387
+ as of the date such litigation is filed.
1388
+
1389
+ 4. Redistribution. You may reproduce and distribute copies of the
1390
+ Work or Derivative Works thereof in any medium, with or without
1391
+ modifications, and in Source or Object form, provided that You
1392
+ meet the following conditions:
1393
+
1394
+ (a) You must give any other recipients of the Work or
1395
+ Derivative Works a copy of this License; and
1396
+
1397
+ (b) You must cause any modified files to carry prominent notices
1398
+ stating that You changed the files; and
1399
+
1400
+ (c) You must retain, in the Source form of any Derivative Works
1401
+ that You distribute, all copyright, patent, trademark, and
1402
+ attribution notices from the Source form of the Work,
1403
+ excluding those notices that do not pertain to any part of
1404
+ the Derivative Works; and
1405
+
1406
+ (d) If the Work includes a "NOTICE" text file as part of its
1407
+ distribution, then any Derivative Works that You distribute must
1408
+ include a readable copy of the attribution notices contained
1409
+ within such NOTICE file, excluding those notices that do not
1410
+ pertain to any part of the Derivative Works, in at least one
1411
+ of the following places: within a NOTICE text file distributed
1412
+ as part of the Derivative Works; within the Source form or
1413
+ documentation, if provided along with the Derivative Works; or,
1414
+ within a display generated by the Derivative Works, if and
1415
+ wherever such third-party notices normally appear. The contents
1416
+ of the NOTICE file are for informational purposes only and
1417
+ do not modify the License. You may add Your own attribution
1418
+ notices within Derivative Works that You distribute, alongside
1419
+ or as an addendum to the NOTICE text from the Work, provided
1420
+ that such additional attribution notices cannot be construed
1421
+ as modifying the License.
1422
+
1423
+ You may add Your own copyright statement to Your modifications and
1424
+ may provide additional or different license terms and conditions
1425
+ for use, reproduction, or distribution of Your modifications, or
1426
+ for any such Derivative Works as a whole, provided Your use,
1427
+ reproduction, and distribution of the Work otherwise complies with
1428
+ the conditions stated in this License.
1429
+
1430
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1431
+ any Contribution intentionally submitted for inclusion in the Work
1432
+ by You to the Licensor shall be under the terms and conditions of
1433
+ this License, without any additional terms or conditions.
1434
+ Notwithstanding the above, nothing herein shall supersede or modify
1435
+ the terms of any separate license agreement you may have executed
1436
+ with Licensor regarding such Contributions.
1437
+
1438
+ 6. Trademarks. This License does not grant permission to use the trade
1439
+ names, trademarks, service marks, or product names of the Licensor,
1440
+ except as required for reasonable and customary use in describing the
1441
+ origin of the Work and reproducing the content of the NOTICE file.
1442
+
1443
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1444
+ agreed to in writing, Licensor provides the Work (and each
1445
+ Contributor provides its Contributions) on an "AS IS" BASIS,
1446
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1447
+ implied, including, without limitation, any warranties or conditions
1448
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1449
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1450
+ appropriateness of using or redistributing the Work and assume any
1451
+ risks associated with Your exercise of permissions under this License.
1452
+
1453
+ 8. Limitation of Liability. In no event and under no legal theory,
1454
+ whether in tort (including negligence), contract, or otherwise,
1455
+ unless required by applicable law (such as deliberate and grossly
1456
+ negligent acts) or agreed to in writing, shall any Contributor be
1457
+ liable to You for damages, including any direct, indirect, special,
1458
+ incidental, or consequential damages of any character arising as a
1459
+ result of this License or out of the use or inability to use the
1460
+ Work (including but not limited to damages for loss of goodwill,
1461
+ work stoppage, computer failure or malfunction, or any and all
1462
+ other commercial damages or losses), even if such Contributor
1463
+ has been advised of the possibility of such damages.
1464
+
1465
+ 9. Accepting Warranty or Additional Liability. While redistributing
1466
+ the Work or Derivative Works thereof, You may choose to offer,
1467
+ and charge a fee for, acceptance of support, warranty, indemnity,
1468
+ or other liability obligations and/or rights consistent with this
1469
+ License. However, in accepting such obligations, You may act only
1470
+ on Your own behalf and on Your sole responsibility, not on behalf
1471
+ of any other Contributor, and only if You agree to indemnify,
1472
+ defend, and hold each Contributor harmless for any liability
1473
+ incurred by, or claims asserted against, such Contributor by reason
1474
+ of your accepting any such warranty or additional liability.
1475
+
1476
+ END OF TERMS AND CONDITIONS
1477
+
1478
+ APPENDIX: How to apply the Apache License to your work.
1479
+
1480
+ To apply the Apache License to your work, attach the following
1481
+ boilerplate notice, with the fields enclosed by brackets "[]"
1482
+ replaced with your own identifying information. (Don't include
1483
+ the brackets!) The text should be enclosed in the appropriate
1484
+ comment syntax for the file format. We also recommend that a
1485
+ file or class name and description of purpose be included on the
1486
+ same "printed page" as the copyright notice for easier
1487
+ identification within third-party archives.
1488
+
1489
+ Copyright [yyyy] [name of copyright owner]
1490
+
1491
+ Licensed under the Apache License, Version 2.0 (the "License");
1492
+ you may not use this file except in compliance with the License.
1493
+ You may obtain a copy of the License at
1494
+
1495
+ http://www.apache.org/licenses/LICENSE-2.0
1496
+
1497
+ Unless required by applicable law or agreed to in writing, software
1498
+ distributed under the License is distributed on an "AS IS" BASIS,
1499
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1500
+ See the License for the specific language governing permissions and
1501
+ limitations under the License.
1502
+
1503
+ --------------------------------------------------------------------------------
1504
+
1505
+ test_api and test_core license:
1506
+
1507
+ Copyright 2018, the Dart project authors.
1508
+
1509
+ Redistribution and use in source and binary forms, with or without
1510
+ modification, are permitted provided that the following conditions are
1511
+ met:
1512
+
1513
+ * Redistributions of source code must retain the above copyright
1514
+ notice, this list of conditions and the following disclaimer.
1515
+ * Redistributions in binary form must reproduce the above
1516
+ copyright notice, this list of conditions and the following
1517
+ disclaimer in the documentation and/or other materials provided
1518
+ with the distribution.
1519
+ * Neither the name of Google LLC nor the names of its
1520
+ contributors may be used to endorse or promote products derived
1521
+ from this software without specific prior written permission.
1522
+
1523
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1524
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1525
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1526
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1527
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1528
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1529
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1530
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1531
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1532
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1533
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1534
+
1535
+
1536
+ --------------------------------------------------------------------------------
1537
+
1538
+ test_descriptor and web_socket_channel license:
1539
+
1540
+ Copyright 2016, the Dart project authors.
1541
+
1542
+ Redistribution and use in source and binary forms, with or without
1543
+ modification, are permitted provided that the following conditions are
1544
+ met:
1545
+
1546
+ * Redistributions of source code must retain the above copyright
1547
+ notice, this list of conditions and the following disclaimer.
1548
+ * Redistributions in binary form must reproduce the above
1549
+ copyright notice, this list of conditions and the following
1550
+ disclaimer in the documentation and/or other materials provided
1551
+ with the distribution.
1552
+ * Neither the name of Google LLC nor the names of its
1553
+ contributors may be used to endorse or promote products derived
1554
+ from this software without specific prior written permission.
1555
+
1556
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1557
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1558
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1559
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1560
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1561
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1562
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1563
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1564
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1565
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1566
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1567
+
1568
+
1569
+ --------------------------------------------------------------------------------
1570
+
1571
+ test_process license:
1572
+
1573
+ Copyright 2017, the Dart project authors.
1574
+
1575
+ Redistribution and use in source and binary forms, with or without
1576
+ modification, are permitted provided that the following conditions are
1577
+ met:
1578
+
1579
+ * Redistributions of source code must retain the above copyright
1580
+ notice, this list of conditions and the following disclaimer.
1581
+ * Redistributions in binary form must reproduce the above
1582
+ copyright notice, this list of conditions and the following
1583
+ disclaimer in the documentation and/or other materials provided
1584
+ with the distribution.
1585
+ * Neither the name of Google LLC nor the names of its
1586
+ contributors may be used to endorse or promote products derived
1587
+ from this software without specific prior written permission.
1588
+
1589
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1590
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1591
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1592
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1593
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1594
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1595
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1596
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1597
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1598
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1599
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1600
+
1601
+
1602
+ --------------------------------------------------------------------------------
1603
+
1604
+ uri license:
1605
+
1606
+ Copyright 2013, the Dart project authors. All rights reserved.
1607
+ Redistribution and use in source and binary forms, with or without
1608
+ modification, are permitted provided that the following conditions are
1609
+ met:
1610
+ * Redistributions of source code must retain the above copyright
1611
+ notice, this list of conditions and the following disclaimer.
1612
+ * Redistributions in binary form must reproduce the above
1613
+ copyright notice, this list of conditions and the following
1614
+ disclaimer in the documentation and/or other materials provided
1615
+ with the distribution.
1616
+ * Neither the name of Google Inc. nor the names of its
1617
+ contributors may be used to endorse or promote products derived
1618
+ from this software without specific prior written permission.
1619
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1620
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1621
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1622
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1623
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1624
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1625
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1626
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1627
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1628
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1629
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1630
+
1631
+
1632
+ --------------------------------------------------------------------------------
1633
+
1634
+ web license:
1635
+
1636
+ Copyright 2023, the Dart project authors.
1637
+
1638
+ Redistribution and use in source and binary forms, with or without
1639
+ modification, are permitted provided that the following conditions are
1640
+ met:
1641
+ * Redistributions of source code must retain the above copyright
1642
+ notice, this list of conditions and the following disclaimer.
1643
+ * Redistributions in binary form must reproduce the above
1644
+ copyright notice, this list of conditions and the following
1645
+ disclaimer in the documentation and/or other materials provided
1646
+ with the distribution.
1647
+ * Neither the name of Google LLC nor the names of its
1648
+ contributors may be used to endorse or promote products derived
1649
+ from this software without specific prior written permission.
1650
+
1651
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1652
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1653
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1654
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1655
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1656
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1657
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1658
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1659
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1660
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1661
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1662
+
1663
+
1664
+ --------------------------------------------------------------------------------
1665
+
1666
+ yaml license:
1667
+
1668
+ Copyright (c) 2014, the Dart project authors.
1669
+ Copyright (c) 2006, Kirill Simonov.
1670
+
1671
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
1672
+ this software and associated documentation files (the "Software"), to deal in
1673
+ the Software without restriction, including without limitation the rights to
1674
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
1675
+ of the Software, and to permit persons to whom the Software is furnished to do
1676
+ so, subject to the following conditions:
1677
+
1678
+ The above copyright notice and this permission notice shall be included in all
1679
+ copies or substantial portions of the Software.
1680
+
1681
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1682
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1683
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1684
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1685
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1686
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1687
+ SOFTWARE.